/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
/*@tailwind base;*/


/**
 * Custom base styles
 */

*:not([class^="Mui"]),
*:not([class*=" Mui"]),
::before:not([class^="Mui"]),
::before:not([class*=" Mui"]),
::after:not([class^="Mui"]),
::after:not([class*=" Mui"]) {
    border-width: 0;
    border-style: solid;
}

[class^="MuiBox"],
[class*="MuiBox"],
[class^="MuiPaper"],
[class*="MuiPaper"] {
    border-width: 0;
    border-style: solid;
}

[class^="border"],
[class*="border"] {
    border-style: solid;
    border-width: 0;
}

* {
    /* Text rendering */
    text-rendering: optimizeLegibility;
    -o-text-rendering: optimizeLegibility;
    -ms-text-rendering: optimizeLegibility;
    -moz-text-rendering: optimizeLegibility;
    -webkit-text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

* :focus {
    outline: none !important;
}

html {
    font-size: 62.5%;
    font-family: 'Inter var', Roboto, Helvetica Neue, Arial, sans-serif;
    background-color: #121212;
}

body {
    font-size: 13px;
    line-height: 1.3;
    overflow-x: hidden;
    font-feature-settings: "salt";
}

html,
body {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    min-height: 100%;
    width: 100%;
    flex: 1 1 auto;
    --fc-small-font-size: 0.85em !important;
    --fc-page-bg-color: #fff !important;
    --fc-neutral-bg-color: hsla(0, 0%, 82%, 0.3) !important;
    --fc-neutral-text-color: grey !important;
    --fc-border-color: #ddd !important;
    --fc-button-text-color: #fff !important;
    --fc-button-bg-color: rgb(59 130 246 / 1) !important;
    --fc-button-border-color: #e2e8f0 !important;
    --fc-button-hover-bg-color: rgb(29 78 216 / 1) !important;
    --fc-button-hover-border-color: #e2e8f0 !important;
    --fc-button-active-bg-color: rgba(29, 78, 216, 0.3) !important;
    --fc-button-active-border-color: #e2e8f0 !important;
    --fc-event-bg-color: #3788d8 !important;
    --fc-event-border-color: #3788d8 !important;
    --fc-event-text-color: #fff !important;
    --fc-event-selected-overlay-color: rgba(0, 0, 0, 0.25) !important;
    --fc-more-link-bg-color: #d0d0d0 !important;
    --fc-more-link-text-color: inherit !important;
    --fc-event-resizer-thickness: 8px !important;
    --fc-event-resizer-dot-total-width: 8px !important;
    --fc-event-resizer-dot-border-width: 1px !important;
    --fc-non-business-color: hsla(0, 0%, 84%, 0.3) !important;
    --fc-bg-event-color: #8fdf82 !important;
    --fc-bg-event-opacity: 0.3 !important;
    --fc-highlight-color: rgba(188, 232, 241, 0.3) !important;
    --fc-today-bg-color: rgba(255, 220, 40, 0.15) !important;
    --fc-now-indicator-color: red !important;
}

#root {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
}

h1,
.h1 {
    font-size: 24px;
}

h2,
.h2 {
    font-size: 20px;
}

h3,
.h3 {
    font-size: 16px;
}

h4,
.h4 {
    font-size: 15px;
}

h5,
.h5 {
    font-size: 13px;
}

h6,
.h6 {
    font-size: 12px;
}

.ps>.ps__rail-y,
.ps>.ps__rail-x {
    z-index: 99;
}

[dir="rtl"] .ps__thumb-y {
    right: auto !important;
    left: 2px !important;
}

[dir="rtl"] .ps>.ps__rail-y {
    left: 0 !important;
    right: auto !important;
}

a[role=button] {
    text-decoration: none;
}

[role="tooltip"] {
    z-index: 9999;
}

.MuiModal-root {
    z-index: 9999;
}

.MuiFormLabel-root {
    color: #121212;
}

.MuiFormLabel-asterisk {
    color: red;
}


/* Medium Devices, Desktops Only */

@media only screen and (min-width: 992px) {
     ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background-color: rgba(0, 0, 0, 0);
    }
     ::-webkit-scrollbar:hover {
        width: 8px;
        height: 8px;
        background-color: rgba(0, 0, 0, 0.06);
    }
     ::-webkit-scrollbar-thumb {
        border: 2px solid transparent;
        border-radius: 20px;
    }
     ::-webkit-scrollbar-thumb:active {
        border-radius: 20px;
    }
}

form label {
    z-index: 99;
}

body.no-animate *,
body.no-animate *::before,
body.no-animate *::after {
    transition: none !important;
    animation: none !important;
}

button:focus {
    outline: none;
}


/* Removes webkit's autofill backgorund color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition-delay: 9999s;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
}

:focus {
    outline-color: transparent;
}


/*fullcalendar Fix*/

.fc-scrollgrid-section-liquid {
    height: 1px !important;
}


/* MultiDatePicker (rmdp) specific overrides */

[class^="rmdp"],
[class*=" rmdp"] {
    border-width: initial;
    border-style: initial;
}

[class^="rmdp"]:focus,
[class*=" rmdp"]:focus,
[class^="rmdp"] *:focus,
[class*=" rmdp"] *:focus {
    outline: initial !important;
    outline-color: initial !important;
}/**
 * Component classes registered by plugins.
 */

/*----------------------------------------------------------------*/

/*  Print
/*----------------------------------------------------------------*/

@media all {
    /* Never show page breaks in normal view */
    .page-break-after,
    .page-break-before {
        display: none;
    }
}

@media print {
    /* html and body tweaks */
    html, body {
        height: auto !important;
        overflow: initial !important;
        background: none
    }

    /* Page breaks */
    .page-break-after {
        display: block;
        page-break-after: always;
        position: relative;
    }

    .page-break-before {
        display: block;
        page-break-before: always;
        position: relative;
    }

    /* General styles */
    #fuse-toolbar,
    #fuse-footer,
    #fuse-navbar,
    #fuse-settings-presets,
    #fuse-layout .ps > .ps__rail-x,
    #fuse-layout .ps > .ps__rail-y {
        display: none !important;
    }

    #fuse-layout .ps {
        overflow: visible !important;
    }
}

/**
Basic Table Styles
 */

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

table.simple {
    width: 100%;
    border: none;
    border-spacing: 0;
    text-align: left;
}

table.simple thead tr th {
    padding: 16px 8px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

table.simple thead tr th:first-child {
    padding-left: 24px;
}

table.simple thead tr th:last-child {
    padding-right: 24px;
}

table.simple tbody tr td {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

table.simple tbody tr td:first-child {
    padding-left: 24px;
}

table.simple tbody tr td:last-child {
    padding-right: 24px;
}

table.simple tbody tr:last-child td {
    border-bottom: none;
}

table.simple.clickable tbody tr {
    cursor: pointer;
}

table.simple.clickable tbody tr:hover {
    background: rgba(0, 0, 0, 0.03);
}

table.simple.borderless {
    border: none;
}

table.simple.borderless tbody tr td{
    border: none;
}

table.simple.borderless thead tr th{
    border: none;
}

/* Dense Table Styles */

table.dense {
    width: 100%;
    border: none;
    border-spacing: 0;
    text-align: left;
}

table.dense thead tr th {
    padding: 8px 4px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

table.dense thead tr th:first-child {
    padding-left: 12px;
}

table.dense thead tr th:last-child {
    padding-right: 12px;
}

table.dense tbody tr td {
    padding: 6px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

table.dense tbody tr td:first-child {
    padding-left: 12px;
}

table.dense tbody tr td:last-child {
    padding-right: 12px;
}

table.dense tbody tr:last-child td {
    border-bottom: none;
}

code[class*="language-"],
pre[class*="language-"] {
    text-align: left;
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
    color: #c3cee3;
    background: #263238;
    font-family: Roboto Mono,"Liberation Mono",Menlo,Courier,monospace;
    font-size: .9em;
    line-height: 1.5;
    tab-size: 4;
    -webkit-hyphens: none;
    hyphens: none;
}

code[class*="language-"]::selection,
pre[class*="language-"]::selection,
code[class*="language-"] ::selection,
pre[class*="language-"] ::selection {
    background: #000000;
}

:not(pre) > code[class*="language-"] {
    white-space: normal;
    border-radius: 0.2em;
    padding: 0.1em;
}

pre[class*="language-"] {
    overflow: auto;
    position: relative;
    padding: 12px;
    border-radius: 4px;;
}

.language-css > code,
.language-sass > code,
.language-scss > code {
    color: #fd9170;
}

[class*="language-"] .namespace {
    opacity: 0.7;
}

.token.plain-text {
    color: #c3cee3;
}

.token.atrule {
    color: #c792ea;
}

.token.attr-name {
    color: #ffcb6b;
}

.token.attr-value {
    color: #c3e88d;
}

.token.attribute {
    color: #c3e88d;
}

.token.boolean {
    color: #c792ea;
}

.token.builtin {
    color: #ffcb6b;
}

.token.cdata {
    color: #80cbc4;
}

.token.char {
    color: #80cbc4;
}

.token.class {
    color: #ffcb6b;
}

.token.class-name {
    color: #82aaff;
}

.token.color {
    color: #f2ff00;
}

.token.comment {
    color: #546e7a;
}

.token.constant {
    color: #c792ea;
}

.token.deleted {
    color: #f07178;
}

.token.doctype {
    color: #546e7a;
}

.token.entity {
    color: #f07178;
}

.token.function {
    color: #c792ea;
}

.token.hexcode {
    color: #f2ff00;
}

.token.id {
    color: #c792ea;
    font-weight: bold;
}

.token.important {
    color: #c792ea;
    font-weight: bold;
}

.token.inserted {
    color: #80cbc4;
}

.token.keyword {
    color: #c792ea;
    font-style: italic;
}

.token.number {
    color: #fd9170;
}

.token.operator {
    color: #89ddff;
}

.token.prolog {
    color: #546e7a;
}

.token.property {
    color: #80cbc4;
}

.token.pseudo-class {
    color: #c3e88d;
}

.token.pseudo-element {
    color: #c3e88d;
}

.token.punctuation {
    color: #89ddff;
}

.token.regex {
    color: #f2ff00;
}

.token.selector {
    color: #f07178;
}

.token.string {
    color: #c3e88d;
}

.token.symbol {
    color: #c792ea;
}

.token.tag {
    color: #f07178;
}

.token.unit {
    color: #f07178;
}

.token.url {
    color: #fd9170;
}

.token.variable {
    color: #f07178;
}

.\!container {
    width: 100% !important;
}

.container {
    width: 100%;
}

@media (min-width: 600px) {

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

    .container {
        max-width: 600px;
    }
}

@media (min-width: 960px) {

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

    .container {
        max-width: 960px;
    }
}

@media (min-width: 1280px) {

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

    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1920px) {

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

    .container {
        max-width: 1920px;
    }
}

.prose {
    color: var(--tw-prose-body);
    max-width: 65ch;
}

.prose :where(p):not(:where([class~="not-prose"] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.prose :where([class~="lead"]):not(:where([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"] *)) {
    color: var(--tw-prose-links);
    text-decoration: underline;
    font-weight: 500;
}

.prose :where(strong):not(:where([class~="not-prose"] *)) {
    color: var(--tw-prose-bold);
    font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"] *)) {
    color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"] *)) {
    color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"] *)) {
    color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"] *)) {
    list-style-type: decimal;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
    list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
    list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
    list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
    list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
    list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
    list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
    list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
    list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
    list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"] *)) {
    list-style-type: disc;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
    font-weight: 400;
    color: var(--tw-prose-counters);
}

.prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
    color: var(--tw-prose-bullets);
}

.prose :where(hr):not(:where([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"] *)) {
    font-weight: 500;
    font-style: italic;
    color: var(--tw-prose-quotes);
    border-left-width: 0.25rem;
    border-left-color: var(--tw-prose-quote-borders);
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-left: 1em;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before {
    content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after {
    content: close-quote;
}

.prose :where(h1):not(:where([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"] *)) {
    font-weight: 900;
    color: inherit;
}

.prose :where(h2):not(:where([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"] *)) {
    font-weight: 800;
    color: inherit;
}

.prose :where(h3):not(:where([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"] *)) {
    font-weight: 700;
    color: inherit;
}

.prose :where(h4):not(:where([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"] *)) {
    font-weight: 700;
    color: inherit;
}

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

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

.prose :where(figcaption):not(:where([class~="not-prose"] *)) {
    color: var(--tw-prose-captions);
    font-size: 0.875em;
    line-height: 1.4285714;
    margin-top: 0.8571429em;
}

.prose :where(code):not(:where([class~="not-prose"] *)) {
    color: var(--tw-prose-code);
    font-weight: 600;
    font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"] *))::before {
    content: "`";
}

.prose :where(code):not(:where([class~="not-prose"] *))::after {
    content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"] *)) {
    color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"] *)) {
    color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"] *)) {
    color: inherit;
    font-size: 0.875em;
}

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

.prose :where(h4 code):not(:where([class~="not-prose"] *)) {
    color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"] *)) {
    color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"] *)) {
    color: inherit;
}

.prose :where(pre):not(:where([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-right: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-left: 1.1428571em;
}

.prose :where(pre code):not(:where([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"] *))::before {
    content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"] *))::after {
    content: none;
}

.prose :where(table):not(:where([class~="not-prose"] *)) {
    width: 100%;
    table-layout: auto;
    text-align: left;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    vertical-align: bottom;
    padding-right: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-left: 0.5714286em;
}

.prose :where(tbody tr):not(:where([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"] *)) {
    border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"] *)) {
    vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"] *)) {
    border-top-width: 1px;
    border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"] *)) {
    vertical-align: top;
}

.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-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-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: 1.3rem;
    line-height: 1.75;
}

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

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

.prose :where(li):not(:where([class~="not-prose"] *)) {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"] *)) {
    padding-left: 0.375em;
}

.prose :where(ul > li):not(:where([class~="not-prose"] *)) {
    padding-left: 0.375em;
}

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

.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
    margin-top: 1.25em;
}

.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
    margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
    margin-top: 1.25em;
}

.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
    margin-bottom: 1.25em;
}

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

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

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

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

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

.prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
    padding-left: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
    padding-right: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
    padding-top: 0.5714286em;
    padding-right: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-left: 0.5714286em;
}

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

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

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

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

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

.prose-sm :where(p):not(:where([class~="not-prose"] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em;
}

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

.prose-sm :where(blockquote):not(:where([class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
    padding-left: 1.1111111em;
}

.prose-sm :where(h1):not(:where([class~="not-prose"] *)) {
    font-size: 2.1428571em;
    margin-top: 0;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

.prose-sm :where(h2):not(:where([class~="not-prose"] *)) {
    font-size: 1.4285714em;
    margin-top: 1.6em;
    margin-bottom: 0.8em;
    line-height: 1.4;
}

.prose-sm :where(h3):not(:where([class~="not-prose"] *)) {
    font-size: 1.2857143em;
    margin-top: 1.5555556em;
    margin-bottom: 0.4444444em;
    line-height: 1.5555556;
}

.prose-sm :where(h4):not(:where([class~="not-prose"] *)) {
    margin-top: 1.4285714em;
    margin-bottom: 0.5714286em;
    line-height: 1.4285714;
}

.prose-sm :where(img):not(:where([class~="not-prose"] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
}

.prose-sm :where(video):not(:where([class~="not-prose"] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
}

.prose-sm :where(figure):not(:where([class~="not-prose"] *)) {
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
}

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

.prose-sm :where(figcaption):not(:where([class~="not-prose"] *)) {
    font-size: 0.8571429em;
    line-height: 1.3333333;
    margin-top: 0.6666667em;
}

.prose-sm :where(code):not(:where([class~="not-prose"] *)) {
    font-size: 0.8571429em;
}

.prose-sm :where(h2 code):not(:where([class~="not-prose"] *)) {
    font-size: 0.9em;
}

.prose-sm :where(h3 code):not(:where([class~="not-prose"] *)) {
    font-size: 0.8888889em;
}

.prose-sm :where(pre):not(:where([class~="not-prose"] *)) {
    font-size: 0.8571429em;
    line-height: 1.6666667;
    margin-top: 1.6666667em;
    margin-bottom: 1.6666667em;
    border-radius: 0.25rem;
    padding-top: 0.6666667em;
    padding-right: 1em;
    padding-bottom: 0.6666667em;
    padding-left: 1em;
}

.prose-sm :where(ol):not(:where([class~="not-prose"] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em;
    padding-left: 1.5714286em;
}

.prose-sm :where(ul):not(:where([class~="not-prose"] *)) {
    margin-top: 1.1428571em;
    margin-bottom: 1.1428571em;
    padding-left: 1.5714286em;
}

.prose-sm :where(li):not(:where([class~="not-prose"] *)) {
    margin-top: 0.2857143em;
    margin-bottom: 0.2857143em;
}

.prose-sm :where(ol > li):not(:where([class~="not-prose"] *)) {
    padding-left: 0.4285714em;
}

.prose-sm :where(ul > li):not(:where([class~="not-prose"] *)) {
    padding-left: 0.4285714em;
}

.prose-sm :where(.prose-sm > ul > li p):not(:where([class~="not-prose"] *)) {
    margin-top: 0.5714286em;
    margin-bottom: 0.5714286em;
}

.prose-sm :where(.prose-sm > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
    margin-top: 1.1428571em;
}

.prose-sm :where(.prose-sm > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
    margin-bottom: 1.1428571em;
}

.prose-sm :where(.prose-sm > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
    margin-top: 1.1428571em;
}

.prose-sm :where(.prose-sm > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
    margin-bottom: 1.1428571em;
}

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

.prose-sm :where(hr):not(:where([class~="not-prose"] *)) {
    margin-top: 2.8571429em;
    margin-bottom: 2.8571429em;
}

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

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

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

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

.prose-sm :where(table):not(:where([class~="not-prose"] *)) {
    font-size: 0.8571429em;
    line-height: 1.5;
}

.prose-sm :where(thead th):not(:where([class~="not-prose"] *)) {
    padding-right: 1em;
    padding-bottom: 0.6666667em;
    padding-left: 1em;
}

.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
    padding-left: 0;
}

.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
    padding-right: 0;
}

.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
    padding-top: 0.6666667em;
    padding-right: 1em;
    padding-bottom: 0.6666667em;
    padding-left: 1em;
}

.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
    padding-left: 0;
}

.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
    padding-right: 0;
}

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

.prose-sm :where(.prose-sm > :last-child):not(:where([class~="not-prose"] *)) {
    margin-bottom: 0;
}
/**
 * Tailwind's utility classes, generated based on your config file.
 */

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

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

.visible {
        visibility: visible;
}

.invisible {
        visibility: hidden;
}

.collapse {
        visibility: collapse;
}

.static {
        position: static;
}

.fixed {
        position: fixed;
}

.absolute {
        position: absolute;
}

.relative {
        position: relative;
}

.sticky {
        position: -webkit-sticky;
        position: sticky;
}

.inset-0 {
        inset: 0px;
}

.inset-x-0 {
        left: 0px;
        right: 0px;
}

.-bottom-10 {
        bottom: -1.0rem;
}

.-left-120 {
        left: -12rem;
}

.-right-1 {
        right: -0.1rem;
}

.-right-10 {
        right: -1.0rem;
}

.-right-12 {
        right: -1.2rem;
}

.-right-64 {
        right: -6.4rem;
}

.-right-\[10px\] {
        right: -10px;
}

.-right-\[15px\] {
        right: -15px;
}

.-top-12 {
        top: -1.2rem;
}

.-top-64 {
        top: -6.4rem;
}

.-top-9 {
        top: -0.9rem;
}

.-top-\[5px\] {
        top: -5px;
}

.bottom-0 {
        bottom: 0px;
}

.bottom-2 {
        bottom: 0.2rem;
}

.bottom-4 {
        bottom: 0.4rem;
}

.left-0 {
        left: 0px;
}

.left-2 {
        left: 0.2rem;
}

.left-4 {
        left: 0.4rem;
}

.left-\[282px\] {
        left: 282px;
}

.right-0 {
        right: 0px;
}

.right-2 {
        right: 0.2rem;
}

.right-4 {
        right: 0.4rem;
}

.top-0 {
        top: 0px;
}

.top-2 {
        top: 0.2rem;
}

.top-4 {
        top: 0.4rem;
}

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

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

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

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

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

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

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

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

.z-\[99999\] {
        z-index: 99999;
}

.z-\[9999\] {
        z-index: 9999;
}

.z-\[999\] {
        z-index: 999;
}

.order-first {
        order: -9999;
}

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

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

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

.m-0 {
        margin: 0px;
}

.m-16 {
        margin: 1.6rem;
}

.m-2 {
        margin: 0.2rem;
}

.m-20 {
        margin: 2rem;
}

.m-24 {
        margin: 2.4rem;
}

.m-4 {
        margin: 0.4rem;
}

.m-40 {
        margin: 4rem;
}

.m-5 {
        margin: 0.5rem;
}

.m-6 {
        margin: 0.6rem;
}

.m-8 {
        margin: 0.8rem;
}

.m-auto {
        margin: auto;
}

.-mx-12 {
        margin-left: -1.2rem;
        margin-right: -1.2rem;
}

.-mx-8 {
        margin-left: -0.8rem;
        margin-right: -0.8rem;
}

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

.mx-16 {
        margin-left: 1.6rem;
        margin-right: 1.6rem;
}

.mx-2 {
        margin-left: 0.2rem;
        margin-right: 0.2rem;
}

.mx-20 {
        margin-left: 2rem;
        margin-right: 2rem;
}

.mx-24 {
        margin-left: 2.4rem;
        margin-right: 2.4rem;
}

.mx-4 {
        margin-left: 0.4rem;
        margin-right: 0.4rem;
}

.mx-8 {
        margin-left: 0.8rem;
        margin-right: 0.8rem;
}

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

.my-10 {
        margin-top: 1.0rem;
        margin-bottom: 1.0rem;
}

.my-16 {
        margin-top: 1.6rem;
        margin-bottom: 1.6rem;
}

.my-2 {
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
}

.my-20 {
        margin-top: 2rem;
        margin-bottom: 2rem;
}

.my-32 {
        margin-top: 3.2rem;
        margin-bottom: 3.2rem;
}

.my-4 {
        margin-top: 0.4rem;
        margin-bottom: 0.4rem;
}

.my-6 {
        margin-top: 0.6rem;
        margin-bottom: 0.6rem;
}

.my-8 {
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
}

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

.-mb-10 {
        margin-bottom: -1.0rem;
}

.-mb-16 {
        margin-bottom: -1.6rem;
}

.-mb-24 {
        margin-bottom: -2.4rem;
}

.-mb-8 {
        margin-bottom: -0.8rem;
}

.-mt-10 {
        margin-top: -1.0rem;
}

.-mt-24 {
        margin-top: -2.4rem;
}

.-mt-48 {
        margin-top: -4.8rem;
}

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

.mb-1 {
        margin-bottom: 0.1rem;
}

.mb-10 {
        margin-bottom: 1.0rem;
}

.mb-12 {
        margin-bottom: 1.2rem;
}

.mb-14 {
        margin-bottom: 1.4rem;
}

.mb-16 {
        margin-bottom: 1.6rem;
}

.mb-2 {
        margin-bottom: 0.2rem;
}

.mb-20 {
        margin-bottom: 2rem;
}

.mb-24 {
        margin-bottom: 2.4rem;
}

.mb-3 {
        margin-bottom: 0.3rem;
}

.mb-32 {
        margin-bottom: 3.2rem;
}

.mb-36 {
        margin-bottom: 3.6rem;
}

.mb-4 {
        margin-bottom: 0.4rem;
}

.mb-40 {
        margin-bottom: 4rem;
}

.mb-5 {
        margin-bottom: 0.5rem;
}

.mb-52 {
        margin-bottom: 5.2rem;
}

.mb-6 {
        margin-bottom: 0.6rem;
}

.mb-8 {
        margin-bottom: 0.8rem;
}

.mb-\[-10px\] {
        margin-bottom: -10px;
}

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

.mb-\[180px\] {
        margin-bottom: 180px;
}

.mb-\[5px\] {
        margin-bottom: 5px;
}

.ml-10 {
        margin-left: 1.0rem;
}

.ml-16 {
        margin-left: 1.6rem;
}

.ml-2 {
        margin-left: 0.2rem;
}

.ml-20 {
        margin-left: 2rem;
}

.ml-3 {
        margin-left: 0.3rem;
}

.ml-4 {
        margin-left: 0.4rem;
}

.ml-40 {
        margin-left: 4rem;
}

.ml-5 {
        margin-left: 0.5rem;
}

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

.ml-8 {
        margin-left: 0.8rem;
}

.ml-80 {
        margin-left: 8rem;
}

.ml-\[-10px\] {
        margin-left: -10px;
}

.ml-\[-15px\] {
        margin-left: -15px;
}

.ml-\[-60px\] {
        margin-left: -60px;
}

.ml-\[30px\] {
        margin-left: 30px;
}

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

.mr-10 {
        margin-right: 1.0rem;
}

.mr-12 {
        margin-right: 1.2rem;
}

.mr-16 {
        margin-right: 1.6rem;
}

.mr-2 {
        margin-right: 0.2rem;
}

.mr-20 {
        margin-right: 2rem;
}

.mr-3 {
        margin-right: 0.3rem;
}

.mr-4 {
        margin-right: 0.4rem;
}

.mr-40 {
        margin-right: 4rem;
}

.mr-8 {
        margin-right: 0.8rem;
}

.mr-\[8px\] {
        margin-right: 8px;
}

.ms-5 {
        -webkit-margin-start: 0.5rem;
                margin-inline-start: 0.5rem;
}

.mt-1 {
        margin-top: 0.1rem;
}

.mt-10 {
        margin-top: 1.0rem;
}

.mt-12 {
        margin-top: 1.2rem;
}

.mt-120 {
        margin-top: 12rem;
}

.mt-14 {
        margin-top: 1.4rem;
}

.mt-16 {
        margin-top: 1.6rem;
}

.mt-2 {
        margin-top: 0.2rem;
}

.mt-20 {
        margin-top: 2rem;
}

.mt-24 {
        margin-top: 2.4rem;
}

.mt-3 {
        margin-top: 0.3rem;
}

.mt-32 {
        margin-top: 3.2rem;
}

.mt-36 {
        margin-top: 3.6rem;
}

.mt-4 {
        margin-top: 0.4rem;
}

.mt-40 {
        margin-top: 4rem;
}

.mt-48 {
        margin-top: 4.8rem;
}

.mt-5 {
        margin-top: 0.5rem;
}

.mt-6 {
        margin-top: 0.6rem;
}

.mt-8 {
        margin-top: 0.8rem;
}

.mt-96 {
        margin-top: 9.6rem;
}

.mt-\[-10px\] {
        margin-top: -10px;
}

.mt-\[-3px\] {
        margin-top: -3px;
}

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

.mt-\[-70px\] {
        margin-top: -70px;
}

.mt-\[-7px\] {
        margin-top: -7px;
}

.mt-\[-8px\] {
        margin-top: -8px;
}

.mt-\[10px\] {
        margin-top: 10px;
}

.mt-\[13px\] {
        margin-top: 13px;
}

.mt-\[22px\] {
        margin-top: 22px;
}

.mt-\[25px\] {
        margin-top: 25px;
}

.mt-\[2px\] {
        margin-top: 2px;
}

.mt-\[4px\] {
        margin-top: 4px;
}

.mt-px {
        margin-top: 1px;
}

.line-clamp-1 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
}

.line-clamp-2 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
}

.block {
        display: block;
}

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

.inline {
        display: inline;
}

.flex {
        display: flex;
}

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

.table {
        display: table;
}

.grid {
        display: grid;
}

.contents {
        display: contents;
}

.list-item {
        display: list-item;
}

.hidden {
        display: none;
}

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

.h-10 {
        height: 1.0rem;
}

.h-12 {
        height: 1.2rem;
}

.h-120 {
        height: 12rem;
}

.h-16 {
        height: 1.6rem;
}

.h-160 {
        height: 16rem;
}

.h-20 {
        height: 2rem;
}

.h-24 {
        height: 2.4rem;
}

.h-28 {
        height: 2.8rem;
}

.h-32 {
        height: 3.2rem;
}

.h-36 {
        height: 3.6rem;
}

.h-4 {
        height: 0.4rem;
}

.h-40 {
        height: 4rem;
}

.h-48 {
        height: 4.8rem;
}

.h-56 {
        height: 5.6rem;
}

.h-6 {
        height: 0.6rem;
}

.h-64 {
        height: 6.4rem;
}

.h-68 {
        height: 6.8rem;
}

.h-72 {
        height: 7.2rem;
}

.h-8 {
        height: 0.8rem;
}

.h-80 {
        height: 8rem;
}

.h-96 {
        height: 9.6rem;
}

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

.h-\[112\.5px\] {
        height: 112.5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-\[calc\(100vh-14\.5rem\)\] {
        height: calc(100vh - 14.5rem);
}

.h-\[calc\(100vh-15rem\)\] {
        height: calc(100vh - 15rem);
}

.h-\[calc\(100vh-80px\)\] {
        height: calc(100vh - 80px);
}

.h-auto {
        height: auto;
}

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

.h-full {
        height: 100%;
}

.h-screen {
        height: 100vh;
}

.max-h-36 {
        max-height: 3.6rem;
}

.max-h-64 {
        max-height: 6.4rem;
}

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

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

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

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

.max-h-\[calc\(100vh-180px\)\] {
        max-height: calc(100vh - 180px);
}

.max-h-\[calc\(100vh-300px\)\] {
        max-height: calc(100vh - 300px);
}

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

.max-h-xl {
        max-height: 96rem;
}

.\!min-h-14 {
        min-height: 1.4rem !important;
}

.min-h-0 {
        min-height: 0px;
}

.min-h-32 {
        min-height: 3.2rem;
}

.min-h-40 {
        min-height: 4rem;
}

.min-h-48 {
        min-height: 4.8rem;
}

.min-h-56 {
        min-height: 5.6rem;
}

.min-h-64 {
        min-height: 6.4rem;
}

.min-h-80 {
        min-height: 8rem;
}

.min-h-96 {
        min-height: 9.6rem;
}

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

.min-h-\[37\.59px\] {
        min-height: 37.59px;
}

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

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

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

.min-h-auto {
        min-height: auto;
}

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

.min-h-px {
        min-height: 1px;
}

.\!w-10 {
        width: 1.0rem !important;
}

.\!w-\[150px\] {
        width: 150px !important;
}

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

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

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

.w-10 {
        width: 1.0rem;
}

.w-12 {
        width: 1.2rem;
}

.w-128 {
        width: 12.8rem;
}

.w-16 {
        width: 1.6rem;
}

.w-160 {
        width: 16rem;
}

.w-192 {
        width: 19.2rem;
}

.w-2 {
        width: 0.2rem;
}

.w-2\/3 {
        width: 66.666667%;
}

.w-20 {
        width: 2rem;
}

.w-200 {
        width: 20rem;
}

.w-24 {
        width: 2.4rem;
}

.w-28 {
        width: 2.8rem;
}

.w-288 {
        width: 28.8rem;
}

.w-2xl {
        width: 65.6rem;
}

.w-3\/12 {
        width: 25%;
}

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

.w-32 {
        width: 3.2rem;
}

.w-320 {
        width: 32rem;
}

.w-36 {
        width: 3.6rem;
}

.w-360 {
        width: 36rem;
}

.w-384 {
        width: 38.4rem;
}

.w-4 {
        width: 0.4rem;
}

.w-4\/12 {
        width: 33.333333%;
}

.w-40 {
        width: 4rem;
}

.w-400 {
        width: 40rem;
}

.w-44 {
        width: 4.4rem;
}

.w-48 {
        width: 4.8rem;
}

.w-480 {
        width: 48rem;
}

.w-56 {
        width: 5.6rem;
}

.w-6 {
        width: 0.6rem;
}

.w-60 {
        width: 6rem;
}

.w-64 {
        width: 6.4rem;
}

.w-72 {
        width: 7.2rem;
}

.w-8 {
        width: 0.8rem;
}

.w-96 {
        width: 9.6rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-\[calc\(60\%-5rem\)\] {
        width: calc(60% - 5rem);
}

.w-auto {
        width: auto;
}

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

.w-full {
        width: 100%;
}

.w-md {
        width: 64rem;
}

.w-sm {
        width: 48rem;
}

.w-xs {
        width: 32rem;
}

.min-w-0 {
        min-width: 0px;
}

.min-w-16 {
        min-width: 1.6rem;
}

.min-w-160 {
        min-width: 16rem;
}

.min-w-20 {
        min-width: 2rem;
}

.min-w-240 {
        min-width: 24.0rem;
}

.min-w-256 {
        min-width: 25.6rem;
}

.min-w-28 {
        min-width: 2.8rem;
}

.min-w-32 {
        min-width: 3.2rem;
}

.min-w-320 {
        min-width: 32rem;
}

.min-w-36 {
        min-width: 3.6rem;
}

.min-w-40 {
        min-width: 4rem;
}

.min-w-64 {
        min-width: 6.4rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.min-w-px {
        min-width: 1px;
}

.min-w-sm {
        min-width: 48rem;
}

.max-w-128 {
        max-width: 12.8rem;
}

.max-w-2xl {
        max-width: 65.6rem;
}

.max-w-320 {
        max-width: 32rem;
}

.max-w-3xl {
        max-width: 76.8rem;
}

.max-w-4xl {
        max-width: 89.6rem;
}

.max-w-64 {
        max-width: 6.4rem;
}

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

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

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

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

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

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

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

.max-w-md {
        max-width: 64rem;
}

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

.max-w-screen-xl {
        max-width: 1920px;
}

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

.max-w-xl {
        max-width: 96rem;
}

.max-w-xs {
        max-width: 32rem;
}

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

.flex-\[1\] {
        flex: 1;
}

.flex-\[2\] {
        flex: 2;
}

.flex-\[3\] {
        flex: 3;
}

.flex-\[4\] {
        flex: 4;
}

.flex-\[5\] {
        flex: 5;
}

.flex-auto {
        flex: 1 1 auto;
}

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

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

.shrink {
        flex-shrink: 1;
}

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

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

.grow {
        flex-grow: 1;
}

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

.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 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-pointer {
        cursor: pointer !important;
}

.cursor-default {
        cursor: default;
}

.cursor-help {
        cursor: help;
}

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

.cursor-pointer {
        cursor: pointer;
}

.select-all {
        -webkit-user-select: all;
                user-select: all;
}

.list-inside {
        list-style-position: inside;
}

.list-decimal {
        list-style-type: decimal;
}

.list-disc {
        list-style-type: disc;
}

.list-none {
        list-style-type: none;
}

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

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

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

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

.grid-cols-\[120px_1fr\] {
        grid-template-columns: 120px 1fr;
}

.grid-cols-\[150px_150px_1fr_1fr\] {
        grid-template-columns: 150px 150px 1fr 1fr;
}

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

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

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

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

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

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

.content-center {
        align-content: 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;
}

.gap-1 {
        gap: 0.1rem;
}

.gap-10 {
        gap: 1.0rem;
}

.gap-12 {
        gap: 1.2rem;
}

.gap-14 {
        gap: 1.4rem;
}

.gap-16 {
        gap: 1.6rem;
}

.gap-2 {
        gap: 0.2rem;
}

.gap-20 {
        gap: 2rem;
}

.gap-24 {
        gap: 2.4rem;
}

.gap-3 {
        gap: 0.3rem;
}

.gap-32 {
        gap: 3.2rem;
}

.gap-4 {
        gap: 0.4rem;
}

.gap-40 {
        gap: 4rem;
}

.gap-5 {
        gap: 0.5rem;
}

.gap-52 {
        gap: 5.2rem;
}

.gap-6 {
        gap: 0.6rem;
}

.gap-8 {
        gap: 0.8rem;
}

.gap-x-10 {
        column-gap: 1.0rem;
}

.gap-x-4 {
        column-gap: 0.4rem;
}

.gap-x-5 {
        column-gap: 0.5rem;
}

.gap-y-1 {
        row-gap: 0.1rem;
}

.gap-y-20 {
        row-gap: 2rem;
}

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

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

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

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

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

.space-x-20 > :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-4 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(0.4rem * var(--tw-space-x-reverse));
        margin-left: calc(0.4rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-5 > :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-6 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(0.6rem * var(--tw-space-x-reverse));
        margin-left: calc(0.6rem * calc(1 - var(--tw-space-x-reverse)));
}

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

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

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

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

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

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

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

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

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

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

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

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

.space-y-5 > :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-6 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0.6rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0.6rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0.8rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0.8rem * var(--tw-space-y-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(238 238 238 / var(--tw-divide-opacity));
}

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

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

.overflow-auto {
        overflow: auto;
}

.overflow-hidden {
        overflow: hidden;
}

.overflow-visible {
        overflow: visible;
}

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

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

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

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

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

.overscroll-contain {
        overscroll-behavior: contain;
}

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

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

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

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

.whitespace-pre-line {
        white-space: pre-line;
}

.whitespace-pre-wrap {
        white-space: pre-wrap;
}

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

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

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

.rounded-0 {
        border-radius: 0px;
}

.rounded-16 {
        border-radius: 1.6rem;
}

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

.rounded-24 {
        border-radius: 2.4rem;
}

.rounded-2xl {
        border-radius: 1.6rem;
}

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

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

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

.rounded-full {
        border-radius: 9999px;
}

.rounded-lg {
        border-radius: .8rem;
}

.rounded-md {
        border-radius: .6rem;
}

.rounded-sm {
        border-radius: .2rem;
}

.rounded-xl {
        border-radius: 1.2rem;
}

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

.rounded-r-xl {
        border-top-right-radius: 1.2rem;
        border-bottom-right-radius: 1.2rem;
}

.rounded-s-full {
        border-start-start-radius: 9999px;
        border-end-start-radius: 9999px;
}

.rounded-t-lg {
        border-top-left-radius: .8rem;
        border-top-right-radius: .8rem;
}

.rounded-t-md {
        border-top-left-radius: .6rem;
        border-top-right-radius: .6rem;
}

.border {
        border-width: 1px;
}

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

.border-1 {
        border-width: 1px;
}

.border-2 {
        border-width: 2px;
}

.border-4 {
        border-width: 4px;
}

.border-y {
        border-top-width: 1px;
        border-bottom-width: 1px;
}

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

.border-b {
        border-bottom-width: 1px;
}

.border-b-0 {
        border-bottom-width: 0px;
}

.border-b-1 {
        border-bottom-width: 1px;
}

.border-b-2 {
        border-bottom-width: 2px;
}

.border-e-1 {
        border-inline-end-width: 1px;
}

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

.border-l-2 {
        border-left-width: 2px;
}

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

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

.border-t {
        border-top-width: 1px;
}

.border-t-1 {
        border-top-width: 1px;
}

.border-t-2 {
        border-top-width: 2px;
}

.border-solid {
        border-style: solid;
}

.border-dashed {
        border-style: dashed;
}

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

.border-amber-200 {
        --tw-border-opacity: 1;
        border-color: rgb(255 224 130 / var(--tw-border-opacity));
}

.border-amber-500 {
        --tw-border-opacity: 1;
        border-color: rgb(255 193 7 / var(--tw-border-opacity));
}

.border-blue-200 {
        --tw-border-opacity: 1;
        border-color: rgb(144 202 249 / var(--tw-border-opacity));
}

.border-blue-400 {
        --tw-border-opacity: 1;
        border-color: rgb(66 165 245 / var(--tw-border-opacity));
}

.border-blue-500 {
        --tw-border-opacity: 1;
        border-color: rgb(33 150 243 / var(--tw-border-opacity));
}

.border-blue-600 {
        --tw-border-opacity: 1;
        border-color: rgb(30 136 229 / var(--tw-border-opacity));
}

.border-blue-700 {
        --tw-border-opacity: 1;
        border-color: rgb(25 118 210 / var(--tw-border-opacity));
}

.border-blue-800 {
        --tw-border-opacity: 1;
        border-color: rgb(21 101 192 / var(--tw-border-opacity));
}

.border-gray-200 {
        --tw-border-opacity: 1;
        border-color: rgb(238 238 238 / var(--tw-border-opacity));
}

.border-gray-300 {
        --tw-border-opacity: 1;
        border-color: rgb(224 224 224 / var(--tw-border-opacity));
}

.border-gray-400 {
        --tw-border-opacity: 1;
        border-color: rgb(189 189 189 / var(--tw-border-opacity));
}

.border-gray-500 {
        --tw-border-opacity: 1;
        border-color: rgb(158 158 158 / var(--tw-border-opacity));
}

.border-gray-600 {
        --tw-border-opacity: 1;
        border-color: rgb(117 117 117 / var(--tw-border-opacity));
}

.border-gray-700 {
        --tw-border-opacity: 1;
        border-color: rgb(97 97 97 / var(--tw-border-opacity));
}

.border-green-200 {
        --tw-border-opacity: 1;
        border-color: rgb(165 214 167 / var(--tw-border-opacity));
}

.border-green-500 {
        --tw-border-opacity: 1;
        border-color: rgb(76 175 80 / var(--tw-border-opacity));
}

.border-green-600 {
        --tw-border-opacity: 1;
        border-color: rgb(67 160 71 / var(--tw-border-opacity));
}

.border-red-200 {
        --tw-border-opacity: 1;
        border-color: rgb(239 154 154 / var(--tw-border-opacity));
}

.border-red-500 {
        --tw-border-opacity: 1;
        border-color: rgb(244 67 54 / var(--tw-border-opacity));
}

.border-red-600 {
        --tw-border-opacity: 1;
        border-color: rgb(229 57 53 / var(--tw-border-opacity));
}

.border-white {
        --tw-border-opacity: 1;
        border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.border-white\/40 {
        border-color: rgb(255 255 255 / 0.4);
}

.border-yellow-200 {
        --tw-border-opacity: 1;
        border-color: rgb(255 245 157 / var(--tw-border-opacity));
}

.border-yellow-500 {
        --tw-border-opacity: 1;
        border-color: rgb(255 235 59 / var(--tw-border-opacity));
}

.\!bg-transparent {
        background-color: transparent !important;
}

.bg-\[\#FAEBD7\] {
        --tw-bg-opacity: 1;
        background-color: rgb(250 235 215 / var(--tw-bg-opacity));
}

.bg-\[\#FFFFFF\] {
        --tw-bg-opacity: 1;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-\[\#f4f4f4\] {
        --tw-bg-opacity: 1;
        background-color: rgb(244 244 244 / var(--tw-bg-opacity));
}

.bg-\[\#f8f4f4\] {
        --tw-bg-opacity: 1;
        background-color: rgb(248 244 244 / var(--tw-bg-opacity));
}

.bg-amber-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 236 179 / var(--tw-bg-opacity));
}

.bg-amber-300 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 213 79 / var(--tw-bg-opacity));
}

.bg-amber-400 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 202 40 / var(--tw-bg-opacity));
}

.bg-amber-600 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 179 0 / var(--tw-bg-opacity));
}

.bg-black {
        --tw-bg-opacity: 1;
        background-color: rgb(34 41 47 / var(--tw-bg-opacity));
}

.bg-black\/40 {
        background-color: rgb(34 41 47 / 0.4);
}

.bg-blue-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(187 222 251 / var(--tw-bg-opacity));
}

.bg-blue-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(144 202 249 / var(--tw-bg-opacity));
}

.bg-blue-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(227 242 253 / var(--tw-bg-opacity));
}

.bg-blue-50\/30 {
        background-color: rgb(227 242 253 / 0.3);
}

.bg-blue-500 {
        --tw-bg-opacity: 1;
        background-color: rgb(33 150 243 / var(--tw-bg-opacity));
}

.bg-blue-600 {
        --tw-bg-opacity: 1;
        background-color: rgb(30 136 229 / var(--tw-bg-opacity));
}

.bg-blue-800 {
        --tw-bg-opacity: 1;
        background-color: rgb(21 101 192 / var(--tw-bg-opacity));
}

.bg-blue-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(13 71 161 / var(--tw-bg-opacity));
}

.bg-deep-purple-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(237 231 246 / var(--tw-bg-opacity));
}

.bg-gray-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(245 245 245 / var(--tw-bg-opacity));
}

.bg-gray-100\/50 {
        background-color: rgb(245 245 245 / 0.5);
}

.bg-gray-100\/\[\.5\] {
        background-color: rgb(245 245 245 / .5);
}

.bg-gray-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(238 238 238 / var(--tw-bg-opacity));
}

.bg-gray-300 {
        --tw-bg-opacity: 1;
        background-color: rgb(224 224 224 / var(--tw-bg-opacity));
}

.bg-gray-400 {
        --tw-bg-opacity: 1;
        background-color: rgb(189 189 189 / var(--tw-bg-opacity));
}

.bg-gray-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}

.bg-gray-50\/50 {
        background-color: rgb(250 250 250 / 0.5);
}

.bg-gray-700 {
        --tw-bg-opacity: 1;
        background-color: rgb(97 97 97 / var(--tw-bg-opacity));
}

.bg-green-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(200 230 201 / var(--tw-bg-opacity));
}

.bg-green-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(232 245 233 / var(--tw-bg-opacity));
}

.bg-green-500 {
        --tw-bg-opacity: 1;
        background-color: rgb(76 175 80 / var(--tw-bg-opacity));
}

.bg-green-600 {
        --tw-bg-opacity: 1;
        background-color: rgb(67 160 71 / var(--tw-bg-opacity));
}

.bg-green-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(27 94 32 / var(--tw-bg-opacity));
}

.bg-grey-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}

.bg-indigo-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(197 202 233 / var(--tw-bg-opacity));
}

.bg-indigo-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(159 168 218 / var(--tw-bg-opacity));
}

.bg-indigo-600 {
        --tw-bg-opacity: 1;
        background-color: rgb(57 73 171 / var(--tw-bg-opacity));
}

.bg-orange-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 224 178 / var(--tw-bg-opacity));
}

.bg-orange-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 243 224 / var(--tw-bg-opacity));
}

.bg-orange-600 {
        --tw-bg-opacity: 1;
        background-color: rgb(251 140 0 / var(--tw-bg-opacity));
}

.bg-orange-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(230 81 0 / var(--tw-bg-opacity));
}

.bg-purple-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(225 190 231 / var(--tw-bg-opacity));
}

.bg-purple-600 {
        --tw-bg-opacity: 1;
        background-color: rgb(142 36 170 / var(--tw-bg-opacity));
}

.bg-red-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 205 210 / var(--tw-bg-opacity));
}

.bg-red-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 235 238 / var(--tw-bg-opacity));
}

.bg-red-500 {
        --tw-bg-opacity: 1;
        background-color: rgb(244 67 54 / var(--tw-bg-opacity));
}

.bg-red-600 {
        --tw-bg-opacity: 1;
        background-color: rgb(229 57 53 / var(--tw-bg-opacity));
}

.bg-red-700 {
        --tw-bg-opacity: 1;
        background-color: rgb(211 47 47 / var(--tw-bg-opacity));
}

.bg-red-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(183 28 28 / var(--tw-bg-opacity));
}

.bg-teal-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(178 223 219 / var(--tw-bg-opacity));
}

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

.bg-white {
        --tw-bg-opacity: 1;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-white\/50 {
        background-color: rgb(255 255 255 / 0.5);
}

.bg-white\/80 {
        background-color: rgb(255 255 255 / 0.8);
}

.bg-yellow-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 249 196 / var(--tw-bg-opacity));
}

.bg-yellow-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 245 157 / var(--tw-bg-opacity));
}

.bg-yellow-50 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 253 231 / var(--tw-bg-opacity));
}

.bg-yellow-500 {
        --tw-bg-opacity: 1;
        background-color: rgb(255 235 59 / var(--tw-bg-opacity));
}

.bg-opacity-10 {
        --tw-bg-opacity: 0.1;
}

.bg-gradient-to-b {
        background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
        background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-white\/80 {
        --tw-gradient-from: rgb(255 255 255 / 0.8) var(--tw-gradient-from-position);
        --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
        --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.fill-blue-500 {
        fill: #2196F3;
}

.fill-blue-600 {
        fill: #1E88E5;
}

.fill-blue-700 {
        fill: #1976D2;
}

.fill-current {
        fill: currentColor;
}

.fill-green-600 {
        fill: #43A047;
}

.stroke-current {
        stroke: currentColor;
}

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

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

.object-center {
        object-position: center;
}

.\!p-0 {
        padding: 0px !important;
}

.\!p-1 {
        padding: 0.1rem !important;
}

.\!p-4 {
        padding: 0.4rem !important;
}

.\!p-5 {
        padding: 0.5rem !important;
}

.p-0 {
        padding: 0px;
}

.p-1 {
        padding: 0.1rem;
}

.p-10 {
        padding: 1.0rem;
}

.p-12 {
        padding: 1.2rem;
}

.p-16 {
        padding: 1.6rem;
}

.p-2 {
        padding: 0.2rem;
}

.p-20 {
        padding: 2rem;
}

.p-24 {
        padding: 2.4rem;
}

.p-3 {
        padding: 0.3rem;
}

.p-4 {
        padding: 0.4rem;
}

.p-48 {
        padding: 4.8rem;
}

.p-5 {
        padding: 0.5rem;
}

.p-6 {
        padding: 0.6rem;
}

.p-64 {
        padding: 6.4rem;
}

.p-8 {
        padding: 0.8rem;
}

.\!px-20 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
}

.\!px-5 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
}

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

.\!py-12 {
        padding-top: 1.2rem !important;
        padding-bottom: 1.2rem !important;
}

.\!py-2 {
        padding-top: 0.2rem !important;
        padding-bottom: 0.2rem !important;
}

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

.px-10 {
        padding-left: 1.0rem;
        padding-right: 1.0rem;
}

.px-12 {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
}

.px-14 {
        padding-left: 1.4rem;
        padding-right: 1.4rem;
}

.px-16 {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
}

.px-20 {
        padding-left: 2rem;
        padding-right: 2rem;
}

.px-24 {
        padding-left: 2.4rem;
        padding-right: 2.4rem;
}

.px-3 {
        padding-left: 0.3rem;
        padding-right: 0.3rem;
}

.px-36 {
        padding-left: 3.6rem;
        padding-right: 3.6rem;
}

.px-4 {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
}

.px-40 {
        padding-left: 4rem;
        padding-right: 4rem;
}

.px-6 {
        padding-left: 0.6rem;
        padding-right: 0.6rem;
}

.px-8 {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
}

.px-\[-2px\] {
        padding-left: -2px;
        padding-right: -2px;
}

.px-\[40px\] {
        padding-left: 40px;
        padding-right: 40px;
}

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

.py-1 {
        padding-top: 0.1rem;
        padding-bottom: 0.1rem;
}

.py-10 {
        padding-top: 1.0rem;
        padding-bottom: 1.0rem;
}

.py-12 {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
}

.py-14 {
        padding-top: 1.4rem;
        padding-bottom: 1.4rem;
}

.py-16 {
        padding-top: 1.6rem;
        padding-bottom: 1.6rem;
}

.py-2 {
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
}

.py-20 {
        padding-top: 2rem;
        padding-bottom: 2rem;
}

.py-3 {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
}

.py-32 {
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
}

.py-4 {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
}

.py-40 {
        padding-top: 4rem;
        padding-bottom: 4rem;
}

.py-48 {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
}

.py-5 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
}

.py-6 {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
}

.py-8 {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
}

.py-9 {
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
}

.\!pb-10 {
        padding-bottom: 1.0rem !important;
}

.\!pl-0 {
        padding-left: 0px !important;
}

.\!pl-10 {
        padding-left: 1.0rem !important;
}

.\!pt-10 {
        padding-top: 1.0rem !important;
}

.\!pt-12 {
        padding-top: 1.2rem !important;
}

.\!pt-2 {
        padding-top: 0.2rem !important;
}

.\!pt-4 {
        padding-top: 0.4rem !important;
}

.pb-0 {
        padding-bottom: 0px;
}

.pb-1 {
        padding-bottom: 0.1rem;
}

.pb-10 {
        padding-bottom: 1.0rem;
}

.pb-12 {
        padding-bottom: 1.2rem;
}

.pb-14 {
        padding-bottom: 1.4rem;
}

.pb-16 {
        padding-bottom: 1.6rem;
}

.pb-2 {
        padding-bottom: 0.2rem;
}

.pb-20 {
        padding-bottom: 2rem;
}

.pb-24 {
        padding-bottom: 2.4rem;
}

.pb-4 {
        padding-bottom: 0.4rem;
}

.pb-6 {
        padding-bottom: 0.6rem;
}

.pb-64 {
        padding-bottom: 6.4rem;
}

.pb-72 {
        padding-bottom: 7.2rem;
}

.pb-8 {
        padding-bottom: 0.8rem;
}

.pb-\[50px\] {
        padding-bottom: 50px;
}

.pl-10 {
        padding-left: 1.0rem;
}

.pl-12 {
        padding-left: 1.2rem;
}

.pl-16 {
        padding-left: 1.6rem;
}

.pl-20 {
        padding-left: 2rem;
}

.pl-24 {
        padding-left: 2.4rem;
}

.pl-32 {
        padding-left: 3.2rem;
}

.pl-4 {
        padding-left: 0.4rem;
}

.pl-40 {
        padding-left: 4rem;
}

.pl-48 {
        padding-left: 4.8rem;
}

.pl-5 {
        padding-left: 0.5rem;
}

.pl-56 {
        padding-left: 5.6rem;
}

.pl-6 {
        padding-left: 0.6rem;
}

.pl-72 {
        padding-left: 7.2rem;
}

.pl-8 {
        padding-left: 0.8rem;
}

.pl-80 {
        padding-left: 8rem;
}

.pr-10 {
        padding-right: 1.0rem;
}

.pr-28 {
        padding-right: 2.8rem;
}

.pr-4 {
        padding-right: 0.4rem;
}

.pr-6 {
        padding-right: 0.6rem;
}

.pr-8 {
        padding-right: 0.8rem;
}

.pr-96 {
        padding-right: 9.6rem;
}

.pt-10 {
        padding-top: 1.0rem;
}

.pt-12 {
        padding-top: 1.2rem;
}

.pt-16 {
        padding-top: 1.6rem;
}

.pt-2 {
        padding-top: 0.2rem;
}

.pt-20 {
        padding-top: 2rem;
}

.pt-4 {
        padding-top: 0.4rem;
}

.pt-5 {
        padding-top: 0.5rem;
}

.pt-6 {
        padding-top: 0.6rem;
}

.pt-60 {
        padding-top: 6rem;
}

.pt-8 {
        padding-top: 0.8rem;
}

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

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

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

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

.indent-10 {
        text-indent: 1.0rem;
}

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

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

.text-10 {
        font-size: 1rem;
}

.text-11 {
        font-size: 1.1rem;
}

.text-12 {
        font-size: 1.2rem;
}

.text-15 {
        font-size: 1.5rem;
}

.text-16 {
        font-size: 1.6rem;
}

.text-18 {
        font-size: 1.8rem;
}

.text-24 {
        font-size: 2.4rem;
}

.text-28 {
        font-size: 2.8rem;
}

.text-2xl {
        font-size: 1.8rem;
}

.text-32 {
        font-size: 3.2rem;
}

.text-3xl {
        font-size: 2.2rem;
}

.text-48 {
        font-size: 4.8rem;
}

.text-4xl {
        font-size: 2.4rem;
}

.text-5xl {
        font-size: 2.8rem;
}

.text-64 {
        font-size: 6.4rem;
}

.text-6xl {
        font-size: 3.6rem;
}

.text-7xl {
        font-size: 5.6rem;
}

.text-\[13px\] {
        font-size: 13px;
}

.text-base {
        font-size: 1.3rem;
}

.text-lg {
        font-size: 1.4rem;
}

.text-md {
        font-size: 1.2rem;
}

.text-sm {
        font-size: 1.1rem;
}

.text-xl {
        font-size: 1.6rem;
}

.text-xs {
        font-size: .9rem;
}

.font-400 {
        font-weight: 400;
}

.font-500 {
        font-weight: 500;
}

.font-bold {
        font-weight: 700;
}

.font-extrabold {
        font-weight: 800;
}

.font-light {
        font-weight: 300;
}

.font-medium {
        font-weight: 500;
}

.font-normal {
        font-weight: 400;
}

.font-semibold {
        font-weight: 600;
}

.uppercase {
        text-transform: uppercase;
}

.capitalize {
        text-transform: capitalize;
}

.normal-case {
        text-transform: none;
}

.italic {
        font-style: italic;
}

.leading-5 {
        line-height: 2rem;
}

.leading-6 {
        line-height: 2.4rem;
}

.leading-none {
        line-height: 1;
}

.leading-normal {
        line-height: 1.5;
}

.leading-relaxed {
        line-height: 1.625;
}

.leading-tight {
        line-height: 1.25;
}

.tracking-tight {
        letter-spacing: -0.025em;
}

.tracking-tighter {
        letter-spacing: -0.05em;
}

.\!text-black {
        --tw-text-opacity: 1 !important;
        color: rgb(34 41 47 / var(--tw-text-opacity)) !important;
}

.\!text-blue-500 {
        --tw-text-opacity: 1 !important;
        color: rgb(33 150 243 / var(--tw-text-opacity)) !important;
}

.\!text-blue-800 {
        --tw-text-opacity: 1 !important;
        color: rgb(21 101 192 / var(--tw-text-opacity)) !important;
}

.\!text-gray-500 {
        --tw-text-opacity: 1 !important;
        color: rgb(158 158 158 / var(--tw-text-opacity)) !important;
}

.text-amber-400 {
        --tw-text-opacity: 1;
        color: rgb(255 202 40 / var(--tw-text-opacity));
}

.text-amber-500 {
        --tw-text-opacity: 1;
        color: rgb(255 193 7 / var(--tw-text-opacity));
}

.text-amber-800 {
        --tw-text-opacity: 1;
        color: rgb(255 143 0 / var(--tw-text-opacity));
}

.text-black {
        --tw-text-opacity: 1;
        color: rgb(34 41 47 / var(--tw-text-opacity));
}

.text-blue-200 {
        --tw-text-opacity: 1;
        color: rgb(144 202 249 / var(--tw-text-opacity));
}

.text-blue-400 {
        --tw-text-opacity: 1;
        color: rgb(66 165 245 / var(--tw-text-opacity));
}

.text-blue-500 {
        --tw-text-opacity: 1;
        color: rgb(33 150 243 / var(--tw-text-opacity));
}

.text-blue-600 {
        --tw-text-opacity: 1;
        color: rgb(30 136 229 / var(--tw-text-opacity));
}

.text-blue-700 {
        --tw-text-opacity: 1;
        color: rgb(25 118 210 / var(--tw-text-opacity));
}

.text-blue-800 {
        --tw-text-opacity: 1;
        color: rgb(21 101 192 / var(--tw-text-opacity));
}

.text-blue-900 {
        --tw-text-opacity: 1;
        color: rgb(13 71 161 / var(--tw-text-opacity));
}

.text-current {
        color: currentColor;
}

.text-deep-purple-800 {
        --tw-text-opacity: 1;
        color: rgb(69 39 160 / var(--tw-text-opacity));
}

.text-gray-100 {
        --tw-text-opacity: 1;
        color: rgb(245 245 245 / var(--tw-text-opacity));
}

.text-gray-300 {
        --tw-text-opacity: 1;
        color: rgb(224 224 224 / var(--tw-text-opacity));
}

.text-gray-400 {
        --tw-text-opacity: 1;
        color: rgb(189 189 189 / var(--tw-text-opacity));
}

.text-gray-500 {
        --tw-text-opacity: 1;
        color: rgb(158 158 158 / var(--tw-text-opacity));
}

.text-gray-600 {
        --tw-text-opacity: 1;
        color: rgb(117 117 117 / var(--tw-text-opacity));
}

.text-gray-700 {
        --tw-text-opacity: 1;
        color: rgb(97 97 97 / var(--tw-text-opacity));
}

.text-gray-800 {
        --tw-text-opacity: 1;
        color: rgb(66 66 66 / var(--tw-text-opacity));
}

.text-gray-900 {
        --tw-text-opacity: 1;
        color: rgb(33 33 33 / var(--tw-text-opacity));
}

.text-green-200 {
        --tw-text-opacity: 1;
        color: rgb(165 214 167 / var(--tw-text-opacity));
}

.text-green-500 {
        --tw-text-opacity: 1;
        color: rgb(76 175 80 / var(--tw-text-opacity));
}

.text-green-600 {
        --tw-text-opacity: 1;
        color: rgb(67 160 71 / var(--tw-text-opacity));
}

.text-green-700 {
        --tw-text-opacity: 1;
        color: rgb(56 142 60 / var(--tw-text-opacity));
}

.text-green-800 {
        --tw-text-opacity: 1;
        color: rgb(46 125 50 / var(--tw-text-opacity));
}

.text-grey-600 {
        --tw-text-opacity: 1;
        color: rgb(117 117 117 / var(--tw-text-opacity));
}

.text-grey-900 {
        --tw-text-opacity: 1;
        color: rgb(33 33 33 / var(--tw-text-opacity));
}

.text-indigo-600 {
        --tw-text-opacity: 1;
        color: rgb(57 73 171 / var(--tw-text-opacity));
}

.text-indigo-800 {
        --tw-text-opacity: 1;
        color: rgb(40 53 147 / var(--tw-text-opacity));
}

.text-orange-200 {
        --tw-text-opacity: 1;
        color: rgb(255 204 128 / var(--tw-text-opacity));
}

.text-orange-600 {
        --tw-text-opacity: 1;
        color: rgb(251 140 0 / var(--tw-text-opacity));
}

.text-orange-700 {
        --tw-text-opacity: 1;
        color: rgb(245 124 0 / var(--tw-text-opacity));
}

.text-orange-800 {
        --tw-text-opacity: 1;
        color: rgb(239 108 0 / var(--tw-text-opacity));
}

.text-purple-600 {
        --tw-text-opacity: 1;
        color: rgb(142 36 170 / var(--tw-text-opacity));
}

.text-red {
        --tw-text-opacity: 1;
        color: rgb(244 67 54 / var(--tw-text-opacity));
}

.text-red-200 {
        --tw-text-opacity: 1;
        color: rgb(239 154 154 / var(--tw-text-opacity));
}

.text-red-500 {
        --tw-text-opacity: 1;
        color: rgb(244 67 54 / var(--tw-text-opacity));
}

.text-red-600 {
        --tw-text-opacity: 1;
        color: rgb(229 57 53 / var(--tw-text-opacity));
}

.text-red-700 {
        --tw-text-opacity: 1;
        color: rgb(211 47 47 / var(--tw-text-opacity));
}

.text-red-800 {
        --tw-text-opacity: 1;
        color: rgb(198 40 40 / var(--tw-text-opacity));
}

.text-teal-600 {
        --tw-text-opacity: 1;
        color: rgb(0 137 123 / var(--tw-text-opacity));
}

.text-white {
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-yellow-400 {
        --tw-text-opacity: 1;
        color: rgb(255 238 88 / var(--tw-text-opacity));
}

.text-yellow-500 {
        --tw-text-opacity: 1;
        color: rgb(255 235 59 / var(--tw-text-opacity));
}

.text-yellow-700 {
        --tw-text-opacity: 1;
        color: rgb(251 192 45 / var(--tw-text-opacity));
}

.text-yellow-800 {
        --tw-text-opacity: 1;
        color: rgb(249 168 37 / var(--tw-text-opacity));
}

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

.line-through {
        -webkit-text-decoration-line: line-through;
                text-decoration-line: line-through;
}

.\!no-underline {
        -webkit-text-decoration-line: none !important;
                text-decoration-line: none !important;
}

.decoration-white {
        -webkit-text-decoration-color: #fff;
                text-decoration-color: #fff;
}

.antialiased {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
}

.opacity-0 {
        opacity: 0;
}

.opacity-10 {
        opacity: 0.1;
}

.opacity-100 {
        opacity: 1;
}

.opacity-20 {
        opacity: 0.2;
}

.opacity-50 {
        opacity: 0.5;
}

.opacity-60 {
        opacity: 0.6;
}

.opacity-75 {
        opacity: 0.75;
}

.opacity-80 {
        opacity: 0.8;
}

.shadow {
        --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
        --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 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-0 {
        --tw-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
        --tw-shadow-colored: 0px 0px 0px 0px var(--tw-shadow-color), 0px 0px 0px 0px var(--tw-shadow-color), 0px 0px 0px 0px 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-1 {
        --tw-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
        --tw-shadow-colored: 0px 2px 1px -1px var(--tw-shadow-color), 0px 1px 1px 0px var(--tw-shadow-color), 0px 1px 3px 0px 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-5 {
        --tw-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
        --tw-shadow-colored: 0px 3px 5px -1px var(--tw-shadow-color), 0px 5px 8px 0px var(--tw-shadow-color), 0px 1px 14px 0px 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 rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -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-md {
        --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -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-none {
        --tw-shadow: 0 0 #0000;
        --tw-shadow-colored: 0 0 #0000;
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
        --tw-shadow: 0 1px 2px 0 rgba(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 rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 10px 10px -5px 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 {
        --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);
}

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

.drop-shadow {
        --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
        filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

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

.backdrop-blur-md {
        --tw-backdrop-blur: blur(12px);
        -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
                backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
        transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -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-text-decoration-color, -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, fill, stroke, -webkit-text-decoration-color;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
}

.transition-opacity {
        transition-property: opacity;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
}

.transition-shadow {
        transition-property: box-shadow;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
}

.duration-200 {
        transition-duration: 200ms;
}

.duration-500 {
        transition-duration: 500ms;
}

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

.icon-size-40 {
        width: 4rem;
        height: 4rem;
        min-width: 4rem;
        min-height: 4rem;
        font-size: 4rem;
        line-height: 4rem;
}

.icon-size-40 svg {
        width: 4rem;
        height: 4rem;
}

[dir="rtl"] [class*="space-x-"] > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 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-110:hover {
        --tw-scale-x: 1.1;
        --tw-scale-y: 1.1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-blue-500:hover {
        --tw-border-opacity: 1;
        border-color: rgb(33 150 243 / var(--tw-border-opacity));
}

.hover\:border-blue-600:hover {
        --tw-border-opacity: 1;
        border-color: rgb(30 136 229 / var(--tw-border-opacity));
}

.hover\:border-blue-700:hover {
        --tw-border-opacity: 1;
        border-color: rgb(25 118 210 / var(--tw-border-opacity));
}

.hover\:border-gray-600:hover {
        --tw-border-opacity: 1;
        border-color: rgb(117 117 117 / var(--tw-border-opacity));
}

.hover\:border-green-600:hover {
        --tw-border-opacity: 1;
        border-color: rgb(67 160 71 / var(--tw-border-opacity));
}

.hover\:border-red-600:hover {
        --tw-border-opacity: 1;
        border-color: rgb(229 57 53 / var(--tw-border-opacity));
}

.hover\:bg-blue-50:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(227 242 253 / var(--tw-bg-opacity));
}

.hover\:bg-blue-600:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(30 136 229 / var(--tw-bg-opacity));
}

.hover\:bg-blue-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(25 118 210 / var(--tw-bg-opacity));
}

.hover\:bg-gray-400:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(189 189 189 / var(--tw-bg-opacity));
}

.hover\:bg-green-50:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(232 245 233 / var(--tw-bg-opacity));
}

.hover\:bg-green-600:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(67 160 71 / var(--tw-bg-opacity));
}

.hover\:bg-green-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(56 142 60 / var(--tw-bg-opacity));
}

.hover\:bg-indigo-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(48 63 159 / var(--tw-bg-opacity));
}

.hover\:bg-orange-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(245 124 0 / var(--tw-bg-opacity));
}

.hover\:bg-purple-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(123 31 162 / var(--tw-bg-opacity));
}

.hover\:bg-red-50:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(255 235 238 / var(--tw-bg-opacity));
}

.hover\:bg-red-600:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(229 57 53 / var(--tw-bg-opacity));
}

.hover\:bg-red-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(211 47 47 / var(--tw-bg-opacity));
}

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

.hover\:bg-white\/50:hover {
        background-color: rgb(255 255 255 / 0.5);
}

.hover\:\!text-blue-200:hover {
        --tw-text-opacity: 1 !important;
        color: rgb(144 202 249 / var(--tw-text-opacity)) !important;
}

.hover\:text-blue-300:hover {
        --tw-text-opacity: 1;
        color: rgb(100 181 246 / var(--tw-text-opacity));
}

.hover\:text-blue-600:hover {
        --tw-text-opacity: 1;
        color: rgb(30 136 229 / var(--tw-text-opacity));
}

.hover\:text-blue-700:hover {
        --tw-text-opacity: 1;
        color: rgb(25 118 210 / var(--tw-text-opacity));
}

.hover\:text-gray-600:hover {
        --tw-text-opacity: 1;
        color: rgb(117 117 117 / var(--tw-text-opacity));
}

.hover\:text-green-600:hover {
        --tw-text-opacity: 1;
        color: rgb(67 160 71 / var(--tw-text-opacity));
}

.hover\:text-red-600:hover {
        --tw-text-opacity: 1;
        color: rgb(229 57 53 / var(--tw-text-opacity));
}

.hover\:text-red-700:hover {
        --tw-text-opacity: 1;
        color: rgb(211 47 47 / var(--tw-text-opacity));
}

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

.hover\:opacity-80:hover {
        opacity: 0.8;
}

.hover\:shadow-lg:hover {
        --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -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-md:hover {
        --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -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);
}

.focus\:border-blue-500:focus {
        --tw-border-opacity: 1;
        border-color: rgb(33 150 243 / var(--tw-border-opacity));
}

.focus\:bg-blue-50:focus {
        --tw-bg-opacity: 1;
        background-color: rgb(227 242 253 / var(--tw-bg-opacity));
}

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

.focus\:outline-none:focus {
        outline: 2px solid transparent;
        outline-offset: 2px;
}

.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-blue-500:focus {
        --tw-ring-opacity: 1;
        --tw-ring-color: rgb(33 150 243 / var(--tw-ring-opacity));
}

.focus\:ring-offset-2:focus {
        --tw-ring-offset-width: 2px;
}

.active\:border-blue-50:active {
        --tw-border-opacity: 1;
        border-color: rgb(227 242 253 / var(--tw-border-opacity));
}

.active\:border-blue-700:active {
        --tw-border-opacity: 1;
        border-color: rgb(25 118 210 / var(--tw-border-opacity));
}

.active\:border-blue-900:active {
        --tw-border-opacity: 1;
        border-color: rgb(13 71 161 / var(--tw-border-opacity));
}

.active\:border-gray-700:active {
        --tw-border-opacity: 1;
        border-color: rgb(97 97 97 / var(--tw-border-opacity));
}

.active\:border-green-700:active {
        --tw-border-opacity: 1;
        border-color: rgb(56 142 60 / var(--tw-border-opacity));
}

.active\:border-red-700:active {
        --tw-border-opacity: 1;
        border-color: rgb(211 47 47 / var(--tw-border-opacity));
}

.active\:bg-blue-50:active {
        --tw-bg-opacity: 1;
        background-color: rgb(227 242 253 / var(--tw-bg-opacity));
}

.active\:bg-blue-700:active {
        --tw-bg-opacity: 1;
        background-color: rgb(25 118 210 / var(--tw-bg-opacity));
}

.active\:bg-blue-900:active {
        --tw-bg-opacity: 1;
        background-color: rgb(13 71 161 / var(--tw-bg-opacity));
}

.active\:bg-gray-500:active {
        --tw-bg-opacity: 1;
        background-color: rgb(158 158 158 / var(--tw-bg-opacity));
}

.active\:bg-green-700:active {
        --tw-bg-opacity: 1;
        background-color: rgb(56 142 60 / var(--tw-bg-opacity));
}

.active\:bg-red-700:active {
        --tw-bg-opacity: 1;
        background-color: rgb(211 47 47 / var(--tw-bg-opacity));
}

.active\:text-blue-700:active {
        --tw-text-opacity: 1;
        color: rgb(25 118 210 / var(--tw-text-opacity));
}

.active\:text-blue-900:active {
        --tw-text-opacity: 1;
        color: rgb(13 71 161 / var(--tw-text-opacity));
}

.active\:text-gray-700:active {
        --tw-text-opacity: 1;
        color: rgb(97 97 97 / var(--tw-text-opacity));
}

.active\:text-green-700:active {
        --tw-text-opacity: 1;
        color: rgb(56 142 60 / var(--tw-text-opacity));
}

.active\:text-red-700:active {
        --tw-text-opacity: 1;
        color: rgb(211 47 47 / var(--tw-text-opacity));
}

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

.disabled\:opacity-50:disabled {
        opacity: 0.5;
}

.group:hover .group-hover\:opacity-100 {
        opacity: 1;
}

.group:hover .group-hover\:shadow-lg {
        --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -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);
}

:is([dir="ltr"] .ltr\:left-0) {
        left: 0px;
}

:is([dir="ltr"] .ltr\:right-0) {
        right: 0px;
}

:is([dir="ltr"] .ltr\:ml-4) {
        margin-left: 0.4rem;
}

:is([dir="ltr"] .ltr\:ml-8) {
        margin-left: 0.8rem;
}

:is([dir="ltr"] .ltr\:mr-48) {
        margin-right: 4.8rem;
}

:is([dir="ltr"] .ltr\:border-r-1) {
        border-right-width: 1px;
}

:is([dir="ltr"] .ltr\:pr-36) {
        padding-right: 3.6rem;
}

:is([dir="rtl"] .rtl\:left-0) {
        left: 0px;
}

:is([dir="rtl"] .rtl\:right-0) {
        right: 0px;
}

:is([dir="rtl"] .rtl\:ml-48) {
        margin-left: 4.8rem;
}

:is([dir="rtl"] .rtl\:mr-4) {
        margin-right: 0.4rem;
}

:is([dir="rtl"] .rtl\:mr-8) {
        margin-right: 0.8rem;
}

:is([dir="rtl"] .rtl\:border-l-1) {
        border-left-width: 1px;
}

:is([dir="rtl"] .rtl\:pl-36) {
        padding-left: 3.6rem;
}

:is(.dark .dark\:text-gray-600) {
        --tw-text-opacity: 1;
        color: rgb(117 117 117 / var(--tw-text-opacity));
}

@media (min-width: 600px) {

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

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

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

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

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

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

        .sm\:flex {
                display: flex;
        }

        .sm\:grid {
                display: grid;
        }

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

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

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

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

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

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

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

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

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

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

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

        .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\:rounded-2xl {
                border-radius: 1.6rem;
        }

        .sm\:rounded-xl {
                border-radius: 1.2rem;
        }

        .sm\:p-32 {
                padding: 3.2rem;
        }

        .sm\:p-48 {
                padding: 4.8rem;
        }

        .sm\:p-56 {
                padding: 5.6rem;
        }

        .sm\:px-12 {
                padding-left: 1.2rem;
                padding-right: 1.2rem;
        }

        .sm\:text-xl {
                font-size: 1.6rem;
        }

        .sm\:shadow {
                --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
                --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 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);
        }
}

@media (min-width: 960px) {

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

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

        .md\:m-16 {
                margin: 1.6rem;
        }

        .md\:mx-4 {
                margin-left: 0.4rem;
                margin-right: 0.4rem;
        }

        .md\:mb-16 {
                margin-bottom: 1.6rem;
        }

        .md\:mb-4 {
                margin-bottom: 0.4rem;
        }

        .md\:mb-68 {
                margin-bottom: 6.8rem;
        }

        .md\:mb-8 {
                margin-bottom: 0.8rem;
        }

        .md\:ml-\[-50px\] {
                margin-left: -50px;
        }

        .md\:mr-16 {
                margin-right: 1.6rem;
        }

        .md\:mr-4 {
                margin-right: 0.4rem;
        }

        .md\:mt-16 {
                margin-top: 1.6rem;
        }

        .md\:mt-20 {
                margin-top: 2rem;
        }

        .md\:mt-\[-50px\] {
                margin-top: -50px;
        }

        .md\:block {
                display: block;
        }

        .md\:inline {
                display: inline;
        }

        .md\:flex {
                display: flex;
        }

        .md\:grid {
                display: grid;
        }

        .md\:hidden {
                display: none;
        }

        .md\:h-28 {
                height: 2.8rem;
        }

        .md\:h-36 {
                height: 3.6rem;
        }

        .md\:h-72 {
                height: 7.2rem;
        }

        .md\:h-76 {
                height: 7.6rem;
        }

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

        .md\:min-h-64 {
                min-height: 6.4rem;
        }

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

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

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

        .md\:w-2\/3 {
                width: 66.666667%;
        }

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

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

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

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

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

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

        .md\:flex-\[2\] {
                flex: 2;
        }

        .md\:flex-\[3\] {
                flex: 3;
        }

        .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\:flex-row {
                flex-direction: row;
        }

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

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

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

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

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

        .md\:gap-10 {
                gap: 1.0rem;
        }

        .md\:gap-16 {
                gap: 1.6rem;
        }

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

        .md\:gap-24 {
                gap: 2.4rem;
        }

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

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

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

        .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
                --tw-space-x-reverse: 0;
                margin-right: calc(0.4rem * var(--tw-space-x-reverse));
                margin-left: calc(0.4rem * 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\:space-y-10 > :not([hidden]) ~ :not([hidden]) {
                --tw-space-y-reverse: 0;
                margin-top: calc(1.0rem * calc(1 - var(--tw-space-y-reverse)));
                margin-bottom: calc(1.0rem * var(--tw-space-y-reverse));
        }

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

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

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

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

        .md\:rounded-none {
                border-radius: 0px;
        }

        .md\:p-10 {
                padding: 1.0rem;
        }

        .md\:p-16 {
                padding: 1.6rem;
        }

        .md\:p-20 {
                padding: 2rem;
        }

        .md\:p-24 {
                padding: 2.4rem;
        }

        .md\:p-64 {
                padding: 6.4rem;
        }

        .md\:p-72 {
                padding: 7.2rem;
        }

        .md\:p-8 {
                padding: 0.8rem;
        }

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

        .md\:py-8 {
                padding-top: 0.8rem;
                padding-bottom: 0.8rem;
        }

        .md\:pr-20 {
                padding-right: 2rem;
        }

        .md\:text-7xl {
                font-size: 5.6rem;
        }

        .md\:text-base {
                font-size: 1.3rem;
        }

        .md\:text-sm {
                font-size: 1.1rem;
        }

        .md\:text-xl {
                font-size: 1.6rem;
        }

        .md\:leading-none {
                line-height: 1;
        }

        .md\:shadow-none {
                --tw-shadow: 0 0 #0000;
                --tw-shadow-colored: 0 0 #0000;
                box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        }
}

@media (min-width: 1280px) {

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

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

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

        .lg\:mx-24 {
                margin-left: 2.4rem;
                margin-right: 2.4rem;
        }

        .lg\:ml-\[-120px\] {
                margin-left: -120px;
        }

        .lg\:mr-80 {
                margin-right: 8rem;
        }

        .lg\:mt-\[-100px\] {
                margin-top: -100px;
        }

        .lg\:hidden {
                display: none;
        }

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

        .lg\:min-w-0 {
                min-width: 0px;
        }

        .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\:flex-row {
                flex-direction: row;
        }

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

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

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

        .lg\:px-112 {
                padding-left: 11.2rem;
                padding-right: 11.2rem;
        }

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

        .lg\:px-24 {
                padding-left: 2.4rem;
                padding-right: 2.4rem;
        }

        .lg\:pr-20 {
                padding-right: 2rem;
        }
}

@media (min-width: 1920px) {

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

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

.\[\&_ol\]\:ml-6 ol {
        margin-left: 0.6rem;
}

.\[\&_ol\]\:list-decimal ol {
        list-style-type: decimal;
}

.\[\&_ul\]\:ml-6 ul {
        margin-left: 0.6rem;
}

.\[\&_ul\]\:list-disc ul {
        list-style-type: disc;
}
