/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap);
@charset "UTF-8";
@layer properties;
.blue {
  --rgb: 57, 105, 243;
}
.green {
  --rgb: 51, 91, 11;
}
.red {
  --rgb: 255, 0, 0;
}
:root {
  --main-text-color: #282828;
  --black: #000000;
  --blue-active: #2990c1;
  --dark-gray: #686868;
  --dark-red: #ae2b2b;
  --dark-yellow: #dfd218;
  --gray: #a4a4a4;
  --green: #63ca4d;
  --light-gray: #e9e9e9;
  --red: #d34141;
  --very-light-gray: #fbfbfb;
  --yellow: #e8de48;
  --input-bg: #fff;
  --input-border: #ced4da;
  --input-placeholder: #c9c9c9;
  --input-focus-outline: var(--blue-active);
  --button-bg: #f8f9fa;
  --button-border: #f8f9fa;
  --button-color: #3c4043;
  --button-hover-border: #dadce0;
  --button-hover-color: #202124;
  --button-focus-border: #4285f4;
  --button-primary-bg: #04577f;
  --button-primary-border: #fff;
  --button-primary-color: #fff;
  --button-primary-hover-bg: #089be1;
  --button-primary-hover-color: #f8f9fa;
  --button-primary-hover-border: #dadce0;
  --button-primary-focus-border: var(--input-focus-outline);
  --button-secondary-bg: #9b9b9b;
  --button-secondary-color: #fff;
  --button-secondary-hover-bg: #c7c7c7;
  --button-secondary-hover-color: #fff;
  --button-secondary-focus-border: #4285f4;
  --button-back-bg: #8a8a8a;
  --button-back-hover-bg: #bbb;
  --button-back-color: #fff;
  --button-back-hover-color: #fff;
  --data-list-no-option-available: var(--dark-gray);
  --form-input-label: #979797;
  --form-buttons-wrapper-bg: #fff;
  --form-validation-error-message-color: var(--red);
  --form-button-bg: #5f9f45;
  --form-button-border: #5f9f45;
  --form-button-color: #fff;
  --form-button-hover-bg: #95d57b;
  --form-button-hover-border: #95d57b;
  --form-button-hover-color: #55762f;
  --form-button-focus-border: var(--input-focus-outline);
  --form-fieldset-list-title-color: var(--gray);
  --grid-filter-bg: var(--very-light-gray);
  --grid-filter-border: var(--light-gray);
  --grid-filter-legend: var(--black);
  --grid-filter-button: var(--dark-gray);
  --grid-filter-button-bg: var(--very-light-gray);
  --grid-filter-button-hover-bg: var(--light-gray);
  --grid-filter-button-border: var(--gray);
  --grid-header-color: var(--black);
  --grid-navigation-link-bg: #efefef;
  --grid-navigation-link-color: var(--main-text-color);
  --grid-navigation-link-current-bg: var(--blue-active);
  --grid-navigation-link-current-color: #fff;
  --grid-row-bg: #f7f7f7;
  --grid-table-border: var(--light-gray);
  --notification-error-bg: var(--red);
  --notification-warning-bg: var(--yellow);
  --notification-success-bg: var(--green);
  --svg-main-fill-color: #000000;
  --time-grid-header-bg: var(--light-gray);
  --time-grid-table-header-bg: var(--gray);
  --time-grid-table-header-color: #fff;
}
form fieldset {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 2rem;
  -moz-column-gap: 4%;
  column-gap: 4%;
  justify-content: space-between;
  width: 100%;
}
form fieldset.uppercase-input-values input, form fieldset.uppercase-input-values textarea, form fieldset.uppercase-input-values select, form fieldset.uppercase-input-values .data-list-input-wrapper, form fieldset.uppercase-input-values .data-list-option {
  text-transform: uppercase;
}
form a:focus {
  outline: 2px solid var(--input-focus-outline);
}
form .form-fieldset-component {
  display: flex;
  flex-direction: column;
}
form .form-fieldset-component.full {
  width: 100%;
}
form .form-fieldset-component.half {
  width: 48%;
}
form .form-fieldset-component.half.break {
  margin-right: 52%;
}
form .form-fieldset-component.one-fourth {
  width: 22%;
}
form .form-fieldset-component.one-third {
  width: 30%;
}
form .form-fieldset-component.one-third.break {
  margin-right: 70%;
}
form .form-fieldset-component.two-thirds {
  width: 65%;
}
form .form-fieldset-component.three-fourths {
  width: 74%;
}
form .form-fieldset-component label {
  color: var(--form-input-label);
  font-family: sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
}
form .form-fieldset-component input, form .form-fieldset-component textarea, form .form-fieldset-component select {
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 0.375rem;
  color: #212529;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  height: 2.75rem;
  line-height: 1.25;
  padding: 0.375rem 0.65rem;
}
form .form-fieldset-component input::-moz-placeholder, form .form-fieldset-component textarea::-moz-placeholder, form .form-fieldset-component select::-moz-placeholder {
  color: var(--input-placeholder);
  font-size: 0.85rem;
}
form .form-fieldset-component input::placeholder, form .form-fieldset-component textarea::placeholder, form .form-fieldset-component select::placeholder {
  color: var(--input-placeholder);
  font-size: 0.85rem;
}
form .form-fieldset-component input:focus, form .form-fieldset-component textarea:focus, form .form-fieldset-component select:focus {
  outline: 2px solid var(--input-focus-outline);
}
form .form-fieldset-component.checkbox {
  align-items: center;
  flex-direction: row;
}
form .form-fieldset-component.checkbox input {
  height: 1.5rem;
  width: 1.5rem;
}
form .form-fieldset-component span.selected-option-label-read-only {
  line-height: 2.75rem;
}
form .form-fieldset-component .focus {
  outline: 2px solid var(--input-focus-outline) !important;
}
form .form-fieldset-component span.extra-label {
  align-content: center;
  background-color: #f9f9f9;
  border: 1px solid lightgray;
  font-size: 1rem;
  padding: 0.75rem;
  text-wrap: nowrap;
}
form .form-fieldset-component span.extra-label.right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-left: -5px;
}
form .form-fieldset-component span.extra-label.left {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-right: -5px;
  z-index: 1;
}
form .form-fieldset-component span.extra-label .extra-label-label {
  color: var(--form-input-label);
  font-size: 0.75rem;
  text-transform: uppercase;
}
form .form-buttons {
  background-color: var(--form-buttons-wrapper-bg);
  bottom: 0;
  border-top: 1px solid var(--light-gray);
  margin-top: 50px;
  padding: 0.5rem;
  position: sticky;
  text-align: right;
  width: auto;
}
form .form-buttons input {
  background-color: var(--form-button-bg);
  border: 1px solid var(--form-button-border);
  border-radius: 4px;
  color: var(--form-button-color);
  cursor: pointer;
  font-family: arial, sans-serif;
  font-size: 1rem;
  height: 36px;
  line-height: 27px;
  min-width: 54px;
  padding: 0 16px;
  text-align: center;
  text-transform: uppercase;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: pre;
}
form .form-buttons input:hover {
  background-color: var(--form-button-hover-bg);
  border-color: var(--form-button-hover-border);
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
  color: var(--form-button-hover-color);
}
form .form-buttons input:focus {
  border-color: var(--form-button-focus-border);
  outline: none;
}
form div.form-field-validation-error-message, form div.fieldset-validation-error-message {
  color: var(--form-validation-error-message-color);
  font-family: sans-serif;
  font-size: 0.75rem;
}
form div.fieldset-validation-error-message {
  flex: 1 1 100%;
}
form div.money-with-discount-fields-wrapper {
  display: flex;
  flex-direction: row;
}
form div.money-with-discount-fields-wrapper > :first-child {
  margin-right: 10px;
  width: 7rem;
}
div.form-fieldset-list {
  min-height: 250px;
}
div.form-fieldset-list h2 {
  text-transform: uppercase;
}
div.form-fieldset-list div.form-fieldset-list-header {
  display: flex;
  margin-bottom: 1rem;
}
div.form-fieldset-list div.form-fieldset-list-header span.title {
  color: var(--form-fieldset-list-title-color);
  font-family: sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}
div.form-fieldset-list div.form-fieldset-list-header a.new.button {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-color);
  font-family: sans-serif;
  font-size: 0.75rem;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
div.form-fieldset-list div.form-fieldset-list-header a.new.button:hover {
  background-color: var(--button-primary-hover-bg);
  color: var(--button-primary-hover-color);
}
div.form-fieldset-list div.form-fieldset-list-header div.form-fieldset-list-buttons {
  align-items: center;
  display: flex;
  gap: 15px;
  margin-left: 15px;
}
div.form-fieldset-list div.list-content {
  align-content: flex-start;
  align-items: flex-start;
  border: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: flex-start;
}
div.form-fieldset-list div.list-content.form-fieldset-list-item-on-copy-mode {
  gap: 1%;
}
div.form-fieldset-list section.form-fieldset-list-item {
  background-color: #F8F8F8;
  display: flex;
  flex-wrap: wrap;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  transition: all 0.2s ease-in-out;
}
div.form-fieldset-list section.form-fieldset-list-item.per-row-4 {
  width: 21.8%;
}
div.form-fieldset-list section.form-fieldset-list-item.per-row-2 {
  width: 49%;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-header-title {
  flex-basis: 100%;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode {
  border: 5px solid #555555;
  border-top-width: 40px;
  cursor: pointer;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode::before {
  content: "Click To Copy";
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1rem;
  position: absolute;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  top: -28px;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode:hover {
  border-color: #4124B6;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode:hover::before {
  font-size: 16px;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode:hover div.form-fielset-list-item-copy-overlay {
  opacity: 25%;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-copy-overlay {
  height: 100%;
  width: 100%;
  background: white;
  position: absolute;
  opacity: 50%;
  transition: all 0.2s ease-in-out;
  z-index: 2;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 2.5rem 0 1.25rem;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper > * {
  flex-basis: 100%;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper > label {
  color: #565656;
  flex-basis: 30%;
  font-size: 10px;
  text-transform: uppercase;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper > p {
  flex-basis: 100%;
  font-size: 12px;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper > p a {
  font-size: 12px;
}
div.form-fieldset-list section.form-fieldset-list-item > header {
  align-items: last baseline;
  background-color: #8F8F8F;
  color: white;
  display: flex;
  flex: 100%;
  gap: 13px;
  margin-bottom: 13px;
  padding: 8px 13px;
  position: relative;
  text-transform: uppercase;
}
div.form-fieldset-list section.form-fieldset-list-item > header h2 {
  font-size: 20px;
  margin: 0;
  text-wrap: nowrap;
}
div.form-fieldset-list section.form-fieldset-list-item > header input {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  width: 100%;
}
div.form-fieldset-list section.form-fieldset-list-item > header input:focus {
  background: white;
  border: none;
  color: black;
}
div.form-fieldset-list section.form-fieldset-list-item > header > a.edit-order-form {
  background-image: url("../images/order-form.svg");
  text-indent: -9999px;
  background-repeat: no-repeat;
  width: 45px;
  height: 40px;
  background-size: 18px;
  background-position: center;
  display: inline-flex;
  align-self: center;
}
div.form-fieldset-list section.form-fieldset-list-item > header > a.edit-order-form:hover {
  background-image: url("../images/order-form-hover.svg");
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component {
  align-self: center;
  display: inline-flex;
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component a.actions-link {
  height: 3rem;
  width: 3rem;
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component a.actions-link circle:first-child {
  transition: all 0.25s ease-in-out;
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component a.actions-link:hover circle:first-child {
  fill: gray;
  r: 12;
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component ul {
  margin-top: 40px;
}
div.form-fieldset-list.lighter {
  min-height: 0px !important;
}
div.form-fieldset-list.lighter header {
  background-color: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
}
div.form-fieldset-list.lighter header circle[r="1"] {
  fill: var(--svg-main-fill-color) !important;
}
div.form-fieldset-list.rows section.form-fieldset-list-item {
  flex-basis: content !important;
  width: 100% !important;
}
div.imageUploader input {
  border: 0;
  height: 0;
  opacity: 0;
  padding: 0;
  width: 0;
}
div.imageUploader div.image-wrapper {
  align-items: end;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 150px;
}
div.imageUploader div.image-wrapper div.clickable {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
div.imageUploader div.image-wrapper div.clickable div.preview-no-file {
  align-content: center;
  cursor: pointer;
  height: 100%;
}
div.imageUploader div.image-wrapper div.clickable div.preview-no-file img {
  margin: auto;
}
div.imageUploader div.image-wrapper div.clickable div.preview-no-file:hover img {
  opacity: 50;
}
div.imageUploader div.image-wrapper div.delete-file {
  bottom: 0;
  cursor: pointer;
  height: 20px;
  position: absolute;
  right: 0;
  z-index: 100;
  width: 20px;
}
body.loading {
  cursor: progress;
}
body div.loading-overlay {
  background-color: rgba(128, 128, 128, 0.3137254902);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
body .element-loading {
  background-image: url("/svg/loader.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150px 150px;
  opacity: 1;
  visibility: visible;
}
@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-fade-slide-in {
  animation: fade-slide-in 0.8s ease-out forwards;
}
.toastify {
  background: white !important;
  color: var(--brand-blue) !important;
  color: var(--brand-blue);
}
.toastify.success {
  border-left: 8px solid var(--array-green-darker);
}
.toastify .toast-close {
  color: var(--brand-purple);
}
:root {
  --brand-blue: #2A107E;
  --brand-purple: #795ADF;
  --light-purple: #E8DFFC;
  --lighter-purple: #F5F0FF;
  --card-bg: #EADFFF;
  --array-red: #FF625A;
  --array-yellow: #FBBD00;
  --array-green: #52EE9B;
  --array-green-darker: #1DBB91;
  --array-blue: #54BDEC;
  --array-orange: #F86E14;
  --array-pink: #FF5790;
}
html, body {
  font-family: "Inter", sans-serif;
  color: var(--brand-blue);
}
.bg-brandblue {
  background: var(--brand-blue);
}
.bg-brandpurple {
  background: var(--brand-purple);
}
.bg-lightpurple {
  background: var(--light-purple);
}
.bg-lighterpurple {
  background: var(--lighter-purple);
}
.border-lightpurple {
  border-color: var(--lighter-purple);
}
.bg-wave {
  background: var(--lighter-purple) url("../images/wave.svg") bottom right no-repeat;
}
.bg-array-red {
  background-color: var(--array-red);
}
.bg-array-yellow {
  background-color: var(--array-yellow);
}
.bg-array-green {
  background-color: var(--array-green);
}
.bg-array-dark-green {
  background-color: var(--array-green-darker);
}
.bg-array-blue {
  background-color: var(--array-blue);
}
.bg-array-orange {
  background-color: var(--array-orange);
}
.bg-array-pink {
  background-color: var(--array-pink);
}
.bg-array-purple {
  background-color: var(--brand-purple);
}
.border-array-purple {
  border-color: var(--brand-purple);
}
.text-array-red {
  color: var(--array-red);
}
.text-array-yellow {
  color: var(--array-yellow);
}
.text-array-green {
  color: var(--array-green);
}
.text-array-blue {
  color: var(--array-blue);
}
.text-array-orange {
  color: var(--array-orange);
}
.text-array-pink {
  color: var(--array-pink);
}
.text-array-purple {
  color: var(--brand-purple);
}
.text-array-lighterpurple {
  color: var(--lighter-purple);
}
::marker {
  color: var(--brand-purple);
}
div[id^=plan-component-] .action-extra-content {
  margin-top: 0.75rem;
  background-color: var(--lighter-purple);
  border-radius: 0.75rem;
  padding: 25px;
  margin-right: 20px;
}
div[id^=plan-component-] .action-extra-content a {
  color: var(--brand-purple);
  font-weight: bold;
}
div[id^=plan-component-] .action-extra-content.is-open {
  display: block;
}
div[id^=plan-component-] .action-extra-content h3 {
  color: var(--brand-purple);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--light-purple);
  padding-bottom: 6px;
}
div[id^=plan-component-] .action-extra-content p {
  font-size: 15px;
  margin-bottom: 12px;
}
div[id^=plan-component-] .action-extra-content ul, div[id^=plan-component-] .action-extra-content ol {
  padding-left: 20px;
  font-size: 14px;
  margin-bottom: 22px;
}
div[id^=plan-component-] .action-extra-content li {
  list-style: disc;
}
div[id^=plan-component-] .action-extra-content code {
  white-space: pre-wrap;
}
div[id^=plan-component-] .last-faq-section {
  margin-bottom: 200px;
}
div[id^=plan-component-] select {
  border: 1px solid lightgray;
  border-radius: 4px;
  padding: 7px;
  text-align: right;
}
div[id^=plan-component-] .help-text {
  margin-left: 100px;
}
div[id^=plan-component-] .faq {
  margin-bottom: 100px;
}
div[id^=plan-component-] .component-loader-component-wrapper {
  width: 100%;
  height: 100%;
}
div[id^=plan-component-] .action-extra-content-content:last-child {
  margin-bottom: 0;
}
div[id^=plan-component-] .action-extra-content-subtitle {
  font-weight: bold;
}
div[id^=plan-component-] .form-fieldset-component {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: auto;
  align-items: flex-start;
  background: var(--card-bg);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  padding-left: 60px;
  margin-top: 10px;
  position: relative;
  margin-right: 20px;
}
div[id^=plan-component-] .form-fieldset-component:before {
  content: "";
  background: transparent url("../../../images/array-logo-nobg.svg") center center no-repeat;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
}
div[id^=plan-component-] .form-fieldset-component label {
  font-weight: bold;
}
div[id^=plan-component-] .form-fieldset-component select {
  background: white;
  max-width: 97%;
  width: 100%;
  text-align: left;
  border: 0;
}
#plan-panel {
  max-width: 80vw !important;
}
@media only screen and (max-width: 800px) {
  #plan-panel {
    max-width: 100vw !important;
  }
}
.hidden:not(aside) {
  display: none !important;
}
.element-loading {
  background-image: url("/images/loading-icon.gif") !important;
}
body#body form input {
  border-color: #d3c6f8;
  border-radius: calc(infinity * 1px);
}
body#body form label {
  color: var(--brand-blue);
  font-size: 16px;
  text-transform: none;
}
body#body form div.form-buttons {
  background: none;
  border: none;
}
body#body form input[type=submit] {
  background-color: var(--array-red);
  border: none;
  text-transform: none;
}
body#body form input[type=submit]:hover {
  color: white;
}
body#body form hr {
  color: #d3c6f8;
}
#page-content-wrapper {
  padding: 40px;
}
@media only screen and (max-width: 768px) {
  #page-content-wrapper {
    padding: 20px;
  }
}
#page-content-wrapper h1 {
  font-size: var(--text-3xl);
  line-height: var(--tw-leading, var(--text-3xl--line-height));
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
}
.faq-nav-link {
  bottom: calc(var(--spacing) * 14);
}
@media only screen and (max-width: 768px) {
  .faq-nav-link {
    bottom: 0;
  }
}
.bg-lines {
  background: var(--lighter-purple) url("../images/demo-bg.jpg") center left no-repeat;
  background-attachment: fixed;
}
.demo-logo {
  margin-top: -80px;
  margin-left: 90px;
}
@media only screen and (max-width: 600px) {
  .demo-logo {
    margin-top: -65px;
    margin-left: 50px;
    width: 190px;
  }
  .bg-lines {
    background: var(--lighter-purple) url("../images/demo-bg-mobile.jpg") center left no-repeat;
    background-attachment: fixed;
  }
}
@media only screen and (min-width: 768px) {
  #plan-request-form div.flex-1:first-child {
    margin-right: 300px;
  }
}
@media only screen and (max-width: 768px) {
  #plan-request-form {
    margin-right: 70px;
  }
}
#plan-request-form #request-plan-button {
  top: 4px;
  right: -50px;
}
#plan-request-form #request-plan-button:hover {
  opacity: 0.8;
}
#plan-request-form textarea {
  overflow: hidden;
  resize: none;
  border-radius: 10px;
  padding-left: 15px;
  position: absolute;
  z-index: 1;
  padding: 15px;
}
.open-plan-panel h2 {
  min-height: 70px;
  padding-top: 25px;
}
.card-questions {
  background: var(--card-bg) url("../images/card-bg.svg") center left no-repeat;
}
.card-processing {
  background: var(--card-bg) url("../images/card-bg-noicon.svg") center left no-repeat;
}
.component-loader-component-wrapper {
  height: 100%;
}
#plan-cards {
  padding-top: 60px;
}
body.user-profile #mobile-menu-button {
  position: absolute;
  right: 0;
  top: 5px;
}
body.user-profile form#user_profile {
  width: 80%;
}
body.user-profile form#user_profile fieldset#user_profile-fieldset {
  display: grid;
  grid-template-columns: min-content 1fr 1fr;
  align-items: start;
}
body.user-profile form#user_profile fieldset#user_profile-fieldset div#user_profile-fieldset-picture-component {
  grid-column: 1;
  grid-row: 1/span 5;
}
body.user-profile form#user_profile fieldset#user_profile-fieldset div#user_profile-fieldset-first_name-component {
  grid-column: 2;
}
body.user-profile form#user_profile fieldset#user_profile-fieldset div#user_profile-fieldset-last_name-component {
  grid-column: 3;
}
body.user-profile form#user_profile fieldset#user_profile-fieldset div#user_profile-fieldset-password_separator {
  grid-column: 2/span 2;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
}
body.user-profile form#user_profile hr {
  margin-top: 10px;
  margin-bottom: 0;
}
body.user-profile form#user_profile label {
  margin-bottom: calc(var(--spacing) * 1);
}
body.user-profile form#user_profile input {
  outline-color: var(--color-violet-300);
}
body.user-profile form#user_profile .form-buttons {
  margin-top: 30px;
  padding: 0.5rem;
  position: relative;
  text-align: left;
  width: auto;
  margin-left: 181px;
}
#myAccount ul {
  position: relative;
  z-index: 10;
  margin-top: calc(var(--spacing) * 6);
  min-width: 180px;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  padding-inline: calc(var(--spacing) * 4);
  text-align: left;
  --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  --tw-shadow-color: oklch(89.4% 0.057 293.283);
  @supports (color: color-mix(in lab, red, red)) {
    --tw-shadow-color: color-mix(in oklab, var(--color-violet-200) var(--tw-shadow-alpha), transparent);
  }
}
#myAccount ul::before {
  content: "";
  position: absolute;
  top: calc(var(--spacing) * -2);
  right: calc(var(--spacing) * 6);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}
#myAccount ul li {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
  border-color: var(--color-violet-100);
  padding-block: calc(var(--spacing) * 2);
}
#myAccount ul li:last-child {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 0px;
}
#myAccount ul li:hover {
  color: var(--color-violet-500);
}
.delete-file {
  background: var(--array-red);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  display: flex !important;
  align-content: center;
  justify-content: center;
}
.delete-file img {
  width: 23px;
}
#user-profile-components {
  display: flex;
  right: 50px;
  position: absolute;
  top: 42px;
  text-align: end;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  #user-profile-components {
    display: none;
  }
}
#user-profile-components #user-avatar {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border: 3px solid white;
}
#user-profile-components #user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#user-profile-components #userMenu {
  text-align: end;
}
#user-profile-components #userMenu ul {
  position: absolute;
  right: 0;
}
@media screen {
  @layer theme, base, components, utilities;
  @layer theme {
    :root, :host {
      --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
      --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
        "Courier New", monospace;
      --color-green-500: oklch(72.3% 0.219 149.579);
      --color-indigo-900: oklch(35.9% 0.144 278.697);
      --color-violet-50: oklch(96.9% 0.016 293.756);
      --color-violet-100: oklch(94.3% 0.029 294.588);
      --color-violet-200: oklch(89.4% 0.057 293.283);
      --color-violet-300: oklch(81.1% 0.111 293.571);
      --color-violet-400: oklch(70.2% 0.183 293.541);
      --color-violet-500: oklch(60.6% 0.25 292.717);
      --color-gray-100: oklch(96.7% 0.003 264.542);
      --color-gray-400: oklch(70.7% 0.022 261.325);
      --color-black: #000;
      --color-white: #fff;
      --spacing: 0.25rem;
      --container-md: 28rem;
      --container-4xl: 56rem;
      --container-7xl: 80rem;
      --text-xs: 0.75rem;
      --text-xs--line-height: calc(1 / 0.75);
      --text-sm: 0.875rem;
      --text-sm--line-height: calc(1.25 / 0.875);
      --text-base: 1rem;
      --text-base--line-height: calc(1.5 / 1);
      --text-lg: 1.125rem;
      --text-lg--line-height: calc(1.75 / 1.125);
      --text-xl: 1.25rem;
      --text-xl--line-height: calc(1.75 / 1.25);
      --text-2xl: 1.5rem;
      --text-2xl--line-height: calc(2 / 1.5);
      --text-3xl: 1.875rem;
      --text-3xl--line-height: calc(2.25 / 1.875);
      --text-4xl: 2.25rem;
      --text-4xl--line-height: calc(2.5 / 2.25);
      --font-weight-medium: 500;
      --font-weight-semibold: 600;
      --font-weight-bold: 700;
      --tracking-tight: -0.025em;
      --leading-normal: 1.5;
      --radius-md: 0.375rem;
      --radius-lg: 0.5rem;
      --radius-xl: 0.75rem;
      --radius-3xl: 1.5rem;
      --ease-out: cubic-bezier(0, 0, 0.2, 1);
      --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
      --default-transition-duration: 150ms;
      --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      --default-font-family: var(--font-sans);
      --default-mono-font-family: var(--font-mono);
    }
  }
  @layer base {
    *, ::after, ::before, ::backdrop, ::file-selector-button {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      border: 0 solid;
    }
    html, :host {
      line-height: 1.5;
      -webkit-text-size-adjust: 100%;
      -moz-tab-size: 4;
      -o-tab-size: 4;
      tab-size: 4;
      font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
      font-feature-settings: var(--default-font-feature-settings, normal);
      font-variation-settings: var(--default-font-variation-settings, normal);
      -webkit-tap-highlight-color: transparent;
    }
    hr {
      height: 0;
      color: inherit;
      border-top-width: 1px;
    }
    abbr:where([title]) {
      -webkit-text-decoration: underline dotted;
      text-decoration: underline dotted;
    }
    h1, h2, h3, h4, h5, h6 {
      font-size: inherit;
      font-weight: inherit;
    }
    a {
      color: inherit;
      -webkit-text-decoration: inherit;
      text-decoration: inherit;
    }
    b, strong {
      font-weight: bolder;
    }
    code, kbd, samp, pre {
      font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
      font-feature-settings: var(--default-mono-font-feature-settings, normal);
      font-variation-settings: var(--default-mono-font-variation-settings, normal);
      font-size: 1em;
    }
    small {
      font-size: 80%;
    }
    sub, sup {
      font-size: 75%;
      line-height: 0;
      position: relative;
      vertical-align: baseline;
    }
    sub {
      bottom: -0.25em;
    }
    sup {
      top: -0.5em;
    }
    table {
      text-indent: 0;
      border-color: inherit;
      border-collapse: collapse;
    }
    :-moz-focusring {
      outline: auto;
    }
    progress {
      vertical-align: baseline;
    }
    summary {
      display: list-item;
    }
    ol, ul, menu {
      list-style: none;
    }
    img, svg, video, canvas, audio, iframe, embed, object {
      display: block;
      vertical-align: middle;
    }
    img, video {
      max-width: 100%;
      height: auto;
    }
    button, input, select, optgroup, textarea, ::file-selector-button {
      font: inherit;
      font-feature-settings: inherit;
      font-variation-settings: inherit;
      letter-spacing: inherit;
      color: inherit;
      border-radius: 0;
      background-color: transparent;
      opacity: 1;
    }
    :where(select:is([multiple], [size])) optgroup {
      font-weight: bolder;
    }
    :where(select:is([multiple], [size])) optgroup option {
      padding-inline-start: 20px;
    }
    ::file-selector-button {
      margin-inline-end: 4px;
    }
    ::-moz-placeholder {
      opacity: 1;
    }
    ::placeholder {
      opacity: 1;
    }
    @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
      ::-moz-placeholder {
        color: currentcolor;
        @supports (color: color-mix(in lab, red, red)) {
          color: color-mix(in oklab, currentcolor 50%, transparent);
        }
      }
      ::placeholder {
        color: currentcolor;
        @supports (color: color-mix(in lab, red, red)) {
          color: color-mix(in oklab, currentcolor 50%, transparent);
        }
      }
    }
    textarea {
      resize: vertical;
    }
    ::-webkit-search-decoration {
      -webkit-appearance: none;
    }
    ::-webkit-date-and-time-value {
      min-height: 1lh;
      text-align: inherit;
    }
    ::-webkit-datetime-edit {
      display: inline-flex;
    }
    ::-webkit-datetime-edit-fields-wrapper {
      padding: 0;
    }
    ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
      padding-block: 0;
    }
    ::-webkit-calendar-picker-indicator {
      line-height: 1;
    }
    :-moz-ui-invalid {
      box-shadow: none;
    }
    button, input:where([type=button], [type=reset], [type=submit]), ::file-selector-button {
      -webkit-appearance: button;
      -moz-appearance: button;
      appearance: button;
    }
    ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
      height: auto;
    }
    [hidden]:where(:not([hidden=until-found])) {
      display: none !important;
    }
  }
  @layer utilities {
    .pointer-events-auto {
      pointer-events: auto;
    }
    .pointer-events-none {
      pointer-events: none;
    }
    .visible {
      visibility: visible;
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip-path: inset(50%);
      white-space: nowrap;
      border-width: 0;
    }
    .absolute {
      position: absolute;
    }
    .fixed {
      position: fixed;
    }
    .relative {
      position: relative;
    }
    .static {
      position: static;
    }
    .sticky {
      position: sticky;
    }
    .inset-0 {
      inset: calc(var(--spacing) * 0);
    }
    .-top-6 {
      top: calc(var(--spacing) * -6);
    }
    .-top-10 {
      top: calc(var(--spacing) * -10);
    }
    .top-0 {
      top: calc(var(--spacing) * 0);
    }
    .top-3 {
      top: calc(var(--spacing) * 3);
    }
    .top-6 {
      top: calc(var(--spacing) * 6);
    }
    .top-10 {
      top: calc(var(--spacing) * 10);
    }
    .right-0 {
      right: calc(var(--spacing) * 0);
    }
    .right-\[7px\] {
      right: 7px;
    }
    .bottom-0 {
      bottom: calc(var(--spacing) * 0);
    }
    .bottom-6 {
      bottom: calc(var(--spacing) * 6);
    }
    .-left-7 {
      left: calc(var(--spacing) * -7);
    }
    .-left-\[45px\] {
      left: calc(45px * -1);
    }
    .left-1\/2 {
      left: calc(1/2 * 100%);
    }
    .left-4 {
      left: calc(var(--spacing) * 4);
    }
    .left-6 {
      left: calc(var(--spacing) * 6);
    }
    .left-14 {
      left: calc(var(--spacing) * 14);
    }
    .z-10 {
      z-index: 10;
    }
    .z-40 {
      z-index: 40;
    }
    .z-50 {
      z-index: 50;
    }
    .col-12 {
      grid-column: 12;
    }
    .container {
      width: 100%;
      @media (width >= 40rem) {
        max-width: 40rem;
      }
      @media (width >= 48rem) {
        max-width: 48rem;
      }
      @media (width >= 64rem) {
        max-width: 64rem;
      }
      @media (width >= 80rem) {
        max-width: 80rem;
      }
      @media (width >= 96rem) {
        max-width: 96rem;
      }
    }
    .m-3 {
      margin: calc(var(--spacing) * 3);
    }
    .m-auto {
      margin: auto;
    }
    .mx-auto {
      margin-inline: auto;
    }
    .my-3 {
      margin-block: calc(var(--spacing) * 3);
    }
    .mt-1 {
      margin-top: calc(var(--spacing) * 1);
    }
    .mt-2 {
      margin-top: calc(var(--spacing) * 2);
    }
    .mt-3 {
      margin-top: calc(var(--spacing) * 3);
    }
    .mt-4 {
      margin-top: calc(var(--spacing) * 4);
    }
    .mt-6 {
      margin-top: calc(var(--spacing) * 6);
    }
    .mt-10 {
      margin-top: calc(var(--spacing) * 10);
    }
    .mt-12 {
      margin-top: calc(var(--spacing) * 12);
    }
    .mt-16 {
      margin-top: calc(var(--spacing) * 16);
    }
    .mt-auto {
      margin-top: auto;
    }
    .mr-3 {
      margin-right: calc(var(--spacing) * 3);
    }
    .mr-6 {
      margin-right: calc(var(--spacing) * 6);
    }
    .mb-1 {
      margin-bottom: calc(var(--spacing) * 1);
    }
    .mb-2 {
      margin-bottom: calc(var(--spacing) * 2);
    }
    .mb-4 {
      margin-bottom: calc(var(--spacing) * 4);
    }
    .mb-6 {
      margin-bottom: calc(var(--spacing) * 6);
    }
    .mb-\[150px\] {
      margin-bottom: 150px;
    }
    .ml-4 {
      margin-left: calc(var(--spacing) * 4);
    }
    .ml-6 {
      margin-left: calc(var(--spacing) * 6);
    }
    .ml-10 {
      margin-left: calc(var(--spacing) * 10);
    }
    .ml-\[50px\] {
      margin-left: 50px;
    }
    .ml-auto {
      margin-left: auto;
    }
    .block {
      display: block;
    }
    .contents {
      display: contents;
    }
    .flex {
      display: flex;
    }
    .grid {
      display: grid;
    }
    .hidden {
      display: none;
    }
    .inline-block {
      display: inline-block;
    }
    .inline-flex {
      display: inline-flex;
    }
    .table {
      display: table;
    }
    .h-4 {
      height: calc(var(--spacing) * 4);
    }
    .h-5 {
      height: calc(var(--spacing) * 5);
    }
    .h-6 {
      height: calc(var(--spacing) * 6);
    }
    .h-11 {
      height: calc(var(--spacing) * 11);
    }
    .h-12 {
      height: calc(var(--spacing) * 12);
    }
    .h-20 {
      height: calc(var(--spacing) * 20);
    }
    .h-\[30px\] {
      height: 30px;
    }
    .h-\[70px\] {
      height: 70px;
    }
    .h-full {
      height: 100%;
    }
    .h-screen {
      height: 100vh;
    }
    .min-h-\[270px\] {
      min-height: 270px;
    }
    .min-h-screen {
      min-height: 100vh;
    }
    .w-1\/2 {
      width: calc(1/2 * 100%);
    }
    .w-4 {
      width: calc(var(--spacing) * 4);
    }
    .w-5 {
      width: calc(var(--spacing) * 5);
    }
    .w-6 {
      width: calc(var(--spacing) * 6);
    }
    .w-11 {
      width: calc(var(--spacing) * 11);
    }
    .w-12 {
      width: calc(var(--spacing) * 12);
    }
    .w-80 {
      width: calc(var(--spacing) * 80);
    }
    .w-\[30px\] {
      width: 30px;
    }
    .w-\[50px\] {
      width: 50px;
    }
    .w-\[70px\] {
      width: 70px;
    }
    .w-\[85px\] {
      width: 85px;
    }
    .w-\[90px\] {
      width: 90px;
    }
    .w-\[250px\] {
      width: 250px;
    }
    .w-auto {
      width: auto;
    }
    .w-full {
      width: 100%;
    }
    .max-w-4xl {
      max-width: var(--container-4xl);
    }
    .max-w-7xl {
      max-width: var(--container-7xl);
    }
    .max-w-60 {
      max-width: calc(var(--spacing) * 60);
    }
    .max-w-\[1000px\] {
      max-width: 1000px;
    }
    .max-w-md {
      max-width: var(--container-md);
    }
    .min-w-\[30px\] {
      min-width: 30px;
    }
    .min-w-\[85px\] {
      min-width: 85px;
    }
    .flex-1 {
      flex: 1;
    }
    .border-collapse {
      border-collapse: collapse;
    }
    .-translate-x-1\/2 {
      --tw-translate-x: calc(calc(1/2 * 100%) * -1);
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
    .-translate-x-full {
      --tw-translate-x: -100%;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
    .translate-x-0 {
      --tw-translate-x: calc(var(--spacing) * 0);
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
    .translate-x-\[20px\] {
      --tw-translate-x: 20px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
    .translate-x-full {
      --tw-translate-x: 100%;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
    .translate-y-2 {
      --tw-translate-y: calc(var(--spacing) * 2);
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
    .translate-y-full {
      --tw-translate-y: 100%;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
    .transform {
      transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
    }
    .cursor-pointer {
      cursor: pointer;
    }
    .resize {
      resize: both;
    }
    .list-disc {
      list-style-type: disc;
    }
    .list-none {
      list-style-type: none;
    }
    .flex-col {
      flex-direction: column;
    }
    .items-center {
      align-items: center;
    }
    .items-start {
      align-items: flex-start;
    }
    .justify-between {
      justify-content: space-between;
    }
    .justify-center {
      justify-content: center;
    }
    .justify-end {
      justify-content: flex-end;
    }
    .gap-1 {
      gap: calc(var(--spacing) * 1);
    }
    .gap-2 {
      gap: calc(var(--spacing) * 2);
    }
    .gap-3 {
      gap: calc(var(--spacing) * 3);
    }
    .gap-4 {
      gap: calc(var(--spacing) * 4);
    }
    .gap-10 {
      gap: calc(var(--spacing) * 10);
    }
    .space-y-1 {
      :where(& > :not(:last-child)) {
        --tw-space-y-reverse: 0;
        margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
        margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
      }
    }
    .space-y-2 {
      :where(& > :not(:last-child)) {
        --tw-space-y-reverse: 0;
        margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
        margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
      }
    }
    .space-y-3 {
      :where(& > :not(:last-child)) {
        --tw-space-y-reverse: 0;
        margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
        margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
      }
    }
    .space-y-4 {
      :where(& > :not(:last-child)) {
        --tw-space-y-reverse: 0;
        margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
        margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
      }
    }
    .space-y-8 {
      :where(& > :not(:last-child)) {
        --tw-space-y-reverse: 0;
        margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
        margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
      }
    }
    .overflow-y-auto {
      overflow-y: auto;
    }
    .rounded-3xl {
      border-radius: var(--radius-3xl);
    }
    .rounded-full {
      border-radius: calc(infinity * 1px);
    }
    .rounded-lg {
      border-radius: var(--radius-lg);
    }
    .rounded-md {
      border-radius: var(--radius-md);
    }
    .rounded-xl {
      border-radius: var(--radius-xl);
    }
    .rounded-tr-lg {
      border-top-right-radius: var(--radius-lg);
    }
    .rounded-br-lg {
      border-bottom-right-radius: var(--radius-lg);
    }
    .border {
      border-style: var(--tw-border-style);
      border-width: 1px;
    }
    .border-0 {
      border-style: var(--tw-border-style);
      border-width: 0px;
    }
    .border-2 {
      border-style: var(--tw-border-style);
      border-width: 2px;
    }
    .border-4 {
      border-style: var(--tw-border-style);
      border-width: 4px;
    }
    .border-t {
      border-top-style: var(--tw-border-style);
      border-top-width: 1px;
    }
    .border-b {
      border-bottom-style: var(--tw-border-style);
      border-bottom-width: 1px;
    }
    .border-l {
      border-left-style: var(--tw-border-style);
      border-left-width: 1px;
    }
    .border-dashed {
      --tw-border-style: dashed;
      border-style: dashed;
    }
    .border-green-500 {
      border-color: var(--color-green-500);
    }
    .border-violet-100 {
      border-color: var(--color-violet-100);
    }
    .border-violet-200 {
      border-color: var(--color-violet-200);
    }
    .border-violet-500 {
      border-color: var(--color-violet-500);
    }
    .border-white {
      border-color: var(--color-white);
    }
    .bg-black\/40 {
      background-color: color-mix(in srgb, #000 40%, transparent);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
      }
    }
    .bg-gray-100 {
      background-color: var(--color-gray-100);
    }
    .bg-green-500 {
      background-color: var(--color-green-500);
    }
    .bg-white {
      background-color: var(--color-white);
    }
    .p-2 {
      padding: calc(var(--spacing) * 2);
    }
    .p-4 {
      padding: calc(var(--spacing) * 4);
    }
    .p-8 {
      padding: calc(var(--spacing) * 8);
    }
    .px-2 {
      padding-inline: calc(var(--spacing) * 2);
    }
    .px-3 {
      padding-inline: calc(var(--spacing) * 3);
    }
    .px-4 {
      padding-inline: calc(var(--spacing) * 4);
    }
    .px-5 {
      padding-inline: calc(var(--spacing) * 5);
    }
    .px-6 {
      padding-inline: calc(var(--spacing) * 6);
    }
    .px-8 {
      padding-inline: calc(var(--spacing) * 8);
    }
    .px-10 {
      padding-inline: calc(var(--spacing) * 10);
    }
    .py-1 {
      padding-block: calc(var(--spacing) * 1);
    }
    .py-2 {
      padding-block: calc(var(--spacing) * 2);
    }
    .py-3 {
      padding-block: calc(var(--spacing) * 3);
    }
    .py-4 {
      padding-block: calc(var(--spacing) * 4);
    }
    .py-6 {
      padding-block: calc(var(--spacing) * 6);
    }
    .pt-0 {
      padding-top: calc(var(--spacing) * 0);
    }
    .pt-8 {
      padding-top: calc(var(--spacing) * 8);
    }
    .pt-10 {
      padding-top: calc(var(--spacing) * 10);
    }
    .pr-8 {
      padding-right: calc(var(--spacing) * 8);
    }
    .pr-10 {
      padding-right: calc(var(--spacing) * 10);
    }
    .pr-14 {
      padding-right: calc(var(--spacing) * 14);
    }
    .pr-16 {
      padding-right: calc(var(--spacing) * 16);
    }
    .pb-2 {
      padding-bottom: calc(var(--spacing) * 2);
    }
    .pb-4 {
      padding-bottom: calc(var(--spacing) * 4);
    }
    .pb-6 {
      padding-bottom: calc(var(--spacing) * 6);
    }
    .pb-12 {
      padding-bottom: calc(var(--spacing) * 12);
    }
    .pb-96 {
      padding-bottom: calc(var(--spacing) * 96);
    }
    .pl-3 {
      padding-left: calc(var(--spacing) * 3);
    }
    .pl-5 {
      padding-left: calc(var(--spacing) * 5);
    }
    .pl-8 {
      padding-left: calc(var(--spacing) * 8);
    }
    .pl-9 {
      padding-left: calc(var(--spacing) * 9);
    }
    .pl-14 {
      padding-left: calc(var(--spacing) * 14);
    }
    .text-center {
      text-align: center;
    }
    .text-2xl {
      font-size: var(--text-2xl);
      line-height: var(--tw-leading, var(--text-2xl--line-height));
    }
    .text-3xl {
      font-size: var(--text-3xl);
      line-height: var(--tw-leading, var(--text-3xl--line-height));
    }
    .text-base {
      font-size: var(--text-base);
      line-height: var(--tw-leading, var(--text-base--line-height));
    }
    .text-lg {
      font-size: var(--text-lg);
      line-height: var(--tw-leading, var(--text-lg--line-height));
    }
    .text-sm {
      font-size: var(--text-sm);
      line-height: var(--tw-leading, var(--text-sm--line-height));
    }
    .text-xl {
      font-size: var(--text-xl);
      line-height: var(--tw-leading, var(--text-xl--line-height));
    }
    .text-xs {
      font-size: var(--text-xs);
      line-height: var(--tw-leading, var(--text-xs--line-height));
    }
    .leading-8 {
      --tw-leading: calc(var(--spacing) * 8);
      line-height: calc(var(--spacing) * 8);
    }
    .leading-normal {
      --tw-leading: var(--leading-normal);
      line-height: var(--leading-normal);
    }
    .font-bold {
      --tw-font-weight: var(--font-weight-bold);
      font-weight: var(--font-weight-bold);
    }
    .font-medium {
      --tw-font-weight: var(--font-weight-medium);
      font-weight: var(--font-weight-medium);
    }
    .font-semibold {
      --tw-font-weight: var(--font-weight-semibold);
      font-weight: var(--font-weight-semibold);
    }
    .tracking-tight {
      --tw-tracking: var(--tracking-tight);
      letter-spacing: var(--tracking-tight);
    }
    .whitespace-nowrap {
      white-space: nowrap;
    }
    .text-gray-400 {
      color: var(--color-gray-400);
    }
    .text-indigo-900 {
      color: var(--color-indigo-900);
    }
    .text-violet-400 {
      color: var(--color-violet-400);
    }
    .text-violet-500 {
      color: var(--color-violet-500);
    }
    .text-white {
      color: var(--color-white);
    }
    .capitalize {
      text-transform: capitalize;
    }
    .italic {
      font-style: italic;
    }
    .line-through {
      text-decoration-line: line-through;
    }
    .underline {
      text-decoration-line: underline;
    }
    .opacity-0 {
      opacity: 0%;
    }
    .opacity-30 {
      opacity: 30%;
    }
    .opacity-100 {
      opacity: 100%;
    }
    .shadow-2xl {
      --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-lg {
      --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-md {
      --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-sm {
      --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-xl {
      --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
    .shadow-violet-100 {
      --tw-shadow-color: oklch(94.3% 0.029 294.588);
      @supports (color: color-mix(in lab, red, red)) {
        --tw-shadow-color: color-mix(in oklab, var(--color-violet-100) var(--tw-shadow-alpha), transparent);
      }
    }
    .filter {
      filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
    }
    .transition {
      transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
      transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
      transition-duration: var(--tw-duration, var(--default-transition-duration));
    }
    .transition-opacity {
      transition-property: opacity;
      transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
      transition-duration: var(--tw-duration, var(--default-transition-duration));
    }
    .transition-transform {
      transition-property: transform, translate, scale, rotate;
      transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
      transition-duration: var(--tw-duration, var(--default-transition-duration));
    }
    .duration-200 {
      --tw-duration: 200ms;
      transition-duration: 200ms;
    }
    .duration-300 {
      --tw-duration: 300ms;
      transition-duration: 300ms;
    }
    .ease-in-out {
      --tw-ease: var(--ease-in-out);
      transition-timing-function: var(--ease-in-out);
    }
    .ease-out {
      --tw-ease: var(--ease-out);
      transition-timing-function: var(--ease-out);
    }
    .outline-none {
      --tw-outline-style: none;
      outline-style: none;
    }
    .select-none {
      -webkit-user-select: none;
      user-select: none;
    }
    .group-open\:rotate-90 {
      &:is(:where(.group):is([open], :popover-open, :open) *) {
        rotate: 90deg;
      }
    }
    .group-hover\/tooltip\:translate-y-0 {
      &:is(:where(.group\/tooltip):hover *) {
        @media (hover: hover) {
          --tw-translate-y: calc(var(--spacing) * 0);
          translate: var(--tw-translate-x) var(--tw-translate-y);
        }
      }
    }
    .group-hover\/tooltip\:opacity-100 {
      &:is(:where(.group\/tooltip):hover *) {
        @media (hover: hover) {
          opacity: 100%;
        }
      }
    }
    .peer-checked\:border-0 {
      &:is(:where(.peer):checked ~ *) {
        border-style: var(--tw-border-style);
        border-width: 0px;
      }
    }
    .peer-checked\:bg-green-500 {
      &:is(:where(.peer):checked ~ *) {
        background-color: var(--color-green-500);
      }
    }
    .peer-checked\:opacity-100 {
      &:is(:where(.peer):checked ~ *) {
        opacity: 100%;
      }
    }
    .marker\:text-violet-400 {
      & *::marker {
        color: var(--color-violet-400);
      }
      &::marker {
        color: var(--color-violet-400);
      }
      & *::-webkit-details-marker {
        color: var(--color-violet-400);
      }
      &::-webkit-details-marker {
        color: var(--color-violet-400);
      }
    }
    .placeholder\:text-indigo-900 {
      &::placeholder {
        color: var(--color-indigo-900);
      }
    }
    .placeholder\:text-transparent {
      &::placeholder {
        color: transparent;
      }
    }
    .placeholder\:text-violet-400 {
      &::placeholder {
        color: var(--color-violet-400);
      }
    }
    .placeholder\:italic {
      &::placeholder {
        font-style: italic;
      }
    }
    .hover\:border-4 {
      &:hover {
        @media (hover: hover) {
          border-style: var(--tw-border-style);
          border-width: 4px;
        }
      }
    }
    .hover\:border-violet-500 {
      &:hover {
        @media (hover: hover) {
          border-color: var(--color-violet-500);
        }
      }
    }
    .hover\:bg-violet-50 {
      &:hover {
        @media (hover: hover) {
          background-color: var(--color-violet-50);
        }
      }
    }
    .hover\:text-violet-500 {
      &:hover {
        @media (hover: hover) {
          color: var(--color-violet-500);
        }
      }
    }
    .hover\:underline {
      &:hover {
        @media (hover: hover) {
          text-decoration-line: underline;
        }
      }
    }
    .hover\:opacity-75 {
      &:hover {
        @media (hover: hover) {
          opacity: 75%;
        }
      }
    }
    .hover\:opacity-85 {
      &:hover {
        @media (hover: hover) {
          opacity: 85%;
        }
      }
    }
    .hover\:opacity-95 {
      &:hover {
        @media (hover: hover) {
          opacity: 95%;
        }
      }
    }
    .focus\:border-violet-100 {
      &:focus {
        border-color: var(--color-violet-100);
      }
    }
    .focus\:border-violet-500 {
      &:focus {
        border-color: var(--color-violet-500);
      }
    }
    .focus\:ring-0 {
      &:focus {
        --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
        box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
      }
    }
    .focus\:ring-violet-100 {
      &:focus {
        --tw-ring-color: var(--color-violet-100);
      }
    }
    .focus\:outline {
      &:focus {
        outline-style: var(--tw-outline-style);
        outline-width: 1px;
      }
    }
    .focus\:outline-violet-500 {
      &:focus {
        outline-color: var(--color-violet-500);
      }
    }
    .focus\:outline-none {
      &:focus {
        --tw-outline-style: none;
        outline-style: none;
      }
    }
    .sm\:px-6 {
      @media (width >= 40rem) {
        padding-inline: calc(var(--spacing) * 6);
      }
    }
    .md\:-left-6 {
      @media (width >= 48rem) {
        left: calc(var(--spacing) * -6);
      }
    }
    .md\:-left-\[68px\] {
      @media (width >= 48rem) {
        left: calc(68px * -1);
      }
    }
    .md\:mb-0 {
      @media (width >= 48rem) {
        margin-bottom: calc(var(--spacing) * 0);
      }
    }
    .md\:ml-\[105px\] {
      @media (width >= 48rem) {
        margin-left: 105px;
      }
    }
    .md\:flex {
      @media (width >= 48rem) {
        display: flex;
      }
    }
    .md\:hidden {
      @media (width >= 48rem) {
        display: none;
      }
    }
    .md\:h-\[22px\] {
      @media (width >= 48rem) {
        height: 22px;
      }
    }
    .md\:h-\[50px\] {
      @media (width >= 48rem) {
        height: 50px;
      }
    }
    .md\:w-80 {
      @media (width >= 48rem) {
        width: calc(var(--spacing) * 80);
      }
    }
    .md\:w-\[22px\] {
      @media (width >= 48rem) {
        width: 22px;
      }
    }
    .md\:w-\[50px\] {
      @media (width >= 48rem) {
        width: 50px;
      }
    }
    .md\:w-\[360px\] {
      @media (width >= 48rem) {
        width: 360px;
      }
    }
    .md\:grid-cols-1 {
      @media (width >= 48rem) {
        grid-template-columns: repeat(1, minmax(0, 1fr));
      }
    }
    .md\:items-center {
      @media (width >= 48rem) {
        align-items: center;
      }
    }
    .md\:justify-start {
      @media (width >= 48rem) {
        justify-content: flex-start;
      }
    }
    .md\:px-14 {
      @media (width >= 48rem) {
        padding-inline: calc(var(--spacing) * 14);
      }
    }
    .lg\:grid-cols-2 {
      @media (width >= 64rem) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    .lg\:px-8 {
      @media (width >= 64rem) {
        padding-inline: calc(var(--spacing) * 8);
      }
    }
    .lg\:px-12 {
      @media (width >= 64rem) {
        padding-inline: calc(var(--spacing) * 12);
      }
    }
    .lg\:text-4xl {
      @media (width >= 64rem) {
        font-size: var(--text-4xl);
        line-height: var(--tw-leading, var(--text-4xl--line-height));
      }
    }
    .lg\:leading-normal {
      @media (width >= 64rem) {
        --tw-leading: var(--leading-normal);
        line-height: var(--leading-normal);
      }
    }
    .\[\&\:\:after\]\:absolute {
      &::after {
        position: absolute;
      }
    }
    .\[\&\:\:after\]\:-bottom-3 {
      &::after {
        bottom: calc(var(--spacing) * -3);
      }
    }
    .\[\&\:\:after\]\:left-1\/2 {
      &::after {
        left: calc(1/2 * 100%);
      }
    }
    .\[\&\:\:after\]\:-translate-x-1\/2 {
      &::after {
        --tw-translate-x: calc(calc(1/2 * 100%) * -1);
        translate: var(--tw-translate-x) var(--tw-translate-y);
      }
    }
    .\[\&\:\:after\]\:border-8 {
      &::after {
        border-style: var(--tw-border-style);
        border-width: 8px;
      }
    }
    .\[\&\:\:after\]\:border-transparent {
      &::after {
        border-color: transparent;
      }
    }
    .\[\&\:\:after\]\:border-t-white {
      &::after {
        border-top-color: var(--color-white);
      }
    }
    .\[\&\:\:after\]\:content-\[\'\'\] {
      &::after {
        --tw-content: '';
        content: var(--tw-content);
      }
    }
  }
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-tracking {
  syntax: "*";
  inherits: false;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-ease {
  syntax: "*";
  inherits: false;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-content {
  syntax: "*";
  inherits: false;
  initial-value: "";
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-font-weight: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-border-style: solid;
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-leading: initial;
      --tw-tracking: initial;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-outline-style: solid;
      --tw-content: "";
    }
  }
}
