/* Dragula */

.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: 0.8;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=80)';
  filter: alpha(opacity=80);
}

.gu-hide {
  display: none !important;
}

.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.gu-transit {
  opacity: 0.2;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=20)';
  filter: alpha(opacity=20);
}

/* Component level reset. Explicitly for item during cloning */

.media-library,
.media-library *,
.media-library-item * {
  all: unset;
  position: relative;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* `all:unset` for sortable rows in Vue 3 does too much */

.media-library-sortable .media-library-item {
  -webkit-user-drag: element;
}

.media-library script,
.media-library-item script {
  display: none;
}

/* Base */

.media-library {
  --text-opacity: 1;
  color: #4a5568;
  color: rgba(74, 85, 104, var(--text-opacity));
}

/* Order */

.media-library {
  display: grid;
  grid-template-areas:
        'errors'
        'items'
        'uploader';
  margin-bottom: 2px;
}

.media-library-listerrors {
  grid-area: errors;
  margin-bottom: -2px;
}

.media-library-items {
  grid-area: items;
  margin-bottom: -2px;
}

.media-library-uploader {
  grid-area: uploader;
  margin-bottom: -2px;
}

/* When cloning */

.media-library-item.gu-mirror {
  border-width: 2px;
  --border-opacity: 1;
  border-color: #e2e8f0;
  border-color: rgba(226, 232, 240, var(--border-opacity));
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Uploader */

.media-library-add {
  display: flex;
}

.media-library-replace,
.media-library-replace .media-library-dropzone,
.media-library-replace .media-library-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Items */

.media-library-multiple .media-library-items {
  display: block;
  border-width: 2px;
  --border-opacity: 1;
  border-color: #e2e8f0;
  border-color: rgba(226, 232, 240, var(--border-opacity));
}

.media-library-item {
  display: flex;
  align-items: center;
  min-width: 0;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.media-library-item-row:not(:last-child) {
  border-bottom-width: 1px;
  --border-opacity: 1;
  border-color: #e2e8f0;
  border-color: rgba(226, 232, 240, var(--border-opacity));
}

.media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before {
  content: '';
}

.media-library-row-drag,
.media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before {
  align-self: stretch;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2rem;
  background-color: #edf2f7;
  background-color: rgba(237, 242, 247, var(--bg-opacity));
  --bg-opacity: 0.5;
  border-right-width: 1px;
  --border-opacity: 1;
  border-color: #e2e8f0;
  border-color: rgba(226, 232, 240, var(--border-opacity));
  cursor: move;
  --text-opacity: 1;
  color: #a0aec0;
  color: rgba(160, 174, 192, var(--text-opacity));
}

.media-library-row-drag:hover {
  --text-opacity: 1;
  color: #667eea;
  color: rgba(102, 126, 234, var(--text-opacity));
}

.media-library-row-remove {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  --text-opacity: 1;
  color: #a0aec0;
  color: rgba(160, 174, 192, var(--text-opacity));
  opacity: 0.5;
  cursor: pointer;
}

.media-library-row-remove:hover {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 300ms;
}

/* Invalid media, aka failed uploads */

.media-library-listerrors {
  display: block;
  border-width: 2px;
  border-color: #feb2b2;
  border-color: rgba(254, 178, 178, var(--border-opacity));
  --border-opacity: 0.5;
  background-color: #fed7d7;
  background-color: rgba(254, 215, 215, var(--bg-opacity));
  --bg-opacity: 0.5;
  font-size: 0.75rem;
}

.media-library-listerror {
  display: flex;
  align-items: flex-start;
}

.media-library-listerror:not(:last-child) {
  border-bottom-width: 2px;
  border-color: #feb2b2;
  border-color: rgba(254, 178, 178, var(--border-opacity));
  --border-opacity: 0.25;
}

.media-library-listerror-icon {
  align-self: stretch;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-left: 1rem;
  margin-right: 1rem;
  width: 2rem;
  display: flex;
  justify-content: center;
}

.media-library-filled.media-library-sortable .media-library-listerror-icon {
  margin-left: 0;
  margin-right: 1rem;
  background-color: #fed7d7;
  background-color: rgba(254, 215, 215, var(--bg-opacity));
  --bg-opacity: 0.5;
  border-right-width: 1px;
  --border-opacity: 1;
  border-color: #fed7d7;
  border-color: rgba(254, 215, 215, var(--border-opacity));
}

.media-library-listerror-content {
  flex-grow: 1;
  padding-right: 3rem;
}

.media-library-listerror-title {
  --text-opacity: 1;
  color: #e53e3e;
  color: rgba(229, 62, 62, var(--text-opacity));
  height: 3rem;
  display: flex;
  align-items: center;
}

.media-library-listerror-items {
  margin-top: -0.5rem;
  border-top-width: 1px;
  border-color: #feb2b2;
  border-color: rgba(254, 178, 178, var(--border-opacity));
  --border-opacity: 0.25;
}

.media-library-listerror-item {
  display: flex;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.media-library-listerror-thumb {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
}

.media-library-listerror-thumb:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 1px;
  border-color: #e53e3e;
  border-color: rgba(229, 62, 62, var(--border-opacity));
  --border-opacity: 0.5;
}

.media-library-listerror-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Thumb */

.media-library-thumb {
  position: relative;
  flex: none;
  width: 4rem;
  height: 4rem;
  margin: 1rem;
}

.media-library-single .media-library-thumb {
  margin: 0;
  margin-right: 1rem;
}

.media-library-thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.media-library-thumb-extension {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.media-library-thumb-extension-truncate {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  --text-opacity: 1;
  color: #a0aec0;
  color: rgba(160, 174, 192, var(--text-opacity));
  font-size: 0.75rem;
}

/* Placeholder */

.media-library-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: calc(4rem - 4px);
}

.media-library-filled.media-library-sortable .media-library-add .media-library-placeholder {
  width: 2rem;
  height: 2rem;
  margin-left: -2rem;
  margin-right: 1rem;
}

.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #e2e8f0;
  background-color: rgba(226, 232, 240, var(--bg-opacity));
  --bg-opacity: 0.25;
  transform: translate(calc(-50% + 3px), calc(-50% + 3px));
}

.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  --bg-opacity: 1;
  background-color: #f7fafc;
  background-color: rgba(247, 250, 252, var(--bg-opacity));
  border-width: 1px;
  border-color: #cbd5e0;
  border-color: rgba(203, 213, 224, var(--border-opacity));
  --border-opacity: 0.25;
  transform: translate(-50%, -50%);
}

.media-library-dropzone:not(.disabled):active .media-library-placeholder,
.media-library-dropzone-drop .media-library-placeholder {
  transform: translateY(1px);
}

/* Help */

.media-library-help {
  text-align: left;
  padding-right: 1rem;
  font-size: 0.75rem;
  --text-opacity: 1;
  color: #718096;
  color: rgba(113, 128, 150, var(--text-opacity));
}

.media-library-help-clear {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  opacity: 0.75;
  cursor: pointer;
}

.media-library-help-clear:hover {
  opacity: 1;
  transition-property: opacity;
  transition-duration: 300ms;
}

/* Dropzone */

.media-library-dropzone {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  display: flex;
  align-items: center;
  border-width: 2px;
  border-color: #718096;
  border-color: rgba(113, 128, 150, var(--border-opacity));
  --border-opacity: 0.25;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 300ms;
  flex-grow: 1;
  background-color: transparent;
}

.media-library-dropzone-add {
  border-style: dashed;
  --bg-opacity: 1;
  background-color: #f7fafc;
  background-color: rgba(247, 250, 252, var(--bg-opacity));
}

.media-library-dropzone-replace {
  border-style: solid;
}

.media-library-dropzone:not(.disabled):hover,
.media-library-dropzone-drag {
  background-color: #a3bffa;
  background-color: rgba(163, 191, 250, var(--bg-opacity));
  --bg-opacity: 0.25;
  border-color: #5a67d8;
  border-color: rgba(90, 103, 216, var(--border-opacity));
  --border-opacity: 0.25;
}

.media-library-dropzone:not(.disabled):active,
.media-library-dropzone:not(.disabled):focus,
.media-library-dropzone-drop {
  outline: 2px solid transparent;
  outline-offset: 2px;
  background-color: #a3bffa;
  background-color: rgba(163, 191, 250, var(--bg-opacity));
  --bg-opacity: 0.5;
  border-color: #5a67d8;
  border-color: rgba(90, 103, 216, var(--border-opacity));
  --border-opacity: 0.25;
}

.media-library-dropzone.disabled {
  background-color: #feb2b2;
  background-color: rgba(254, 178, 178, var(--bg-opacity));
  --bg-opacity: 0.25;
  border-color: #e53e3e;
  border-color: rgba(229, 62, 62, var(--border-opacity));
  --border-opacity: 0.25;
  cursor: not-allowed;
}

/* Properties */

.media-library-properties {
  font-size: 0.75rem;
  --text-opacity: 1;
  color: #718096;
  color: rgba(113, 128, 150, var(--text-opacity));
  flex-grow: 1;
  min-width: 0;
  margin-right: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.media-library-single .media-library-properties {
  margin-top: 0;
  margin-bottom: 0;
}

.media-library-properties-fixed {
  width: 8rem;
  flex-grow: 0;
}

.media-library-property {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  --text-opacity: 1;
  color: #a0aec0;
  color: rgba(160, 174, 192, var(--text-opacity));
}

/* Field */

.media-library-field {
  display: block;
  overflow: hidden;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.media-library-field-error {
  display: block;
  margin-top: 0.25rem;
  --text-opacity: 1;
  color: #e53e3e;
  color: rgba(229, 62, 62, var(--text-opacity));
}

.media-library-label {
  display: block;
  font-size: 0.75rem;
  --text-opacity: 1;
  color: #a0aec0;
  color: rgba(160, 174, 192, var(--text-opacity));
  padding-right: 0.5rem;
}

.media-library-input {
  flex: 1 1 0%;
  width: 100%;
  font-size: 0.75rem;
  --text-opacity: 1;
  color: #2d3748;
  color: rgba(45, 55, 72, var(--text-opacity));
  border-radius: 0.125rem;
  --bg-opacity: 1;
  background-color: #edf2f7;
  background-color: rgba(237, 242, 247, var(--bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 300ms;
}

.media-library-input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --bg-opacity: 1;
  background-color: #ebf4ff;
  background-color: rgba(235, 244, 255, var(--bg-opacity));
}

/* Rounded buttons */

.media-library-button {
  width: 1.5rem;
  height: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  line-height: 1;
  transition-duration: 100ms;
  transition-property: all;
  border-width: 1px;
  border-color: #cbd5e0;
  border-color: rgba(203, 213, 224, var(--border-opacity));
  --border-opacity: 0.75;
  z-index: 10;
}

.media-library-sortable .media-library-button {
  width: 1.25rem;
  height: 1.25rem;
}

.media-library-button-info {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  --text-opacity: 1;
  color: #667eea;
  color: rgba(102, 126, 234, var(--text-opacity));
}

.media-library-button-warning {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  --text-opacity: 1;
  color: #f56565;
  color: rgba(245, 101, 101, var(--text-opacity));
}

.media-library-button-error {
  --bg-opacity: 1;
  background-color: #f56565;
  background-color: rgba(245, 101, 101, var(--bg-opacity));
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
  --border-opacity: 1;
  border-color: #fc8181;
  border-color: rgba(252, 129, 129, var(--border-opacity));
}

.media-library-button-success {
  --bg-opacity: 1;
  background-color: #48bb78;
  background-color: rgba(72, 187, 120, var(--bg-opacity));
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.media-library-replace .media-library-button {
  opacity: 0;
}

.media-library-dropzone:not(.disabled):hover .media-library-placeholder .media-library-button,
.media-library-dropzone:not(.disabled):focus .media-library-placeholder .media-library-button,
.media-library-dropzone-drag + .media-library-placeholder .media-library-button {
  opacity: 1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.media-library-dropzone:not(.disabled):active .media-library-placeholder .media-library-button,
.media-library-dropzone-drop .media-library-placeholder .media-library-button {
  opacity: 1;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

/* Icon */

.media-library-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.media-library-icon-fill {
  fill: currentColor;
}

/* Progress */

.media-library-progress-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e2e8f0;
  background-color: rgba(226, 232, 240, var(--bg-opacity));
  --bg-opacity: 0.5;
  z-index: 10;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 300ms;
  pointer-events: none;
}

.media-library-progress-wrap-loading {
  opacity: 1;
}

.media-library-progress {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 0.25rem;
  width: 100%;
  max-width: 28rem;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  border-radius: 9999px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.media-library progress::-webkit-progress-bar {
  -webkit-appearance: none;
          appearance: none;
  border-radius: 9999px;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.media-library progress::-moz-progress-bar {
  height: 100%;
  --bg-opacity: 1;
  background-color: #667eea;
  background-color: rgba(102, 126, 234, var(--bg-opacity));
}

.media-library progress::-webkit-progress-value {
  height: 100%;
  --bg-opacity: 1;
  background-color: #667eea;
  background-color: rgba(102, 126, 234, var(--bg-opacity));
}

/* Text styles */

.media-library-text-separator {
  opacity: 0.5;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.media-library-text-success {
  --text-opacity: 1;
  color: #38a169;
  color: rgba(56, 161, 105, var(--text-opacity));
}

.media-library-text-error {
  --text-opacity: 1;
  color: #e53e3e;
  color: rgba(229, 62, 62, var(--text-opacity));
}

.media-library-text-link {
  text-decoration: underline;
  cursor: pointer;
}

/* Ported utilities */

.media-library-hidden {
  display: none;
}

.media-library-block {
  display: block;
}

/* RTL Support */

[dir='rtl'] .media-library-row-remove {
  right: auto;
  left: 0;
}

[dir='rtl'] .media-library-properties {
  margin-right: 0;
  margin-left: 1rem;
}

[dir='rtl'] .media-library-filled.media-library-sortable .media-library-add .media-library-placeholder {
  margin-right: -2rem;
  margin-left: 1rem;
}

[dir='rtl'] .media-library-row-drag,
[dir='rtl'] .media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before {
  border-right-width: 0;
  border-left-width: 1px;
}

[dir='rtl'] .media-library-help {
  text-align: right;
  padding-right: 0;
  padding-left: 1rem;
}

[dir='rtl'] .media-library-listerror-content {
  padding-right: 0;
  padding-left: 3rem;
}

[dir='rtl'] .media-library-filled.media-library-sortable .media-library-listerror-icon {
  margin-right: 0;
  margin-left: 1rem;
  border-right-width: 0;
  border-left-width: 1px;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

button,
select {
  text-transform: none;
}

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

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

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

:-moz-focusring {
  outline: auto;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

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

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

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

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

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

/*
Set the default cursor for buttons.
*/

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

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

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

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

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

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

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

[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

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

::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}

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

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple],[size]:where(select:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='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='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {

  [type='checkbox']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='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");
}

@media (forced-colors: active)  {

  [type='radio']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (forced-colors: active)  {

  [type='checkbox']:indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
  p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.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;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.form-checkbox,.form-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
.form-checkbox {
  border-radius: 0px;
}
.form-checkbox:focus,.form-radio:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.form-checkbox:checked,.form-radio:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.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='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active)  {

  .form-checkbox:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
.form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}
.form-checkbox:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active)  {

  .form-checkbox:indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
.form-checkbox:indeterminate:hover,.form-checkbox:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}
.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 20px;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  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-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose-lg {
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}
.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-inline-start: 1em;
}
.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-inline-end: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8666667em;
}
.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.875em;
}
.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-inline-end: 1.5em;
  padding-bottom: 1em;
  padding-inline-start: 1.5em;
}
.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}
.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
}
.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.75em;
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose-xl {
  font-size: 1.25rem;
  line-height: 1.8;
}
.prose-xl :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose-xl :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2em;
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 1em;
}
.prose-xl :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1.0666667em;
}
.prose-xl :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.8em;
  margin-top: 0;
  margin-bottom: 0.8571429em;
  line-height: 1;
}
.prose-xl :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.8em;
  margin-top: 1.5555556em;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose-xl :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.5em;
  margin-top: 1.6em;
  margin-bottom: 0.6666667em;
  line-height: 1.3333333;
}
.prose-xl :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose-xl :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-xl :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-xl :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-xl :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-xl :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
  border-radius: 0.3125rem;
  padding-top: 0.25em;
  padding-inline-end: 0.4em;
  padding-bottom: 0.25em;
  padding-inline-start: 0.4em;
}
.prose-xl :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
}
.prose-xl :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8611111em;
}
.prose-xl :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
}
.prose-xl :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
  line-height: 1.7777778;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.5rem;
  padding-top: 1.1111111em;
  padding-inline-end: 1.3333333em;
  padding-bottom: 1.1111111em;
  padding-inline-start: 1.3333333em;
}
.prose-xl :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  padding-inline-start: 1.6em;
}
.prose-xl :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  padding-inline-start: 1.6em;
}
.prose-xl :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.prose-xl :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4em;
}
.prose-xl :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4em;
}
.prose-xl :where(.prose-xl > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
.prose-xl :where(.prose-xl > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.2em;
}
.prose-xl :where(.prose-xl > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.2em;
}
.prose-xl :where(.prose-xl > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.2em;
}
.prose-xl :where(.prose-xl > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.2em;
}
.prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
.prose-xl :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose-xl :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.2em;
}
.prose-xl :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6em;
  padding-inline-start: 1.6em;
}
.prose-xl :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2.8em;
  margin-bottom: 2.8em;
}
.prose-xl :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-xl :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-xl :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-xl :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-xl :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
  line-height: 1.5555556;
}
.prose-xl :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0.6666667em;
  padding-bottom: 0.8888889em;
  padding-inline-start: 0.6666667em;
}
.prose-xl :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-xl :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-xl :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.8888889em;
  padding-inline-end: 0.6666667em;
  padding-bottom: 0.8888889em;
  padding-inline-start: 0.6666667em;
}
.prose-xl :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-xl :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-xl :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-xl :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-xl :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
  line-height: 1.5555556;
  margin-top: 1em;
}
.prose-xl :where(.prose-xl > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-xl :where(.prose-xl > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose-indigo {
  --tw-prose-links: #4f46e5;
  --tw-prose-invert-links: #6366f1;
}
.aspect-w-1,
.aspect-w-2,
.aspect-w-3,
.aspect-w-4,
.aspect-w-5,
.aspect-w-6,
.aspect-w-7,
.aspect-w-8,
.aspect-w-9,
.aspect-w-10,
.aspect-w-11,
.aspect-w-12,
.aspect-w-13,
.aspect-w-14,
.aspect-w-15,
.aspect-w-16 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
}
.aspect-w-1 > *,
.aspect-w-2 > *,
.aspect-w-3 > *,
.aspect-w-4 > *,
.aspect-w-5 > *,
.aspect-w-6 > *,
.aspect-w-7 > *,
.aspect-w-8 > *,
.aspect-w-9 > *,
.aspect-w-10 > *,
.aspect-w-11 > *,
.aspect-w-12 > *,
.aspect-w-13 > *,
.aspect-w-14 > *,
.aspect-w-15 > *,
.aspect-w-16 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.aspect-w-1 {
  --tw-aspect-w: 1;
}
.aspect-w-3 {
  --tw-aspect-w: 3;
}
.aspect-w-5 {
  --tw-aspect-w: 5;
}
.aspect-w-10 {
  --tw-aspect-w: 10;
}
.aspect-w-16 {
  --tw-aspect-w: 16;
}
.aspect-h-1 {
  --tw-aspect-h: 1;
}
.aspect-h-2 {
  --tw-aspect-h: 2;
}
.aspect-h-3 {
  --tw-aspect-h: 3;
}
.aspect-h-6 {
  --tw-aspect-h: 6;
}
.aspect-h-7 {
  --tw-aspect-h: 7;
}
.aspect-h-9 {
  --tw-aspect-h: 9;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

  p.form-label {
  font-size: 1rem;
  line-height: 1.5rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-left-28 {
  left: -7rem;
}
.-left-56 {
  left: -14rem;
}
.-right-1 {
  right: -0.25rem;
}
.-right-2 {
  right: -0.5rem;
}
.-top-1 {
  top: -0.25rem;
}
.-top-12 {
  top: -3rem;
}
.-top-2 {
  top: -0.5rem;
}
.-top-6 {
  top: -1.5rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-16 {
  bottom: 4rem;
}
.bottom-2 {
  bottom: 0.5rem;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-\[-2px\] {
  bottom: -2px;
}
.bottom-full {
  bottom: 100%;
}
.left-0 {
  left: 0px;
}
.left-1 {
  left: 0.25rem;
}
.left-1\/2 {
  left: 50%;
}
.left-2 {
  left: 0.5rem;
}
.left-20 {
  left: 5rem;
}
.left-4 {
  left: 1rem;
}
.left-full {
  left: 100%;
}
.right-0 {
  right: 0px;
}
.right-1 {
  right: 0.25rem;
}
.right-1\/2 {
  right: 50%;
}
.right-2 {
  right: 0.5rem;
}
.right-3 {
  right: 0.75rem;
}
.right-4 {
  right: 1rem;
}
.right-6 {
  right: 1.5rem;
}
.right-\[-2px\] {
  right: -2px;
}
.right-\[15px\] {
  right: 15px;
}
.right-full {
  right: 100%;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-14 {
  top: 3.5rem;
}
.top-2 {
  top: 0.5rem;
}
.top-4 {
  top: 1rem;
}
.top-6 {
  top: 1.5rem;
}
.top-8 {
  top: 2rem;
}
.top-\[10px\] {
  top: 10px;
}
.top-full {
  top: 100%;
}
.-z-10 {
  z-index: -10;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-60 {
  z-index: 60;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[99999\] {
  z-index: 99999;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-10 {
  grid-column: span 10 / span 10;
}
.col-span-12 {
  grid-column: span 12 / span 12;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.col-span-4 {
  grid-column: span 4 / span 4;
}
.col-span-5 {
  grid-column: span 5 / span 5;
}
.col-span-6 {
  grid-column: span 6 / span 6;
}
.col-span-8 {
  grid-column: span 8 / span 8;
}
.col-span-9 {
  grid-column: span 9 / span 9;
}
.-m-2 {
  margin: -0.5rem;
}
.-m-3 {
  margin: -0.75rem;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.-mx-px {
  margin-left: -1px;
  margin-right: -1px;
}
.-my-2 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.-ml-1 {
  margin-left: -0.25rem;
}
.-ml-3 {
  margin-left: -0.75rem;
}
.-ml-\[18px\] {
  margin-left: -18px;
}
.-ml-px {
  margin-left: -1px;
}
.-mr-12 {
  margin-right: -3rem;
}
.-mr-2 {
  margin-right: -0.5rem;
}
.-mr-4 {
  margin-right: -1rem;
}
.-mr-px {
  margin-right: -1px;
}
.-mt-1 {
  margin-top: -0.25rem;
}
.-mt-20 {
  margin-top: -5rem;
}
.-mt-4 {
  margin-top: -1rem;
}
.-mt-px {
  margin-top: -1px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-\[4px\] {
  margin-bottom: 4px;
}
.ml-0\.5 {
  margin-left: 0.125rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-12 {
  margin-left: 3rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-8 {
  margin-left: 2rem;
}
.ml-\[210px\] {
  margin-left: 210px;
}
.ml-\[75px\] {
  margin-left: 75px;
}
.ml-auto {
  margin-left: auto;
}
.mr-0\.5 {
  margin-right: 0.125rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-auto {
  margin-right: auto;
}
.mt-0 {
  margin-top: 0px;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[24px\] {
  margin-top: 24px;
}
.mt-\[36px\] {
  margin-top: 36px;
}
.mt-auto {
  margin-top: auto;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.\!h-5 {
  height: 1.25rem !important;
}
.\!h-full {
  height: 100% !important;
}
.h-0 {
  height: 0px;
}
.h-0\.5 {
  height: 0.125rem;
}
.h-1 {
  height: 0.25rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-1\/2 {
  height: 50%;
}
.h-1\/3 {
  height: 33.333333%;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-128 {
  height: 32rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-32 {
  height: 8rem;
}
.h-36 {
  height: 9rem;
}
.h-4 {
  height: 1rem;
}
.h-40 {
  height: 10rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-52 {
  height: 13rem;
}
.h-6 {
  height: 1.5rem;
}
.h-60 {
  height: 15rem;
}
.h-64 {
  height: 16rem;
}
.h-7 {
  height: 1.75rem;
}
.h-72 {
  height: 18rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-96 {
  height: 24rem;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[440px\] {
  height: 440px;
}
.h-\[450px\] {
  height: 450px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.max-h-0 {
  max-height: 0px;
}
.max-h-52 {
  max-height: 13rem;
}
.max-h-80 {
  max-height: 20rem;
}
.max-h-\[600px\] {
  max-height: 600px;
}
.max-h-\[60vh\] {
  max-height: 60vh;
}
.max-h-\[90vh\] {
  max-height: 90vh;
}
.max-h-\[calc\(100vh-10rem\)\] {
  max-height: calc(100vh - 10rem);
}
.max-h-screen {
  max-height: 100vh;
}
.min-h-\[400px\] {
  min-height: 400px;
}
.min-h-\[88px\] {
  min-height: 88px;
}
.min-h-full {
  min-height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.\!w-5 {
  width: 1.25rem !important;
}
.\!w-\[400px\] {
  width: 400px !important;
}
.\!w-\[500px\] {
  width: 500px !important;
}
.w-0 {
  width: 0px;
}
.w-0\.5 {
  width: 0.125rem;
}
.w-1\/12 {
  width: 8.333333%;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-1\/5 {
  width: 20%;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-2\/12 {
  width: 16.666667%;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-2\/5 {
  width: 40%;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\/5 {
  width: 60%;
}
.w-32 {
  width: 8rem;
}
.w-36 {
  width: 9rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-44 {
  width: 11rem;
}
.w-48 {
  width: 12rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-64 {
  width: 16rem;
}
.w-7 {
  width: 1.75rem;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-8\/12 {
  width: 66.666667%;
}
.w-80 {
  width: 20rem;
}
.w-9 {
  width: 2.25rem;
}
.w-\[110\%\] {
  width: 110%;
}
.w-\[200px\] {
  width: 200px;
}
.w-\[300px\] {
  width: 300px;
}
.w-\[40px\] {
  width: 40px;
}
.w-\[60px\] {
  width: 60px;
}
.w-\[calc\(100\%-40px\)\] {
  width: calc(100% - 40px);
}
.w-full {
  width: 100%;
}
.w-max {
  width: -moz-max-content;
  width: max-content;
}
.w-screen {
  width: 100vw;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[1200px\] {
  min-width: 1200px;
}
.min-w-\[50\%\] {
  min-width: 50%;
}
.min-w-full {
  min-width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-9xl {
  max-width: 90rem;
}
.max-w-\[200px\] {
  max-width: 200px;
}
.max-w-\[3rem\] {
  max-width: 3rem;
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-none {
  max-width: none;
}
.max-w-prose {
  max-width: 65ch;
}
.max-w-screen-xl {
  max-width: 1280px;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.grow {
  flex-grow: 1;
}
.origin-top-right {
  transform-origin: top right;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-1\/3 {
  --tw-translate-x: -33.333333%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-2\/3 {
  --tw-translate-x: -66.666667%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-3 {
  --tw-translate-x: -0.75rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/3 {
  --tw-translate-y: -33.333333%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/4 {
  --tw-translate-y: -25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-2 {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-6 {
  --tw-translate-x: 1.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1 {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1\/3 {
  --tw-translate-y: 33.333333%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-12 {
  --tw-translate-y: 3rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-16 {
  --tw-translate-y: 4rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-2 {
  --tw-translate-y: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-6 {
  --tw-translate-y: 1.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\!rotate-180 {
  --tw-rotate: 180deg !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.-rotate-180 {
  --tw-rotate: -180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-0 {
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes bounce {

  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}
@keyframes ping {

  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.\!cursor-not-allowed {
  cursor: not-allowed !important;
}
.cursor-default {
  cursor: default;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-text {
  cursor: text;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.select-all {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
.resize {
  resize: both;
}
.list-inside {
  list-style-position: inside;
}
.list-outside {
  list-style-position: outside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.list-none {
  list-style-type: none;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-\[9rem_1fr_9rem_11rem_4rem\] {
  grid-template-columns: 9rem 1fr 9rem 11rem 4rem;
}
.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.place-items-center {
  place-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-items-start {
  justify-items: start;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-24 {
  gap: 6rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
.gap-x-1\.5 {
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-5 {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.gap-y-10 {
  row-gap: 2.5rem;
}
.gap-y-12 {
  row-gap: 3rem;
}
.gap-y-16 {
  row-gap: 4rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.gap-y-8 {
  row-gap: 2rem;
}
.-space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.-space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.-space-x-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-2rem * var(--tw-space-x-reverse));
  margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.divide-x > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
.divide-gray-300 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-divide-opacity, 1));
}
.divide-primary-600 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(138 100 212 / var(--tw-divide-opacity, 1));
}
.divide-primary-800 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(80 47 117 / var(--tw-divide-opacity, 1));
}
.self-start {
  align-self: flex-start;
}
.self-center {
  align-self: center;
}
.justify-self-start {
  justify-self: start;
}
.justify-self-end {
  justify-self: end;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-visible {
  overflow-y: visible;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-line {
  white-space: pre-line;
}
.whitespace-pre-wrap {
  white-space: pre-wrap;
}
.text-balance {
  text-wrap: balance;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-\[10px\] {
  border-radius: 10px;
}
.rounded-\[500px\] {
  border-radius: 500px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-none {
  border-radius: 0px;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.\!rounded-l-none {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-b-none {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rounded-l {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-l-\[20px\] {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.rounded-r-3xl {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.rounded-r-\[20px\] {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.rounded-t-none {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.rounded-bl-lg {
  border-bottom-left-radius: 0.5rem;
}
.rounded-br-lg {
  border-bottom-right-radius: 0.5rem;
}
.rounded-tl-lg {
  border-top-left-radius: 0.5rem;
}
.rounded-tr-lg {
  border-top-right-radius: 0.5rem;
}
.\!border-0 {
  border-width: 0px !important;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-b-4 {
  border-bottom-width: 4px;
}
.border-l {
  border-left-width: 1px;
}
.border-l-0 {
  border-left-width: 0px;
}
.border-l-2 {
  border-left-width: 2px;
}
.border-r {
  border-right-width: 1px;
}
.border-r-0 {
  border-right-width: 0px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-0 {
  border-top-width: 0px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-solid {
  border-style: solid;
}
.\!border-gray-300 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1)) !important;
}
.\!border-primary-600 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(138 100 212 / var(--tw-border-opacity, 1)) !important;
}
.border-\[\#477FEA\] {
  --tw-border-opacity: 1;
  border-color: rgb(71 127 234 / var(--tw-border-opacity, 1));
}
.border-\[\#EAEAEA\] {
  --tw-border-opacity: 1;
  border-color: rgb(234 234 234 / var(--tw-border-opacity, 1));
}
.border-\[\#d0d8dc\] {
  --tw-border-opacity: 1;
  border-color: rgb(208 216 220 / var(--tw-border-opacity, 1));
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-blue-400 {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}
.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.border-blue-500\/0 {
  border-color: rgb(59 130 246 / 0);
}
.border-blue-500\/10 {
  border-color: rgb(59 130 246 / 0.1);
}
.border-blue-500\/100 {
  border-color: rgb(59 130 246 / 1);
}
.border-blue-500\/15 {
  border-color: rgb(59 130 246 / 0.15);
}
.border-blue-500\/20 {
  border-color: rgb(59 130 246 / 0.2);
}
.border-blue-500\/25 {
  border-color: rgb(59 130 246 / 0.25);
}
.border-blue-500\/30 {
  border-color: rgb(59 130 246 / 0.3);
}
.border-blue-500\/35 {
  border-color: rgb(59 130 246 / 0.35);
}
.border-blue-500\/40 {
  border-color: rgb(59 130 246 / 0.4);
}
.border-blue-500\/45 {
  border-color: rgb(59 130 246 / 0.45);
}
.border-blue-500\/5 {
  border-color: rgb(59 130 246 / 0.05);
}
.border-blue-500\/50 {
  border-color: rgb(59 130 246 / 0.5);
}
.border-blue-500\/55 {
  border-color: rgb(59 130 246 / 0.55);
}
.border-blue-500\/60 {
  border-color: rgb(59 130 246 / 0.6);
}
.border-blue-500\/65 {
  border-color: rgb(59 130 246 / 0.65);
}
.border-blue-500\/70 {
  border-color: rgb(59 130 246 / 0.7);
}
.border-blue-500\/75 {
  border-color: rgb(59 130 246 / 0.75);
}
.border-blue-500\/80 {
  border-color: rgb(59 130 246 / 0.8);
}
.border-blue-500\/85 {
  border-color: rgb(59 130 246 / 0.85);
}
.border-blue-500\/90 {
  border-color: rgb(59 130 246 / 0.9);
}
.border-blue-500\/95 {
  border-color: rgb(59 130 246 / 0.95);
}
.border-cyan-200 {
  --tw-border-opacity: 1;
  border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
}
.border-fifth-500 {
  --tw-border-opacity: 1;
  border-color: rgb(255 183 199 / var(--tw-border-opacity, 1));
}
.border-fifth-500\/0 {
  border-color: rgb(255 183 199 / 0);
}
.border-fifth-500\/10 {
  border-color: rgb(255 183 199 / 0.1);
}
.border-fifth-500\/100 {
  border-color: rgb(255 183 199 / 1);
}
.border-fifth-500\/15 {
  border-color: rgb(255 183 199 / 0.15);
}
.border-fifth-500\/20 {
  border-color: rgb(255 183 199 / 0.2);
}
.border-fifth-500\/25 {
  border-color: rgb(255 183 199 / 0.25);
}
.border-fifth-500\/30 {
  border-color: rgb(255 183 199 / 0.3);
}
.border-fifth-500\/35 {
  border-color: rgb(255 183 199 / 0.35);
}
.border-fifth-500\/40 {
  border-color: rgb(255 183 199 / 0.4);
}
.border-fifth-500\/45 {
  border-color: rgb(255 183 199 / 0.45);
}
.border-fifth-500\/5 {
  border-color: rgb(255 183 199 / 0.05);
}
.border-fifth-500\/50 {
  border-color: rgb(255 183 199 / 0.5);
}
.border-fifth-500\/55 {
  border-color: rgb(255 183 199 / 0.55);
}
.border-fifth-500\/60 {
  border-color: rgb(255 183 199 / 0.6);
}
.border-fifth-500\/65 {
  border-color: rgb(255 183 199 / 0.65);
}
.border-fifth-500\/70 {
  border-color: rgb(255 183 199 / 0.7);
}
.border-fifth-500\/75 {
  border-color: rgb(255 183 199 / 0.75);
}
.border-fifth-500\/80 {
  border-color: rgb(255 183 199 / 0.8);
}
.border-fifth-500\/85 {
  border-color: rgb(255 183 199 / 0.85);
}
.border-fifth-500\/90 {
  border-color: rgb(255 183 199 / 0.9);
}
.border-fifth-500\/95 {
  border-color: rgb(255 183 199 / 0.95);
}
.border-fourth-500 {
  --tw-border-opacity: 1;
  border-color: rgb(255 194 161 / var(--tw-border-opacity, 1));
}
.border-fourth-500\/0 {
  border-color: rgb(255 194 161 / 0);
}
.border-fourth-500\/10 {
  border-color: rgb(255 194 161 / 0.1);
}
.border-fourth-500\/100 {
  border-color: rgb(255 194 161 / 1);
}
.border-fourth-500\/15 {
  border-color: rgb(255 194 161 / 0.15);
}
.border-fourth-500\/20 {
  border-color: rgb(255 194 161 / 0.2);
}
.border-fourth-500\/25 {
  border-color: rgb(255 194 161 / 0.25);
}
.border-fourth-500\/30 {
  border-color: rgb(255 194 161 / 0.3);
}
.border-fourth-500\/35 {
  border-color: rgb(255 194 161 / 0.35);
}
.border-fourth-500\/40 {
  border-color: rgb(255 194 161 / 0.4);
}
.border-fourth-500\/45 {
  border-color: rgb(255 194 161 / 0.45);
}
.border-fourth-500\/5 {
  border-color: rgb(255 194 161 / 0.05);
}
.border-fourth-500\/50 {
  border-color: rgb(255 194 161 / 0.5);
}
.border-fourth-500\/55 {
  border-color: rgb(255 194 161 / 0.55);
}
.border-fourth-500\/60 {
  border-color: rgb(255 194 161 / 0.6);
}
.border-fourth-500\/65 {
  border-color: rgb(255 194 161 / 0.65);
}
.border-fourth-500\/70 {
  border-color: rgb(255 194 161 / 0.7);
}
.border-fourth-500\/75 {
  border-color: rgb(255 194 161 / 0.75);
}
.border-fourth-500\/80 {
  border-color: rgb(255 194 161 / 0.8);
}
.border-fourth-500\/85 {
  border-color: rgb(255 194 161 / 0.85);
}
.border-fourth-500\/90 {
  border-color: rgb(255 194 161 / 0.9);
}
.border-fourth-500\/95 {
  border-color: rgb(255 194 161 / 0.95);
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-green-300 {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
}
.border-green-400 {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-green-500\/0 {
  border-color: rgb(34 197 94 / 0);
}
.border-green-500\/10 {
  border-color: rgb(34 197 94 / 0.1);
}
.border-green-500\/100 {
  border-color: rgb(34 197 94 / 1);
}
.border-green-500\/15 {
  border-color: rgb(34 197 94 / 0.15);
}
.border-green-500\/20 {
  border-color: rgb(34 197 94 / 0.2);
}
.border-green-500\/25 {
  border-color: rgb(34 197 94 / 0.25);
}
.border-green-500\/30 {
  border-color: rgb(34 197 94 / 0.3);
}
.border-green-500\/35 {
  border-color: rgb(34 197 94 / 0.35);
}
.border-green-500\/40 {
  border-color: rgb(34 197 94 / 0.4);
}
.border-green-500\/45 {
  border-color: rgb(34 197 94 / 0.45);
}
.border-green-500\/5 {
  border-color: rgb(34 197 94 / 0.05);
}
.border-green-500\/50 {
  border-color: rgb(34 197 94 / 0.5);
}
.border-green-500\/55 {
  border-color: rgb(34 197 94 / 0.55);
}
.border-green-500\/60 {
  border-color: rgb(34 197 94 / 0.6);
}
.border-green-500\/65 {
  border-color: rgb(34 197 94 / 0.65);
}
.border-green-500\/70 {
  border-color: rgb(34 197 94 / 0.7);
}
.border-green-500\/75 {
  border-color: rgb(34 197 94 / 0.75);
}
.border-green-500\/80 {
  border-color: rgb(34 197 94 / 0.8);
}
.border-green-500\/85 {
  border-color: rgb(34 197 94 / 0.85);
}
.border-green-500\/90 {
  border-color: rgb(34 197 94 / 0.9);
}
.border-green-500\/95 {
  border-color: rgb(34 197 94 / 0.95);
}
.border-indigo-500 {
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}
.border-indigo-500\/0 {
  border-color: rgb(99 102 241 / 0);
}
.border-indigo-500\/10 {
  border-color: rgb(99 102 241 / 0.1);
}
.border-indigo-500\/100 {
  border-color: rgb(99 102 241 / 1);
}
.border-indigo-500\/15 {
  border-color: rgb(99 102 241 / 0.15);
}
.border-indigo-500\/20 {
  border-color: rgb(99 102 241 / 0.2);
}
.border-indigo-500\/25 {
  border-color: rgb(99 102 241 / 0.25);
}
.border-indigo-500\/30 {
  border-color: rgb(99 102 241 / 0.3);
}
.border-indigo-500\/35 {
  border-color: rgb(99 102 241 / 0.35);
}
.border-indigo-500\/40 {
  border-color: rgb(99 102 241 / 0.4);
}
.border-indigo-500\/45 {
  border-color: rgb(99 102 241 / 0.45);
}
.border-indigo-500\/5 {
  border-color: rgb(99 102 241 / 0.05);
}
.border-indigo-500\/50 {
  border-color: rgb(99 102 241 / 0.5);
}
.border-indigo-500\/55 {
  border-color: rgb(99 102 241 / 0.55);
}
.border-indigo-500\/60 {
  border-color: rgb(99 102 241 / 0.6);
}
.border-indigo-500\/65 {
  border-color: rgb(99 102 241 / 0.65);
}
.border-indigo-500\/70 {
  border-color: rgb(99 102 241 / 0.7);
}
.border-indigo-500\/75 {
  border-color: rgb(99 102 241 / 0.75);
}
.border-indigo-500\/80 {
  border-color: rgb(99 102 241 / 0.8);
}
.border-indigo-500\/85 {
  border-color: rgb(99 102 241 / 0.85);
}
.border-indigo-500\/90 {
  border-color: rgb(99 102 241 / 0.9);
}
.border-indigo-500\/95 {
  border-color: rgb(99 102 241 / 0.95);
}
.border-orange-500 {
  --tw-border-opacity: 1;
  border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.border-orange-500\/0 {
  border-color: rgb(249 115 22 / 0);
}
.border-orange-500\/10 {
  border-color: rgb(249 115 22 / 0.1);
}
.border-orange-500\/100 {
  border-color: rgb(249 115 22 / 1);
}
.border-orange-500\/15 {
  border-color: rgb(249 115 22 / 0.15);
}
.border-orange-500\/20 {
  border-color: rgb(249 115 22 / 0.2);
}
.border-orange-500\/25 {
  border-color: rgb(249 115 22 / 0.25);
}
.border-orange-500\/30 {
  border-color: rgb(249 115 22 / 0.3);
}
.border-orange-500\/35 {
  border-color: rgb(249 115 22 / 0.35);
}
.border-orange-500\/40 {
  border-color: rgb(249 115 22 / 0.4);
}
.border-orange-500\/45 {
  border-color: rgb(249 115 22 / 0.45);
}
.border-orange-500\/5 {
  border-color: rgb(249 115 22 / 0.05);
}
.border-orange-500\/50 {
  border-color: rgb(249 115 22 / 0.5);
}
.border-orange-500\/55 {
  border-color: rgb(249 115 22 / 0.55);
}
.border-orange-500\/60 {
  border-color: rgb(249 115 22 / 0.6);
}
.border-orange-500\/65 {
  border-color: rgb(249 115 22 / 0.65);
}
.border-orange-500\/70 {
  border-color: rgb(249 115 22 / 0.7);
}
.border-orange-500\/75 {
  border-color: rgb(249 115 22 / 0.75);
}
.border-orange-500\/80 {
  border-color: rgb(249 115 22 / 0.8);
}
.border-orange-500\/85 {
  border-color: rgb(249 115 22 / 0.85);
}
.border-orange-500\/90 {
  border-color: rgb(249 115 22 / 0.9);
}
.border-orange-500\/95 {
  border-color: rgb(249 115 22 / 0.95);
}
.border-pink-500 {
  --tw-border-opacity: 1;
  border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
}
.border-pink-500\/0 {
  border-color: rgb(236 72 153 / 0);
}
.border-pink-500\/10 {
  border-color: rgb(236 72 153 / 0.1);
}
.border-pink-500\/100 {
  border-color: rgb(236 72 153 / 1);
}
.border-pink-500\/15 {
  border-color: rgb(236 72 153 / 0.15);
}
.border-pink-500\/20 {
  border-color: rgb(236 72 153 / 0.2);
}
.border-pink-500\/25 {
  border-color: rgb(236 72 153 / 0.25);
}
.border-pink-500\/30 {
  border-color: rgb(236 72 153 / 0.3);
}
.border-pink-500\/35 {
  border-color: rgb(236 72 153 / 0.35);
}
.border-pink-500\/40 {
  border-color: rgb(236 72 153 / 0.4);
}
.border-pink-500\/45 {
  border-color: rgb(236 72 153 / 0.45);
}
.border-pink-500\/5 {
  border-color: rgb(236 72 153 / 0.05);
}
.border-pink-500\/50 {
  border-color: rgb(236 72 153 / 0.5);
}
.border-pink-500\/55 {
  border-color: rgb(236 72 153 / 0.55);
}
.border-pink-500\/60 {
  border-color: rgb(236 72 153 / 0.6);
}
.border-pink-500\/65 {
  border-color: rgb(236 72 153 / 0.65);
}
.border-pink-500\/70 {
  border-color: rgb(236 72 153 / 0.7);
}
.border-pink-500\/75 {
  border-color: rgb(236 72 153 / 0.75);
}
.border-pink-500\/80 {
  border-color: rgb(236 72 153 / 0.8);
}
.border-pink-500\/85 {
  border-color: rgb(236 72 153 / 0.85);
}
.border-pink-500\/90 {
  border-color: rgb(236 72 153 / 0.9);
}
.border-pink-500\/95 {
  border-color: rgb(236 72 153 / 0.95);
}
.border-pippin-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-pippin-500\/0 {
  border-color: rgb(239 68 68 / 0);
}
.border-pippin-500\/10 {
  border-color: rgb(239 68 68 / 0.1);
}
.border-pippin-500\/100 {
  border-color: rgb(239 68 68 / 1);
}
.border-pippin-500\/15 {
  border-color: rgb(239 68 68 / 0.15);
}
.border-pippin-500\/20 {
  border-color: rgb(239 68 68 / 0.2);
}
.border-pippin-500\/25 {
  border-color: rgb(239 68 68 / 0.25);
}
.border-pippin-500\/30 {
  border-color: rgb(239 68 68 / 0.3);
}
.border-pippin-500\/35 {
  border-color: rgb(239 68 68 / 0.35);
}
.border-pippin-500\/40 {
  border-color: rgb(239 68 68 / 0.4);
}
.border-pippin-500\/45 {
  border-color: rgb(239 68 68 / 0.45);
}
.border-pippin-500\/5 {
  border-color: rgb(239 68 68 / 0.05);
}
.border-pippin-500\/50 {
  border-color: rgb(239 68 68 / 0.5);
}
.border-pippin-500\/55 {
  border-color: rgb(239 68 68 / 0.55);
}
.border-pippin-500\/60 {
  border-color: rgb(239 68 68 / 0.6);
}
.border-pippin-500\/65 {
  border-color: rgb(239 68 68 / 0.65);
}
.border-pippin-500\/70 {
  border-color: rgb(239 68 68 / 0.7);
}
.border-pippin-500\/75 {
  border-color: rgb(239 68 68 / 0.75);
}
.border-pippin-500\/80 {
  border-color: rgb(239 68 68 / 0.8);
}
.border-pippin-500\/85 {
  border-color: rgb(239 68 68 / 0.85);
}
.border-pippin-500\/90 {
  border-color: rgb(239 68 68 / 0.9);
}
.border-pippin-500\/95 {
  border-color: rgb(239 68 68 / 0.95);
}
.border-primary-500 {
  --tw-border-opacity: 1;
  border-color: rgb(168 142 231 / var(--tw-border-opacity, 1));
}
.border-primary-500\/0 {
  border-color: rgb(168 142 231 / 0);
}
.border-primary-500\/10 {
  border-color: rgb(168 142 231 / 0.1);
}
.border-primary-500\/100 {
  border-color: rgb(168 142 231 / 1);
}
.border-primary-500\/15 {
  border-color: rgb(168 142 231 / 0.15);
}
.border-primary-500\/20 {
  border-color: rgb(168 142 231 / 0.2);
}
.border-primary-500\/25 {
  border-color: rgb(168 142 231 / 0.25);
}
.border-primary-500\/30 {
  border-color: rgb(168 142 231 / 0.3);
}
.border-primary-500\/35 {
  border-color: rgb(168 142 231 / 0.35);
}
.border-primary-500\/40 {
  border-color: rgb(168 142 231 / 0.4);
}
.border-primary-500\/45 {
  border-color: rgb(168 142 231 / 0.45);
}
.border-primary-500\/5 {
  border-color: rgb(168 142 231 / 0.05);
}
.border-primary-500\/50 {
  border-color: rgb(168 142 231 / 0.5);
}
.border-primary-500\/55 {
  border-color: rgb(168 142 231 / 0.55);
}
.border-primary-500\/60 {
  border-color: rgb(168 142 231 / 0.6);
}
.border-primary-500\/65 {
  border-color: rgb(168 142 231 / 0.65);
}
.border-primary-500\/70 {
  border-color: rgb(168 142 231 / 0.7);
}
.border-primary-500\/75 {
  border-color: rgb(168 142 231 / 0.75);
}
.border-primary-500\/80 {
  border-color: rgb(168 142 231 / 0.8);
}
.border-primary-500\/85 {
  border-color: rgb(168 142 231 / 0.85);
}
.border-primary-500\/90 {
  border-color: rgb(168 142 231 / 0.9);
}
.border-primary-500\/95 {
  border-color: rgb(168 142 231 / 0.95);
}
.border-primary-600 {
  --tw-border-opacity: 1;
  border-color: rgb(138 100 212 / var(--tw-border-opacity, 1));
}
.border-primary-700 {
  --tw-border-opacity: 1;
  border-color: rgb(114 73 183 / var(--tw-border-opacity, 1));
}
.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-500\/0 {
  border-color: rgb(239 68 68 / 0);
}
.border-red-500\/10 {
  border-color: rgb(239 68 68 / 0.1);
}
.border-red-500\/100 {
  border-color: rgb(239 68 68 / 1);
}
.border-red-500\/15 {
  border-color: rgb(239 68 68 / 0.15);
}
.border-red-500\/20 {
  border-color: rgb(239 68 68 / 0.2);
}
.border-red-500\/25 {
  border-color: rgb(239 68 68 / 0.25);
}
.border-red-500\/30 {
  border-color: rgb(239 68 68 / 0.3);
}
.border-red-500\/35 {
  border-color: rgb(239 68 68 / 0.35);
}
.border-red-500\/40 {
  border-color: rgb(239 68 68 / 0.4);
}
.border-red-500\/45 {
  border-color: rgb(239 68 68 / 0.45);
}
.border-red-500\/5 {
  border-color: rgb(239 68 68 / 0.05);
}
.border-red-500\/50 {
  border-color: rgb(239 68 68 / 0.5);
}
.border-red-500\/55 {
  border-color: rgb(239 68 68 / 0.55);
}
.border-red-500\/60 {
  border-color: rgb(239 68 68 / 0.6);
}
.border-red-500\/65 {
  border-color: rgb(239 68 68 / 0.65);
}
.border-red-500\/70 {
  border-color: rgb(239 68 68 / 0.7);
}
.border-red-500\/75 {
  border-color: rgb(239 68 68 / 0.75);
}
.border-red-500\/80 {
  border-color: rgb(239 68 68 / 0.8);
}
.border-red-500\/85 {
  border-color: rgb(239 68 68 / 0.85);
}
.border-red-500\/90 {
  border-color: rgb(239 68 68 / 0.9);
}
.border-red-500\/95 {
  border-color: rgb(239 68 68 / 0.95);
}
.border-second-500 {
  --tw-border-opacity: 1;
  border-color: rgb(251 207 232 / var(--tw-border-opacity, 1));
}
.border-second-500\/0 {
  border-color: rgb(251 207 232 / 0);
}
.border-second-500\/10 {
  border-color: rgb(251 207 232 / 0.1);
}
.border-second-500\/100 {
  border-color: rgb(251 207 232 / 1);
}
.border-second-500\/15 {
  border-color: rgb(251 207 232 / 0.15);
}
.border-second-500\/20 {
  border-color: rgb(251 207 232 / 0.2);
}
.border-second-500\/25 {
  border-color: rgb(251 207 232 / 0.25);
}
.border-second-500\/30 {
  border-color: rgb(251 207 232 / 0.3);
}
.border-second-500\/35 {
  border-color: rgb(251 207 232 / 0.35);
}
.border-second-500\/40 {
  border-color: rgb(251 207 232 / 0.4);
}
.border-second-500\/45 {
  border-color: rgb(251 207 232 / 0.45);
}
.border-second-500\/5 {
  border-color: rgb(251 207 232 / 0.05);
}
.border-second-500\/50 {
  border-color: rgb(251 207 232 / 0.5);
}
.border-second-500\/55 {
  border-color: rgb(251 207 232 / 0.55);
}
.border-second-500\/60 {
  border-color: rgb(251 207 232 / 0.6);
}
.border-second-500\/65 {
  border-color: rgb(251 207 232 / 0.65);
}
.border-second-500\/70 {
  border-color: rgb(251 207 232 / 0.7);
}
.border-second-500\/75 {
  border-color: rgb(251 207 232 / 0.75);
}
.border-second-500\/80 {
  border-color: rgb(251 207 232 / 0.8);
}
.border-second-500\/85 {
  border-color: rgb(251 207 232 / 0.85);
}
.border-second-500\/90 {
  border-color: rgb(251 207 232 / 0.9);
}
.border-second-500\/95 {
  border-color: rgb(251 207 232 / 0.95);
}
.border-second-600 {
  --tw-border-opacity: 1;
  border-color: rgb(247 160 209 / var(--tw-border-opacity, 1));
}
.border-success {
  --tw-border-opacity: 1;
  border-color: rgb(16 185 123 / var(--tw-border-opacity, 1));
}
.border-third-500 {
  --tw-border-opacity: 1;
  border-color: rgb(255 228 128 / var(--tw-border-opacity, 1));
}
.border-third-500\/0 {
  border-color: rgb(255 228 128 / 0);
}
.border-third-500\/10 {
  border-color: rgb(255 228 128 / 0.1);
}
.border-third-500\/100 {
  border-color: rgb(255 228 128 / 1);
}
.border-third-500\/15 {
  border-color: rgb(255 228 128 / 0.15);
}
.border-third-500\/20 {
  border-color: rgb(255 228 128 / 0.2);
}
.border-third-500\/25 {
  border-color: rgb(255 228 128 / 0.25);
}
.border-third-500\/30 {
  border-color: rgb(255 228 128 / 0.3);
}
.border-third-500\/35 {
  border-color: rgb(255 228 128 / 0.35);
}
.border-third-500\/40 {
  border-color: rgb(255 228 128 / 0.4);
}
.border-third-500\/45 {
  border-color: rgb(255 228 128 / 0.45);
}
.border-third-500\/5 {
  border-color: rgb(255 228 128 / 0.05);
}
.border-third-500\/50 {
  border-color: rgb(255 228 128 / 0.5);
}
.border-third-500\/55 {
  border-color: rgb(255 228 128 / 0.55);
}
.border-third-500\/60 {
  border-color: rgb(255 228 128 / 0.6);
}
.border-third-500\/65 {
  border-color: rgb(255 228 128 / 0.65);
}
.border-third-500\/70 {
  border-color: rgb(255 228 128 / 0.7);
}
.border-third-500\/75 {
  border-color: rgb(255 228 128 / 0.75);
}
.border-third-500\/80 {
  border-color: rgb(255 228 128 / 0.8);
}
.border-third-500\/85 {
  border-color: rgb(255 228 128 / 0.85);
}
.border-third-500\/90 {
  border-color: rgb(255 228 128 / 0.9);
}
.border-third-500\/95 {
  border-color: rgb(255 228 128 / 0.95);
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-yellow-500 {
  --tw-border-opacity: 1;
  border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
}
.border-yellow-500\/0 {
  border-color: rgb(234 179 8 / 0);
}
.border-yellow-500\/10 {
  border-color: rgb(234 179 8 / 0.1);
}
.border-yellow-500\/100 {
  border-color: rgb(234 179 8 / 1);
}
.border-yellow-500\/15 {
  border-color: rgb(234 179 8 / 0.15);
}
.border-yellow-500\/20 {
  border-color: rgb(234 179 8 / 0.2);
}
.border-yellow-500\/25 {
  border-color: rgb(234 179 8 / 0.25);
}
.border-yellow-500\/30 {
  border-color: rgb(234 179 8 / 0.3);
}
.border-yellow-500\/35 {
  border-color: rgb(234 179 8 / 0.35);
}
.border-yellow-500\/40 {
  border-color: rgb(234 179 8 / 0.4);
}
.border-yellow-500\/45 {
  border-color: rgb(234 179 8 / 0.45);
}
.border-yellow-500\/5 {
  border-color: rgb(234 179 8 / 0.05);
}
.border-yellow-500\/50 {
  border-color: rgb(234 179 8 / 0.5);
}
.border-yellow-500\/55 {
  border-color: rgb(234 179 8 / 0.55);
}
.border-yellow-500\/60 {
  border-color: rgb(234 179 8 / 0.6);
}
.border-yellow-500\/65 {
  border-color: rgb(234 179 8 / 0.65);
}
.border-yellow-500\/70 {
  border-color: rgb(234 179 8 / 0.7);
}
.border-yellow-500\/75 {
  border-color: rgb(234 179 8 / 0.75);
}
.border-yellow-500\/80 {
  border-color: rgb(234 179 8 / 0.8);
}
.border-yellow-500\/85 {
  border-color: rgb(234 179 8 / 0.85);
}
.border-yellow-500\/90 {
  border-color: rgb(234 179 8 / 0.9);
}
.border-yellow-500\/95 {
  border-color: rgb(234 179 8 / 0.95);
}
.\!bg-\[\#10B97B\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(16 185 123 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-\[\#F14242\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(241 66 66 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-gray-200 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-primary-600 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(138 100 212 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-red-600 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-transparent {
  background-color: transparent !important;
}
.\!bg-white {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
}
.bg-\[\#10B97B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 123 / var(--tw-bg-opacity, 1));
}
.bg-\[\#477FEA\] {
  --tw-bg-opacity: 1;
  background-color: rgb(71 127 234 / var(--tw-bg-opacity, 1));
}
.bg-\[\#477fea\] {
  --tw-bg-opacity: 1;
  background-color: rgb(71 127 234 / var(--tw-bg-opacity, 1));
}
.bg-\[\#CCB8DB\] {
  --tw-bg-opacity: 1;
  background-color: rgb(204 184 219 / var(--tw-bg-opacity, 1));
}
.bg-\[\#EF8411\] {
  --tw-bg-opacity: 1;
  background-color: rgb(239 132 17 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F6F8FF\] {
  --tw-bg-opacity: 1;
  background-color: rgb(246 248 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F7B943\] {
  --tw-bg-opacity: 1;
  background-color: rgb(247 185 67 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FAFAFA\] {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FBFBFB\] {
  --tw-bg-opacity: 1;
  background-color: rgb(251 251 251 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FEE9D4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(254 233 212 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f9f9f9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249 / var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-100\/0 {
  background-color: rgb(219 234 254 / 0);
}
.bg-blue-100\/10 {
  background-color: rgb(219 234 254 / 0.1);
}
.bg-blue-100\/100 {
  background-color: rgb(219 234 254 / 1);
}
.bg-blue-100\/15 {
  background-color: rgb(219 234 254 / 0.15);
}
.bg-blue-100\/20 {
  background-color: rgb(219 234 254 / 0.2);
}
.bg-blue-100\/25 {
  background-color: rgb(219 234 254 / 0.25);
}
.bg-blue-100\/30 {
  background-color: rgb(219 234 254 / 0.3);
}
.bg-blue-100\/35 {
  background-color: rgb(219 234 254 / 0.35);
}
.bg-blue-100\/40 {
  background-color: rgb(219 234 254 / 0.4);
}
.bg-blue-100\/45 {
  background-color: rgb(219 234 254 / 0.45);
}
.bg-blue-100\/5 {
  background-color: rgb(219 234 254 / 0.05);
}
.bg-blue-100\/50 {
  background-color: rgb(219 234 254 / 0.5);
}
.bg-blue-100\/55 {
  background-color: rgb(219 234 254 / 0.55);
}
.bg-blue-100\/60 {
  background-color: rgb(219 234 254 / 0.6);
}
.bg-blue-100\/65 {
  background-color: rgb(219 234 254 / 0.65);
}
.bg-blue-100\/70 {
  background-color: rgb(219 234 254 / 0.7);
}
.bg-blue-100\/75 {
  background-color: rgb(219 234 254 / 0.75);
}
.bg-blue-100\/80 {
  background-color: rgb(219 234 254 / 0.8);
}
.bg-blue-100\/85 {
  background-color: rgb(219 234 254 / 0.85);
}
.bg-blue-100\/90 {
  background-color: rgb(219 234 254 / 0.9);
}
.bg-blue-100\/95 {
  background-color: rgb(219 234 254 / 0.95);
}
.bg-blue-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.bg-blue-400\/0 {
  background-color: rgb(96 165 250 / 0);
}
.bg-blue-400\/10 {
  background-color: rgb(96 165 250 / 0.1);
}
.bg-blue-400\/100 {
  background-color: rgb(96 165 250 / 1);
}
.bg-blue-400\/15 {
  background-color: rgb(96 165 250 / 0.15);
}
.bg-blue-400\/20 {
  background-color: rgb(96 165 250 / 0.2);
}
.bg-blue-400\/25 {
  background-color: rgb(96 165 250 / 0.25);
}
.bg-blue-400\/30 {
  background-color: rgb(96 165 250 / 0.3);
}
.bg-blue-400\/35 {
  background-color: rgb(96 165 250 / 0.35);
}
.bg-blue-400\/40 {
  background-color: rgb(96 165 250 / 0.4);
}
.bg-blue-400\/45 {
  background-color: rgb(96 165 250 / 0.45);
}
.bg-blue-400\/5 {
  background-color: rgb(96 165 250 / 0.05);
}
.bg-blue-400\/50 {
  background-color: rgb(96 165 250 / 0.5);
}
.bg-blue-400\/55 {
  background-color: rgb(96 165 250 / 0.55);
}
.bg-blue-400\/60 {
  background-color: rgb(96 165 250 / 0.6);
}
.bg-blue-400\/65 {
  background-color: rgb(96 165 250 / 0.65);
}
.bg-blue-400\/70 {
  background-color: rgb(96 165 250 / 0.7);
}
.bg-blue-400\/75 {
  background-color: rgb(96 165 250 / 0.75);
}
.bg-blue-400\/80 {
  background-color: rgb(96 165 250 / 0.8);
}
.bg-blue-400\/85 {
  background-color: rgb(96 165 250 / 0.85);
}
.bg-blue-400\/90 {
  background-color: rgb(96 165 250 / 0.9);
}
.bg-blue-400\/95 {
  background-color: rgb(96 165 250 / 0.95);
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-500\/0 {
  background-color: rgb(59 130 246 / 0);
}
.bg-blue-500\/10 {
  background-color: rgb(59 130 246 / 0.1);
}
.bg-blue-500\/100 {
  background-color: rgb(59 130 246 / 1);
}
.bg-blue-500\/15 {
  background-color: rgb(59 130 246 / 0.15);
}
.bg-blue-500\/20 {
  background-color: rgb(59 130 246 / 0.2);
}
.bg-blue-500\/25 {
  background-color: rgb(59 130 246 / 0.25);
}
.bg-blue-500\/30 {
  background-color: rgb(59 130 246 / 0.3);
}
.bg-blue-500\/35 {
  background-color: rgb(59 130 246 / 0.35);
}
.bg-blue-500\/40 {
  background-color: rgb(59 130 246 / 0.4);
}
.bg-blue-500\/45 {
  background-color: rgb(59 130 246 / 0.45);
}
.bg-blue-500\/5 {
  background-color: rgb(59 130 246 / 0.05);
}
.bg-blue-500\/50 {
  background-color: rgb(59 130 246 / 0.5);
}
.bg-blue-500\/55 {
  background-color: rgb(59 130 246 / 0.55);
}
.bg-blue-500\/60 {
  background-color: rgb(59 130 246 / 0.6);
}
.bg-blue-500\/65 {
  background-color: rgb(59 130 246 / 0.65);
}
.bg-blue-500\/70 {
  background-color: rgb(59 130 246 / 0.7);
}
.bg-blue-500\/75 {
  background-color: rgb(59 130 246 / 0.75);
}
.bg-blue-500\/80 {
  background-color: rgb(59 130 246 / 0.8);
}
.bg-blue-500\/85 {
  background-color: rgb(59 130 246 / 0.85);
}
.bg-blue-500\/90 {
  background-color: rgb(59 130 246 / 0.9);
}
.bg-blue-500\/95 {
  background-color: rgb(59 130 246 / 0.95);
}
.bg-blue-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
}
.bg-facebook {
  --tw-bg-opacity: 1;
  background-color: rgb(66 103 178 / var(--tw-bg-opacity, 1));
}
.bg-fifth-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 183 199 / var(--tw-bg-opacity, 1));
}
.bg-fifth-500\/0 {
  background-color: rgb(255 183 199 / 0);
}
.bg-fifth-500\/10 {
  background-color: rgb(255 183 199 / 0.1);
}
.bg-fifth-500\/100 {
  background-color: rgb(255 183 199 / 1);
}
.bg-fifth-500\/15 {
  background-color: rgb(255 183 199 / 0.15);
}
.bg-fifth-500\/20 {
  background-color: rgb(255 183 199 / 0.2);
}
.bg-fifth-500\/25 {
  background-color: rgb(255 183 199 / 0.25);
}
.bg-fifth-500\/30 {
  background-color: rgb(255 183 199 / 0.3);
}
.bg-fifth-500\/35 {
  background-color: rgb(255 183 199 / 0.35);
}
.bg-fifth-500\/40 {
  background-color: rgb(255 183 199 / 0.4);
}
.bg-fifth-500\/45 {
  background-color: rgb(255 183 199 / 0.45);
}
.bg-fifth-500\/5 {
  background-color: rgb(255 183 199 / 0.05);
}
.bg-fifth-500\/50 {
  background-color: rgb(255 183 199 / 0.5);
}
.bg-fifth-500\/55 {
  background-color: rgb(255 183 199 / 0.55);
}
.bg-fifth-500\/60 {
  background-color: rgb(255 183 199 / 0.6);
}
.bg-fifth-500\/65 {
  background-color: rgb(255 183 199 / 0.65);
}
.bg-fifth-500\/70 {
  background-color: rgb(255 183 199 / 0.7);
}
.bg-fifth-500\/75 {
  background-color: rgb(255 183 199 / 0.75);
}
.bg-fifth-500\/80 {
  background-color: rgb(255 183 199 / 0.8);
}
.bg-fifth-500\/85 {
  background-color: rgb(255 183 199 / 0.85);
}
.bg-fifth-500\/90 {
  background-color: rgb(255 183 199 / 0.9);
}
.bg-fifth-500\/95 {
  background-color: rgb(255 183 199 / 0.95);
}
.bg-fourth-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 194 161 / var(--tw-bg-opacity, 1));
}
.bg-fourth-500\/0 {
  background-color: rgb(255 194 161 / 0);
}
.bg-fourth-500\/10 {
  background-color: rgb(255 194 161 / 0.1);
}
.bg-fourth-500\/100 {
  background-color: rgb(255 194 161 / 1);
}
.bg-fourth-500\/15 {
  background-color: rgb(255 194 161 / 0.15);
}
.bg-fourth-500\/20 {
  background-color: rgb(255 194 161 / 0.2);
}
.bg-fourth-500\/25 {
  background-color: rgb(255 194 161 / 0.25);
}
.bg-fourth-500\/30 {
  background-color: rgb(255 194 161 / 0.3);
}
.bg-fourth-500\/35 {
  background-color: rgb(255 194 161 / 0.35);
}
.bg-fourth-500\/40 {
  background-color: rgb(255 194 161 / 0.4);
}
.bg-fourth-500\/45 {
  background-color: rgb(255 194 161 / 0.45);
}
.bg-fourth-500\/5 {
  background-color: rgb(255 194 161 / 0.05);
}
.bg-fourth-500\/50 {
  background-color: rgb(255 194 161 / 0.5);
}
.bg-fourth-500\/55 {
  background-color: rgb(255 194 161 / 0.55);
}
.bg-fourth-500\/60 {
  background-color: rgb(255 194 161 / 0.6);
}
.bg-fourth-500\/65 {
  background-color: rgb(255 194 161 / 0.65);
}
.bg-fourth-500\/70 {
  background-color: rgb(255 194 161 / 0.7);
}
.bg-fourth-500\/75 {
  background-color: rgb(255 194 161 / 0.75);
}
.bg-fourth-500\/80 {
  background-color: rgb(255 194 161 / 0.8);
}
.bg-fourth-500\/85 {
  background-color: rgb(255 194 161 / 0.85);
}
.bg-fourth-500\/90 {
  background-color: rgb(255 194 161 / 0.9);
}
.bg-fourth-500\/95 {
  background-color: rgb(255 194 161 / 0.95);
}
.bg-google-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(221 75 57 / var(--tw-bg-opacity, 1));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.bg-gray-600\/0 {
  background-color: rgb(75 85 99 / 0);
}
.bg-gray-600\/10 {
  background-color: rgb(75 85 99 / 0.1);
}
.bg-gray-600\/100 {
  background-color: rgb(75 85 99 / 1);
}
.bg-gray-600\/15 {
  background-color: rgb(75 85 99 / 0.15);
}
.bg-gray-600\/20 {
  background-color: rgb(75 85 99 / 0.2);
}
.bg-gray-600\/25 {
  background-color: rgb(75 85 99 / 0.25);
}
.bg-gray-600\/30 {
  background-color: rgb(75 85 99 / 0.3);
}
.bg-gray-600\/35 {
  background-color: rgb(75 85 99 / 0.35);
}
.bg-gray-600\/40 {
  background-color: rgb(75 85 99 / 0.4);
}
.bg-gray-600\/45 {
  background-color: rgb(75 85 99 / 0.45);
}
.bg-gray-600\/5 {
  background-color: rgb(75 85 99 / 0.05);
}
.bg-gray-600\/50 {
  background-color: rgb(75 85 99 / 0.5);
}
.bg-gray-600\/55 {
  background-color: rgb(75 85 99 / 0.55);
}
.bg-gray-600\/60 {
  background-color: rgb(75 85 99 / 0.6);
}
.bg-gray-600\/65 {
  background-color: rgb(75 85 99 / 0.65);
}
.bg-gray-600\/70 {
  background-color: rgb(75 85 99 / 0.7);
}
.bg-gray-600\/75 {
  background-color: rgb(75 85 99 / 0.75);
}
.bg-gray-600\/80 {
  background-color: rgb(75 85 99 / 0.8);
}
.bg-gray-600\/85 {
  background-color: rgb(75 85 99 / 0.85);
}
.bg-gray-600\/90 {
  background-color: rgb(75 85 99 / 0.9);
}
.bg-gray-600\/95 {
  background-color: rgb(75 85 99 / 0.95);
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-100\/0 {
  background-color: rgb(220 252 231 / 0);
}
.bg-green-100\/10 {
  background-color: rgb(220 252 231 / 0.1);
}
.bg-green-100\/100 {
  background-color: rgb(220 252 231 / 1);
}
.bg-green-100\/15 {
  background-color: rgb(220 252 231 / 0.15);
}
.bg-green-100\/20 {
  background-color: rgb(220 252 231 / 0.2);
}
.bg-green-100\/25 {
  background-color: rgb(220 252 231 / 0.25);
}
.bg-green-100\/30 {
  background-color: rgb(220 252 231 / 0.3);
}
.bg-green-100\/35 {
  background-color: rgb(220 252 231 / 0.35);
}
.bg-green-100\/40 {
  background-color: rgb(220 252 231 / 0.4);
}
.bg-green-100\/45 {
  background-color: rgb(220 252 231 / 0.45);
}
.bg-green-100\/5 {
  background-color: rgb(220 252 231 / 0.05);
}
.bg-green-100\/50 {
  background-color: rgb(220 252 231 / 0.5);
}
.bg-green-100\/55 {
  background-color: rgb(220 252 231 / 0.55);
}
.bg-green-100\/60 {
  background-color: rgb(220 252 231 / 0.6);
}
.bg-green-100\/65 {
  background-color: rgb(220 252 231 / 0.65);
}
.bg-green-100\/70 {
  background-color: rgb(220 252 231 / 0.7);
}
.bg-green-100\/75 {
  background-color: rgb(220 252 231 / 0.75);
}
.bg-green-100\/80 {
  background-color: rgb(220 252 231 / 0.8);
}
.bg-green-100\/85 {
  background-color: rgb(220 252 231 / 0.85);
}
.bg-green-100\/90 {
  background-color: rgb(220 252 231 / 0.9);
}
.bg-green-100\/95 {
  background-color: rgb(220 252 231 / 0.95);
}
.bg-green-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}
.bg-green-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.bg-green-400\/0 {
  background-color: rgb(74 222 128 / 0);
}
.bg-green-400\/10 {
  background-color: rgb(74 222 128 / 0.1);
}
.bg-green-400\/100 {
  background-color: rgb(74 222 128 / 1);
}
.bg-green-400\/15 {
  background-color: rgb(74 222 128 / 0.15);
}
.bg-green-400\/20 {
  background-color: rgb(74 222 128 / 0.2);
}
.bg-green-400\/25 {
  background-color: rgb(74 222 128 / 0.25);
}
.bg-green-400\/30 {
  background-color: rgb(74 222 128 / 0.3);
}
.bg-green-400\/35 {
  background-color: rgb(74 222 128 / 0.35);
}
.bg-green-400\/40 {
  background-color: rgb(74 222 128 / 0.4);
}
.bg-green-400\/45 {
  background-color: rgb(74 222 128 / 0.45);
}
.bg-green-400\/5 {
  background-color: rgb(74 222 128 / 0.05);
}
.bg-green-400\/50 {
  background-color: rgb(74 222 128 / 0.5);
}
.bg-green-400\/55 {
  background-color: rgb(74 222 128 / 0.55);
}
.bg-green-400\/60 {
  background-color: rgb(74 222 128 / 0.6);
}
.bg-green-400\/65 {
  background-color: rgb(74 222 128 / 0.65);
}
.bg-green-400\/70 {
  background-color: rgb(74 222 128 / 0.7);
}
.bg-green-400\/75 {
  background-color: rgb(74 222 128 / 0.75);
}
.bg-green-400\/80 {
  background-color: rgb(74 222 128 / 0.8);
}
.bg-green-400\/85 {
  background-color: rgb(74 222 128 / 0.85);
}
.bg-green-400\/90 {
  background-color: rgb(74 222 128 / 0.9);
}
.bg-green-400\/95 {
  background-color: rgb(74 222 128 / 0.95);
}
.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-green-500\/0 {
  background-color: rgb(34 197 94 / 0);
}
.bg-green-500\/10 {
  background-color: rgb(34 197 94 / 0.1);
}
.bg-green-500\/100 {
  background-color: rgb(34 197 94 / 1);
}
.bg-green-500\/15 {
  background-color: rgb(34 197 94 / 0.15);
}
.bg-green-500\/20 {
  background-color: rgb(34 197 94 / 0.2);
}
.bg-green-500\/25 {
  background-color: rgb(34 197 94 / 0.25);
}
.bg-green-500\/30 {
  background-color: rgb(34 197 94 / 0.3);
}
.bg-green-500\/35 {
  background-color: rgb(34 197 94 / 0.35);
}
.bg-green-500\/40 {
  background-color: rgb(34 197 94 / 0.4);
}
.bg-green-500\/45 {
  background-color: rgb(34 197 94 / 0.45);
}
.bg-green-500\/5 {
  background-color: rgb(34 197 94 / 0.05);
}
.bg-green-500\/50 {
  background-color: rgb(34 197 94 / 0.5);
}
.bg-green-500\/55 {
  background-color: rgb(34 197 94 / 0.55);
}
.bg-green-500\/60 {
  background-color: rgb(34 197 94 / 0.6);
}
.bg-green-500\/65 {
  background-color: rgb(34 197 94 / 0.65);
}
.bg-green-500\/70 {
  background-color: rgb(34 197 94 / 0.7);
}
.bg-green-500\/75 {
  background-color: rgb(34 197 94 / 0.75);
}
.bg-green-500\/80 {
  background-color: rgb(34 197 94 / 0.8);
}
.bg-green-500\/85 {
  background-color: rgb(34 197 94 / 0.85);
}
.bg-green-500\/90 {
  background-color: rgb(34 197 94 / 0.9);
}
.bg-green-500\/95 {
  background-color: rgb(34 197 94 / 0.95);
}
.bg-green-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(20 83 45 / var(--tw-bg-opacity, 1));
}
.bg-indigo-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.bg-indigo-100\/0 {
  background-color: rgb(224 231 255 / 0);
}
.bg-indigo-100\/10 {
  background-color: rgb(224 231 255 / 0.1);
}
.bg-indigo-100\/100 {
  background-color: rgb(224 231 255 / 1);
}
.bg-indigo-100\/15 {
  background-color: rgb(224 231 255 / 0.15);
}
.bg-indigo-100\/20 {
  background-color: rgb(224 231 255 / 0.2);
}
.bg-indigo-100\/25 {
  background-color: rgb(224 231 255 / 0.25);
}
.bg-indigo-100\/30 {
  background-color: rgb(224 231 255 / 0.3);
}
.bg-indigo-100\/35 {
  background-color: rgb(224 231 255 / 0.35);
}
.bg-indigo-100\/40 {
  background-color: rgb(224 231 255 / 0.4);
}
.bg-indigo-100\/45 {
  background-color: rgb(224 231 255 / 0.45);
}
.bg-indigo-100\/5 {
  background-color: rgb(224 231 255 / 0.05);
}
.bg-indigo-100\/50 {
  background-color: rgb(224 231 255 / 0.5);
}
.bg-indigo-100\/55 {
  background-color: rgb(224 231 255 / 0.55);
}
.bg-indigo-100\/60 {
  background-color: rgb(224 231 255 / 0.6);
}
.bg-indigo-100\/65 {
  background-color: rgb(224 231 255 / 0.65);
}
.bg-indigo-100\/70 {
  background-color: rgb(224 231 255 / 0.7);
}
.bg-indigo-100\/75 {
  background-color: rgb(224 231 255 / 0.75);
}
.bg-indigo-100\/80 {
  background-color: rgb(224 231 255 / 0.8);
}
.bg-indigo-100\/85 {
  background-color: rgb(224 231 255 / 0.85);
}
.bg-indigo-100\/90 {
  background-color: rgb(224 231 255 / 0.9);
}
.bg-indigo-100\/95 {
  background-color: rgb(224 231 255 / 0.95);
}
.bg-indigo-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
}
.bg-indigo-400\/0 {
  background-color: rgb(129 140 248 / 0);
}
.bg-indigo-400\/10 {
  background-color: rgb(129 140 248 / 0.1);
}
.bg-indigo-400\/100 {
  background-color: rgb(129 140 248 / 1);
}
.bg-indigo-400\/15 {
  background-color: rgb(129 140 248 / 0.15);
}
.bg-indigo-400\/20 {
  background-color: rgb(129 140 248 / 0.2);
}
.bg-indigo-400\/25 {
  background-color: rgb(129 140 248 / 0.25);
}
.bg-indigo-400\/30 {
  background-color: rgb(129 140 248 / 0.3);
}
.bg-indigo-400\/35 {
  background-color: rgb(129 140 248 / 0.35);
}
.bg-indigo-400\/40 {
  background-color: rgb(129 140 248 / 0.4);
}
.bg-indigo-400\/45 {
  background-color: rgb(129 140 248 / 0.45);
}
.bg-indigo-400\/5 {
  background-color: rgb(129 140 248 / 0.05);
}
.bg-indigo-400\/50 {
  background-color: rgb(129 140 248 / 0.5);
}
.bg-indigo-400\/55 {
  background-color: rgb(129 140 248 / 0.55);
}
.bg-indigo-400\/60 {
  background-color: rgb(129 140 248 / 0.6);
}
.bg-indigo-400\/65 {
  background-color: rgb(129 140 248 / 0.65);
}
.bg-indigo-400\/70 {
  background-color: rgb(129 140 248 / 0.7);
}
.bg-indigo-400\/75 {
  background-color: rgb(129 140 248 / 0.75);
}
.bg-indigo-400\/80 {
  background-color: rgb(129 140 248 / 0.8);
}
.bg-indigo-400\/85 {
  background-color: rgb(129 140 248 / 0.85);
}
.bg-indigo-400\/90 {
  background-color: rgb(129 140 248 / 0.9);
}
.bg-indigo-400\/95 {
  background-color: rgb(129 140 248 / 0.95);
}
.bg-indigo-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
}
.bg-indigo-500\/0 {
  background-color: rgb(99 102 241 / 0);
}
.bg-indigo-500\/10 {
  background-color: rgb(99 102 241 / 0.1);
}
.bg-indigo-500\/100 {
  background-color: rgb(99 102 241 / 1);
}
.bg-indigo-500\/15 {
  background-color: rgb(99 102 241 / 0.15);
}
.bg-indigo-500\/20 {
  background-color: rgb(99 102 241 / 0.2);
}
.bg-indigo-500\/25 {
  background-color: rgb(99 102 241 / 0.25);
}
.bg-indigo-500\/30 {
  background-color: rgb(99 102 241 / 0.3);
}
.bg-indigo-500\/35 {
  background-color: rgb(99 102 241 / 0.35);
}
.bg-indigo-500\/40 {
  background-color: rgb(99 102 241 / 0.4);
}
.bg-indigo-500\/45 {
  background-color: rgb(99 102 241 / 0.45);
}
.bg-indigo-500\/5 {
  background-color: rgb(99 102 241 / 0.05);
}
.bg-indigo-500\/50 {
  background-color: rgb(99 102 241 / 0.5);
}
.bg-indigo-500\/55 {
  background-color: rgb(99 102 241 / 0.55);
}
.bg-indigo-500\/60 {
  background-color: rgb(99 102 241 / 0.6);
}
.bg-indigo-500\/65 {
  background-color: rgb(99 102 241 / 0.65);
}
.bg-indigo-500\/70 {
  background-color: rgb(99 102 241 / 0.7);
}
.bg-indigo-500\/75 {
  background-color: rgb(99 102 241 / 0.75);
}
.bg-indigo-500\/80 {
  background-color: rgb(99 102 241 / 0.8);
}
.bg-indigo-500\/85 {
  background-color: rgb(99 102 241 / 0.85);
}
.bg-indigo-500\/90 {
  background-color: rgb(99 102 241 / 0.9);
}
.bg-indigo-500\/95 {
  background-color: rgb(99 102 241 / 0.95);
}
.bg-indigo-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}
.bg-orange-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.bg-orange-100\/0 {
  background-color: rgb(255 237 213 / 0);
}
.bg-orange-100\/10 {
  background-color: rgb(255 237 213 / 0.1);
}
.bg-orange-100\/100 {
  background-color: rgb(255 237 213 / 1);
}
.bg-orange-100\/15 {
  background-color: rgb(255 237 213 / 0.15);
}
.bg-orange-100\/20 {
  background-color: rgb(255 237 213 / 0.2);
}
.bg-orange-100\/25 {
  background-color: rgb(255 237 213 / 0.25);
}
.bg-orange-100\/30 {
  background-color: rgb(255 237 213 / 0.3);
}
.bg-orange-100\/35 {
  background-color: rgb(255 237 213 / 0.35);
}
.bg-orange-100\/40 {
  background-color: rgb(255 237 213 / 0.4);
}
.bg-orange-100\/45 {
  background-color: rgb(255 237 213 / 0.45);
}
.bg-orange-100\/5 {
  background-color: rgb(255 237 213 / 0.05);
}
.bg-orange-100\/50 {
  background-color: rgb(255 237 213 / 0.5);
}
.bg-orange-100\/55 {
  background-color: rgb(255 237 213 / 0.55);
}
.bg-orange-100\/60 {
  background-color: rgb(255 237 213 / 0.6);
}
.bg-orange-100\/65 {
  background-color: rgb(255 237 213 / 0.65);
}
.bg-orange-100\/70 {
  background-color: rgb(255 237 213 / 0.7);
}
.bg-orange-100\/75 {
  background-color: rgb(255 237 213 / 0.75);
}
.bg-orange-100\/80 {
  background-color: rgb(255 237 213 / 0.8);
}
.bg-orange-100\/85 {
  background-color: rgb(255 237 213 / 0.85);
}
.bg-orange-100\/90 {
  background-color: rgb(255 237 213 / 0.9);
}
.bg-orange-100\/95 {
  background-color: rgb(255 237 213 / 0.95);
}
.bg-orange-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.bg-orange-400\/0 {
  background-color: rgb(251 146 60 / 0);
}
.bg-orange-400\/10 {
  background-color: rgb(251 146 60 / 0.1);
}
.bg-orange-400\/100 {
  background-color: rgb(251 146 60 / 1);
}
.bg-orange-400\/15 {
  background-color: rgb(251 146 60 / 0.15);
}
.bg-orange-400\/20 {
  background-color: rgb(251 146 60 / 0.2);
}
.bg-orange-400\/25 {
  background-color: rgb(251 146 60 / 0.25);
}
.bg-orange-400\/30 {
  background-color: rgb(251 146 60 / 0.3);
}
.bg-orange-400\/35 {
  background-color: rgb(251 146 60 / 0.35);
}
.bg-orange-400\/40 {
  background-color: rgb(251 146 60 / 0.4);
}
.bg-orange-400\/45 {
  background-color: rgb(251 146 60 / 0.45);
}
.bg-orange-400\/5 {
  background-color: rgb(251 146 60 / 0.05);
}
.bg-orange-400\/50 {
  background-color: rgb(251 146 60 / 0.5);
}
.bg-orange-400\/55 {
  background-color: rgb(251 146 60 / 0.55);
}
.bg-orange-400\/60 {
  background-color: rgb(251 146 60 / 0.6);
}
.bg-orange-400\/65 {
  background-color: rgb(251 146 60 / 0.65);
}
.bg-orange-400\/70 {
  background-color: rgb(251 146 60 / 0.7);
}
.bg-orange-400\/75 {
  background-color: rgb(251 146 60 / 0.75);
}
.bg-orange-400\/80 {
  background-color: rgb(251 146 60 / 0.8);
}
.bg-orange-400\/85 {
  background-color: rgb(251 146 60 / 0.85);
}
.bg-orange-400\/90 {
  background-color: rgb(251 146 60 / 0.9);
}
.bg-orange-400\/95 {
  background-color: rgb(251 146 60 / 0.95);
}
.bg-orange-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.bg-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.bg-orange-500\/0 {
  background-color: rgb(249 115 22 / 0);
}
.bg-orange-500\/10 {
  background-color: rgb(249 115 22 / 0.1);
}
.bg-orange-500\/100 {
  background-color: rgb(249 115 22 / 1);
}
.bg-orange-500\/15 {
  background-color: rgb(249 115 22 / 0.15);
}
.bg-orange-500\/20 {
  background-color: rgb(249 115 22 / 0.2);
}
.bg-orange-500\/25 {
  background-color: rgb(249 115 22 / 0.25);
}
.bg-orange-500\/30 {
  background-color: rgb(249 115 22 / 0.3);
}
.bg-orange-500\/35 {
  background-color: rgb(249 115 22 / 0.35);
}
.bg-orange-500\/40 {
  background-color: rgb(249 115 22 / 0.4);
}
.bg-orange-500\/45 {
  background-color: rgb(249 115 22 / 0.45);
}
.bg-orange-500\/5 {
  background-color: rgb(249 115 22 / 0.05);
}
.bg-orange-500\/50 {
  background-color: rgb(249 115 22 / 0.5);
}
.bg-orange-500\/55 {
  background-color: rgb(249 115 22 / 0.55);
}
.bg-orange-500\/60 {
  background-color: rgb(249 115 22 / 0.6);
}
.bg-orange-500\/65 {
  background-color: rgb(249 115 22 / 0.65);
}
.bg-orange-500\/70 {
  background-color: rgb(249 115 22 / 0.7);
}
.bg-orange-500\/75 {
  background-color: rgb(249 115 22 / 0.75);
}
.bg-orange-500\/80 {
  background-color: rgb(249 115 22 / 0.8);
}
.bg-orange-500\/85 {
  background-color: rgb(249 115 22 / 0.85);
}
.bg-orange-500\/90 {
  background-color: rgb(249 115 22 / 0.9);
}
.bg-orange-500\/95 {
  background-color: rgb(249 115 22 / 0.95);
}
.bg-pink-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
}
.bg-pink-100\/0 {
  background-color: rgb(252 231 243 / 0);
}
.bg-pink-100\/10 {
  background-color: rgb(252 231 243 / 0.1);
}
.bg-pink-100\/100 {
  background-color: rgb(252 231 243 / 1);
}
.bg-pink-100\/15 {
  background-color: rgb(252 231 243 / 0.15);
}
.bg-pink-100\/20 {
  background-color: rgb(252 231 243 / 0.2);
}
.bg-pink-100\/25 {
  background-color: rgb(252 231 243 / 0.25);
}
.bg-pink-100\/30 {
  background-color: rgb(252 231 243 / 0.3);
}
.bg-pink-100\/35 {
  background-color: rgb(252 231 243 / 0.35);
}
.bg-pink-100\/40 {
  background-color: rgb(252 231 243 / 0.4);
}
.bg-pink-100\/45 {
  background-color: rgb(252 231 243 / 0.45);
}
.bg-pink-100\/5 {
  background-color: rgb(252 231 243 / 0.05);
}
.bg-pink-100\/50 {
  background-color: rgb(252 231 243 / 0.5);
}
.bg-pink-100\/55 {
  background-color: rgb(252 231 243 / 0.55);
}
.bg-pink-100\/60 {
  background-color: rgb(252 231 243 / 0.6);
}
.bg-pink-100\/65 {
  background-color: rgb(252 231 243 / 0.65);
}
.bg-pink-100\/70 {
  background-color: rgb(252 231 243 / 0.7);
}
.bg-pink-100\/75 {
  background-color: rgb(252 231 243 / 0.75);
}
.bg-pink-100\/80 {
  background-color: rgb(252 231 243 / 0.8);
}
.bg-pink-100\/85 {
  background-color: rgb(252 231 243 / 0.85);
}
.bg-pink-100\/90 {
  background-color: rgb(252 231 243 / 0.9);
}
.bg-pink-100\/95 {
  background-color: rgb(252 231 243 / 0.95);
}
.bg-pink-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
}
.bg-pink-400\/0 {
  background-color: rgb(244 114 182 / 0);
}
.bg-pink-400\/10 {
  background-color: rgb(244 114 182 / 0.1);
}
.bg-pink-400\/100 {
  background-color: rgb(244 114 182 / 1);
}
.bg-pink-400\/15 {
  background-color: rgb(244 114 182 / 0.15);
}
.bg-pink-400\/20 {
  background-color: rgb(244 114 182 / 0.2);
}
.bg-pink-400\/25 {
  background-color: rgb(244 114 182 / 0.25);
}
.bg-pink-400\/30 {
  background-color: rgb(244 114 182 / 0.3);
}
.bg-pink-400\/35 {
  background-color: rgb(244 114 182 / 0.35);
}
.bg-pink-400\/40 {
  background-color: rgb(244 114 182 / 0.4);
}
.bg-pink-400\/45 {
  background-color: rgb(244 114 182 / 0.45);
}
.bg-pink-400\/5 {
  background-color: rgb(244 114 182 / 0.05);
}
.bg-pink-400\/50 {
  background-color: rgb(244 114 182 / 0.5);
}
.bg-pink-400\/55 {
  background-color: rgb(244 114 182 / 0.55);
}
.bg-pink-400\/60 {
  background-color: rgb(244 114 182 / 0.6);
}
.bg-pink-400\/65 {
  background-color: rgb(244 114 182 / 0.65);
}
.bg-pink-400\/70 {
  background-color: rgb(244 114 182 / 0.7);
}
.bg-pink-400\/75 {
  background-color: rgb(244 114 182 / 0.75);
}
.bg-pink-400\/80 {
  background-color: rgb(244 114 182 / 0.8);
}
.bg-pink-400\/85 {
  background-color: rgb(244 114 182 / 0.85);
}
.bg-pink-400\/90 {
  background-color: rgb(244 114 182 / 0.9);
}
.bg-pink-400\/95 {
  background-color: rgb(244 114 182 / 0.95);
}
.bg-pink-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
}
.bg-pink-500\/0 {
  background-color: rgb(236 72 153 / 0);
}
.bg-pink-500\/10 {
  background-color: rgb(236 72 153 / 0.1);
}
.bg-pink-500\/100 {
  background-color: rgb(236 72 153 / 1);
}
.bg-pink-500\/15 {
  background-color: rgb(236 72 153 / 0.15);
}
.bg-pink-500\/20 {
  background-color: rgb(236 72 153 / 0.2);
}
.bg-pink-500\/25 {
  background-color: rgb(236 72 153 / 0.25);
}
.bg-pink-500\/30 {
  background-color: rgb(236 72 153 / 0.3);
}
.bg-pink-500\/35 {
  background-color: rgb(236 72 153 / 0.35);
}
.bg-pink-500\/40 {
  background-color: rgb(236 72 153 / 0.4);
}
.bg-pink-500\/45 {
  background-color: rgb(236 72 153 / 0.45);
}
.bg-pink-500\/5 {
  background-color: rgb(236 72 153 / 0.05);
}
.bg-pink-500\/50 {
  background-color: rgb(236 72 153 / 0.5);
}
.bg-pink-500\/55 {
  background-color: rgb(236 72 153 / 0.55);
}
.bg-pink-500\/60 {
  background-color: rgb(236 72 153 / 0.6);
}
.bg-pink-500\/65 {
  background-color: rgb(236 72 153 / 0.65);
}
.bg-pink-500\/70 {
  background-color: rgb(236 72 153 / 0.7);
}
.bg-pink-500\/75 {
  background-color: rgb(236 72 153 / 0.75);
}
.bg-pink-500\/80 {
  background-color: rgb(236 72 153 / 0.8);
}
.bg-pink-500\/85 {
  background-color: rgb(236 72 153 / 0.85);
}
.bg-pink-500\/90 {
  background-color: rgb(236 72 153 / 0.9);
}
.bg-pink-500\/95 {
  background-color: rgb(236 72 153 / 0.95);
}
.bg-pippin-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-pippin-100\/0 {
  background-color: rgb(254 226 226 / 0);
}
.bg-pippin-100\/10 {
  background-color: rgb(254 226 226 / 0.1);
}
.bg-pippin-100\/100 {
  background-color: rgb(254 226 226 / 1);
}
.bg-pippin-100\/15 {
  background-color: rgb(254 226 226 / 0.15);
}
.bg-pippin-100\/20 {
  background-color: rgb(254 226 226 / 0.2);
}
.bg-pippin-100\/25 {
  background-color: rgb(254 226 226 / 0.25);
}
.bg-pippin-100\/30 {
  background-color: rgb(254 226 226 / 0.3);
}
.bg-pippin-100\/35 {
  background-color: rgb(254 226 226 / 0.35);
}
.bg-pippin-100\/40 {
  background-color: rgb(254 226 226 / 0.4);
}
.bg-pippin-100\/45 {
  background-color: rgb(254 226 226 / 0.45);
}
.bg-pippin-100\/5 {
  background-color: rgb(254 226 226 / 0.05);
}
.bg-pippin-100\/50 {
  background-color: rgb(254 226 226 / 0.5);
}
.bg-pippin-100\/55 {
  background-color: rgb(254 226 226 / 0.55);
}
.bg-pippin-100\/60 {
  background-color: rgb(254 226 226 / 0.6);
}
.bg-pippin-100\/65 {
  background-color: rgb(254 226 226 / 0.65);
}
.bg-pippin-100\/70 {
  background-color: rgb(254 226 226 / 0.7);
}
.bg-pippin-100\/75 {
  background-color: rgb(254 226 226 / 0.75);
}
.bg-pippin-100\/80 {
  background-color: rgb(254 226 226 / 0.8);
}
.bg-pippin-100\/85 {
  background-color: rgb(254 226 226 / 0.85);
}
.bg-pippin-100\/90 {
  background-color: rgb(254 226 226 / 0.9);
}
.bg-pippin-100\/95 {
  background-color: rgb(254 226 226 / 0.95);
}
.bg-pippin-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.bg-pippin-400\/0 {
  background-color: rgb(248 113 113 / 0);
}
.bg-pippin-400\/10 {
  background-color: rgb(248 113 113 / 0.1);
}
.bg-pippin-400\/100 {
  background-color: rgb(248 113 113 / 1);
}
.bg-pippin-400\/15 {
  background-color: rgb(248 113 113 / 0.15);
}
.bg-pippin-400\/20 {
  background-color: rgb(248 113 113 / 0.2);
}
.bg-pippin-400\/25 {
  background-color: rgb(248 113 113 / 0.25);
}
.bg-pippin-400\/30 {
  background-color: rgb(248 113 113 / 0.3);
}
.bg-pippin-400\/35 {
  background-color: rgb(248 113 113 / 0.35);
}
.bg-pippin-400\/40 {
  background-color: rgb(248 113 113 / 0.4);
}
.bg-pippin-400\/45 {
  background-color: rgb(248 113 113 / 0.45);
}
.bg-pippin-400\/5 {
  background-color: rgb(248 113 113 / 0.05);
}
.bg-pippin-400\/50 {
  background-color: rgb(248 113 113 / 0.5);
}
.bg-pippin-400\/55 {
  background-color: rgb(248 113 113 / 0.55);
}
.bg-pippin-400\/60 {
  background-color: rgb(248 113 113 / 0.6);
}
.bg-pippin-400\/65 {
  background-color: rgb(248 113 113 / 0.65);
}
.bg-pippin-400\/70 {
  background-color: rgb(248 113 113 / 0.7);
}
.bg-pippin-400\/75 {
  background-color: rgb(248 113 113 / 0.75);
}
.bg-pippin-400\/80 {
  background-color: rgb(248 113 113 / 0.8);
}
.bg-pippin-400\/85 {
  background-color: rgb(248 113 113 / 0.85);
}
.bg-pippin-400\/90 {
  background-color: rgb(248 113 113 / 0.9);
}
.bg-pippin-400\/95 {
  background-color: rgb(248 113 113 / 0.95);
}
.bg-pippin-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-pippin-500\/0 {
  background-color: rgb(239 68 68 / 0);
}
.bg-pippin-500\/10 {
  background-color: rgb(239 68 68 / 0.1);
}
.bg-pippin-500\/100 {
  background-color: rgb(239 68 68 / 1);
}
.bg-pippin-500\/15 {
  background-color: rgb(239 68 68 / 0.15);
}
.bg-pippin-500\/20 {
  background-color: rgb(239 68 68 / 0.2);
}
.bg-pippin-500\/25 {
  background-color: rgb(239 68 68 / 0.25);
}
.bg-pippin-500\/30 {
  background-color: rgb(239 68 68 / 0.3);
}
.bg-pippin-500\/35 {
  background-color: rgb(239 68 68 / 0.35);
}
.bg-pippin-500\/40 {
  background-color: rgb(239 68 68 / 0.4);
}
.bg-pippin-500\/45 {
  background-color: rgb(239 68 68 / 0.45);
}
.bg-pippin-500\/5 {
  background-color: rgb(239 68 68 / 0.05);
}
.bg-pippin-500\/50 {
  background-color: rgb(239 68 68 / 0.5);
}
.bg-pippin-500\/55 {
  background-color: rgb(239 68 68 / 0.55);
}
.bg-pippin-500\/60 {
  background-color: rgb(239 68 68 / 0.6);
}
.bg-pippin-500\/65 {
  background-color: rgb(239 68 68 / 0.65);
}
.bg-pippin-500\/70 {
  background-color: rgb(239 68 68 / 0.7);
}
.bg-pippin-500\/75 {
  background-color: rgb(239 68 68 / 0.75);
}
.bg-pippin-500\/80 {
  background-color: rgb(239 68 68 / 0.8);
}
.bg-pippin-500\/85 {
  background-color: rgb(239 68 68 / 0.85);
}
.bg-pippin-500\/90 {
  background-color: rgb(239 68 68 / 0.9);
}
.bg-pippin-500\/95 {
  background-color: rgb(239 68 68 / 0.95);
}
.bg-primary-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 240 249 / var(--tw-bg-opacity, 1));
}
.bg-primary-100\/0 {
  background-color: rgb(245 240 249 / 0);
}
.bg-primary-100\/10 {
  background-color: rgb(245 240 249 / 0.1);
}
.bg-primary-100\/100 {
  background-color: rgb(245 240 249 / 1);
}
.bg-primary-100\/15 {
  background-color: rgb(245 240 249 / 0.15);
}
.bg-primary-100\/20 {
  background-color: rgb(245 240 249 / 0.2);
}
.bg-primary-100\/25 {
  background-color: rgb(245 240 249 / 0.25);
}
.bg-primary-100\/30 {
  background-color: rgb(245 240 249 / 0.3);
}
.bg-primary-100\/35 {
  background-color: rgb(245 240 249 / 0.35);
}
.bg-primary-100\/40 {
  background-color: rgb(245 240 249 / 0.4);
}
.bg-primary-100\/45 {
  background-color: rgb(245 240 249 / 0.45);
}
.bg-primary-100\/5 {
  background-color: rgb(245 240 249 / 0.05);
}
.bg-primary-100\/50 {
  background-color: rgb(245 240 249 / 0.5);
}
.bg-primary-100\/55 {
  background-color: rgb(245 240 249 / 0.55);
}
.bg-primary-100\/60 {
  background-color: rgb(245 240 249 / 0.6);
}
.bg-primary-100\/65 {
  background-color: rgb(245 240 249 / 0.65);
}
.bg-primary-100\/70 {
  background-color: rgb(245 240 249 / 0.7);
}
.bg-primary-100\/75 {
  background-color: rgb(245 240 249 / 0.75);
}
.bg-primary-100\/80 {
  background-color: rgb(245 240 249 / 0.8);
}
.bg-primary-100\/85 {
  background-color: rgb(245 240 249 / 0.85);
}
.bg-primary-100\/90 {
  background-color: rgb(245 240 249 / 0.9);
}
.bg-primary-100\/95 {
  background-color: rgb(245 240 249 / 0.95);
}
.bg-primary-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 226 243 / var(--tw-bg-opacity, 1));
}
.bg-primary-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(216 200 233 / var(--tw-bg-opacity, 1));
}
.bg-primary-400\/0 {
  background-color: rgb(216 200 233 / 0);
}
.bg-primary-400\/10 {
  background-color: rgb(216 200 233 / 0.1);
}
.bg-primary-400\/100 {
  background-color: rgb(216 200 233 / 1);
}
.bg-primary-400\/15 {
  background-color: rgb(216 200 233 / 0.15);
}
.bg-primary-400\/20 {
  background-color: rgb(216 200 233 / 0.2);
}
.bg-primary-400\/25 {
  background-color: rgb(216 200 233 / 0.25);
}
.bg-primary-400\/30 {
  background-color: rgb(216 200 233 / 0.3);
}
.bg-primary-400\/35 {
  background-color: rgb(216 200 233 / 0.35);
}
.bg-primary-400\/40 {
  background-color: rgb(216 200 233 / 0.4);
}
.bg-primary-400\/45 {
  background-color: rgb(216 200 233 / 0.45);
}
.bg-primary-400\/5 {
  background-color: rgb(216 200 233 / 0.05);
}
.bg-primary-400\/50 {
  background-color: rgb(216 200 233 / 0.5);
}
.bg-primary-400\/55 {
  background-color: rgb(216 200 233 / 0.55);
}
.bg-primary-400\/60 {
  background-color: rgb(216 200 233 / 0.6);
}
.bg-primary-400\/65 {
  background-color: rgb(216 200 233 / 0.65);
}
.bg-primary-400\/70 {
  background-color: rgb(216 200 233 / 0.7);
}
.bg-primary-400\/75 {
  background-color: rgb(216 200 233 / 0.75);
}
.bg-primary-400\/80 {
  background-color: rgb(216 200 233 / 0.8);
}
.bg-primary-400\/85 {
  background-color: rgb(216 200 233 / 0.85);
}
.bg-primary-400\/90 {
  background-color: rgb(216 200 233 / 0.9);
}
.bg-primary-400\/95 {
  background-color: rgb(216 200 233 / 0.95);
}
.bg-primary-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 248 252 / var(--tw-bg-opacity, 1));
}
.bg-primary-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 142 231 / var(--tw-bg-opacity, 1));
}
.bg-primary-500\/0 {
  background-color: rgb(168 142 231 / 0);
}
.bg-primary-500\/10 {
  background-color: rgb(168 142 231 / 0.1);
}
.bg-primary-500\/100 {
  background-color: rgb(168 142 231 / 1);
}
.bg-primary-500\/15 {
  background-color: rgb(168 142 231 / 0.15);
}
.bg-primary-500\/20 {
  background-color: rgb(168 142 231 / 0.2);
}
.bg-primary-500\/25 {
  background-color: rgb(168 142 231 / 0.25);
}
.bg-primary-500\/30 {
  background-color: rgb(168 142 231 / 0.3);
}
.bg-primary-500\/35 {
  background-color: rgb(168 142 231 / 0.35);
}
.bg-primary-500\/40 {
  background-color: rgb(168 142 231 / 0.4);
}
.bg-primary-500\/45 {
  background-color: rgb(168 142 231 / 0.45);
}
.bg-primary-500\/5 {
  background-color: rgb(168 142 231 / 0.05);
}
.bg-primary-500\/50 {
  background-color: rgb(168 142 231 / 0.5);
}
.bg-primary-500\/55 {
  background-color: rgb(168 142 231 / 0.55);
}
.bg-primary-500\/60 {
  background-color: rgb(168 142 231 / 0.6);
}
.bg-primary-500\/65 {
  background-color: rgb(168 142 231 / 0.65);
}
.bg-primary-500\/70 {
  background-color: rgb(168 142 231 / 0.7);
}
.bg-primary-500\/75 {
  background-color: rgb(168 142 231 / 0.75);
}
.bg-primary-500\/80 {
  background-color: rgb(168 142 231 / 0.8);
}
.bg-primary-500\/85 {
  background-color: rgb(168 142 231 / 0.85);
}
.bg-primary-500\/90 {
  background-color: rgb(168 142 231 / 0.9);
}
.bg-primary-500\/95 {
  background-color: rgb(168 142 231 / 0.95);
}
.bg-primary-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(138 100 212 / var(--tw-bg-opacity, 1));
}
.bg-primary-600\/75 {
  background-color: rgb(138 100 212 / 0.75);
}
.bg-primary-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(114 73 183 / var(--tw-bg-opacity, 1));
}
.bg-purple-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
}
.bg-purple-600\/70 {
  background-color: rgb(147 51 234 / 0.7);
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-100\/0 {
  background-color: rgb(254 226 226 / 0);
}
.bg-red-100\/10 {
  background-color: rgb(254 226 226 / 0.1);
}
.bg-red-100\/100 {
  background-color: rgb(254 226 226 / 1);
}
.bg-red-100\/15 {
  background-color: rgb(254 226 226 / 0.15);
}
.bg-red-100\/20 {
  background-color: rgb(254 226 226 / 0.2);
}
.bg-red-100\/25 {
  background-color: rgb(254 226 226 / 0.25);
}
.bg-red-100\/30 {
  background-color: rgb(254 226 226 / 0.3);
}
.bg-red-100\/35 {
  background-color: rgb(254 226 226 / 0.35);
}
.bg-red-100\/40 {
  background-color: rgb(254 226 226 / 0.4);
}
.bg-red-100\/45 {
  background-color: rgb(254 226 226 / 0.45);
}
.bg-red-100\/5 {
  background-color: rgb(254 226 226 / 0.05);
}
.bg-red-100\/50 {
  background-color: rgb(254 226 226 / 0.5);
}
.bg-red-100\/55 {
  background-color: rgb(254 226 226 / 0.55);
}
.bg-red-100\/60 {
  background-color: rgb(254 226 226 / 0.6);
}
.bg-red-100\/65 {
  background-color: rgb(254 226 226 / 0.65);
}
.bg-red-100\/70 {
  background-color: rgb(254 226 226 / 0.7);
}
.bg-red-100\/75 {
  background-color: rgb(254 226 226 / 0.75);
}
.bg-red-100\/80 {
  background-color: rgb(254 226 226 / 0.8);
}
.bg-red-100\/85 {
  background-color: rgb(254 226 226 / 0.85);
}
.bg-red-100\/90 {
  background-color: rgb(254 226 226 / 0.9);
}
.bg-red-100\/95 {
  background-color: rgb(254 226 226 / 0.95);
}
.bg-red-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}
.bg-red-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.bg-red-400\/0 {
  background-color: rgb(248 113 113 / 0);
}
.bg-red-400\/10 {
  background-color: rgb(248 113 113 / 0.1);
}
.bg-red-400\/100 {
  background-color: rgb(248 113 113 / 1);
}
.bg-red-400\/15 {
  background-color: rgb(248 113 113 / 0.15);
}
.bg-red-400\/20 {
  background-color: rgb(248 113 113 / 0.2);
}
.bg-red-400\/25 {
  background-color: rgb(248 113 113 / 0.25);
}
.bg-red-400\/30 {
  background-color: rgb(248 113 113 / 0.3);
}
.bg-red-400\/35 {
  background-color: rgb(248 113 113 / 0.35);
}
.bg-red-400\/40 {
  background-color: rgb(248 113 113 / 0.4);
}
.bg-red-400\/45 {
  background-color: rgb(248 113 113 / 0.45);
}
.bg-red-400\/5 {
  background-color: rgb(248 113 113 / 0.05);
}
.bg-red-400\/50 {
  background-color: rgb(248 113 113 / 0.5);
}
.bg-red-400\/55 {
  background-color: rgb(248 113 113 / 0.55);
}
.bg-red-400\/60 {
  background-color: rgb(248 113 113 / 0.6);
}
.bg-red-400\/65 {
  background-color: rgb(248 113 113 / 0.65);
}
.bg-red-400\/70 {
  background-color: rgb(248 113 113 / 0.7);
}
.bg-red-400\/75 {
  background-color: rgb(248 113 113 / 0.75);
}
.bg-red-400\/80 {
  background-color: rgb(248 113 113 / 0.8);
}
.bg-red-400\/85 {
  background-color: rgb(248 113 113 / 0.85);
}
.bg-red-400\/90 {
  background-color: rgb(248 113 113 / 0.9);
}
.bg-red-400\/95 {
  background-color: rgb(248 113 113 / 0.95);
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-red-500\/0 {
  background-color: rgb(239 68 68 / 0);
}
.bg-red-500\/10 {
  background-color: rgb(239 68 68 / 0.1);
}
.bg-red-500\/100 {
  background-color: rgb(239 68 68 / 1);
}
.bg-red-500\/15 {
  background-color: rgb(239 68 68 / 0.15);
}
.bg-red-500\/20 {
  background-color: rgb(239 68 68 / 0.2);
}
.bg-red-500\/25 {
  background-color: rgb(239 68 68 / 0.25);
}
.bg-red-500\/30 {
  background-color: rgb(239 68 68 / 0.3);
}
.bg-red-500\/35 {
  background-color: rgb(239 68 68 / 0.35);
}
.bg-red-500\/40 {
  background-color: rgb(239 68 68 / 0.4);
}
.bg-red-500\/45 {
  background-color: rgb(239 68 68 / 0.45);
}
.bg-red-500\/5 {
  background-color: rgb(239 68 68 / 0.05);
}
.bg-red-500\/50 {
  background-color: rgb(239 68 68 / 0.5);
}
.bg-red-500\/55 {
  background-color: rgb(239 68 68 / 0.55);
}
.bg-red-500\/60 {
  background-color: rgb(239 68 68 / 0.6);
}
.bg-red-500\/65 {
  background-color: rgb(239 68 68 / 0.65);
}
.bg-red-500\/70 {
  background-color: rgb(239 68 68 / 0.7);
}
.bg-red-500\/75 {
  background-color: rgb(239 68 68 / 0.75);
}
.bg-red-500\/80 {
  background-color: rgb(239 68 68 / 0.8);
}
.bg-red-500\/85 {
  background-color: rgb(239 68 68 / 0.85);
}
.bg-red-500\/90 {
  background-color: rgb(239 68 68 / 0.9);
}
.bg-red-500\/95 {
  background-color: rgb(239 68 68 / 0.95);
}
.bg-second-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
}
.bg-second-500\/0 {
  background-color: rgb(251 207 232 / 0);
}
.bg-second-500\/10 {
  background-color: rgb(251 207 232 / 0.1);
}
.bg-second-500\/100 {
  background-color: rgb(251 207 232 / 1);
}
.bg-second-500\/15 {
  background-color: rgb(251 207 232 / 0.15);
}
.bg-second-500\/20 {
  background-color: rgb(251 207 232 / 0.2);
}
.bg-second-500\/25 {
  background-color: rgb(251 207 232 / 0.25);
}
.bg-second-500\/30 {
  background-color: rgb(251 207 232 / 0.3);
}
.bg-second-500\/35 {
  background-color: rgb(251 207 232 / 0.35);
}
.bg-second-500\/40 {
  background-color: rgb(251 207 232 / 0.4);
}
.bg-second-500\/45 {
  background-color: rgb(251 207 232 / 0.45);
}
.bg-second-500\/5 {
  background-color: rgb(251 207 232 / 0.05);
}
.bg-second-500\/50 {
  background-color: rgb(251 207 232 / 0.5);
}
.bg-second-500\/55 {
  background-color: rgb(251 207 232 / 0.55);
}
.bg-second-500\/60 {
  background-color: rgb(251 207 232 / 0.6);
}
.bg-second-500\/65 {
  background-color: rgb(251 207 232 / 0.65);
}
.bg-second-500\/70 {
  background-color: rgb(251 207 232 / 0.7);
}
.bg-second-500\/75 {
  background-color: rgb(251 207 232 / 0.75);
}
.bg-second-500\/80 {
  background-color: rgb(251 207 232 / 0.8);
}
.bg-second-500\/85 {
  background-color: rgb(251 207 232 / 0.85);
}
.bg-second-500\/90 {
  background-color: rgb(251 207 232 / 0.9);
}
.bg-second-500\/95 {
  background-color: rgb(251 207 232 / 0.95);
}
.bg-second-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(247 160 209 / var(--tw-bg-opacity, 1));
}
.bg-sky-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
}
.bg-sky-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.bg-teal-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
}
.bg-third-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 228 128 / var(--tw-bg-opacity, 1));
}
.bg-third-500\/0 {
  background-color: rgb(255 228 128 / 0);
}
.bg-third-500\/10 {
  background-color: rgb(255 228 128 / 0.1);
}
.bg-third-500\/100 {
  background-color: rgb(255 228 128 / 1);
}
.bg-third-500\/15 {
  background-color: rgb(255 228 128 / 0.15);
}
.bg-third-500\/20 {
  background-color: rgb(255 228 128 / 0.2);
}
.bg-third-500\/25 {
  background-color: rgb(255 228 128 / 0.25);
}
.bg-third-500\/30 {
  background-color: rgb(255 228 128 / 0.3);
}
.bg-third-500\/35 {
  background-color: rgb(255 228 128 / 0.35);
}
.bg-third-500\/40 {
  background-color: rgb(255 228 128 / 0.4);
}
.bg-third-500\/45 {
  background-color: rgb(255 228 128 / 0.45);
}
.bg-third-500\/5 {
  background-color: rgb(255 228 128 / 0.05);
}
.bg-third-500\/50 {
  background-color: rgb(255 228 128 / 0.5);
}
.bg-third-500\/55 {
  background-color: rgb(255 228 128 / 0.55);
}
.bg-third-500\/60 {
  background-color: rgb(255 228 128 / 0.6);
}
.bg-third-500\/65 {
  background-color: rgb(255 228 128 / 0.65);
}
.bg-third-500\/70 {
  background-color: rgb(255 228 128 / 0.7);
}
.bg-third-500\/75 {
  background-color: rgb(255 228 128 / 0.75);
}
.bg-third-500\/80 {
  background-color: rgb(255 228 128 / 0.8);
}
.bg-third-500\/85 {
  background-color: rgb(255 228 128 / 0.85);
}
.bg-third-500\/90 {
  background-color: rgb(255 228 128 / 0.9);
}
.bg-third-500\/95 {
  background-color: rgb(255 228 128 / 0.95);
}
.bg-third-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 217 77 / var(--tw-bg-opacity, 1));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}
.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-yellow-100\/0 {
  background-color: rgb(254 249 195 / 0);
}
.bg-yellow-100\/10 {
  background-color: rgb(254 249 195 / 0.1);
}
.bg-yellow-100\/100 {
  background-color: rgb(254 249 195 / 1);
}
.bg-yellow-100\/15 {
  background-color: rgb(254 249 195 / 0.15);
}
.bg-yellow-100\/20 {
  background-color: rgb(254 249 195 / 0.2);
}
.bg-yellow-100\/25 {
  background-color: rgb(254 249 195 / 0.25);
}
.bg-yellow-100\/30 {
  background-color: rgb(254 249 195 / 0.3);
}
.bg-yellow-100\/35 {
  background-color: rgb(254 249 195 / 0.35);
}
.bg-yellow-100\/40 {
  background-color: rgb(254 249 195 / 0.4);
}
.bg-yellow-100\/45 {
  background-color: rgb(254 249 195 / 0.45);
}
.bg-yellow-100\/5 {
  background-color: rgb(254 249 195 / 0.05);
}
.bg-yellow-100\/50 {
  background-color: rgb(254 249 195 / 0.5);
}
.bg-yellow-100\/55 {
  background-color: rgb(254 249 195 / 0.55);
}
.bg-yellow-100\/60 {
  background-color: rgb(254 249 195 / 0.6);
}
.bg-yellow-100\/65 {
  background-color: rgb(254 249 195 / 0.65);
}
.bg-yellow-100\/70 {
  background-color: rgb(254 249 195 / 0.7);
}
.bg-yellow-100\/75 {
  background-color: rgb(254 249 195 / 0.75);
}
.bg-yellow-100\/80 {
  background-color: rgb(254 249 195 / 0.8);
}
.bg-yellow-100\/85 {
  background-color: rgb(254 249 195 / 0.85);
}
.bg-yellow-100\/90 {
  background-color: rgb(254 249 195 / 0.9);
}
.bg-yellow-100\/95 {
  background-color: rgb(254 249 195 / 0.95);
}
.bg-yellow-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.bg-yellow-400\/0 {
  background-color: rgb(250 204 21 / 0);
}
.bg-yellow-400\/10 {
  background-color: rgb(250 204 21 / 0.1);
}
.bg-yellow-400\/100 {
  background-color: rgb(250 204 21 / 1);
}
.bg-yellow-400\/15 {
  background-color: rgb(250 204 21 / 0.15);
}
.bg-yellow-400\/20 {
  background-color: rgb(250 204 21 / 0.2);
}
.bg-yellow-400\/25 {
  background-color: rgb(250 204 21 / 0.25);
}
.bg-yellow-400\/30 {
  background-color: rgb(250 204 21 / 0.3);
}
.bg-yellow-400\/35 {
  background-color: rgb(250 204 21 / 0.35);
}
.bg-yellow-400\/40 {
  background-color: rgb(250 204 21 / 0.4);
}
.bg-yellow-400\/45 {
  background-color: rgb(250 204 21 / 0.45);
}
.bg-yellow-400\/5 {
  background-color: rgb(250 204 21 / 0.05);
}
.bg-yellow-400\/50 {
  background-color: rgb(250 204 21 / 0.5);
}
.bg-yellow-400\/55 {
  background-color: rgb(250 204 21 / 0.55);
}
.bg-yellow-400\/60 {
  background-color: rgb(250 204 21 / 0.6);
}
.bg-yellow-400\/65 {
  background-color: rgb(250 204 21 / 0.65);
}
.bg-yellow-400\/70 {
  background-color: rgb(250 204 21 / 0.7);
}
.bg-yellow-400\/75 {
  background-color: rgb(250 204 21 / 0.75);
}
.bg-yellow-400\/80 {
  background-color: rgb(250 204 21 / 0.8);
}
.bg-yellow-400\/85 {
  background-color: rgb(250 204 21 / 0.85);
}
.bg-yellow-400\/90 {
  background-color: rgb(250 204 21 / 0.9);
}
.bg-yellow-400\/95 {
  background-color: rgb(250 204 21 / 0.95);
}
.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.bg-yellow-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.bg-yellow-500\/0 {
  background-color: rgb(234 179 8 / 0);
}
.bg-yellow-500\/10 {
  background-color: rgb(234 179 8 / 0.1);
}
.bg-yellow-500\/100 {
  background-color: rgb(234 179 8 / 1);
}
.bg-yellow-500\/15 {
  background-color: rgb(234 179 8 / 0.15);
}
.bg-yellow-500\/20 {
  background-color: rgb(234 179 8 / 0.2);
}
.bg-yellow-500\/25 {
  background-color: rgb(234 179 8 / 0.25);
}
.bg-yellow-500\/30 {
  background-color: rgb(234 179 8 / 0.3);
}
.bg-yellow-500\/35 {
  background-color: rgb(234 179 8 / 0.35);
}
.bg-yellow-500\/40 {
  background-color: rgb(234 179 8 / 0.4);
}
.bg-yellow-500\/45 {
  background-color: rgb(234 179 8 / 0.45);
}
.bg-yellow-500\/5 {
  background-color: rgb(234 179 8 / 0.05);
}
.bg-yellow-500\/50 {
  background-color: rgb(234 179 8 / 0.5);
}
.bg-yellow-500\/55 {
  background-color: rgb(234 179 8 / 0.55);
}
.bg-yellow-500\/60 {
  background-color: rgb(234 179 8 / 0.6);
}
.bg-yellow-500\/65 {
  background-color: rgb(234 179 8 / 0.65);
}
.bg-yellow-500\/70 {
  background-color: rgb(234 179 8 / 0.7);
}
.bg-yellow-500\/75 {
  background-color: rgb(234 179 8 / 0.75);
}
.bg-yellow-500\/80 {
  background-color: rgb(234 179 8 / 0.8);
}
.bg-yellow-500\/85 {
  background-color: rgb(234 179 8 / 0.85);
}
.bg-yellow-500\/90 {
  background-color: rgb(234 179 8 / 0.9);
}
.bg-yellow-500\/95 {
  background-color: rgb(234 179 8 / 0.95);
}
.bg-opacity-100 {
  --tw-bg-opacity: 1;
}
.bg-opacity-25 {
  --tw-bg-opacity: 0.25;
}
.bg-opacity-75 {
  --tw-bg-opacity: 0.75;
}
.bg-opacity-90 {
  --tw-bg-opacity: 0.9;
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}
.from-\[rgba\(0\2c 0\2c 0\2c \.25\)\] {
  --tw-gradient-from: rgba(0,0,0,.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/50 {
  --tw-gradient-from: rgb(0 0 0 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-100 {
  --tw-gradient-from: #fce7f3 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(252 231 243 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-second-600 {
  --tw-gradient-from: #F7A0D1 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(247 160 209 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-black\/10 {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.1) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-100 {
  --tw-gradient-to: rgb(243 232 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #f3e8ff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-\[rgba\(0\2c 0\2c 0\2c 0\)\] {
  --tw-gradient-to: rgba(0,0,0,0) var(--tw-gradient-to-position);
}
.to-second-500 {
  --tw-gradient-to: #FBCFE8 var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.to-yellow-100 {
  --tw-gradient-to: #fef9c3 var(--tw-gradient-to-position);
}
.fill-current {
  fill: currentColor;
}
.fill-gray-700 {
  fill: #374151;
}
.fill-primary-600 {
  fill: #8A64D4;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center {
  -o-object-position: center;
     object-position: center;
}
.object-left-top {
  -o-object-position: left top;
     object-position: left top;
}
.object-top {
  -o-object-position: top;
     object-position: top;
}
.p-0\.5 {
  padding: 0.125rem;
}
.p-1 {
  padding: 0.25rem;
}
.p-12 {
  padding: 3rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-20 {
  padding: 5rem;
}
.p-24 {
  padding: 6rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.\!px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.\!px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.\!px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.\!px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.\!py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.\!py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.\!py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-0 {
  padding-left: 0px;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-12 {
  padding-right: 3rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-64 {
  padding-top: 16rem;
}
.pt-7 {
  padding-top: 1.75rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-\[13px\] {
  padding-top: 13px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-start {
  text-align: start;
}
.align-middle {
  vertical-align: middle;
}
.font-base {
  font-family: Nunito, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-sans {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.\!text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.\!text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-extrabold {
  font-weight: 800 !important;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-8 {
  line-height: 2rem;
}
.leading-9 {
  line-height: 2.25rem;
}
.leading-loose {
  line-height: 2;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.\!text-black {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1)) !important;
}
.\!text-gray-300 {
  --tw-text-opacity: 1 !important;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1)) !important;
}
.\!text-gray-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1)) !important;
}
.\!text-gray-600 {
  --tw-text-opacity: 1 !important;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1)) !important;
}
.\!text-gray-800 {
  --tw-text-opacity: 1 !important;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1)) !important;
}
.\!text-green-600 {
  --tw-text-opacity: 1 !important;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1)) !important;
}
.\!text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#10B97B\] {
  --tw-text-opacity: 1;
  color: rgb(16 185 123 / var(--tw-text-opacity, 1));
}
.text-\[\#484848\] {
  --tw-text-opacity: 1;
  color: rgb(72 72 72 / var(--tw-text-opacity, 1));
}
.text-\[\#A47FCC\] {
  --tw-text-opacity: 1;
  color: rgb(164 127 204 / var(--tw-text-opacity, 1));
}
.text-\[\#CCB8DB\] {
  --tw-text-opacity: 1;
  color: rgb(204 184 219 / var(--tw-text-opacity, 1));
}
.text-\[\#EF8411\] {
  --tw-text-opacity: 1;
  color: rgb(239 132 17 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-500\/0 {
  color: rgb(59 130 246 / 0);
}
.text-blue-500\/10 {
  color: rgb(59 130 246 / 0.1);
}
.text-blue-500\/100 {
  color: rgb(59 130 246 / 1);
}
.text-blue-500\/15 {
  color: rgb(59 130 246 / 0.15);
}
.text-blue-500\/20 {
  color: rgb(59 130 246 / 0.2);
}
.text-blue-500\/25 {
  color: rgb(59 130 246 / 0.25);
}
.text-blue-500\/30 {
  color: rgb(59 130 246 / 0.3);
}
.text-blue-500\/35 {
  color: rgb(59 130 246 / 0.35);
}
.text-blue-500\/40 {
  color: rgb(59 130 246 / 0.4);
}
.text-blue-500\/45 {
  color: rgb(59 130 246 / 0.45);
}
.text-blue-500\/5 {
  color: rgb(59 130 246 / 0.05);
}
.text-blue-500\/50 {
  color: rgb(59 130 246 / 0.5);
}
.text-blue-500\/55 {
  color: rgb(59 130 246 / 0.55);
}
.text-blue-500\/60 {
  color: rgb(59 130 246 / 0.6);
}
.text-blue-500\/65 {
  color: rgb(59 130 246 / 0.65);
}
.text-blue-500\/70 {
  color: rgb(59 130 246 / 0.7);
}
.text-blue-500\/75 {
  color: rgb(59 130 246 / 0.75);
}
.text-blue-500\/80 {
  color: rgb(59 130 246 / 0.8);
}
.text-blue-500\/85 {
  color: rgb(59 130 246 / 0.85);
}
.text-blue-500\/90 {
  color: rgb(59 130 246 / 0.9);
}
.text-blue-500\/95 {
  color: rgb(59 130 246 / 0.95);
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-current {
  color: currentColor;
}
.text-fifth-500 {
  --tw-text-opacity: 1;
  color: rgb(255 183 199 / var(--tw-text-opacity, 1));
}
.text-fifth-500\/0 {
  color: rgb(255 183 199 / 0);
}
.text-fifth-500\/10 {
  color: rgb(255 183 199 / 0.1);
}
.text-fifth-500\/100 {
  color: rgb(255 183 199 / 1);
}
.text-fifth-500\/15 {
  color: rgb(255 183 199 / 0.15);
}
.text-fifth-500\/20 {
  color: rgb(255 183 199 / 0.2);
}
.text-fifth-500\/25 {
  color: rgb(255 183 199 / 0.25);
}
.text-fifth-500\/30 {
  color: rgb(255 183 199 / 0.3);
}
.text-fifth-500\/35 {
  color: rgb(255 183 199 / 0.35);
}
.text-fifth-500\/40 {
  color: rgb(255 183 199 / 0.4);
}
.text-fifth-500\/45 {
  color: rgb(255 183 199 / 0.45);
}
.text-fifth-500\/5 {
  color: rgb(255 183 199 / 0.05);
}
.text-fifth-500\/50 {
  color: rgb(255 183 199 / 0.5);
}
.text-fifth-500\/55 {
  color: rgb(255 183 199 / 0.55);
}
.text-fifth-500\/60 {
  color: rgb(255 183 199 / 0.6);
}
.text-fifth-500\/65 {
  color: rgb(255 183 199 / 0.65);
}
.text-fifth-500\/70 {
  color: rgb(255 183 199 / 0.7);
}
.text-fifth-500\/75 {
  color: rgb(255 183 199 / 0.75);
}
.text-fifth-500\/80 {
  color: rgb(255 183 199 / 0.8);
}
.text-fifth-500\/85 {
  color: rgb(255 183 199 / 0.85);
}
.text-fifth-500\/90 {
  color: rgb(255 183 199 / 0.9);
}
.text-fifth-500\/95 {
  color: rgb(255 183 199 / 0.95);
}
.text-fourth-500 {
  --tw-text-opacity: 1;
  color: rgb(255 194 161 / var(--tw-text-opacity, 1));
}
.text-fourth-500\/0 {
  color: rgb(255 194 161 / 0);
}
.text-fourth-500\/10 {
  color: rgb(255 194 161 / 0.1);
}
.text-fourth-500\/100 {
  color: rgb(255 194 161 / 1);
}
.text-fourth-500\/15 {
  color: rgb(255 194 161 / 0.15);
}
.text-fourth-500\/20 {
  color: rgb(255 194 161 / 0.2);
}
.text-fourth-500\/25 {
  color: rgb(255 194 161 / 0.25);
}
.text-fourth-500\/30 {
  color: rgb(255 194 161 / 0.3);
}
.text-fourth-500\/35 {
  color: rgb(255 194 161 / 0.35);
}
.text-fourth-500\/40 {
  color: rgb(255 194 161 / 0.4);
}
.text-fourth-500\/45 {
  color: rgb(255 194 161 / 0.45);
}
.text-fourth-500\/5 {
  color: rgb(255 194 161 / 0.05);
}
.text-fourth-500\/50 {
  color: rgb(255 194 161 / 0.5);
}
.text-fourth-500\/55 {
  color: rgb(255 194 161 / 0.55);
}
.text-fourth-500\/60 {
  color: rgb(255 194 161 / 0.6);
}
.text-fourth-500\/65 {
  color: rgb(255 194 161 / 0.65);
}
.text-fourth-500\/70 {
  color: rgb(255 194 161 / 0.7);
}
.text-fourth-500\/75 {
  color: rgb(255 194 161 / 0.75);
}
.text-fourth-500\/80 {
  color: rgb(255 194 161 / 0.8);
}
.text-fourth-500\/85 {
  color: rgb(255 194 161 / 0.85);
}
.text-fourth-500\/90 {
  color: rgb(255 194 161 / 0.9);
}
.text-fourth-500\/95 {
  color: rgb(255 194 161 / 0.95);
}
.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-500\/0 {
  color: rgb(34 197 94 / 0);
}
.text-green-500\/10 {
  color: rgb(34 197 94 / 0.1);
}
.text-green-500\/100 {
  color: rgb(34 197 94 / 1);
}
.text-green-500\/15 {
  color: rgb(34 197 94 / 0.15);
}
.text-green-500\/20 {
  color: rgb(34 197 94 / 0.2);
}
.text-green-500\/25 {
  color: rgb(34 197 94 / 0.25);
}
.text-green-500\/30 {
  color: rgb(34 197 94 / 0.3);
}
.text-green-500\/35 {
  color: rgb(34 197 94 / 0.35);
}
.text-green-500\/40 {
  color: rgb(34 197 94 / 0.4);
}
.text-green-500\/45 {
  color: rgb(34 197 94 / 0.45);
}
.text-green-500\/5 {
  color: rgb(34 197 94 / 0.05);
}
.text-green-500\/50 {
  color: rgb(34 197 94 / 0.5);
}
.text-green-500\/55 {
  color: rgb(34 197 94 / 0.55);
}
.text-green-500\/60 {
  color: rgb(34 197 94 / 0.6);
}
.text-green-500\/65 {
  color: rgb(34 197 94 / 0.65);
}
.text-green-500\/70 {
  color: rgb(34 197 94 / 0.7);
}
.text-green-500\/75 {
  color: rgb(34 197 94 / 0.75);
}
.text-green-500\/80 {
  color: rgb(34 197 94 / 0.8);
}
.text-green-500\/85 {
  color: rgb(34 197 94 / 0.85);
}
.text-green-500\/90 {
  color: rgb(34 197 94 / 0.9);
}
.text-green-500\/95 {
  color: rgb(34 197 94 / 0.95);
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-green-800\/0 {
  color: rgb(22 101 52 / 0);
}
.text-green-800\/10 {
  color: rgb(22 101 52 / 0.1);
}
.text-green-800\/100 {
  color: rgb(22 101 52 / 1);
}
.text-green-800\/15 {
  color: rgb(22 101 52 / 0.15);
}
.text-green-800\/20 {
  color: rgb(22 101 52 / 0.2);
}
.text-green-800\/25 {
  color: rgb(22 101 52 / 0.25);
}
.text-green-800\/30 {
  color: rgb(22 101 52 / 0.3);
}
.text-green-800\/35 {
  color: rgb(22 101 52 / 0.35);
}
.text-green-800\/40 {
  color: rgb(22 101 52 / 0.4);
}
.text-green-800\/45 {
  color: rgb(22 101 52 / 0.45);
}
.text-green-800\/5 {
  color: rgb(22 101 52 / 0.05);
}
.text-green-800\/50 {
  color: rgb(22 101 52 / 0.5);
}
.text-green-800\/55 {
  color: rgb(22 101 52 / 0.55);
}
.text-green-800\/60 {
  color: rgb(22 101 52 / 0.6);
}
.text-green-800\/65 {
  color: rgb(22 101 52 / 0.65);
}
.text-green-800\/70 {
  color: rgb(22 101 52 / 0.7);
}
.text-green-800\/75 {
  color: rgb(22 101 52 / 0.75);
}
.text-green-800\/80 {
  color: rgb(22 101 52 / 0.8);
}
.text-green-800\/85 {
  color: rgb(22 101 52 / 0.85);
}
.text-green-800\/90 {
  color: rgb(22 101 52 / 0.9);
}
.text-green-800\/95 {
  color: rgb(22 101 52 / 0.95);
}
.text-indigo-500 {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.text-indigo-500\/0 {
  color: rgb(99 102 241 / 0);
}
.text-indigo-500\/10 {
  color: rgb(99 102 241 / 0.1);
}
.text-indigo-500\/100 {
  color: rgb(99 102 241 / 1);
}
.text-indigo-500\/15 {
  color: rgb(99 102 241 / 0.15);
}
.text-indigo-500\/20 {
  color: rgb(99 102 241 / 0.2);
}
.text-indigo-500\/25 {
  color: rgb(99 102 241 / 0.25);
}
.text-indigo-500\/30 {
  color: rgb(99 102 241 / 0.3);
}
.text-indigo-500\/35 {
  color: rgb(99 102 241 / 0.35);
}
.text-indigo-500\/40 {
  color: rgb(99 102 241 / 0.4);
}
.text-indigo-500\/45 {
  color: rgb(99 102 241 / 0.45);
}
.text-indigo-500\/5 {
  color: rgb(99 102 241 / 0.05);
}
.text-indigo-500\/50 {
  color: rgb(99 102 241 / 0.5);
}
.text-indigo-500\/55 {
  color: rgb(99 102 241 / 0.55);
}
.text-indigo-500\/60 {
  color: rgb(99 102 241 / 0.6);
}
.text-indigo-500\/65 {
  color: rgb(99 102 241 / 0.65);
}
.text-indigo-500\/70 {
  color: rgb(99 102 241 / 0.7);
}
.text-indigo-500\/75 {
  color: rgb(99 102 241 / 0.75);
}
.text-indigo-500\/80 {
  color: rgb(99 102 241 / 0.8);
}
.text-indigo-500\/85 {
  color: rgb(99 102 241 / 0.85);
}
.text-indigo-500\/90 {
  color: rgb(99 102 241 / 0.9);
}
.text-indigo-500\/95 {
  color: rgb(99 102 241 / 0.95);
}
.text-indigo-800 {
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / var(--tw-text-opacity, 1));
}
.text-indigo-800\/0 {
  color: rgb(55 48 163 / 0);
}
.text-indigo-800\/10 {
  color: rgb(55 48 163 / 0.1);
}
.text-indigo-800\/100 {
  color: rgb(55 48 163 / 1);
}
.text-indigo-800\/15 {
  color: rgb(55 48 163 / 0.15);
}
.text-indigo-800\/20 {
  color: rgb(55 48 163 / 0.2);
}
.text-indigo-800\/25 {
  color: rgb(55 48 163 / 0.25);
}
.text-indigo-800\/30 {
  color: rgb(55 48 163 / 0.3);
}
.text-indigo-800\/35 {
  color: rgb(55 48 163 / 0.35);
}
.text-indigo-800\/40 {
  color: rgb(55 48 163 / 0.4);
}
.text-indigo-800\/45 {
  color: rgb(55 48 163 / 0.45);
}
.text-indigo-800\/5 {
  color: rgb(55 48 163 / 0.05);
}
.text-indigo-800\/50 {
  color: rgb(55 48 163 / 0.5);
}
.text-indigo-800\/55 {
  color: rgb(55 48 163 / 0.55);
}
.text-indigo-800\/60 {
  color: rgb(55 48 163 / 0.6);
}
.text-indigo-800\/65 {
  color: rgb(55 48 163 / 0.65);
}
.text-indigo-800\/70 {
  color: rgb(55 48 163 / 0.7);
}
.text-indigo-800\/75 {
  color: rgb(55 48 163 / 0.75);
}
.text-indigo-800\/80 {
  color: rgb(55 48 163 / 0.8);
}
.text-indigo-800\/85 {
  color: rgb(55 48 163 / 0.85);
}
.text-indigo-800\/90 {
  color: rgb(55 48 163 / 0.9);
}
.text-indigo-800\/95 {
  color: rgb(55 48 163 / 0.95);
}
.text-info {
  --tw-text-opacity: 1;
  color: rgb(164 127 204 / var(--tw-text-opacity, 1));
}
.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.text-orange-500\/0 {
  color: rgb(249 115 22 / 0);
}
.text-orange-500\/10 {
  color: rgb(249 115 22 / 0.1);
}
.text-orange-500\/100 {
  color: rgb(249 115 22 / 1);
}
.text-orange-500\/15 {
  color: rgb(249 115 22 / 0.15);
}
.text-orange-500\/20 {
  color: rgb(249 115 22 / 0.2);
}
.text-orange-500\/25 {
  color: rgb(249 115 22 / 0.25);
}
.text-orange-500\/30 {
  color: rgb(249 115 22 / 0.3);
}
.text-orange-500\/35 {
  color: rgb(249 115 22 / 0.35);
}
.text-orange-500\/40 {
  color: rgb(249 115 22 / 0.4);
}
.text-orange-500\/45 {
  color: rgb(249 115 22 / 0.45);
}
.text-orange-500\/5 {
  color: rgb(249 115 22 / 0.05);
}
.text-orange-500\/50 {
  color: rgb(249 115 22 / 0.5);
}
.text-orange-500\/55 {
  color: rgb(249 115 22 / 0.55);
}
.text-orange-500\/60 {
  color: rgb(249 115 22 / 0.6);
}
.text-orange-500\/65 {
  color: rgb(249 115 22 / 0.65);
}
.text-orange-500\/70 {
  color: rgb(249 115 22 / 0.7);
}
.text-orange-500\/75 {
  color: rgb(249 115 22 / 0.75);
}
.text-orange-500\/80 {
  color: rgb(249 115 22 / 0.8);
}
.text-orange-500\/85 {
  color: rgb(249 115 22 / 0.85);
}
.text-orange-500\/90 {
  color: rgb(249 115 22 / 0.9);
}
.text-orange-500\/95 {
  color: rgb(249 115 22 / 0.95);
}
.text-orange-700 {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.text-orange-800 {
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / var(--tw-text-opacity, 1));
}
.text-orange-800\/0 {
  color: rgb(154 52 18 / 0);
}
.text-orange-800\/10 {
  color: rgb(154 52 18 / 0.1);
}
.text-orange-800\/100 {
  color: rgb(154 52 18 / 1);
}
.text-orange-800\/15 {
  color: rgb(154 52 18 / 0.15);
}
.text-orange-800\/20 {
  color: rgb(154 52 18 / 0.2);
}
.text-orange-800\/25 {
  color: rgb(154 52 18 / 0.25);
}
.text-orange-800\/30 {
  color: rgb(154 52 18 / 0.3);
}
.text-orange-800\/35 {
  color: rgb(154 52 18 / 0.35);
}
.text-orange-800\/40 {
  color: rgb(154 52 18 / 0.4);
}
.text-orange-800\/45 {
  color: rgb(154 52 18 / 0.45);
}
.text-orange-800\/5 {
  color: rgb(154 52 18 / 0.05);
}
.text-orange-800\/50 {
  color: rgb(154 52 18 / 0.5);
}
.text-orange-800\/55 {
  color: rgb(154 52 18 / 0.55);
}
.text-orange-800\/60 {
  color: rgb(154 52 18 / 0.6);
}
.text-orange-800\/65 {
  color: rgb(154 52 18 / 0.65);
}
.text-orange-800\/70 {
  color: rgb(154 52 18 / 0.7);
}
.text-orange-800\/75 {
  color: rgb(154 52 18 / 0.75);
}
.text-orange-800\/80 {
  color: rgb(154 52 18 / 0.8);
}
.text-orange-800\/85 {
  color: rgb(154 52 18 / 0.85);
}
.text-orange-800\/90 {
  color: rgb(154 52 18 / 0.9);
}
.text-orange-800\/95 {
  color: rgb(154 52 18 / 0.95);
}
.text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.text-pink-500\/0 {
  color: rgb(236 72 153 / 0);
}
.text-pink-500\/10 {
  color: rgb(236 72 153 / 0.1);
}
.text-pink-500\/100 {
  color: rgb(236 72 153 / 1);
}
.text-pink-500\/15 {
  color: rgb(236 72 153 / 0.15);
}
.text-pink-500\/20 {
  color: rgb(236 72 153 / 0.2);
}
.text-pink-500\/25 {
  color: rgb(236 72 153 / 0.25);
}
.text-pink-500\/30 {
  color: rgb(236 72 153 / 0.3);
}
.text-pink-500\/35 {
  color: rgb(236 72 153 / 0.35);
}
.text-pink-500\/40 {
  color: rgb(236 72 153 / 0.4);
}
.text-pink-500\/45 {
  color: rgb(236 72 153 / 0.45);
}
.text-pink-500\/5 {
  color: rgb(236 72 153 / 0.05);
}
.text-pink-500\/50 {
  color: rgb(236 72 153 / 0.5);
}
.text-pink-500\/55 {
  color: rgb(236 72 153 / 0.55);
}
.text-pink-500\/60 {
  color: rgb(236 72 153 / 0.6);
}
.text-pink-500\/65 {
  color: rgb(236 72 153 / 0.65);
}
.text-pink-500\/70 {
  color: rgb(236 72 153 / 0.7);
}
.text-pink-500\/75 {
  color: rgb(236 72 153 / 0.75);
}
.text-pink-500\/80 {
  color: rgb(236 72 153 / 0.8);
}
.text-pink-500\/85 {
  color: rgb(236 72 153 / 0.85);
}
.text-pink-500\/90 {
  color: rgb(236 72 153 / 0.9);
}
.text-pink-500\/95 {
  color: rgb(236 72 153 / 0.95);
}
.text-pink-800 {
  --tw-text-opacity: 1;
  color: rgb(157 23 77 / var(--tw-text-opacity, 1));
}
.text-pink-800\/0 {
  color: rgb(157 23 77 / 0);
}
.text-pink-800\/10 {
  color: rgb(157 23 77 / 0.1);
}
.text-pink-800\/100 {
  color: rgb(157 23 77 / 1);
}
.text-pink-800\/15 {
  color: rgb(157 23 77 / 0.15);
}
.text-pink-800\/20 {
  color: rgb(157 23 77 / 0.2);
}
.text-pink-800\/25 {
  color: rgb(157 23 77 / 0.25);
}
.text-pink-800\/30 {
  color: rgb(157 23 77 / 0.3);
}
.text-pink-800\/35 {
  color: rgb(157 23 77 / 0.35);
}
.text-pink-800\/40 {
  color: rgb(157 23 77 / 0.4);
}
.text-pink-800\/45 {
  color: rgb(157 23 77 / 0.45);
}
.text-pink-800\/5 {
  color: rgb(157 23 77 / 0.05);
}
.text-pink-800\/50 {
  color: rgb(157 23 77 / 0.5);
}
.text-pink-800\/55 {
  color: rgb(157 23 77 / 0.55);
}
.text-pink-800\/60 {
  color: rgb(157 23 77 / 0.6);
}
.text-pink-800\/65 {
  color: rgb(157 23 77 / 0.65);
}
.text-pink-800\/70 {
  color: rgb(157 23 77 / 0.7);
}
.text-pink-800\/75 {
  color: rgb(157 23 77 / 0.75);
}
.text-pink-800\/80 {
  color: rgb(157 23 77 / 0.8);
}
.text-pink-800\/85 {
  color: rgb(157 23 77 / 0.85);
}
.text-pink-800\/90 {
  color: rgb(157 23 77 / 0.9);
}
.text-pink-800\/95 {
  color: rgb(157 23 77 / 0.95);
}
.text-pippin-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-pippin-500\/0 {
  color: rgb(239 68 68 / 0);
}
.text-pippin-500\/10 {
  color: rgb(239 68 68 / 0.1);
}
.text-pippin-500\/100 {
  color: rgb(239 68 68 / 1);
}
.text-pippin-500\/15 {
  color: rgb(239 68 68 / 0.15);
}
.text-pippin-500\/20 {
  color: rgb(239 68 68 / 0.2);
}
.text-pippin-500\/25 {
  color: rgb(239 68 68 / 0.25);
}
.text-pippin-500\/30 {
  color: rgb(239 68 68 / 0.3);
}
.text-pippin-500\/35 {
  color: rgb(239 68 68 / 0.35);
}
.text-pippin-500\/40 {
  color: rgb(239 68 68 / 0.4);
}
.text-pippin-500\/45 {
  color: rgb(239 68 68 / 0.45);
}
.text-pippin-500\/5 {
  color: rgb(239 68 68 / 0.05);
}
.text-pippin-500\/50 {
  color: rgb(239 68 68 / 0.5);
}
.text-pippin-500\/55 {
  color: rgb(239 68 68 / 0.55);
}
.text-pippin-500\/60 {
  color: rgb(239 68 68 / 0.6);
}
.text-pippin-500\/65 {
  color: rgb(239 68 68 / 0.65);
}
.text-pippin-500\/70 {
  color: rgb(239 68 68 / 0.7);
}
.text-pippin-500\/75 {
  color: rgb(239 68 68 / 0.75);
}
.text-pippin-500\/80 {
  color: rgb(239 68 68 / 0.8);
}
.text-pippin-500\/85 {
  color: rgb(239 68 68 / 0.85);
}
.text-pippin-500\/90 {
  color: rgb(239 68 68 / 0.9);
}
.text-pippin-500\/95 {
  color: rgb(239 68 68 / 0.95);
}
.text-primary-200 {
  --tw-text-opacity: 1;
  color: rgb(234 226 243 / var(--tw-text-opacity, 1));
}
.text-primary-300 {
  --tw-text-opacity: 1;
  color: rgb(224 211 238 / var(--tw-text-opacity, 1));
}
.text-primary-500 {
  --tw-text-opacity: 1;
  color: rgb(168 142 231 / var(--tw-text-opacity, 1));
}
.text-primary-500\/0 {
  color: rgb(168 142 231 / 0);
}
.text-primary-500\/10 {
  color: rgb(168 142 231 / 0.1);
}
.text-primary-500\/100 {
  color: rgb(168 142 231 / 1);
}
.text-primary-500\/15 {
  color: rgb(168 142 231 / 0.15);
}
.text-primary-500\/20 {
  color: rgb(168 142 231 / 0.2);
}
.text-primary-500\/25 {
  color: rgb(168 142 231 / 0.25);
}
.text-primary-500\/30 {
  color: rgb(168 142 231 / 0.3);
}
.text-primary-500\/35 {
  color: rgb(168 142 231 / 0.35);
}
.text-primary-500\/40 {
  color: rgb(168 142 231 / 0.4);
}
.text-primary-500\/45 {
  color: rgb(168 142 231 / 0.45);
}
.text-primary-500\/5 {
  color: rgb(168 142 231 / 0.05);
}
.text-primary-500\/50 {
  color: rgb(168 142 231 / 0.5);
}
.text-primary-500\/55 {
  color: rgb(168 142 231 / 0.55);
}
.text-primary-500\/60 {
  color: rgb(168 142 231 / 0.6);
}
.text-primary-500\/65 {
  color: rgb(168 142 231 / 0.65);
}
.text-primary-500\/70 {
  color: rgb(168 142 231 / 0.7);
}
.text-primary-500\/75 {
  color: rgb(168 142 231 / 0.75);
}
.text-primary-500\/80 {
  color: rgb(168 142 231 / 0.8);
}
.text-primary-500\/85 {
  color: rgb(168 142 231 / 0.85);
}
.text-primary-500\/90 {
  color: rgb(168 142 231 / 0.9);
}
.text-primary-500\/95 {
  color: rgb(168 142 231 / 0.95);
}
.text-primary-600 {
  --tw-text-opacity: 1;
  color: rgb(138 100 212 / var(--tw-text-opacity, 1));
}
.text-primary-700 {
  --tw-text-opacity: 1;
  color: rgb(114 73 183 / var(--tw-text-opacity, 1));
}
.text-primary-800 {
  --tw-text-opacity: 1;
  color: rgb(80 47 117 / var(--tw-text-opacity, 1));
}
.text-purple-700 {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-500\/0 {
  color: rgb(239 68 68 / 0);
}
.text-red-500\/10 {
  color: rgb(239 68 68 / 0.1);
}
.text-red-500\/100 {
  color: rgb(239 68 68 / 1);
}
.text-red-500\/15 {
  color: rgb(239 68 68 / 0.15);
}
.text-red-500\/20 {
  color: rgb(239 68 68 / 0.2);
}
.text-red-500\/25 {
  color: rgb(239 68 68 / 0.25);
}
.text-red-500\/30 {
  color: rgb(239 68 68 / 0.3);
}
.text-red-500\/35 {
  color: rgb(239 68 68 / 0.35);
}
.text-red-500\/40 {
  color: rgb(239 68 68 / 0.4);
}
.text-red-500\/45 {
  color: rgb(239 68 68 / 0.45);
}
.text-red-500\/5 {
  color: rgb(239 68 68 / 0.05);
}
.text-red-500\/50 {
  color: rgb(239 68 68 / 0.5);
}
.text-red-500\/55 {
  color: rgb(239 68 68 / 0.55);
}
.text-red-500\/60 {
  color: rgb(239 68 68 / 0.6);
}
.text-red-500\/65 {
  color: rgb(239 68 68 / 0.65);
}
.text-red-500\/70 {
  color: rgb(239 68 68 / 0.7);
}
.text-red-500\/75 {
  color: rgb(239 68 68 / 0.75);
}
.text-red-500\/80 {
  color: rgb(239 68 68 / 0.8);
}
.text-red-500\/85 {
  color: rgb(239 68 68 / 0.85);
}
.text-red-500\/90 {
  color: rgb(239 68 68 / 0.9);
}
.text-red-500\/95 {
  color: rgb(239 68 68 / 0.95);
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-red-800\/0 {
  color: rgb(153 27 27 / 0);
}
.text-red-800\/10 {
  color: rgb(153 27 27 / 0.1);
}
.text-red-800\/100 {
  color: rgb(153 27 27 / 1);
}
.text-red-800\/15 {
  color: rgb(153 27 27 / 0.15);
}
.text-red-800\/20 {
  color: rgb(153 27 27 / 0.2);
}
.text-red-800\/25 {
  color: rgb(153 27 27 / 0.25);
}
.text-red-800\/30 {
  color: rgb(153 27 27 / 0.3);
}
.text-red-800\/35 {
  color: rgb(153 27 27 / 0.35);
}
.text-red-800\/40 {
  color: rgb(153 27 27 / 0.4);
}
.text-red-800\/45 {
  color: rgb(153 27 27 / 0.45);
}
.text-red-800\/5 {
  color: rgb(153 27 27 / 0.05);
}
.text-red-800\/50 {
  color: rgb(153 27 27 / 0.5);
}
.text-red-800\/55 {
  color: rgb(153 27 27 / 0.55);
}
.text-red-800\/60 {
  color: rgb(153 27 27 / 0.6);
}
.text-red-800\/65 {
  color: rgb(153 27 27 / 0.65);
}
.text-red-800\/70 {
  color: rgb(153 27 27 / 0.7);
}
.text-red-800\/75 {
  color: rgb(153 27 27 / 0.75);
}
.text-red-800\/80 {
  color: rgb(153 27 27 / 0.8);
}
.text-red-800\/85 {
  color: rgb(153 27 27 / 0.85);
}
.text-red-800\/90 {
  color: rgb(153 27 27 / 0.9);
}
.text-red-800\/95 {
  color: rgb(153 27 27 / 0.95);
}
.text-second-500 {
  --tw-text-opacity: 1;
  color: rgb(251 207 232 / var(--tw-text-opacity, 1));
}
.text-second-500\/0 {
  color: rgb(251 207 232 / 0);
}
.text-second-500\/10 {
  color: rgb(251 207 232 / 0.1);
}
.text-second-500\/100 {
  color: rgb(251 207 232 / 1);
}
.text-second-500\/15 {
  color: rgb(251 207 232 / 0.15);
}
.text-second-500\/20 {
  color: rgb(251 207 232 / 0.2);
}
.text-second-500\/25 {
  color: rgb(251 207 232 / 0.25);
}
.text-second-500\/30 {
  color: rgb(251 207 232 / 0.3);
}
.text-second-500\/35 {
  color: rgb(251 207 232 / 0.35);
}
.text-second-500\/40 {
  color: rgb(251 207 232 / 0.4);
}
.text-second-500\/45 {
  color: rgb(251 207 232 / 0.45);
}
.text-second-500\/5 {
  color: rgb(251 207 232 / 0.05);
}
.text-second-500\/50 {
  color: rgb(251 207 232 / 0.5);
}
.text-second-500\/55 {
  color: rgb(251 207 232 / 0.55);
}
.text-second-500\/60 {
  color: rgb(251 207 232 / 0.6);
}
.text-second-500\/65 {
  color: rgb(251 207 232 / 0.65);
}
.text-second-500\/70 {
  color: rgb(251 207 232 / 0.7);
}
.text-second-500\/75 {
  color: rgb(251 207 232 / 0.75);
}
.text-second-500\/80 {
  color: rgb(251 207 232 / 0.8);
}
.text-second-500\/85 {
  color: rgb(251 207 232 / 0.85);
}
.text-second-500\/90 {
  color: rgb(251 207 232 / 0.9);
}
.text-second-500\/95 {
  color: rgb(251 207 232 / 0.95);
}
.text-sky-700 {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
.text-success {
  --tw-text-opacity: 1;
  color: rgb(16 185 123 / var(--tw-text-opacity, 1));
}
.text-teal-700 {
  --tw-text-opacity: 1;
  color: rgb(15 118 110 / var(--tw-text-opacity, 1));
}
.text-third-500 {
  --tw-text-opacity: 1;
  color: rgb(255 228 128 / var(--tw-text-opacity, 1));
}
.text-third-500\/0 {
  color: rgb(255 228 128 / 0);
}
.text-third-500\/10 {
  color: rgb(255 228 128 / 0.1);
}
.text-third-500\/100 {
  color: rgb(255 228 128 / 1);
}
.text-third-500\/15 {
  color: rgb(255 228 128 / 0.15);
}
.text-third-500\/20 {
  color: rgb(255 228 128 / 0.2);
}
.text-third-500\/25 {
  color: rgb(255 228 128 / 0.25);
}
.text-third-500\/30 {
  color: rgb(255 228 128 / 0.3);
}
.text-third-500\/35 {
  color: rgb(255 228 128 / 0.35);
}
.text-third-500\/40 {
  color: rgb(255 228 128 / 0.4);
}
.text-third-500\/45 {
  color: rgb(255 228 128 / 0.45);
}
.text-third-500\/5 {
  color: rgb(255 228 128 / 0.05);
}
.text-third-500\/50 {
  color: rgb(255 228 128 / 0.5);
}
.text-third-500\/55 {
  color: rgb(255 228 128 / 0.55);
}
.text-third-500\/60 {
  color: rgb(255 228 128 / 0.6);
}
.text-third-500\/65 {
  color: rgb(255 228 128 / 0.65);
}
.text-third-500\/70 {
  color: rgb(255 228 128 / 0.7);
}
.text-third-500\/75 {
  color: rgb(255 228 128 / 0.75);
}
.text-third-500\/80 {
  color: rgb(255 228 128 / 0.8);
}
.text-third-500\/85 {
  color: rgb(255 228 128 / 0.85);
}
.text-third-500\/90 {
  color: rgb(255 228 128 / 0.9);
}
.text-third-500\/95 {
  color: rgb(255 228 128 / 0.95);
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.text-yellow-500\/0 {
  color: rgb(234 179 8 / 0);
}
.text-yellow-500\/10 {
  color: rgb(234 179 8 / 0.1);
}
.text-yellow-500\/100 {
  color: rgb(234 179 8 / 1);
}
.text-yellow-500\/15 {
  color: rgb(234 179 8 / 0.15);
}
.text-yellow-500\/20 {
  color: rgb(234 179 8 / 0.2);
}
.text-yellow-500\/25 {
  color: rgb(234 179 8 / 0.25);
}
.text-yellow-500\/30 {
  color: rgb(234 179 8 / 0.3);
}
.text-yellow-500\/35 {
  color: rgb(234 179 8 / 0.35);
}
.text-yellow-500\/40 {
  color: rgb(234 179 8 / 0.4);
}
.text-yellow-500\/45 {
  color: rgb(234 179 8 / 0.45);
}
.text-yellow-500\/5 {
  color: rgb(234 179 8 / 0.05);
}
.text-yellow-500\/50 {
  color: rgb(234 179 8 / 0.5);
}
.text-yellow-500\/55 {
  color: rgb(234 179 8 / 0.55);
}
.text-yellow-500\/60 {
  color: rgb(234 179 8 / 0.6);
}
.text-yellow-500\/65 {
  color: rgb(234 179 8 / 0.65);
}
.text-yellow-500\/70 {
  color: rgb(234 179 8 / 0.7);
}
.text-yellow-500\/75 {
  color: rgb(234 179 8 / 0.75);
}
.text-yellow-500\/80 {
  color: rgb(234 179 8 / 0.8);
}
.text-yellow-500\/85 {
  color: rgb(234 179 8 / 0.85);
}
.text-yellow-500\/90 {
  color: rgb(234 179 8 / 0.9);
}
.text-yellow-500\/95 {
  color: rgb(234 179 8 / 0.95);
}
.text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.text-yellow-800\/0 {
  color: rgb(133 77 14 / 0);
}
.text-yellow-800\/10 {
  color: rgb(133 77 14 / 0.1);
}
.text-yellow-800\/100 {
  color: rgb(133 77 14 / 1);
}
.text-yellow-800\/15 {
  color: rgb(133 77 14 / 0.15);
}
.text-yellow-800\/20 {
  color: rgb(133 77 14 / 0.2);
}
.text-yellow-800\/25 {
  color: rgb(133 77 14 / 0.25);
}
.text-yellow-800\/30 {
  color: rgb(133 77 14 / 0.3);
}
.text-yellow-800\/35 {
  color: rgb(133 77 14 / 0.35);
}
.text-yellow-800\/40 {
  color: rgb(133 77 14 / 0.4);
}
.text-yellow-800\/45 {
  color: rgb(133 77 14 / 0.45);
}
.text-yellow-800\/5 {
  color: rgb(133 77 14 / 0.05);
}
.text-yellow-800\/50 {
  color: rgb(133 77 14 / 0.5);
}
.text-yellow-800\/55 {
  color: rgb(133 77 14 / 0.55);
}
.text-yellow-800\/60 {
  color: rgb(133 77 14 / 0.6);
}
.text-yellow-800\/65 {
  color: rgb(133 77 14 / 0.65);
}
.text-yellow-800\/70 {
  color: rgb(133 77 14 / 0.7);
}
.text-yellow-800\/75 {
  color: rgb(133 77 14 / 0.75);
}
.text-yellow-800\/80 {
  color: rgb(133 77 14 / 0.8);
}
.text-yellow-800\/85 {
  color: rgb(133 77 14 / 0.85);
}
.text-yellow-800\/90 {
  color: rgb(133 77 14 / 0.9);
}
.text-yellow-800\/95 {
  color: rgb(133 77 14 / 0.95);
}
.\!underline {
  text-decoration-line: underline !important;
}
.underline {
  text-decoration-line: underline;
}
.line-through {
  text-decoration-line: line-through;
}
.no-underline {
  text-decoration-line: none;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholder-gray-400::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.placeholder-gray-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.placeholder-gray-500::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
.placeholder-gray-500::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
.opacity-0 {
  opacity: 0;
}
.opacity-10 {
  opacity: 0.1;
}
.opacity-100 {
  opacity: 1;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-80 {
  opacity: 0.8;
}
.opacity-90 {
  opacity: 0.9;
}
.opacity-95 {
  opacity: 0.95;
}
.\!shadow-none {
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-4 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-inset {
  --tw-ring-inset: inset;
}
.ring-black {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity, 1));
}
.ring-gray-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.ring-white {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}
.ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-lg {
  --tw-blur: blur(16px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-md {
  --tw-blur: blur(12px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-xl {
  --tw-blur: blur(24px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.brightness-75 {
  --tw-brightness: brightness(.75);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.\!filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
p.\!text-xs {
  font-size: 1rem;
  line-height: 1.5rem;
}
p.text-xs,
  p.text-sm {
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 640px) {

  .sm\:aspect-w-2 {
    position: relative;
    padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  }

  .sm\:aspect-w-2 > * {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .sm\:aspect-w-2 {
    --tw-aspect-w: 2;
  }

  .sm\:aspect-h-1 {
    --tw-aspect-h: 1;
  }
}
@media (min-width: 768px) {

  .md\:aspect-w-2 {
    position: relative;
    padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  }

  .md\:aspect-w-2 > * {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .md\:aspect-w-2 {
    --tw-aspect-w: 2;
  }

  .md\:aspect-h-1 {
    --tw-aspect-h: 1;
  }
}
@media (min-width: 1024px) {

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

  .lg\:prose-xl :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .lg\:prose-xl :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.2em;
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .lg\:prose-xl :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-inline-start: 1.0666667em;
  }

  .lg\:prose-xl :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 2.8em;
    margin-top: 0;
    margin-bottom: 0.8571429em;
    line-height: 1;
  }

  .lg\:prose-xl :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.8em;
    margin-top: 1.5555556em;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
  }

  .lg\:prose-xl :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.5em;
    margin-top: 1.6em;
    margin-bottom: 0.6666667em;
    line-height: 1.3333333;
  }

  .lg\:prose-xl :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    line-height: 1.6;
  }

  .lg\:prose-xl :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .lg\:prose-xl :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .lg\:prose-xl :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:prose-xl :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .lg\:prose-xl :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.9em;
    border-radius: 0.3125rem;
    padding-top: 0.25em;
    padding-inline-end: 0.4em;
    padding-bottom: 0.25em;
    padding-inline-start: 0.4em;
  }

  .lg\:prose-xl :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.9em;
  }

  .lg\:prose-xl :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8611111em;
  }

  .lg\:prose-xl :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.9em;
  }

  .lg\:prose-xl :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.9em;
    line-height: 1.7777778;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.5rem;
    padding-top: 1.1111111em;
    padding-inline-end: 1.3333333em;
    padding-bottom: 1.1111111em;
    padding-inline-start: 1.3333333em;
  }

  .lg\:prose-xl :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
    padding-inline-start: 1.6em;
  }

  .lg\:prose-xl :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
    padding-inline-start: 1.6em;
  }

  .lg\:prose-xl :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.6em;
    margin-bottom: 0.6em;
  }

  .lg\:prose-xl :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.4em;
  }

  .lg\:prose-xl :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.4em;
  }

  .lg\:prose-xl :where(.lg\:prose-xl > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }

  .lg\:prose-xl :where(.lg\:prose-xl > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.2em;
  }

  .lg\:prose-xl :where(.lg\:prose-xl > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.2em;
  }

  .lg\:prose-xl :where(.lg\:prose-xl > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.2em;
  }

  .lg\:prose-xl :where(.lg\:prose-xl > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.2em;
  }

  .lg\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }

  .lg\:prose-xl :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .lg\:prose-xl :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.2em;
  }

  .lg\:prose-xl :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.6em;
    padding-inline-start: 1.6em;
  }

  .lg\:prose-xl :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2.8em;
    margin-bottom: 2.8em;
  }

  .lg\:prose-xl :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-xl :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-xl :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-xl :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-xl :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.9em;
    line-height: 1.5555556;
  }

  .lg\:prose-xl :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0.6666667em;
    padding-bottom: 0.8888889em;
    padding-inline-start: 0.6666667em;
  }

  .lg\:prose-xl :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
  }

  .lg\:prose-xl :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
  }

  .lg\:prose-xl :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-top: 0.8888889em;
    padding-inline-end: 0.6666667em;
    padding-bottom: 0.8888889em;
    padding-inline-start: 0.6666667em;
  }

  .lg\:prose-xl :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;
  }

  .lg\:prose-xl :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;
  }

  .lg\:prose-xl :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .lg\:prose-xl :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:prose-xl :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.9em;
    line-height: 1.5555556;
    margin-top: 1em;
  }

  .lg\:prose-xl :where(.lg\:prose-xl > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-xl :where(.lg\:prose-xl > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 0;
  }

  .lg\:aspect-w-1 {
    position: relative;
    padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  }

  .lg\:aspect-w-1 > * {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .lg\:aspect-w-1 {
    --tw-aspect-w: 1;
  }
}
.placeholder\:text-\[\#696969\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(105 105 105 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#696969\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(105 105 105 / var(--tw-text-opacity, 1));
}
.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}
.before\:inset-0::before {
  content: var(--tw-content);
  inset: 0px;
}
.before\:bg-black::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.before\:bg-opacity-20::before {
  content: var(--tw-content);
  --tw-bg-opacity: 0.2;
}
.before\:content-\[\'\'\]::before {
  --tw-content: '';
  content: var(--tw-content);
}
.first\:rounded-l-md:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.last\:rounded-r-md:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.last\:border-b-0:last-child {
  border-bottom-width: 0px;
}
.focus-within\:ring-2:focus-within {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:ring-inset:focus-within {
  --tw-ring-inset: inset;
}
.focus-within\:ring-primary-500:focus-within {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 142 231 / var(--tw-ring-opacity, 1));
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-125:hover {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:border-gray-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.hover\:border-primary-600:hover {
  --tw-border-opacity: 1;
  border-color: rgb(138 100 212 / var(--tw-border-opacity, 1));
}
.hover\:\!bg-\[\#F14242\]:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(241 66 66 / var(--tw-bg-opacity, 1)) !important;
}
.hover\:\!bg-gray-100:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1)) !important;
}
.hover\:\!bg-primary-700:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(114 73 183 / var(--tw-bg-opacity, 1)) !important;
}
.hover\:\!bg-transparent:hover {
  background-color: transparent !important;
}
.hover\:bg-\[\#477fea\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(71 127 234 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-100\/0:hover {
  background-color: rgb(219 234 254 / 0);
}
.hover\:bg-blue-100\/10:hover {
  background-color: rgb(219 234 254 / 0.1);
}
.hover\:bg-blue-100\/100:hover {
  background-color: rgb(219 234 254 / 1);
}
.hover\:bg-blue-100\/15:hover {
  background-color: rgb(219 234 254 / 0.15);
}
.hover\:bg-blue-100\/20:hover {
  background-color: rgb(219 234 254 / 0.2);
}
.hover\:bg-blue-100\/25:hover {
  background-color: rgb(219 234 254 / 0.25);
}
.hover\:bg-blue-100\/30:hover {
  background-color: rgb(219 234 254 / 0.3);
}
.hover\:bg-blue-100\/35:hover {
  background-color: rgb(219 234 254 / 0.35);
}
.hover\:bg-blue-100\/40:hover {
  background-color: rgb(219 234 254 / 0.4);
}
.hover\:bg-blue-100\/45:hover {
  background-color: rgb(219 234 254 / 0.45);
}
.hover\:bg-blue-100\/5:hover {
  background-color: rgb(219 234 254 / 0.05);
}
.hover\:bg-blue-100\/50:hover {
  background-color: rgb(219 234 254 / 0.5);
}
.hover\:bg-blue-100\/55:hover {
  background-color: rgb(219 234 254 / 0.55);
}
.hover\:bg-blue-100\/60:hover {
  background-color: rgb(219 234 254 / 0.6);
}
.hover\:bg-blue-100\/65:hover {
  background-color: rgb(219 234 254 / 0.65);
}
.hover\:bg-blue-100\/70:hover {
  background-color: rgb(219 234 254 / 0.7);
}
.hover\:bg-blue-100\/75:hover {
  background-color: rgb(219 234 254 / 0.75);
}
.hover\:bg-blue-100\/80:hover {
  background-color: rgb(219 234 254 / 0.8);
}
.hover\:bg-blue-100\/85:hover {
  background-color: rgb(219 234 254 / 0.85);
}
.hover\:bg-blue-100\/90:hover {
  background-color: rgb(219 234 254 / 0.9);
}
.hover\:bg-blue-100\/95:hover {
  background-color: rgb(219 234 254 / 0.95);
}
.hover\:bg-blue-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-400\/0:hover {
  background-color: rgb(96 165 250 / 0);
}
.hover\:bg-blue-400\/10:hover {
  background-color: rgb(96 165 250 / 0.1);
}
.hover\:bg-blue-400\/100:hover {
  background-color: rgb(96 165 250 / 1);
}
.hover\:bg-blue-400\/15:hover {
  background-color: rgb(96 165 250 / 0.15);
}
.hover\:bg-blue-400\/20:hover {
  background-color: rgb(96 165 250 / 0.2);
}
.hover\:bg-blue-400\/25:hover {
  background-color: rgb(96 165 250 / 0.25);
}
.hover\:bg-blue-400\/30:hover {
  background-color: rgb(96 165 250 / 0.3);
}
.hover\:bg-blue-400\/35:hover {
  background-color: rgb(96 165 250 / 0.35);
}
.hover\:bg-blue-400\/40:hover {
  background-color: rgb(96 165 250 / 0.4);
}
.hover\:bg-blue-400\/45:hover {
  background-color: rgb(96 165 250 / 0.45);
}
.hover\:bg-blue-400\/5:hover {
  background-color: rgb(96 165 250 / 0.05);
}
.hover\:bg-blue-400\/50:hover {
  background-color: rgb(96 165 250 / 0.5);
}
.hover\:bg-blue-400\/55:hover {
  background-color: rgb(96 165 250 / 0.55);
}
.hover\:bg-blue-400\/60:hover {
  background-color: rgb(96 165 250 / 0.6);
}
.hover\:bg-blue-400\/65:hover {
  background-color: rgb(96 165 250 / 0.65);
}
.hover\:bg-blue-400\/70:hover {
  background-color: rgb(96 165 250 / 0.7);
}
.hover\:bg-blue-400\/75:hover {
  background-color: rgb(96 165 250 / 0.75);
}
.hover\:bg-blue-400\/80:hover {
  background-color: rgb(96 165 250 / 0.8);
}
.hover\:bg-blue-400\/85:hover {
  background-color: rgb(96 165 250 / 0.85);
}
.hover\:bg-blue-400\/90:hover {
  background-color: rgb(96 165 250 / 0.9);
}
.hover\:bg-blue-400\/95:hover {
  background-color: rgb(96 165 250 / 0.95);
}
.hover\:bg-google-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(228 115 101 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-100\/0:hover {
  background-color: rgb(220 252 231 / 0);
}
.hover\:bg-green-100\/10:hover {
  background-color: rgb(220 252 231 / 0.1);
}
.hover\:bg-green-100\/100:hover {
  background-color: rgb(220 252 231 / 1);
}
.hover\:bg-green-100\/15:hover {
  background-color: rgb(220 252 231 / 0.15);
}
.hover\:bg-green-100\/20:hover {
  background-color: rgb(220 252 231 / 0.2);
}
.hover\:bg-green-100\/25:hover {
  background-color: rgb(220 252 231 / 0.25);
}
.hover\:bg-green-100\/30:hover {
  background-color: rgb(220 252 231 / 0.3);
}
.hover\:bg-green-100\/35:hover {
  background-color: rgb(220 252 231 / 0.35);
}
.hover\:bg-green-100\/40:hover {
  background-color: rgb(220 252 231 / 0.4);
}
.hover\:bg-green-100\/45:hover {
  background-color: rgb(220 252 231 / 0.45);
}
.hover\:bg-green-100\/5:hover {
  background-color: rgb(220 252 231 / 0.05);
}
.hover\:bg-green-100\/50:hover {
  background-color: rgb(220 252 231 / 0.5);
}
.hover\:bg-green-100\/55:hover {
  background-color: rgb(220 252 231 / 0.55);
}
.hover\:bg-green-100\/60:hover {
  background-color: rgb(220 252 231 / 0.6);
}
.hover\:bg-green-100\/65:hover {
  background-color: rgb(220 252 231 / 0.65);
}
.hover\:bg-green-100\/70:hover {
  background-color: rgb(220 252 231 / 0.7);
}
.hover\:bg-green-100\/75:hover {
  background-color: rgb(220 252 231 / 0.75);
}
.hover\:bg-green-100\/80:hover {
  background-color: rgb(220 252 231 / 0.8);
}
.hover\:bg-green-100\/85:hover {
  background-color: rgb(220 252 231 / 0.85);
}
.hover\:bg-green-100\/90:hover {
  background-color: rgb(220 252 231 / 0.9);
}
.hover\:bg-green-100\/95:hover {
  background-color: rgb(220 252 231 / 0.95);
}
.hover\:bg-green-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-400\/0:hover {
  background-color: rgb(74 222 128 / 0);
}
.hover\:bg-green-400\/10:hover {
  background-color: rgb(74 222 128 / 0.1);
}
.hover\:bg-green-400\/100:hover {
  background-color: rgb(74 222 128 / 1);
}
.hover\:bg-green-400\/15:hover {
  background-color: rgb(74 222 128 / 0.15);
}
.hover\:bg-green-400\/20:hover {
  background-color: rgb(74 222 128 / 0.2);
}
.hover\:bg-green-400\/25:hover {
  background-color: rgb(74 222 128 / 0.25);
}
.hover\:bg-green-400\/30:hover {
  background-color: rgb(74 222 128 / 0.3);
}
.hover\:bg-green-400\/35:hover {
  background-color: rgb(74 222 128 / 0.35);
}
.hover\:bg-green-400\/40:hover {
  background-color: rgb(74 222 128 / 0.4);
}
.hover\:bg-green-400\/45:hover {
  background-color: rgb(74 222 128 / 0.45);
}
.hover\:bg-green-400\/5:hover {
  background-color: rgb(74 222 128 / 0.05);
}
.hover\:bg-green-400\/50:hover {
  background-color: rgb(74 222 128 / 0.5);
}
.hover\:bg-green-400\/55:hover {
  background-color: rgb(74 222 128 / 0.55);
}
.hover\:bg-green-400\/60:hover {
  background-color: rgb(74 222 128 / 0.6);
}
.hover\:bg-green-400\/65:hover {
  background-color: rgb(74 222 128 / 0.65);
}
.hover\:bg-green-400\/70:hover {
  background-color: rgb(74 222 128 / 0.7);
}
.hover\:bg-green-400\/75:hover {
  background-color: rgb(74 222 128 / 0.75);
}
.hover\:bg-green-400\/80:hover {
  background-color: rgb(74 222 128 / 0.8);
}
.hover\:bg-green-400\/85:hover {
  background-color: rgb(74 222 128 / 0.85);
}
.hover\:bg-green-400\/90:hover {
  background-color: rgb(74 222 128 / 0.9);
}
.hover\:bg-green-400\/95:hover {
  background-color: rgb(74 222 128 / 0.95);
}
.hover\:bg-green-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-100\/0:hover {
  background-color: rgb(224 231 255 / 0);
}
.hover\:bg-indigo-100\/10:hover {
  background-color: rgb(224 231 255 / 0.1);
}
.hover\:bg-indigo-100\/100:hover {
  background-color: rgb(224 231 255 / 1);
}
.hover\:bg-indigo-100\/15:hover {
  background-color: rgb(224 231 255 / 0.15);
}
.hover\:bg-indigo-100\/20:hover {
  background-color: rgb(224 231 255 / 0.2);
}
.hover\:bg-indigo-100\/25:hover {
  background-color: rgb(224 231 255 / 0.25);
}
.hover\:bg-indigo-100\/30:hover {
  background-color: rgb(224 231 255 / 0.3);
}
.hover\:bg-indigo-100\/35:hover {
  background-color: rgb(224 231 255 / 0.35);
}
.hover\:bg-indigo-100\/40:hover {
  background-color: rgb(224 231 255 / 0.4);
}
.hover\:bg-indigo-100\/45:hover {
  background-color: rgb(224 231 255 / 0.45);
}
.hover\:bg-indigo-100\/5:hover {
  background-color: rgb(224 231 255 / 0.05);
}
.hover\:bg-indigo-100\/50:hover {
  background-color: rgb(224 231 255 / 0.5);
}
.hover\:bg-indigo-100\/55:hover {
  background-color: rgb(224 231 255 / 0.55);
}
.hover\:bg-indigo-100\/60:hover {
  background-color: rgb(224 231 255 / 0.6);
}
.hover\:bg-indigo-100\/65:hover {
  background-color: rgb(224 231 255 / 0.65);
}
.hover\:bg-indigo-100\/70:hover {
  background-color: rgb(224 231 255 / 0.7);
}
.hover\:bg-indigo-100\/75:hover {
  background-color: rgb(224 231 255 / 0.75);
}
.hover\:bg-indigo-100\/80:hover {
  background-color: rgb(224 231 255 / 0.8);
}
.hover\:bg-indigo-100\/85:hover {
  background-color: rgb(224 231 255 / 0.85);
}
.hover\:bg-indigo-100\/90:hover {
  background-color: rgb(224 231 255 / 0.9);
}
.hover\:bg-indigo-100\/95:hover {
  background-color: rgb(224 231 255 / 0.95);
}
.hover\:bg-indigo-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-400\/0:hover {
  background-color: rgb(129 140 248 / 0);
}
.hover\:bg-indigo-400\/10:hover {
  background-color: rgb(129 140 248 / 0.1);
}
.hover\:bg-indigo-400\/100:hover {
  background-color: rgb(129 140 248 / 1);
}
.hover\:bg-indigo-400\/15:hover {
  background-color: rgb(129 140 248 / 0.15);
}
.hover\:bg-indigo-400\/20:hover {
  background-color: rgb(129 140 248 / 0.2);
}
.hover\:bg-indigo-400\/25:hover {
  background-color: rgb(129 140 248 / 0.25);
}
.hover\:bg-indigo-400\/30:hover {
  background-color: rgb(129 140 248 / 0.3);
}
.hover\:bg-indigo-400\/35:hover {
  background-color: rgb(129 140 248 / 0.35);
}
.hover\:bg-indigo-400\/40:hover {
  background-color: rgb(129 140 248 / 0.4);
}
.hover\:bg-indigo-400\/45:hover {
  background-color: rgb(129 140 248 / 0.45);
}
.hover\:bg-indigo-400\/5:hover {
  background-color: rgb(129 140 248 / 0.05);
}
.hover\:bg-indigo-400\/50:hover {
  background-color: rgb(129 140 248 / 0.5);
}
.hover\:bg-indigo-400\/55:hover {
  background-color: rgb(129 140 248 / 0.55);
}
.hover\:bg-indigo-400\/60:hover {
  background-color: rgb(129 140 248 / 0.6);
}
.hover\:bg-indigo-400\/65:hover {
  background-color: rgb(129 140 248 / 0.65);
}
.hover\:bg-indigo-400\/70:hover {
  background-color: rgb(129 140 248 / 0.7);
}
.hover\:bg-indigo-400\/75:hover {
  background-color: rgb(129 140 248 / 0.75);
}
.hover\:bg-indigo-400\/80:hover {
  background-color: rgb(129 140 248 / 0.8);
}
.hover\:bg-indigo-400\/85:hover {
  background-color: rgb(129 140 248 / 0.85);
}
.hover\:bg-indigo-400\/90:hover {
  background-color: rgb(129 140 248 / 0.9);
}
.hover\:bg-indigo-400\/95:hover {
  background-color: rgb(129 140 248 / 0.95);
}
.hover\:bg-indigo-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-100\/0:hover {
  background-color: rgb(255 237 213 / 0);
}
.hover\:bg-orange-100\/10:hover {
  background-color: rgb(255 237 213 / 0.1);
}
.hover\:bg-orange-100\/100:hover {
  background-color: rgb(255 237 213 / 1);
}
.hover\:bg-orange-100\/15:hover {
  background-color: rgb(255 237 213 / 0.15);
}
.hover\:bg-orange-100\/20:hover {
  background-color: rgb(255 237 213 / 0.2);
}
.hover\:bg-orange-100\/25:hover {
  background-color: rgb(255 237 213 / 0.25);
}
.hover\:bg-orange-100\/30:hover {
  background-color: rgb(255 237 213 / 0.3);
}
.hover\:bg-orange-100\/35:hover {
  background-color: rgb(255 237 213 / 0.35);
}
.hover\:bg-orange-100\/40:hover {
  background-color: rgb(255 237 213 / 0.4);
}
.hover\:bg-orange-100\/45:hover {
  background-color: rgb(255 237 213 / 0.45);
}
.hover\:bg-orange-100\/5:hover {
  background-color: rgb(255 237 213 / 0.05);
}
.hover\:bg-orange-100\/50:hover {
  background-color: rgb(255 237 213 / 0.5);
}
.hover\:bg-orange-100\/55:hover {
  background-color: rgb(255 237 213 / 0.55);
}
.hover\:bg-orange-100\/60:hover {
  background-color: rgb(255 237 213 / 0.6);
}
.hover\:bg-orange-100\/65:hover {
  background-color: rgb(255 237 213 / 0.65);
}
.hover\:bg-orange-100\/70:hover {
  background-color: rgb(255 237 213 / 0.7);
}
.hover\:bg-orange-100\/75:hover {
  background-color: rgb(255 237 213 / 0.75);
}
.hover\:bg-orange-100\/80:hover {
  background-color: rgb(255 237 213 / 0.8);
}
.hover\:bg-orange-100\/85:hover {
  background-color: rgb(255 237 213 / 0.85);
}
.hover\:bg-orange-100\/90:hover {
  background-color: rgb(255 237 213 / 0.9);
}
.hover\:bg-orange-100\/95:hover {
  background-color: rgb(255 237 213 / 0.95);
}
.hover\:bg-orange-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-400\/0:hover {
  background-color: rgb(251 146 60 / 0);
}
.hover\:bg-orange-400\/10:hover {
  background-color: rgb(251 146 60 / 0.1);
}
.hover\:bg-orange-400\/100:hover {
  background-color: rgb(251 146 60 / 1);
}
.hover\:bg-orange-400\/15:hover {
  background-color: rgb(251 146 60 / 0.15);
}
.hover\:bg-orange-400\/20:hover {
  background-color: rgb(251 146 60 / 0.2);
}
.hover\:bg-orange-400\/25:hover {
  background-color: rgb(251 146 60 / 0.25);
}
.hover\:bg-orange-400\/30:hover {
  background-color: rgb(251 146 60 / 0.3);
}
.hover\:bg-orange-400\/35:hover {
  background-color: rgb(251 146 60 / 0.35);
}
.hover\:bg-orange-400\/40:hover {
  background-color: rgb(251 146 60 / 0.4);
}
.hover\:bg-orange-400\/45:hover {
  background-color: rgb(251 146 60 / 0.45);
}
.hover\:bg-orange-400\/5:hover {
  background-color: rgb(251 146 60 / 0.05);
}
.hover\:bg-orange-400\/50:hover {
  background-color: rgb(251 146 60 / 0.5);
}
.hover\:bg-orange-400\/55:hover {
  background-color: rgb(251 146 60 / 0.55);
}
.hover\:bg-orange-400\/60:hover {
  background-color: rgb(251 146 60 / 0.6);
}
.hover\:bg-orange-400\/65:hover {
  background-color: rgb(251 146 60 / 0.65);
}
.hover\:bg-orange-400\/70:hover {
  background-color: rgb(251 146 60 / 0.7);
}
.hover\:bg-orange-400\/75:hover {
  background-color: rgb(251 146 60 / 0.75);
}
.hover\:bg-orange-400\/80:hover {
  background-color: rgb(251 146 60 / 0.8);
}
.hover\:bg-orange-400\/85:hover {
  background-color: rgb(251 146 60 / 0.85);
}
.hover\:bg-orange-400\/90:hover {
  background-color: rgb(251 146 60 / 0.9);
}
.hover\:bg-orange-400\/95:hover {
  background-color: rgb(251 146 60 / 0.95);
}
.hover\:bg-pink-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-100\/0:hover {
  background-color: rgb(252 231 243 / 0);
}
.hover\:bg-pink-100\/10:hover {
  background-color: rgb(252 231 243 / 0.1);
}
.hover\:bg-pink-100\/100:hover {
  background-color: rgb(252 231 243 / 1);
}
.hover\:bg-pink-100\/15:hover {
  background-color: rgb(252 231 243 / 0.15);
}
.hover\:bg-pink-100\/20:hover {
  background-color: rgb(252 231 243 / 0.2);
}
.hover\:bg-pink-100\/25:hover {
  background-color: rgb(252 231 243 / 0.25);
}
.hover\:bg-pink-100\/30:hover {
  background-color: rgb(252 231 243 / 0.3);
}
.hover\:bg-pink-100\/35:hover {
  background-color: rgb(252 231 243 / 0.35);
}
.hover\:bg-pink-100\/40:hover {
  background-color: rgb(252 231 243 / 0.4);
}
.hover\:bg-pink-100\/45:hover {
  background-color: rgb(252 231 243 / 0.45);
}
.hover\:bg-pink-100\/5:hover {
  background-color: rgb(252 231 243 / 0.05);
}
.hover\:bg-pink-100\/50:hover {
  background-color: rgb(252 231 243 / 0.5);
}
.hover\:bg-pink-100\/55:hover {
  background-color: rgb(252 231 243 / 0.55);
}
.hover\:bg-pink-100\/60:hover {
  background-color: rgb(252 231 243 / 0.6);
}
.hover\:bg-pink-100\/65:hover {
  background-color: rgb(252 231 243 / 0.65);
}
.hover\:bg-pink-100\/70:hover {
  background-color: rgb(252 231 243 / 0.7);
}
.hover\:bg-pink-100\/75:hover {
  background-color: rgb(252 231 243 / 0.75);
}
.hover\:bg-pink-100\/80:hover {
  background-color: rgb(252 231 243 / 0.8);
}
.hover\:bg-pink-100\/85:hover {
  background-color: rgb(252 231 243 / 0.85);
}
.hover\:bg-pink-100\/90:hover {
  background-color: rgb(252 231 243 / 0.9);
}
.hover\:bg-pink-100\/95:hover {
  background-color: rgb(252 231 243 / 0.95);
}
.hover\:bg-pink-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(244 114 182 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-400\/0:hover {
  background-color: rgb(244 114 182 / 0);
}
.hover\:bg-pink-400\/10:hover {
  background-color: rgb(244 114 182 / 0.1);
}
.hover\:bg-pink-400\/100:hover {
  background-color: rgb(244 114 182 / 1);
}
.hover\:bg-pink-400\/15:hover {
  background-color: rgb(244 114 182 / 0.15);
}
.hover\:bg-pink-400\/20:hover {
  background-color: rgb(244 114 182 / 0.2);
}
.hover\:bg-pink-400\/25:hover {
  background-color: rgb(244 114 182 / 0.25);
}
.hover\:bg-pink-400\/30:hover {
  background-color: rgb(244 114 182 / 0.3);
}
.hover\:bg-pink-400\/35:hover {
  background-color: rgb(244 114 182 / 0.35);
}
.hover\:bg-pink-400\/40:hover {
  background-color: rgb(244 114 182 / 0.4);
}
.hover\:bg-pink-400\/45:hover {
  background-color: rgb(244 114 182 / 0.45);
}
.hover\:bg-pink-400\/5:hover {
  background-color: rgb(244 114 182 / 0.05);
}
.hover\:bg-pink-400\/50:hover {
  background-color: rgb(244 114 182 / 0.5);
}
.hover\:bg-pink-400\/55:hover {
  background-color: rgb(244 114 182 / 0.55);
}
.hover\:bg-pink-400\/60:hover {
  background-color: rgb(244 114 182 / 0.6);
}
.hover\:bg-pink-400\/65:hover {
  background-color: rgb(244 114 182 / 0.65);
}
.hover\:bg-pink-400\/70:hover {
  background-color: rgb(244 114 182 / 0.7);
}
.hover\:bg-pink-400\/75:hover {
  background-color: rgb(244 114 182 / 0.75);
}
.hover\:bg-pink-400\/80:hover {
  background-color: rgb(244 114 182 / 0.8);
}
.hover\:bg-pink-400\/85:hover {
  background-color: rgb(244 114 182 / 0.85);
}
.hover\:bg-pink-400\/90:hover {
  background-color: rgb(244 114 182 / 0.9);
}
.hover\:bg-pink-400\/95:hover {
  background-color: rgb(244 114 182 / 0.95);
}
.hover\:bg-pippin-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pippin-100\/0:hover {
  background-color: rgb(254 226 226 / 0);
}
.hover\:bg-pippin-100\/10:hover {
  background-color: rgb(254 226 226 / 0.1);
}
.hover\:bg-pippin-100\/100:hover {
  background-color: rgb(254 226 226 / 1);
}
.hover\:bg-pippin-100\/15:hover {
  background-color: rgb(254 226 226 / 0.15);
}
.hover\:bg-pippin-100\/20:hover {
  background-color: rgb(254 226 226 / 0.2);
}
.hover\:bg-pippin-100\/25:hover {
  background-color: rgb(254 226 226 / 0.25);
}
.hover\:bg-pippin-100\/30:hover {
  background-color: rgb(254 226 226 / 0.3);
}
.hover\:bg-pippin-100\/35:hover {
  background-color: rgb(254 226 226 / 0.35);
}
.hover\:bg-pippin-100\/40:hover {
  background-color: rgb(254 226 226 / 0.4);
}
.hover\:bg-pippin-100\/45:hover {
  background-color: rgb(254 226 226 / 0.45);
}
.hover\:bg-pippin-100\/5:hover {
  background-color: rgb(254 226 226 / 0.05);
}
.hover\:bg-pippin-100\/50:hover {
  background-color: rgb(254 226 226 / 0.5);
}
.hover\:bg-pippin-100\/55:hover {
  background-color: rgb(254 226 226 / 0.55);
}
.hover\:bg-pippin-100\/60:hover {
  background-color: rgb(254 226 226 / 0.6);
}
.hover\:bg-pippin-100\/65:hover {
  background-color: rgb(254 226 226 / 0.65);
}
.hover\:bg-pippin-100\/70:hover {
  background-color: rgb(254 226 226 / 0.7);
}
.hover\:bg-pippin-100\/75:hover {
  background-color: rgb(254 226 226 / 0.75);
}
.hover\:bg-pippin-100\/80:hover {
  background-color: rgb(254 226 226 / 0.8);
}
.hover\:bg-pippin-100\/85:hover {
  background-color: rgb(254 226 226 / 0.85);
}
.hover\:bg-pippin-100\/90:hover {
  background-color: rgb(254 226 226 / 0.9);
}
.hover\:bg-pippin-100\/95:hover {
  background-color: rgb(254 226 226 / 0.95);
}
.hover\:bg-pippin-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pippin-400\/0:hover {
  background-color: rgb(248 113 113 / 0);
}
.hover\:bg-pippin-400\/10:hover {
  background-color: rgb(248 113 113 / 0.1);
}
.hover\:bg-pippin-400\/100:hover {
  background-color: rgb(248 113 113 / 1);
}
.hover\:bg-pippin-400\/15:hover {
  background-color: rgb(248 113 113 / 0.15);
}
.hover\:bg-pippin-400\/20:hover {
  background-color: rgb(248 113 113 / 0.2);
}
.hover\:bg-pippin-400\/25:hover {
  background-color: rgb(248 113 113 / 0.25);
}
.hover\:bg-pippin-400\/30:hover {
  background-color: rgb(248 113 113 / 0.3);
}
.hover\:bg-pippin-400\/35:hover {
  background-color: rgb(248 113 113 / 0.35);
}
.hover\:bg-pippin-400\/40:hover {
  background-color: rgb(248 113 113 / 0.4);
}
.hover\:bg-pippin-400\/45:hover {
  background-color: rgb(248 113 113 / 0.45);
}
.hover\:bg-pippin-400\/5:hover {
  background-color: rgb(248 113 113 / 0.05);
}
.hover\:bg-pippin-400\/50:hover {
  background-color: rgb(248 113 113 / 0.5);
}
.hover\:bg-pippin-400\/55:hover {
  background-color: rgb(248 113 113 / 0.55);
}
.hover\:bg-pippin-400\/60:hover {
  background-color: rgb(248 113 113 / 0.6);
}
.hover\:bg-pippin-400\/65:hover {
  background-color: rgb(248 113 113 / 0.65);
}
.hover\:bg-pippin-400\/70:hover {
  background-color: rgb(248 113 113 / 0.7);
}
.hover\:bg-pippin-400\/75:hover {
  background-color: rgb(248 113 113 / 0.75);
}
.hover\:bg-pippin-400\/80:hover {
  background-color: rgb(248 113 113 / 0.8);
}
.hover\:bg-pippin-400\/85:hover {
  background-color: rgb(248 113 113 / 0.85);
}
.hover\:bg-pippin-400\/90:hover {
  background-color: rgb(248 113 113 / 0.9);
}
.hover\:bg-pippin-400\/95:hover {
  background-color: rgb(248 113 113 / 0.95);
}
.hover\:bg-primary-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 240 249 / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary-100\/0:hover {
  background-color: rgb(245 240 249 / 0);
}
.hover\:bg-primary-100\/10:hover {
  background-color: rgb(245 240 249 / 0.1);
}
.hover\:bg-primary-100\/100:hover {
  background-color: rgb(245 240 249 / 1);
}
.hover\:bg-primary-100\/15:hover {
  background-color: rgb(245 240 249 / 0.15);
}
.hover\:bg-primary-100\/20:hover {
  background-color: rgb(245 240 249 / 0.2);
}
.hover\:bg-primary-100\/25:hover {
  background-color: rgb(245 240 249 / 0.25);
}
.hover\:bg-primary-100\/30:hover {
  background-color: rgb(245 240 249 / 0.3);
}
.hover\:bg-primary-100\/35:hover {
  background-color: rgb(245 240 249 / 0.35);
}
.hover\:bg-primary-100\/40:hover {
  background-color: rgb(245 240 249 / 0.4);
}
.hover\:bg-primary-100\/45:hover {
  background-color: rgb(245 240 249 / 0.45);
}
.hover\:bg-primary-100\/5:hover {
  background-color: rgb(245 240 249 / 0.05);
}
.hover\:bg-primary-100\/50:hover {
  background-color: rgb(245 240 249 / 0.5);
}
.hover\:bg-primary-100\/55:hover {
  background-color: rgb(245 240 249 / 0.55);
}
.hover\:bg-primary-100\/60:hover {
  background-color: rgb(245 240 249 / 0.6);
}
.hover\:bg-primary-100\/65:hover {
  background-color: rgb(245 240 249 / 0.65);
}
.hover\:bg-primary-100\/70:hover {
  background-color: rgb(245 240 249 / 0.7);
}
.hover\:bg-primary-100\/75:hover {
  background-color: rgb(245 240 249 / 0.75);
}
.hover\:bg-primary-100\/80:hover {
  background-color: rgb(245 240 249 / 0.8);
}
.hover\:bg-primary-100\/85:hover {
  background-color: rgb(245 240 249 / 0.85);
}
.hover\:bg-primary-100\/90:hover {
  background-color: rgb(245 240 249 / 0.9);
}
.hover\:bg-primary-100\/95:hover {
  background-color: rgb(245 240 249 / 0.95);
}
.hover\:bg-primary-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(216 200 233 / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary-400\/0:hover {
  background-color: rgb(216 200 233 / 0);
}
.hover\:bg-primary-400\/10:hover {
  background-color: rgb(216 200 233 / 0.1);
}
.hover\:bg-primary-400\/100:hover {
  background-color: rgb(216 200 233 / 1);
}
.hover\:bg-primary-400\/15:hover {
  background-color: rgb(216 200 233 / 0.15);
}
.hover\:bg-primary-400\/20:hover {
  background-color: rgb(216 200 233 / 0.2);
}
.hover\:bg-primary-400\/25:hover {
  background-color: rgb(216 200 233 / 0.25);
}
.hover\:bg-primary-400\/30:hover {
  background-color: rgb(216 200 233 / 0.3);
}
.hover\:bg-primary-400\/35:hover {
  background-color: rgb(216 200 233 / 0.35);
}
.hover\:bg-primary-400\/40:hover {
  background-color: rgb(216 200 233 / 0.4);
}
.hover\:bg-primary-400\/45:hover {
  background-color: rgb(216 200 233 / 0.45);
}
.hover\:bg-primary-400\/5:hover {
  background-color: rgb(216 200 233 / 0.05);
}
.hover\:bg-primary-400\/50:hover {
  background-color: rgb(216 200 233 / 0.5);
}
.hover\:bg-primary-400\/55:hover {
  background-color: rgb(216 200 233 / 0.55);
}
.hover\:bg-primary-400\/60:hover {
  background-color: rgb(216 200 233 / 0.6);
}
.hover\:bg-primary-400\/65:hover {
  background-color: rgb(216 200 233 / 0.65);
}
.hover\:bg-primary-400\/70:hover {
  background-color: rgb(216 200 233 / 0.7);
}
.hover\:bg-primary-400\/75:hover {
  background-color: rgb(216 200 233 / 0.75);
}
.hover\:bg-primary-400\/80:hover {
  background-color: rgb(216 200 233 / 0.8);
}
.hover\:bg-primary-400\/85:hover {
  background-color: rgb(216 200 233 / 0.85);
}
.hover\:bg-primary-400\/90:hover {
  background-color: rgb(216 200 233 / 0.9);
}
.hover\:bg-primary-400\/95:hover {
  background-color: rgb(216 200 233 / 0.95);
}
.hover\:bg-primary-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(168 142 231 / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(138 100 212 / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(114 73 183 / var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-100\/0:hover {
  background-color: rgb(254 226 226 / 0);
}
.hover\:bg-red-100\/10:hover {
  background-color: rgb(254 226 226 / 0.1);
}
.hover\:bg-red-100\/100:hover {
  background-color: rgb(254 226 226 / 1);
}
.hover\:bg-red-100\/15:hover {
  background-color: rgb(254 226 226 / 0.15);
}
.hover\:bg-red-100\/20:hover {
  background-color: rgb(254 226 226 / 0.2);
}
.hover\:bg-red-100\/25:hover {
  background-color: rgb(254 226 226 / 0.25);
}
.hover\:bg-red-100\/30:hover {
  background-color: rgb(254 226 226 / 0.3);
}
.hover\:bg-red-100\/35:hover {
  background-color: rgb(254 226 226 / 0.35);
}
.hover\:bg-red-100\/40:hover {
  background-color: rgb(254 226 226 / 0.4);
}
.hover\:bg-red-100\/45:hover {
  background-color: rgb(254 226 226 / 0.45);
}
.hover\:bg-red-100\/5:hover {
  background-color: rgb(254 226 226 / 0.05);
}
.hover\:bg-red-100\/50:hover {
  background-color: rgb(254 226 226 / 0.5);
}
.hover\:bg-red-100\/55:hover {
  background-color: rgb(254 226 226 / 0.55);
}
.hover\:bg-red-100\/60:hover {
  background-color: rgb(254 226 226 / 0.6);
}
.hover\:bg-red-100\/65:hover {
  background-color: rgb(254 226 226 / 0.65);
}
.hover\:bg-red-100\/70:hover {
  background-color: rgb(254 226 226 / 0.7);
}
.hover\:bg-red-100\/75:hover {
  background-color: rgb(254 226 226 / 0.75);
}
.hover\:bg-red-100\/80:hover {
  background-color: rgb(254 226 226 / 0.8);
}
.hover\:bg-red-100\/85:hover {
  background-color: rgb(254 226 226 / 0.85);
}
.hover\:bg-red-100\/90:hover {
  background-color: rgb(254 226 226 / 0.9);
}
.hover\:bg-red-100\/95:hover {
  background-color: rgb(254 226 226 / 0.95);
}
.hover\:bg-red-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-400\/0:hover {
  background-color: rgb(248 113 113 / 0);
}
.hover\:bg-red-400\/10:hover {
  background-color: rgb(248 113 113 / 0.1);
}
.hover\:bg-red-400\/100:hover {
  background-color: rgb(248 113 113 / 1);
}
.hover\:bg-red-400\/15:hover {
  background-color: rgb(248 113 113 / 0.15);
}
.hover\:bg-red-400\/20:hover {
  background-color: rgb(248 113 113 / 0.2);
}
.hover\:bg-red-400\/25:hover {
  background-color: rgb(248 113 113 / 0.25);
}
.hover\:bg-red-400\/30:hover {
  background-color: rgb(248 113 113 / 0.3);
}
.hover\:bg-red-400\/35:hover {
  background-color: rgb(248 113 113 / 0.35);
}
.hover\:bg-red-400\/40:hover {
  background-color: rgb(248 113 113 / 0.4);
}
.hover\:bg-red-400\/45:hover {
  background-color: rgb(248 113 113 / 0.45);
}
.hover\:bg-red-400\/5:hover {
  background-color: rgb(248 113 113 / 0.05);
}
.hover\:bg-red-400\/50:hover {
  background-color: rgb(248 113 113 / 0.5);
}
.hover\:bg-red-400\/55:hover {
  background-color: rgb(248 113 113 / 0.55);
}
.hover\:bg-red-400\/60:hover {
  background-color: rgb(248 113 113 / 0.6);
}
.hover\:bg-red-400\/65:hover {
  background-color: rgb(248 113 113 / 0.65);
}
.hover\:bg-red-400\/70:hover {
  background-color: rgb(248 113 113 / 0.7);
}
.hover\:bg-red-400\/75:hover {
  background-color: rgb(248 113 113 / 0.75);
}
.hover\:bg-red-400\/80:hover {
  background-color: rgb(248 113 113 / 0.8);
}
.hover\:bg-red-400\/85:hover {
  background-color: rgb(248 113 113 / 0.85);
}
.hover\:bg-red-400\/90:hover {
  background-color: rgb(248 113 113 / 0.9);
}
.hover\:bg-red-400\/95:hover {
  background-color: rgb(248 113 113 / 0.95);
}
.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-100\/0:hover {
  background-color: rgb(254 249 195 / 0);
}
.hover\:bg-yellow-100\/10:hover {
  background-color: rgb(254 249 195 / 0.1);
}
.hover\:bg-yellow-100\/100:hover {
  background-color: rgb(254 249 195 / 1);
}
.hover\:bg-yellow-100\/15:hover {
  background-color: rgb(254 249 195 / 0.15);
}
.hover\:bg-yellow-100\/20:hover {
  background-color: rgb(254 249 195 / 0.2);
}
.hover\:bg-yellow-100\/25:hover {
  background-color: rgb(254 249 195 / 0.25);
}
.hover\:bg-yellow-100\/30:hover {
  background-color: rgb(254 249 195 / 0.3);
}
.hover\:bg-yellow-100\/35:hover {
  background-color: rgb(254 249 195 / 0.35);
}
.hover\:bg-yellow-100\/40:hover {
  background-color: rgb(254 249 195 / 0.4);
}
.hover\:bg-yellow-100\/45:hover {
  background-color: rgb(254 249 195 / 0.45);
}
.hover\:bg-yellow-100\/5:hover {
  background-color: rgb(254 249 195 / 0.05);
}
.hover\:bg-yellow-100\/50:hover {
  background-color: rgb(254 249 195 / 0.5);
}
.hover\:bg-yellow-100\/55:hover {
  background-color: rgb(254 249 195 / 0.55);
}
.hover\:bg-yellow-100\/60:hover {
  background-color: rgb(254 249 195 / 0.6);
}
.hover\:bg-yellow-100\/65:hover {
  background-color: rgb(254 249 195 / 0.65);
}
.hover\:bg-yellow-100\/70:hover {
  background-color: rgb(254 249 195 / 0.7);
}
.hover\:bg-yellow-100\/75:hover {
  background-color: rgb(254 249 195 / 0.75);
}
.hover\:bg-yellow-100\/80:hover {
  background-color: rgb(254 249 195 / 0.8);
}
.hover\:bg-yellow-100\/85:hover {
  background-color: rgb(254 249 195 / 0.85);
}
.hover\:bg-yellow-100\/90:hover {
  background-color: rgb(254 249 195 / 0.9);
}
.hover\:bg-yellow-100\/95:hover {
  background-color: rgb(254 249 195 / 0.95);
}
.hover\:bg-yellow-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-400\/0:hover {
  background-color: rgb(250 204 21 / 0);
}
.hover\:bg-yellow-400\/10:hover {
  background-color: rgb(250 204 21 / 0.1);
}
.hover\:bg-yellow-400\/100:hover {
  background-color: rgb(250 204 21 / 1);
}
.hover\:bg-yellow-400\/15:hover {
  background-color: rgb(250 204 21 / 0.15);
}
.hover\:bg-yellow-400\/20:hover {
  background-color: rgb(250 204 21 / 0.2);
}
.hover\:bg-yellow-400\/25:hover {
  background-color: rgb(250 204 21 / 0.25);
}
.hover\:bg-yellow-400\/30:hover {
  background-color: rgb(250 204 21 / 0.3);
}
.hover\:bg-yellow-400\/35:hover {
  background-color: rgb(250 204 21 / 0.35);
}
.hover\:bg-yellow-400\/40:hover {
  background-color: rgb(250 204 21 / 0.4);
}
.hover\:bg-yellow-400\/45:hover {
  background-color: rgb(250 204 21 / 0.45);
}
.hover\:bg-yellow-400\/5:hover {
  background-color: rgb(250 204 21 / 0.05);
}
.hover\:bg-yellow-400\/50:hover {
  background-color: rgb(250 204 21 / 0.5);
}
.hover\:bg-yellow-400\/55:hover {
  background-color: rgb(250 204 21 / 0.55);
}
.hover\:bg-yellow-400\/60:hover {
  background-color: rgb(250 204 21 / 0.6);
}
.hover\:bg-yellow-400\/65:hover {
  background-color: rgb(250 204 21 / 0.65);
}
.hover\:bg-yellow-400\/70:hover {
  background-color: rgb(250 204 21 / 0.7);
}
.hover\:bg-yellow-400\/75:hover {
  background-color: rgb(250 204 21 / 0.75);
}
.hover\:bg-yellow-400\/80:hover {
  background-color: rgb(250 204 21 / 0.8);
}
.hover\:bg-yellow-400\/85:hover {
  background-color: rgb(250 204 21 / 0.85);
}
.hover\:bg-yellow-400\/90:hover {
  background-color: rgb(250 204 21 / 0.9);
}
.hover\:bg-yellow-400\/95:hover {
  background-color: rgb(250 204 21 / 0.95);
}
.hover\:\!text-black:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1)) !important;
}
.hover\:text-\[\#477FEA\]:hover {
  --tw-text-opacity: 1;
  color: rgb(71 127 234 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-500:hover {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hover\:text-primary-700:hover {
  --tw-text-opacity: 1;
  color: rgb(114 73 183 / var(--tw-text-opacity, 1));
}
.hover\:text-third-500:hover {
  --tw-text-opacity: 1;
  color: rgb(255 228 128 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:opacity-75:hover {
  opacity: 0.75;
}
.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-none:hover {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:z-10:focus {
  z-index: 10;
}
.focus\:border-blue-300:focus {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-800:focus {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}
.focus\:border-indigo-700:focus {
  --tw-border-opacity: 1;
  border-color: rgb(67 56 202 / var(--tw-border-opacity, 1));
}
.focus\:border-primary-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(168 142 231 / var(--tw-border-opacity, 1));
}
.focus\:border-white:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.focus\:\!bg-\[\#F14242\]:focus {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(241 66 66 / var(--tw-bg-opacity, 1)) !important;
}
.focus\:\!bg-primary-700:focus {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(114 73 183 / var(--tw-bg-opacity, 1)) !important;
}
.focus\:\!bg-transparent:focus {
  background-color: transparent !important;
}
.focus\:bg-\[\#477fea\]:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(71 127 234 / var(--tw-bg-opacity, 1));
}
.focus\:bg-primary-500:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(168 142 231 / var(--tw-bg-opacity, 1));
}
.focus\:bg-primary-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(114 73 183 / var(--tw-bg-opacity, 1));
}
.focus\:\!text-black:focus {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1)) !important;
}
.focus\:text-gray-900:focus {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.focus\:text-indigo-500:focus {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.focus\:text-third-500:focus {
  --tw-text-opacity: 1;
  color: rgb(255 228 128 / var(--tw-text-opacity, 1));
}
.focus\:underline:focus {
  text-decoration-line: underline;
}
.focus\:placeholder-gray-400:focus::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.focus\:placeholder-gray-400:focus::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-inset:focus {
  --tw-ring-inset: inset;
}
.focus\:\!ring-\[\#F14242\]:focus {
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgb(241 66 66 / var(--tw-ring-opacity, 1)) !important;
}
.focus\:\!ring-primary-600:focus {
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgb(138 100 212 / var(--tw-ring-opacity, 1)) !important;
}
.focus\:ring-\[\#477fea\]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(71 127 234 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cyan-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 252 231 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity, 1));
}
.focus\:ring-primary-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 142 231 / var(--tw-ring-opacity, 1));
}
.focus\:ring-primary-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(138 100 212 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.focus\:ring-success:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(16 185 123 / var(--tw-ring-opacity, 1));
}
.focus\:ring-white:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
.focus\:ring-offset-gray-800:focus {
  --tw-ring-offset-color: #1f2937;
}
.focus-visible\:outline:focus-visible {
  outline-style: solid;
}
.focus-visible\:outline-2:focus-visible {
  outline-width: 2px;
}
.focus-visible\:outline-offset-2:focus-visible {
  outline-offset: 2px;
}
.focus-visible\:outline-indigo-600:focus-visible {
  outline-color: #4f46e5;
}
.focus-visible\:outline-primary-600:focus-visible {
  outline-color: #8A64D4;
}
.active\:border-primary-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(138 100 212 / var(--tw-border-opacity, 1));
}
.active\:border-purple-600:active {
  --tw-border-opacity: 1;
  border-color: rgb(147 51 234 / var(--tw-border-opacity, 1));
}
.active\:bg-gray-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.active\:bg-indigo-700:active {
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}
.active\:shadow-none:active {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:border-gray-200:disabled {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.disabled\:bg-gray-300:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.disabled\:bg-primary-300:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(224 211 238 / var(--tw-bg-opacity, 1));
}
.disabled\:text-gray-500:disabled {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.disabled\:text-white:disabled {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.disabled\:opacity-75:disabled {
  opacity: 0.75;
}
.disabled\:shadow-none:disabled {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.disabled\:hover\:border-gray-200:hover:disabled {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.group:hover .group-hover\:block {
  display: block;
}
.group:hover .group-hover\:flex {
  display: flex;
}
.group:hover .group-hover\:h-16 {
  height: 4rem;
}
.group:hover .group-hover\:h-32 {
  height: 8rem;
}
.group:hover .group-hover\:w-32 {
  width: 8rem;
}
.group:hover .group-hover\:-translate-x-0 {
  --tw-translate-x: -0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:-translate-y-0 {
  --tw-translate-y: -0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.group:hover .group-hover\:bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:bg-primary-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(80 47 117 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:bg-second-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 207 232 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-primary-700 {
  --tw-text-opacity: 1;
  color: rgb(114 73 183 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:opacity-75 {
  opacity: 0.75;
}
.group:focus .group-focus\:hidden {
  display: none;
}
.group:focus .group-focus\:text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
@media (min-width: 640px) {

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

  .sm\:col-span-1 {
    grid-column: span 1 / span 1;
  }

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

  .sm\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .sm\:col-span-4 {
    grid-column: span 4 / span 4;
  }

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

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

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

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

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

  .sm\:ml-auto {
    margin-left: auto;
  }

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

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

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

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

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

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

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

  .sm\:block {
    display: block;
  }

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

  .sm\:flex {
    display: flex;
  }

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

  .sm\:table {
    display: table;
  }

  .sm\:grid {
    display: grid;
  }

  .sm\:hidden {
    display: none;
  }

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

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

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

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

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

  .sm\:w-auto {
    width: auto;
  }

  .sm\:max-w-3xl {
    max-width: 48rem;
  }

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

  .sm\:flex-1 {
    flex: 1 1 0%;
  }

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

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

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

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

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

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

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

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

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

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:gap-8 {
    gap: 2rem;
  }

  .sm\:gap-px {
    gap: 1px;
  }

  .sm\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .sm\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .sm\:gap-y-12 {
    row-gap: 3rem;
  }

  .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }

  .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
  }

  .sm\:overflow-hidden {
    overflow: hidden;
  }

  .sm\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .sm\:rounded-lg {
    border-radius: 0.5rem;
  }

  .sm\:rounded-md {
    border-radius: 0.375rem;
  }

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

  .sm\:rounded-bl-none {
    border-bottom-left-radius: 0px;
  }

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

  .sm\:rounded-tr-none {
    border-top-right-radius: 0px;
  }

  .sm\:border-0 {
    border-width: 0px;
  }

  .sm\:border-l {
    border-left-width: 1px;
  }

  .sm\:border-r {
    border-right-width: 1px;
  }

  .sm\:border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }

  .sm\:p-0 {
    padding: 0px;
  }

  .sm\:p-2 {
    padding: 0.5rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:p-8 {
    padding: 2rem;
  }

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

  .sm\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .sm\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sm\:pb-16 {
    padding-bottom: 4rem;
  }

  .sm\:pt-16 {
    padding-top: 4rem;
  }

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

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

  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

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

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

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

  .sm\:tracking-tight {
    letter-spacing: -0.025em;
  }
  
  p.sm\:text-sm {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 768px) {

  .md\:sticky {
    position: sticky;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

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

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

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

  .md\:ml-112 {
    margin-left: 28rem;
  }

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

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

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

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

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

  .md\:block {
    display: block;
  }

  .md\:inline {
    display: inline;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

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

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

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

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

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

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

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-20 {
    width: 5rem;
  }

  .md\:w-3\/5 {
    width: 60%;
  }

  .md\:w-auto {
    width: auto;
  }

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

  .md\:max-w-xl {
    max-width: 36rem;
  }

  .md\:flex-1 {
    flex: 1 1 0%;
  }

  .md\:grow {
    flex-grow: 1;
  }

  .md\:cursor-default {
    cursor: default;
  }

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

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

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

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

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

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

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

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

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

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

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .md\:gap-y-0 {
    row-gap: 0px;
  }

  .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
  }

  .md\:overflow-auto {
    overflow: auto;
  }

  .md\:rounded-lg {
    border-radius: 0.5rem;
  }

  .md\:border-l-0 {
    border-left-width: 0px;
  }

  .md\:border-t-0 {
    border-top-width: 0px;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:p-5 {
    padding: 1.25rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:pr-12 {
    padding-right: 3rem;
  }

  .md\:pt-12 {
    padding-top: 3rem;
  }

  .md\:pt-6 {
    padding-top: 1.5rem;
  }

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

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {

  .lg\:fixed {
    position: fixed;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:inset-y-0 {
    top: 0px;
    bottom: 0px;
  }

  .lg\:-right-8 {
    right: -2rem;
  }

  .lg\:left-auto {
    left: auto;
  }

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

  .lg\:right-72 {
    right: 18rem;
  }

  .lg\:top-12 {
    top: 3rem;
  }

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

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

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

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

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

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

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

  .lg\:col-start-1 {
    grid-column-start: 1;
  }

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

  .lg\:col-start-3 {
    grid-column-start: 3;
  }

  .lg\:col-start-4 {
    grid-column-start: 4;
  }

  .lg\:row-start-1 {
    grid-row-start: 1;
  }

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

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

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

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

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

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

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

  .lg\:w-24 {
    width: 6rem;
  }

  .lg\:w-64 {
    width: 16rem;
  }

  .lg\:w-8 {
    width: 2rem;
  }

  .lg\:w-96 {
    width: 24rem;
  }

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

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

  .lg\:max-w-3xl {
    max-width: 48rem;
  }

  .lg\:max-w-4xl {
    max-width: 56rem;
  }

  .lg\:max-w-7xl {
    max-width: 80rem;
  }

  .lg\:max-w-9xl {
    max-width: 90rem;
  }

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

  .lg\:flex-none {
    flex: none;
  }

  .lg\:translate-y-20 {
    --tw-translate-y: 5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:grid-flow-row-dense {
    grid-auto-flow: row dense;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:gap-0 {
    gap: 0px;
  }

  .lg\:gap-24 {
    gap: 6rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .lg\:gap-y-12 {
    row-gap: 3rem;
  }

  .lg\:self-center {
    align-self: center;
  }

  .lg\:rounded-3xl {
    border-radius: 1.5rem;
  }

  .lg\:rounded-md {
    border-radius: 0.375rem;
  }

  .lg\:border-none {
    border-style: none;
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:p-2 {
    padding: 0.5rem;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:pb-28 {
    padding-bottom: 7rem;
  }

  .lg\:pl-16 {
    padding-left: 4rem;
  }

  .lg\:pl-2 {
    padding-left: 0.5rem;
  }

  .lg\:pl-64 {
    padding-left: 16rem;
  }

  .lg\:pl-\[60px\] {
    padding-left: 60px;
  }

  .lg\:pr-0 {
    padding-right: 0px;
  }

  .lg\:pt-20 {
    padding-top: 5rem;
  }

  .lg\:pt-24 {
    padding-top: 6rem;
  }

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

  .lg\:text-end {
    text-align: end;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  p.lg\:text-sm {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .lg\:hover\:bg-gray-50:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
@media (min-width: 1280px) {

  .xl\:bottom-auto {
    bottom: auto;
  }

  .xl\:top-0 {
    top: 0px;
  }

  .xl\:col-span-1 {
    grid-column: span 1 / span 1;
  }

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

  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

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

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

  .xl\:grid {
    display: grid;
  }

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

  .xl\:-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

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

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

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

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

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

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

  .xl\:gap-8 {
    gap: 2rem;
  }

  .xl\:gap-x-10 {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .xl\:gap-x-8 {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xl\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xl\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .xl\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (prefers-color-scheme: dark) {

  .dark\:bg-gray-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
  }

  .dark\:text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}

[x-cloak] { display: none; }

html,
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.btn-spinner,
.btn-spinner:after {
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
}

.btn-spinner {
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: .2em solid white;
    border-right: .2em solid white;
    border-bottom: .2em solid white;
    border-left: .2em solid transparent;
    transform: translateZ(0);
    animation: spinning 1s infinite linear;
}

@keyframes spinning {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}

.v-lazy-image {
  filter: blur(10px);
  transition: filter 0.7s;
}
.v-lazy-image-loaded {
  filter: blur(0);
}

.flatpickr-day.nextMonthDay {
    color: #404848 !important
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes gentle-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

.gentle-pulse {
  animation: gentle-pulse 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}




.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}





  p.btn-secondary {
  font-size: 1rem;
  line-height: 1.5rem;
}




.btn-secondary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-width: 2px;
}




.btn-secondary {
  border: 1px solid #8A64D4;
  color: #8A64D4;
  background-color: transparent;
}
.btn-secondary:hover:not(:disabled) {
  background-color: rgba(138, 100, 212, 0.1);
}
.btn-secondary:active:not(:disabled) {
  background-color: rgba(138, 100, 212, 0.15);
}
.btn-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(138, 100, 212, 0.4);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}


  p.btn-primary {
  font-size: 1rem;
  line-height: 1.5rem;
}

.btn-primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-width: 2px;
}

.btn-primary {
  background-color: #8A64D4;
}
.btn-primary:hover:not(:disabled) {
  background-color: #7249B7;
}
.btn-primary:active:not(:disabled) {
  background-color: #653e9d;
}
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #8A64D4;
}

.aspect-vertical_story {
  max-height: 600px;
}

.tag-option {
  margin-bottom: 4px;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0.25rem;
  border-width: 2px;
  border-style: solid;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}


  p.tag-option {
  font-size: 1rem;
  line-height: 1.5rem;
}

.tag-option {
  border-color: #477FEA;
}

.tag-option:hover,
.tag-option.active {
  background-color: #477FEA;
  color: white;
}

/* Reusable dropdown styles */
.dropdown-menu {
  background: #fff;
  padding: 0.5rem 0;
  min-width: 8rem;
  position: fixed;
  overflow: visible;
  /* ensure dropdowns overlay other UI like modals */
  z-index: 99999;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li,
.dropdown-menu p {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.dropdown-menu li + li,
.dropdown-menu p + p {
  border-top: 1px solid #e5e5e5;
}

.dropdown-menu li:hover,
.dropdown-menu p:hover {
  background-color: #f0f0f0;
}

.dropdown-menu .danger {
  color: #F14242;
}

/* Menu item styles */
.menu-item {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.menu-item:hover {
  background-color: #f4f4f4;
}
.menu-item:focus-visible {
  outline: 2px solid #8A64D4;
  outline-offset: 2px;
}
.menu-item.delete {
  color: #e5484d;
}
.menu-item.delete:hover {
  background-color: #fff1f1;
}

/* Styles moved from product/show */
#description ol,
#description ul {
  list-style-type: disc !important;
}

.swal-upgrade {
  border-radius: 1rem !important;
}


/* Kebab menu */
.kebab-menu {
  position: relative;
}

/* Display dog sizes in uppercase on public product pages
   Dog sizes should be listed in logical order: XS, S, M, L, XL */
.dog-sizes {
  text-transform: uppercase;
}

/* Utility to show location fields in title case */
.title-case {
  text-transform: capitalize;
}

/* Standard avatar style for product images */
.avatar-product {
  border-radius: 0.5rem;
}

.handle-with-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Notification badge utility */
.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #F14242; /* brand warning red */
  color: white;
  font-size: 10px;
  border-radius: 9999px;
  height: 16px;
  min-width: 16px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper for icons with badges */
.icon-container {
  position: relative;
  display: block;
}

/* Search bar component */
.search-bar {
  display: flex;
  width: 100%;
  max-width: 42rem;
}
.search-bar > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  --tw-divide-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-divide-opacity, 1));
}
.search-bar {
  overflow: hidden;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.search-bar--floating {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 50;
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  background-color: rgb(255 255 255 / 0.9);
}

.search-bar__button {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.search-bar__button--active {
  --tw-bg-opacity: 1;
  background-color: rgb(245 240 249 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.search-bar__button--inactive {
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.search-bar__input {
  position: relative;
  display: flex;
  flex: 1 1 0%;
  align-items: center;
  border-radius: 0px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.search-bar__field {
  width: 100%;
  border-width: 0px;
  background-color: transparent;
  padding-right: 2rem;
}

.search-bar__field::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}

.search-bar__field::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}

.search-bar__field {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.search-bar__field:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 142 231 / var(--tw-ring-opacity, 1));
}

.search-bar__icon {
  pointer-events: none;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  height: 1.25rem;
  width: 1.25rem;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.search-bar__fetch {
  display: flex;
  align-items: center;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Modal header with divider */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  padding-top: 1rem;
  padding-bottom: 1rem;
}


