/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}
.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333 transparent;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}
.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}
.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}
.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}
.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}
.choices__list--dropdown, .choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  visibility: visible;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}
.choices__item {
  cursor: default;
}
.choices__item--selectable {
  cursor: pointer;
}
.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  opacity: 0.5;
}
.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}
.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}
.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}
.choices__placeholder {
  opacity: 0.5;
}
/* =====  End of Choices  ====== */
.datatable-wrapper.no-header .datatable-container {
	border-top: 1px solid #d9d9d9;
}
.datatable-wrapper.no-footer .datatable-container {
	border-bottom: 1px solid #d9d9d9;
}
.datatable-top,
.datatable-bottom {
	padding: 8px 10px;
}
.datatable-top > nav:first-child,
.datatable-top > div:first-child,
.datatable-bottom > nav:first-child,
.datatable-bottom > div:first-child {
	float: left;
}
.datatable-top > nav:last-child,
.datatable-top > div:not(first-child),
.datatable-bottom > nav:last-child,
.datatable-bottom > div:last-child {
	float: right;
}
.datatable-selector {
	padding: 6px;
}
.datatable-input {
	padding: 6px 12px;
}
.datatable-info {
	margin: 7px 0;
}
/* PAGER */
.datatable-pagination ul {
	margin: 0;
	padding-left: 0;
}
.datatable-pagination li {
	list-style: none;
	float: left;
}
.datatable-pagination li.datatable-hidden {
    visibility: hidden;
}
.datatable-pagination a,
.datatable-pagination button {
	border: 1px solid transparent;
	float: left;
	margin-left: 2px;
	padding: 6px 12px;
	position: relative;
	text-decoration: none;
	color: #333;
    cursor: pointer;
}
.datatable-pagination a:hover,
.datatable-pagination button:hover {
	background-color: #d9d9d9;
}
.datatable-pagination .datatable-active a,
.datatable-pagination .datatable-active a:focus,
.datatable-pagination .datatable-active a:hover,
.datatable-pagination .datatable-active button,
.datatable-pagination .datatable-active button:focus,
.datatable-pagination .datatable-active button:hover {
	background-color: #d9d9d9;
	cursor: default;
}
.datatable-pagination .datatable-ellipsis a,
.datatable-pagination .datatable-disabled a,
.datatable-pagination .datatable-disabled a:focus,
.datatable-pagination .datatable-disabled a:hover,
.datatable-pagination .datatable-ellipsis button,
.datatable-pagination .datatable-disabled button,
.datatable-pagination .datatable-disabled button:focus,
.datatable-pagination .datatable-disabled button:hover {
    pointer-events: none;
    cursor: default;
}
.datatable-pagination .datatable-disabled a,
.datatable-pagination .datatable-disabled a:focus,
.datatable-pagination .datatable-disabled a:hover,
.datatable-pagination .datatable-disabled button,
.datatable-pagination .datatable-disabled button:focus,
.datatable-pagination .datatable-disabled button:hover {
	cursor: not-allowed;
	opacity: 0.4;
}
.datatable-pagination .datatable-pagination a,
.datatable-pagination .datatable-pagination button {
	font-weight: bold;
}
/* TABLE */
.datatable-table {
	max-width: 100%;
	width: 100%;
	border-spacing: 0;
	border-collapse: separate;
}
.datatable-table > tbody > tr > td,
.datatable-table > tbody > tr > th,
.datatable-table > tfoot > tr > td,
.datatable-table > tfoot > tr > th,
.datatable-table > thead > tr > td,
.datatable-table > thead > tr > th {
	vertical-align: top;
	padding: 8px 10px;
}
.datatable-table > thead > tr > th {
	vertical-align: bottom;
	text-align: left;
	border-bottom: 1px solid #d9d9d9;
}
.datatable-table > tfoot > tr > th {
	vertical-align: bottom;
	text-align: left;
	border-top: 1px solid #d9d9d9;
}
.datatable-table th {
	vertical-align: bottom;
	text-align: left;
}
.datatable-table th a {
	text-decoration: none;
	color: inherit;
}
.datatable-table th button,
.datatable-pagination-list button {
    color: inherit;
    border: 0;
    background-color: inherit;
    cursor: pointer;
    text-align: inherit;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
}
.datatable-sorter, .datatable-filter {
	display: inline-block;
	height: 100%;
	position: relative;
	width: 100%;
}
.datatable-sorter::before,
.datatable-sorter::after {
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	right: 4px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	opacity: 0.2;
}
.datatable-sorter::before {
	border-top: 4px solid #000;
	bottom: 0px;
}
.datatable-sorter::after {
	border-bottom: 4px solid #000;
	border-top: 4px solid transparent;
	top: 0px;
}
.datatable-ascending .datatable-sorter::after,
.datatable-descending .datatable-sorter::before,
.datatable-ascending .datatable-filter::after,
.datatable-descending .datatable-filter::before {
	opacity: 0.6;
}
.datatable-filter::before {
    content: "";
    position: absolute;
    right: 4px;
    opacity: 0.2;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
	border-radius: 50%;
    border-top: 10px solid #000;
    top: 25%;
}
.datatable-filter-active .datatable-filter::before {
    opacity: 0.6;
}
.datatable-empty {
	text-align: center;
}
.datatable-top::after, .datatable-bottom::after {
	clear: both;
	content: " ";
	display: table;
}
table.datatable-table:focus tr.datatable-cursor > td:first-child {
	border-left: 3px blue solid;
}
table.datatable-table:focus {
	outline: solid 1px black;
    outline-offset: -1px;
}
/* ! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #E5E7EB; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: "Open Sans", sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9CA3AF; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9CA3AF; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
[data-tooltip-style^='light'] + .tooltip > .tooltip-arrow:before {
  border-style: solid;
  border-color: #e5e7eb;
}
[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='top'] > .tooltip-arrow:before {
  border-bottom-width: 1px;
  border-right-width: 1px;
}
[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='right'] > .tooltip-arrow:before {
  border-bottom-width: 1px;
  border-left-width: 1px;
}
[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='bottom'] > .tooltip-arrow:before {
  border-top-width: 1px;
  border-left-width: 1px;
}
[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='left'] > .tooltip-arrow:before {
  border-top-width: 1px;
  border-right-width: 1px;
}
.tooltip[data-popper-placement^='top'] > .tooltip-arrow {
  bottom: -4px;
}
.tooltip[data-popper-placement^='bottom'] > .tooltip-arrow {
  top: -4px;
}
.tooltip[data-popper-placement^='left'] > .tooltip-arrow {
  right: -4px;
}
.tooltip[data-popper-placement^='right'] > .tooltip-arrow {
  left: -4px;
}
.tooltip.invisible > .tooltip-arrow:before {
  visibility: hidden;
}
[data-popper-arrow],[data-popper-arrow]:before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
}
[data-popper-arrow] {
  visibility: hidden;
}
[data-popper-arrow]:before {
  content: "";
  visibility: visible;
  transform: rotate(45deg);
}
[data-popper-arrow]:after {
  content: "";
  visibility: visible;
  transform: rotate(45deg);
  position: absolute;
  width: 9px;
  height: 9px;
  background: inherit;
}
[role="tooltip"] > [data-popper-arrow]:before {
  border-style: solid;
  border-color: #e5e7eb;
}
.dark [role="tooltip"] > [data-popper-arrow]:before {
  border-style: solid;
  border-color: #4b5563;
}
[role="tooltip"] > [data-popper-arrow]:after {
  border-style: solid;
  border-color: #e5e7eb;
}
.dark [role="tooltip"] > [data-popper-arrow]:after {
  border-style: solid;
  border-color: #4b5563;
}
[data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow]:before {
  border-bottom-width: 1px;
  border-right-width: 1px;
}
[data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow]:after {
  border-bottom-width: 1px;
  border-right-width: 1px;
}
[data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow]:before {
  border-bottom-width: 1px;
  border-left-width: 1px;
}
[data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow]:after {
  border-bottom-width: 1px;
  border-left-width: 1px;
}
[data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow]:before {
  border-top-width: 1px;
  border-left-width: 1px;
}
[data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow]:after {
  border-top-width: 1px;
  border-left-width: 1px;
}
[data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow]:before {
  border-top-width: 1px;
  border-right-width: 1px;
}
[data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow]:after {
  border-top-width: 1px;
  border-right-width: 1px;
}
[data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow] {
  bottom: -5px;
}
[data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow] {
  top: -5px;
}
[data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow] {
  right: -5px;
}
[data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow] {
  left: -5px;
}
[role="tooltip"].invisible > [data-popper-arrow]:before {
  visibility: hidden;
}
[role="tooltip"].invisible > [data-popper-arrow]:after {
  visibility: hidden;
}
[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6B7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #1C64F2;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #1C64F2;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6B7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder {
  color: #6B7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}
select:not([size]) {
  background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 6'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 1 4 4 4-4'/%3e %3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 0.75em 0.75em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
:is([dir=rtl]) select:not([size]) {
  background-position: left 0.75rem center;
  padding-right: 0.75rem;
  padding-left: 0;
}
[multiple] {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #1C64F2;
  background-color: #fff;
  border-color: #6B7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
[type='checkbox'] {
  border-radius: 0px;
}
[type='radio'] {
  border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #1C64F2;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked,.dark [type='checkbox']:checked,.dark [type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 0.55em 0.55em;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1 5.917 5.724 10.5 15 1.5'/%3e %3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 0.55em 0.55em;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  background-size: 1em 1em;
}
.dark [type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  background-size: 1em 1em;
}
[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M0.5 6h14'/%3e %3c/svg%3e");
  background-color: currentColor;
  border-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.55em 0.55em;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}
[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
[type='file']:focus {
  outline: 1px auto inherit;
}
input[type=file]::file-selector-button {
  color: white;
  background: #1F2937;
  border: 0;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 2rem;
  padding-right: 1rem;
  margin-inline-start: -1rem;
  margin-inline-end: 1rem;
}
input[type=file]::file-selector-button:hover {
  background: #374151;
}
:is([dir=rtl]) input[type=file]::file-selector-button {
  padding-right: 2rem;
  padding-left: 1rem;
}
.dark input[type=file]::file-selector-button {
  color: white;
  background: #4B5563;
}
.dark input[type=file]::file-selector-button:hover {
  background: #6B7280;
}
input[type="range"]::-webkit-slider-thumb {
  height: 1.25rem;
  width: 1.25rem;
  background: #1C64F2;
  border-radius: 9999px;
  border: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="range"]:disabled::-webkit-slider-thumb {
  background: #9CA3AF;
}
.dark input[type="range"]:disabled::-webkit-slider-thumb {
  background: #6B7280;
}
input[type="range"]:focus::-webkit-slider-thumb {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1px;
  --tw-ring-color: rgb(164 202 254 / var(--tw-ring-opacity));
}
input[type="range"]::-moz-range-thumb {
  height: 1.25rem;
  width: 1.25rem;
  background: #1C64F2;
  border-radius: 9999px;
  border: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="range"]:disabled::-moz-range-thumb {
  background: #9CA3AF;
}
.dark input[type="range"]:disabled::-moz-range-thumb {
  background: #6B7280;
}
input[type="range"]::-moz-range-progress {
  background: #3F83F8;
}
input[type="range"]::-ms-fill-lower {
  background: #3F83F8;
}
/* TODO: define these based on mockups */
:root { }
.dark { }
a {
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(63 131 248 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(63 131 248 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 480px) {
  .container {
    max-width: 480px;
  }
}
@media (min-width: 575px) {
  .container {
    max-width: 575px;
  }
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 920px) {
  .container {
    max-width: 920px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.button {
  display: inline-flex;
  border-radius: 0.25rem;
  text-align: center;
  font-weight: 600;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.button[disabled], .button[data-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}
.button-primary {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(38 107 53 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(28 92 41 / var(--tw-bg-opacity));
}
.button-primary-outline {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
  background-image: none;
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.button-primary-inverse {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.button-primary-inverse:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.button-primary[disabled] {
  --tw-bg-opacity: 1;
  background-color: rgb(226 231 225 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.button-light {
  --tw-bg-opacity: 1;
  background-color: rgb(226 231 225 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.button-light-outline {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 231 225 / var(--tw-border-opacity));
  background-image: none;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.button-transparent {
  background-color: transparent;
}
.button-warning {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 90 31 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 90 31 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button-warning:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(180 52 3 / var(--tw-bg-opacity));
}
.button-warning-outline {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(255 90 31 / var(--tw-border-opacity));
  background-image: none;
  --tw-text-opacity: 1;
  color: rgb(255 90 31 / var(--tw-text-opacity));
}
.button-warning-outline:hover {
  --tw-border-opacity: 1;
  border-color: rgb(180 52 3 / var(--tw-border-opacity));
  background-image: none;
  --tw-text-opacity: 1;
  color: rgb(180 52 3 / var(--tw-text-opacity));
}
.button-danger {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(157 39 47 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(157 39 47 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button-danger:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(125 40 40 / var(--tw-bg-opacity));
}
.button-danger-outline {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(248 227 227 / var(--tw-border-opacity));
  background-image: none;
  --tw-text-opacity: 1;
  color: rgb(157 39 47 / var(--tw-text-opacity));
}
.button-danger-outline:hover {
  --tw-border-opacity: 1;
  border-color: rgb(125 40 40 / var(--tw-border-opacity));
  background-image: none;
  --tw-text-opacity: 1;
  color: rgb(125 40 40 / var(--tw-text-opacity));
}
.button-restore {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(59 63 92 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(59 63 92 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button-restore:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(82 73 136 / var(--tw-bg-opacity));
}
.button-xs {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
.button-sm {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.button-md {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.button-lg {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.button-xl {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.choices {
  margin-bottom: 0px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.choices__inner {
  border-radius: 0.25rem;
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
      background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20512%20512%22%3E%3C!--!Font%20Awesome%20Free%206.5.1%20by%20%40fontawesome%20-%20https%3A//fontawesome.com%20License%20-%20https%3A//fontawesome.com/license/free%20Copyright%202024%20Fonticons%2C%20Inc.--%3E%3Cpath%20d%3D%22M233.4%20406.6c12.5%2012.5%2032.8%2012.5%2045.3%200l192-192c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L256%20338.7%2086.6%20169.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3l192%20192z%22/%3E%3C/svg%3E'), linear-gradient(to bottom, #FFFFFF 0%, #FAFAFA 100%);
      background-size: auto 12px, auto;
      background-position: calc(100% - 0.5rem) 50%, 0 0;
      background-repeat: no-repeat, repeat-x;
      min-height: 0;
}
.choices__list--single {
  padding: 0px;
}
.choices__input {
  display: block;
  width: 100%;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 231 225 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity));
  padding: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(31 31 31 / var(--tw-text-opacity));
}
.choices__input:focus {
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 107 53 / var(--tw-ring-opacity));
}
:is(:where(.dark) .choices__input) {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(31 31 31 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
:is(:where(.dark) .choices__input)::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(199 207 198 / var(--tw-placeholder-opacity));
}
:is(:where(.dark) .choices__input)::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(199 207 198 / var(--tw-placeholder-opacity));
}
:is(:where(.dark) .choices__input:focus) {
  --tw-border-opacity: 1;
  border-color: rgb(14 113 98 / var(--tw-border-opacity));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 113 98 / var(--tw-ring-opacity));
}
.choices.is-disabled {
      opacity: 0.2;
    }
.choices.is-focused .choices__inner {
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
        box-shadow: inset 0 0 0 1px #266B35;
}
@media (min-width: 640px) {
      .choices--dropdown .choices__item--selectable, .choices[aria-expanded] .choices__item--selectable {
          padding-right: 0
      }
        }
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0.5rem;
}
.choices[data-type*=select-one]::after {
        display: none;
      }
.choices [hidden] {
      display: block !important;
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      pointer-events: none;
      top: 0;
      left: 0;
    }
:root {
    --vc-datapoint-xs: 0.75em;
    --vc-datapoint-sm: 0.875em;
    --vc-datapoint-md: 1.125em;
    --vc-datapoint-lg: 1.5em;
    --vc-datapoint-xl: 1.25em;
  }
.data-point {
  display: flex;
  flex-direction: column;
}
.data-point-inline {
  flex-direction: row;
}
.data-point-centered {
  align-items: center;
  text-align: center;
}
.data-point-with-title > *:not(:first-child) {
        font-size: 0.8em;
      }
.data-point-staggered > *:not(:first-child) {
        font-size: 0.8em;
        line-height: 1.1;
        font-weight: bold;
      }
.data-point-emphasis > *:first-child {
  font-weight: 700;
  text-transform: uppercase;
}
.data-point-super-display > *:first-child {
  line-height: 2;
        font-size: 3.25em;
}
.data-point-xs {
      font-size: var(--vc-datapoint-xs);
    }
.data-point-sm {
      font-size: var(--vc-datapoint-sm);
    }
.data-point-md {
      font-size: var(--vc-datapoint-md);
    }
.data-point-lg {
      font-size: var(--vc-datapoint-lg);
    }
.data-point-xl {
      font-size: var(--vc-datapoint-xl);
    }
.datatable-wrapper {
  margin-bottom: 1rem;
}
.datatable-container {
  position: relative;
  overflow-x: auto;
}
.datatable-top,
  .datatable-bottom {
  padding-left: 0px;
  padding-right: 0px;
}
.datatable-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.datatable-bottom {
  padding-top: 1rem;
}
.datatable-table {
  border-collapse: collapse;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 231 225 / var(--tw-border-opacity));
}
.datatable-table > thead > tr > th,
    .datatable-table > tbody > tr > td {
  padding: 1rem;
}
.datatable-table > thead > tr {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
}
.datatable-table > thead > tr > th {
  font-weight: 800;
}
.datatable-table > thead > tr > th:first-child {
  border-top-left-radius: 0.5rem;
}
.datatable-table > thead > tr > th:last-child {
  border-top-right-radius: 0.5rem;
}
.datatable-table > thead > tr > th .datatable-sorter {
            padding-right: calc(1em + 0.5rem);
            line-height: 1.25;
          }
.datatable-table > thead > tr > th .datatable-sorter::before {
              text-rendering: auto;
              -webkit-font-smoothing: antialiased;
              font: var(--fa-font-solid);
              content: "\f0dc";
            }
.datatable-table > thead > tr > th .datatable-sorter::before,
            .datatable-table > thead > tr > th .datatable-sorter::after {
              display: none;
            }
.datatable-table > thead > tr > th .datatable-sorter > svg {
  position: absolute;
  right: 0.5rem;
  top: 0.25rem;
}
.datatable-table > thead > tr > th.datatable-ascending .datatable-sorter::before {
                content: "\f0de";
              }
.datatable-table > thead > tr > th.datatable-descending .datatable-sorter::before {
                content: "\f0dd";
              }
.datatable-table > tbody > tr {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-top-color: rgb(226 231 225 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.datatable-table > tbody > tr:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.datatable-table > tbody > tr:last-child {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.datatable-table > tbody > tr > td {
  vertical-align: middle;
}
.datatable-table > tbody > tr:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: rgb(254 254 254 / var(--tw-bg-opacity));
}
.datatable-table > tbody > tr:last-child > td:first-child {
  border-bottom-left-radius: 0.5rem;
}
.datatable-table > tbody > tr:last-child > td:last-child {
  border-bottom-right-radius: 0.5rem;
}
.datatable-selector,
  .datatable-input {
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: #ffffff 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);
  --tw-gradient-to: #FEFEFE var(--tw-gradient-to-position);
  padding: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.datatable-selector:focus,
  .datatable-input:focus {
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 107 53 / var(--tw-ring-opacity));
}
.datatable-dropdown {
  margin-right: auto;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.datatable-selector {
  margin-right: 0.5rem;
}
.datatable-pagination .datatable-active > button {
  --tw-bg-opacity: 1;
  background-color: rgb(38 107 53 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.datatable-info {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group > input[type="text"],
    .form-group > input[type="email"],
    .form-group > input[type="number"],
    .form-group > input[type="date"],
    .form-group > input[type="password"],
    .form-group > textarea,
    .form-group > select {
  display: block;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: #ffffff 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);
  --tw-gradient-to: #FAFAFA var(--tw-gradient-to-position);
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.form-group > input[type="text"]:focus,
    .form-group > input[type="email"]:focus,
    .form-group > input[type="number"]:focus,
    .form-group > input[type="date"]:focus,
    .form-group > input[type="password"]:focus,
    .form-group > textarea:focus,
    .form-group > select:focus {
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 107 53 / var(--tw-ring-opacity));
}
.form-group > input[type="text"]:not([class*="w-"]), .form-group > input[type="email"]:not([class*="w-"]), .form-group > input[type="number"]:not([class*="w-"]), .form-group > input[type="date"]:not([class*="w-"]), .form-group > input[type="password"]:not([class*="w-"]), .form-group > textarea:not([class*="w-"]), .form-group > select:not([class*="w-"]) {
  width: 100%;
}
.form-group > input[type="text"].has-error, .form-group > input[type="email"].has-error, .form-group > input[type="number"].has-error, .form-group > input[type="date"].has-error, .form-group > input[type="password"].has-error, .form-group > textarea.has-error, .form-group > select.has-error {
  --tw-border-opacity: 1;
  border-color: rgb(157 39 47 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(157 39 47 / var(--tw-text-opacity));
}
.form-group > input[type="text"][disabled], .form-group > input[type="email"][disabled], .form-group > input[type="number"][disabled], .form-group > input[type="date"][disabled], .form-group > input[type="password"][disabled], .form-group > textarea[disabled], .form-group > select[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.form-group > select {
      background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20512%20512%22%3E%3C!--!Font%20Awesome%20Free%206.5.1%20by%20%40fontawesome%20-%20https%3A//fontawesome.com%20License%20-%20https%3A//fontawesome.com/license/free%20Copyright%202024%20Fonticons%2C%20Inc.--%3E%3Cpath%20d%3D%22M233.4%20406.6c12.5%2012.5%2032.8%2012.5%2045.3%200l192-192c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L256%20338.7%2086.6%20169.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3l192%20192z%22/%3E%3C/svg%3E'), linear-gradient(to bottom, #FFFFFF 0%, #FAFAFA 100%);
      background-size: auto 12px, auto;
      background-position: calc(100% - 0.5rem) 50%, 0 0;
    }
.form-group > label:not(.vc-toggle) {
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
:is(:where(.dark) .form-group > label:not(.vc-toggle)) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.form-group > input[type="checkbox"],
    .form-group > input[type="radio"] {
  height: 1rem;
  width: 1rem;
  border-radius: 0.25rem;
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.form-group > input[type="checkbox"]:focus,
    .form-group > input[type="radio"]: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);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 107 53 / var(--tw-ring-opacity));
}
:is(:where(.dark) .form-group > input[type="checkbox"]),:is(:where(.dark) 
    .form-group > input[type="radio"]) {
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  --tw-ring-offset-color: #1f1f1f;
}
:is(:where(.dark) .form-group > input[type="checkbox"]:focus),:is(:where(.dark) 
    .form-group > input[type="radio"]:focus) {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 113 98 / var(--tw-ring-opacity));
  --tw-ring-offset-color: #1f1f1f;
}
.form-group > input[type="checkbox"][disabled], .form-group > input[type="radio"][disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.form-group > input[type="checkbox"] + label, .form-group > input[type="radio"] + label {
  margin-inline-start: 0.5rem;
  margin-bottom: 0px;
  cursor: pointer;
}
.form-group > input[type="file"] {
  display: block;
  width: 100%;
  cursor: pointer;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(199 207 198 / var(--tw-text-opacity));
}
.form-group > input[type="file"]::file-selector-button {
  --tw-bg-opacity: 1;
  background-color: rgb(38 107 53 / var(--tw-bg-opacity));
}
.form-group > input[type="file"]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.form-group > span:last-child {
  margin-top: 0.5rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-style: italic;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.form-group > span:last-child > strong {
  margin-right: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(244 248 241 / var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
        line-height: 150%;
}
.form-group--horizontal,
    .form-group-horizontal,
    .form-group-inline {
  flex-direction: row;
  align-items: baseline;
}
.form-group--horizontal > label:not(.vc-toggle):not(.font-bold), .form-group-horizontal > label:not(.vc-toggle):not(.font-bold), .form-group-inline > label:not(.vc-toggle):not(.font-bold) {
  font-weight: 400;
}
.form-group--horizontal > input,
      .form-group--horizontal > select,
      .form-group-horizontal > input,
      .form-group-horizontal > select,
      .form-group-inline > input,
      .form-group-inline > select {
        width: auto;
      }
.form-group-required > label:not(.vc-toggle):after {
          content: '*';
          margin-left: 0.25rem;
          --tw-text-opacity: 1;
          color: rgb(157 39 47 / var(--tw-text-opacity));
        }
.homepage-hero {
    position: relative;
    margin-top: -1rem;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: calc(70px + (85 - 70) * ((100vw - 360px) / (767 - 360)));
    margin-bottom: calc((0px + (40 - 0) * ((100vw - 360px) / (767 - 360))) + 1rem);
  }
.homepage-hero::before,
    .homepage-hero::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      background-repeat: no-repeat;
      background-size: 100% auto;
      pointer-events: none;
    }
.homepage-hero::before {
      background-image: url(/assets/homepage_swoosh_bg-f31f25746acefb9e55bb530a4981e0b6e9dc110c0d8797e3260a0fd55e5f3a9b.svg);
      bottom: calc(15px + (-35 + 15) * ((100vw - 360px) / (767 - 360)));
      height: calc(133px + (275 - 133) * ((100vw - 360px) / (767 - 360)));
    }
.homepage-hero::after {
      bottom: calc(0px + (-40 + 0) * ((100vw - 360px) / (767 - 360)));
      height: calc(80px + (165 - 80) * ((100vw - 360px) / (767 - 360)));
      background-image: url(/assets/homepage_swoosh_fg-8ff2f768abf19360a816c208e6c9f9005fa6a546f4cdc18e823c3e5a66464769.svg);
    }
@media (min-width: 768px) {
  .homepage-hero {
      padding-left: calc(380px + (520 - 380) * ((100vw - 768px) / (1023 - 768)));
      padding-right: 2.5%;
      background-image: linear-gradient(to bottom, #266B35 0%, #266B35 60%, rgba(38, 107, 53, 0%) 100%);
      margin-bottom: calc(95px + (125 - 95) * ((100vw - 768px) / (1023 - 768)))
  }

      .homepage-hero::before {
        bottom: -30px;
        height: 100%;
        background-image: url(/assets/homepage_hero_image-1d46f474d4ca1b39dd75b2cd2621626506517b11c9b78cfc32e5dcc7af2ee218.svg), url(/assets/homepage_swoosh_bg-f31f25746acefb9e55bb530a4981e0b6e9dc110c0d8797e3260a0fd55e5f3a9b.svg);
        background-size: calc(415px + (445 - 415) * ((100vw - 768px) / (1023 - 768))) auto, 100% auto;
        background-position: calc(7px + (65 - 7) * ((100vw - 768px) / (1023 - 768))) 115%, bottom;
      }

      .homepage-hero::after {
        bottom: calc(-55px + (-30 + -5) * ((100vw - 768px) / (1023 - 768)));
        height: calc(165px + (265 - 165) * ((100vw - 768px) / (1023 - 768)));
      }
    }
@media (min-width: 1024px) {
  .homepage-hero {
      padding-left: 50%;
      padding-right: 2.5%;
      padding-bottom: 145px;
      margin-bottom: 125px
  }

      .homepage-hero::before {
        background-position: calc(60px + (140 - 60) * ((100vw - 1024px) / (1279 - 1024))) calc(10px + (-10 - 10) * ((100vw - 1024px) / (1279 - 1024))), bottom;
        background-size: auto calc(485px + (525 - 485) * ((100vw - 1024px) / (1279 - 1024))), 100% auto;

        /*background-position: 60px 0px, bottom;*/
        /*background-size: auto 485px, 100% auto;*/
      }

      .homepage-hero::after {
        height: calc(265px + (335 - 265) * ((100vw - 1024px) / (1279 - 1024)));
        bottom: calc(-110px + (-160 - -110) * ((100vw - 1024px) / (1279 - 1024)));
      }
    }
@media (min-width: 1280px) {
  .homepage-hero {
      padding-top: 20px;
      padding-left: calc(650px + (760 - 650) * ((100vw - 1280px) / (1535 - 1280)));
      padding-right: 32px;
      background-color: transparent
      /*padding-left: 650px;*/
  }

      .homepage-hero::before {
        height: 550px;
        background-position: calc(165px + (245 - 165) * ((100vw - 1280px) / (1535 - 1280))) calc(25px + (25 - 25) * ((100vw - 1280px) / (1535 - 1280))), bottom;
        background-size: auto 510px, 100% auto;

        /*background-size: auto 550px, 100% auto;*/
        /*background-position: 165px 30px, bottom;*/
      }

      .homepage-hero::after {
        bottom: -50px;
        background-size: contain;
        background-position: bottom center;
      }
    }
@media (min-width: 1536px) {
  .homepage-hero {
      padding-left: 800px
  }

      .homepage-hero::before {
        background-position: 250px 20px, bottom;
      }
    }
.homepage-callout {
  position: relative;
    container-type: inline-size;
}
@media (min-width: 575px) {
  .homepage-callout {
    display: flex;
  }
    }
@media (min-width: 768px) {
  .homepage-callout {
    margin-left: 2rem;
    margin-right: 2rem;
    display: block;
  }}
@media (min-width: 920px) {
  .homepage-callout {
    margin-left: 4rem;
    margin-right: 4rem;
  }
    }
@media (min-width: 1024px) {
  .homepage-callout {
    margin-top: 4rem;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
      width: calc(896px + (975 - 896) * ((100vw - 1024px) / (1279 - 1024)));
  }
    }
@media (min-width: 1280px) {
  .homepage-callout {
    margin-top: 6rem;
    margin-bottom: 6rem;
      width: 975px;
  }
    }
.homepage-callout-content {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 1rem;
}
@media (min-width: 575px) {


    .homepage-callout-content {
        flex: 1
    }
      }
@media (min-width: 768px) {


    .homepage-callout-content {
    position: absolute;
    top: 4rem;
    bottom: 4rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    padding: 2rem;
        flex: none;
        height: 280px;
        width: 320px;
  }
      }
.homepage-callout-image-container {


      /*@media screen(md-lg) {*/
      /*  width: 60%;*/
      /*  margin-right: 5%;*/
      /*}*/

      /*@media screen(lg) {*/
      /*  margin-left: 5%;*/
      /*  margin-right: 7.5%;*/
      /*}*/
    }
@media (min-width: 575px) {

    .homepage-callout-image-container {
        flex: 2
    }
      }
@media (min-width: 768px) {

    .homepage-callout-image-container {
        height: 360px;
        padding-left: calc(280px - 1rem)
    }
      }
@media (min-width: 1024px) {

    .homepage-callout-image-container {
        height: 425px
    }
      }
.homepage-callout-image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {

    .homepage-callout::after {
        content: '';
        position: absolute;
        border: 1px solid #ffffff;
        left: 160px;
        width: calc(100% - (160px + 1rem));
        top: 1rem;
        bottom: 1rem
    }
      }
/*  @media screen(md) {*/
/*    @apply p-lg;*/
/*    width: 300px;*/
/*    left: 5%;*/
/*  }*/
/*  @media screen(lg) {*/
/*    width: 300px;*/
/*    left: 7.5%;*/
/*  }*/
/*  &::after {*/
/*    @media screen(md-lg) {*/
/*      content: '';*/
/*      position: absolute;*/
/*      border: 1px solid theme('colors.white');*/
/*      top: -50px;*/
/*      bottom: -50px;*/
/*      left: 30px;*/
/*    }*/
/*  }*/
/*}*/
.input-group {
  position: relative;
}
.input-group > input[type="text"],
    .input-group > input[type="email"],
    .input-group > input[type="number"],
    .input-group > input[type="date"],
    .input-group > input[type="password"] {
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: #ffffff 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);
  --tw-gradient-to: #FAFAFA var(--tw-gradient-to-position);
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.input-group > input[type="text"]:focus,
    .input-group > input[type="email"]:focus,
    .input-group > input[type="number"]:focus,
    .input-group > input[type="date"]:focus,
    .input-group > input[type="password"]:focus {
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 107 53 / var(--tw-ring-opacity));
}
.input-group .icon {
  pointer-events: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  inset-inline-start: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(199 207 198 / var(--tw-text-opacity));
}
.input-group .icon > svg {
  height: 1rem;
  width: 1rem;
}
.input-group--box {
  display: flex;
  flex-direction: row-reverse;
}
.input-group--box > input[type="text"],
      .input-group--box > input[type="email"],
      .input-group--box > input[type="number"],
      .input-group--box > input[type="date"],
      .input-group--box > input[type="password"] {
        padding-left: calc(38px + 0.5rem);
      }
.input-group--box > input[type="text"]:focus ~ .icon, .input-group--box > input[type="email"]:focus ~ .icon, .input-group--box > input[type="number"]:focus ~ .icon, .input-group--box > input[type="date"]:focus ~ .icon, .input-group--box > input[type="password"]:focus ~ .icon {
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(38 107 53 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(244 248 241 / var(--tw-text-opacity));
}
.input-group--box .icon {
  display: inline-flex;
  align-items: center;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(244 248 241 / var(--tw-bg-opacity));
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(28 92 41 / var(--tw-text-opacity));
        transition: background-color 0.1s ease;
        width: 38px;
}
.input-group--reversed .icon {
  inset-inline-end: 0px;
  left: auto;
}
:root {
    --match-listing-height: 500px;
    --match-listing-item-min-width: 340px;
    --match-listing-item-width-factor: 85cqi;
    --match-listing-item-max-width: 500px;
  }
@media (min-width: 575px) {
    :root {
      /*--match-listing-item-min-width: 350px;*/
      --match-listing-item-max-width: 400px;
    }
  }
@media (min-width: 768px) {
    :root {
      --match-listing-height: 575px;
      --match-listing-item-min-width: 400px;
      --match-listing-item-max-width: 500px;
    }
  }
@media (min-width: 1024px) {
    :root {
      --match-listing-height: 600px;
    }
  }
.match-listing {
  position: relative;
  display: flex;
  width: 100%;
    container-type: inline-size;
    padding-bottom: var(--match-listing-height);
}
.match-listing__item {
  position: absolute;
  top: 0px;
  height: 100%;
    width: clamp(var(--match-listing-item-min-width), var(--match-listing-item-width-factor), var(--match-listing-item-max-width));
    left: calc(50% - (clamp(var(--match-listing-item-min-width), var(--match-listing-item-width-factor), var(--match-listing-item-max-width)) / 2));
    will-change: opacity, transform, box-shadow;
    transition-property: opacity, transform, box-shadow;
    transform-origin: center center;
    transition-duration: 0.375s;
}
.match-listing__item > article {
  height: 100%;
  width: 100%;
}
.match-listing-control {
  position: absolute;
  --tw-bg-opacity: 1;
  background-color: rgb(31 31 31 / var(--tw-bg-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
    transition: opacity 0.375s, transform 0.375s;
}
.match-listing-control[disabled] {
  cursor: not-allowed;
  opacity: 0.25;
}
.match-listing-control:active {
      transform: scale(0.95);
    }
@media (min-width: 575px) {

  .match-listing-control {
    border-radius: 0.25rem;
    padding: 0.5rem;
  }
    }
.match-tab-toggle input {
  display: none;
}
.match-tab-toggle label {
  position: relative;
  display: inline-flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(199 207 198 / var(--tw-text-opacity));
}
.match-tab-toggle label:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(160 213 171 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.match-tab-toggle label::after {
        content: '';
        transition: transform 0.125s ease, opacity 0.125s ease;
        opacity: 0;
        position: absolute;
        bottom: -8px;
        left: calc(50% - 8px);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #266B35;;
        transform: scale(0);
        transform-origin: top center;
      }
.match-tab-toggle input:checked + label {
  --tw-bg-opacity: 1;
  background-color: rgb(38 107 53 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.match-tab-toggle input:checked + label::after {
        transform: scale(1);
        opacity: 1;
      }
.name-signature-display {
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: #ffffff 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);
  --tw-gradient-to: #FAFAFA var(--tw-gradient-to-position);
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.name-signature-display:focus {
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(38 107 53 / var(--tw-ring-opacity));
}
.name-signature-display {
    cursor: text;
    overflow: hidden;
  }
.name-signature-display:focus-visible {
  --tw-border-opacity: 1;
  border-color: rgb(38 107 53 / var(--tw-border-opacity));
  outline-width: 2px;
  outline-color: #266B35;
}
.name-signature-matched {
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.name-signature-remaining {
  --tw-text-opacity: 1;
  color: rgb(199 207 198 / var(--tw-text-opacity));
}
.checkmark-container {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
.checkmark-container.visible {
    opacity: 1;
  }
.checkmark-container.\!visible {
    opacity: 1 !important;
  }
.name-signature-display.complete .name-signature-matched {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 231 225 / var(--tw-border-opacity));
}
.table > thead > tr > th,
    .table > tbody > tr > td {
  padding: 1rem;
}
.table > thead > tr {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
}
.table > thead > tr > th {
  font-weight: 800;
}
.table > thead > tr > th:first-child {
  border-top-left-radius: 0.5rem;
}
.table > thead > tr > th:last-child {
  border-top-right-radius: 0.5rem;
}
.table > tbody > tr {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-top-color: rgb(226 231 225 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.table > tbody > tr:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.table > tbody > tr:last-child {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.table > tbody > tr > td {
  vertical-align: middle;
}
.table > tbody > tr:nth-child(even) {
  --tw-bg-opacity: 1;
  background-color: rgb(254 254 254 / var(--tw-bg-opacity));
}
.table > tbody > tr:last-child > td:first-child {
  border-bottom-left-radius: 0.5rem;
}
.table > tbody > tr:last-child > td:last-child {
  border-bottom-right-radius: 0.5rem;
}
.tabs-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.tabs-wrapper .tabs {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.tabs-wrapper .tabs > li {
  margin-inline-end: 0.5rem;
}
.tabs-wrapper .tabs > li > button {
  white-space: nowrap;
}
.tabs-wrapper .tabs > li > button:hover,
          .tabs-wrapper .tabs > li > button:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(226 231 225 / var(--tw-bg-opacity));
}
.tabs-wrapper .tabs > li.is-active > button {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-weight: 700;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tabs-wrapper .tabs > li.is-active > button:hover {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.tooltip {
  pointer-events: none;
  position: absolute;
  left: 50%;
  --tw-translate-x: -50%;
  --tw-translate-y: 0px;
  --tw-scale-x: 1;
  --tw-scale-y: 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));
  white-space: nowrap;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(226 231 225 / var(--tw-text-opacity));
  opacity: 1;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    bottom: calc(100% + 0.25rem);
    transition-property: transform, opacity;
    transition-duration: 0.1s;
    transition-timing-function: ease-in-out;
}
.tooltip-hidden {
  --tw-translate-y: 0.25rem;
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  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));
  opacity: 0;
}
.turbo-progress-bar {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(160 213 171 / var(--tw-bg-opacity));
  --tw-shadow: 0 0 10px rgba(244,281,241,0.72);
  --tw-shadow-colored: 0 0 10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.\!visible {
  visibility: visible !important;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.-left-4 {
  left: -1rem;
}
.-right-4 {
  right: -1rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-sm {
  bottom: 0.5rem;
}
.end-sm {
  inset-inline-end: 0.5rem;
}
.left-0 {
  left: 0px;
}
.left-\[calc\(100\%\+theme\(\'spacing\.sm\'\)\)\] {
  left: calc(100% + 0.5rem);
}
.left-sm {
  left: 0.5rem;
}
.right-0 {
  right: 0px;
}
.right-md {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.top-6 {
  top: 1.5rem;
}
.top-\[0\.06em\] {
  top: 0.06em;
}
.top-\[theme\(spacing\.navbar-full-sm\)\] {
  top: 100px;
}
.top-\[theme\(spacing\.navbar-sm\)\] {
  top: 60px;
}
.z-10 {
  z-index: 10;
}
.z-modal {
  z-index: 200;
}
.z-navbar {
  z-index: 100;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-12 {
  grid-column: span 12 / span 12;
}
.col-span-4 {
  grid-column: span 4 / span 4;
}
.col-span-6 {
  grid-column: span 6 / span 6;
}
.col-span-8 {
  grid-column: span 8 / span 8;
}
.col-start-9 {
  grid-column-start: 9;
}
.\!m-0 {
  margin: 0px !important;
}
.m-0 {
  margin: 0px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.my-lg {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-md {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-sm {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.-ml-4 {
  margin-left: -1rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-auto {
  margin-bottom: auto;
}
.mb-lg {
  margin-bottom: 2rem;
}
.mb-md {
  margin-bottom: 1rem;
}
.mb-sm {
  margin-bottom: 0.5rem;
}
.mb-xl {
  margin-bottom: 4rem;
}
.mb-xs {
  margin-bottom: 0.25rem;
}
.ml-auto {
  margin-left: auto;
}
.ml-lg {
  margin-left: 2rem;
}
.ml-md {
  margin-left: 1rem;
}
.ml-sm {
  margin-left: 0.5rem;
}
.ml-xs {
  margin-left: 0.25rem;
}
.mr-auto {
  margin-right: auto;
}
.mr-md {
  margin-right: 1rem;
}
.mr-sm {
  margin-right: 0.5rem;
}
.ms-3 {
  margin-inline-start: 0.75rem;
}
.ms-auto {
  margin-inline-start: auto;
}
.mt-0 {
  margin-top: 0px;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-lg {
  margin-top: 2rem;
}
.mt-md {
  margin-top: 1rem;
}
.mt-sm {
  margin-top: 0.5rem;
}
.mt-xl {
  margin-top: 4rem;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.line-clamp-6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.\!flex {
  display: flex !important;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.h-0 {
  height: 0px;
}
.h-0\.5 {
  height: 0.125rem;
}
.h-1 {
  height: 0.25rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-1\/2 {
  height: 50%;
}
.h-1\/3 {
  height: 33.333333%;
}
.h-1\/4 {
  height: 25%;
}
.h-1\/5 {
  height: 20%;
}
.h-1\/6 {
  height: 16.666667%;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-2\/3 {
  height: 66.666667%;
}
.h-2\/4 {
  height: 50%;
}
.h-2\/5 {
  height: 40%;
}
.h-2\/6 {
  height: 33.333333%;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-28 {
  height: 7rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-3\/4 {
  height: 75%;
}
.h-3\/5 {
  height: 60%;
}
.h-3\/6 {
  height: 50%;
}
.h-32 {
  height: 8rem;
}
.h-36 {
  height: 9rem;
}
.h-4 {
  height: 1rem;
}
.h-4\/5 {
  height: 80%;
}
.h-4\/6 {
  height: 66.666667%;
}
.h-40 {
  height: 10rem;
}
.h-44 {
  height: 11rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-5\/6 {
  height: 83.333333%;
}
.h-52 {
  height: 13rem;
}
.h-56 {
  height: 14rem;
}
.h-6 {
  height: 1.5rem;
}
.h-60 {
  height: 15rem;
}
.h-64 {
  height: 16rem;
}
.h-7 {
  height: 1.75rem;
}
.h-72 {
  height: 18rem;
}
.h-8 {
  height: 2rem;
}
.h-80 {
  height: 20rem;
}
.h-9 {
  height: 2.25rem;
}
.h-96 {
  height: 24rem;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[50px\] {
  height: 50px;
}
.h-auto {
  height: auto;
}
.h-dvh {
  height: 100dvh;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-lg {
  height: 2rem;
}
.h-lvh {
  height: 100lvh;
}
.h-max {
  height: -moz-max-content;
  height: max-content;
}
.h-md {
  height: 1rem;
}
.h-min {
  height: -moz-min-content;
  height: min-content;
}
.h-modal {
  height: calc(100% - 2rem);
}
.h-navbar-admin-lg {
  height: 136px;
}
.h-navbar-admin-sm {
  height: 100px;
}
.h-navbar-full-lg {
  height: 140px;
}
.h-navbar-full-sm {
  height: 100px;
}
.h-navbar-lg {
  height: 96px;
}
.h-navbar-sm {
  height: 60px;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.h-sm {
  height: 0.5rem;
}
.h-svh {
  height: 100svh;
}
.h-xl {
  height: 4rem;
}
.h-xs {
  height: 0.25rem;
}
.max-h-\[200px\] {
  max-height: 200px;
}
.max-h-\[75vh\] {
  max-height: 75vh;
}
.min-h-0 {
  min-height: 0px;
}
.min-h-0\.5 {
  min-height: 0.125rem;
}
.min-h-1 {
  min-height: 0.25rem;
}
.min-h-1\.5 {
  min-height: 0.375rem;
}
.min-h-10 {
  min-height: 2.5rem;
}
.min-h-11 {
  min-height: 2.75rem;
}
.min-h-12 {
  min-height: 3rem;
}
.min-h-14 {
  min-height: 3.5rem;
}
.min-h-16 {
  min-height: 4rem;
}
.min-h-2 {
  min-height: 0.5rem;
}
.min-h-2\.5 {
  min-height: 0.625rem;
}
.min-h-20 {
  min-height: 5rem;
}
.min-h-24 {
  min-height: 6rem;
}
.min-h-28 {
  min-height: 7rem;
}
.min-h-3 {
  min-height: 0.75rem;
}
.min-h-3\.5 {
  min-height: 0.875rem;
}
.min-h-32 {
  min-height: 8rem;
}
.min-h-36 {
  min-height: 9rem;
}
.min-h-4 {
  min-height: 1rem;
}
.min-h-40 {
  min-height: 10rem;
}
.min-h-44 {
  min-height: 11rem;
}
.min-h-48 {
  min-height: 12rem;
}
.min-h-5 {
  min-height: 1.25rem;
}
.min-h-52 {
  min-height: 13rem;
}
.min-h-56 {
  min-height: 14rem;
}
.min-h-6 {
  min-height: 1.5rem;
}
.min-h-60 {
  min-height: 15rem;
}
.min-h-64 {
  min-height: 16rem;
}
.min-h-7 {
  min-height: 1.75rem;
}
.min-h-72 {
  min-height: 18rem;
}
.min-h-8 {
  min-height: 2rem;
}
.min-h-80 {
  min-height: 20rem;
}
.min-h-9 {
  min-height: 2.25rem;
}
.min-h-96 {
  min-height: 24rem;
}
.min-h-dvh {
  min-height: 100dvh;
}
.min-h-fit {
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.min-h-full {
  min-height: 100%;
}
.min-h-lg {
  min-height: 2rem;
}
.min-h-lvh {
  min-height: 100lvh;
}
.min-h-max {
  min-height: -moz-max-content;
  min-height: max-content;
}
.min-h-md {
  min-height: 1rem;
}
.min-h-min {
  min-height: -moz-min-content;
  min-height: min-content;
}
.min-h-navbar-admin-lg {
  min-height: 136px;
}
.min-h-navbar-admin-sm {
  min-height: 100px;
}
.min-h-navbar-full-lg {
  min-height: 140px;
}
.min-h-navbar-full-sm {
  min-height: 100px;
}
.min-h-navbar-lg {
  min-height: 96px;
}
.min-h-navbar-sm {
  min-height: 60px;
}
.min-h-px {
  min-height: 1px;
}
.min-h-screen {
  min-height: 100vh;
}
.min-h-sm {
  min-height: 0.5rem;
}
.min-h-svh {
  min-height: 100svh;
}
.min-h-xl {
  min-height: 4rem;
}
.min-h-xs {
  min-height: 0.25rem;
}
.\!w-1\/3 {
  width: 33.333333% !important;
}
.\!w-2\/5 {
  width: 40% !important;
}
.w-0 {
  width: 0px;
}
.w-0\.5 {
  width: 0.125rem;
}
.w-1 {
  width: 0.25rem;
}
.w-1\.5 {
  width: 0.375rem;
}
.w-1\/12 {
  width: 8.333333%;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-1\/4 {
  width: 25%;
}
.w-1\/5 {
  width: 20%;
}
.w-1\/6 {
  width: 16.666667%;
}
.w-10 {
  width: 2.5rem;
}
.w-10\/12 {
  width: 83.333333%;
}
.w-11 {
  width: 2.75rem;
}
.w-11\/12 {
  width: 91.666667%;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-2\/12 {
  width: 16.666667%;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-2\/4 {
  width: 50%;
}
.w-2\/5 {
  width: 40%;
}
.w-2\/6 {
  width: 33.333333%;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-28 {
  width: 7rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-3\/12 {
  width: 25%;
}
.w-3\/4 {
  width: 75%;
}
.w-3\/5 {
  width: 60%;
}
.w-3\/6 {
  width: 50%;
}
.w-32 {
  width: 8rem;
}
.w-36 {
  width: 9rem;
}
.w-4 {
  width: 1rem;
}
.w-4\/12 {
  width: 33.333333%;
}
.w-4\/5 {
  width: 80%;
}
.w-4\/6 {
  width: 66.666667%;
}
.w-40 {
  width: 10rem;
}
.w-44 {
  width: 11rem;
}
.w-48 {
  width: 12rem;
}
.w-5 {
  width: 1.25rem;
}
.w-5\/12 {
  width: 41.666667%;
}
.w-5\/6 {
  width: 83.333333%;
}
.w-52 {
  width: 13rem;
}
.w-56 {
  width: 14rem;
}
.w-6 {
  width: 1.5rem;
}
.w-6\/12 {
  width: 50%;
}
.w-60 {
  width: 15rem;
}
.w-64 {
  width: 16rem;
}
.w-7 {
  width: 1.75rem;
}
.w-7\/12 {
  width: 58.333333%;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-8\/12 {
  width: 66.666667%;
}
.w-80 {
  width: 20rem;
}
.w-9 {
  width: 2.25rem;
}
.w-9\/12 {
  width: 75%;
}
.w-96 {
  width: 24rem;
}
.w-\[100px\] {
  width: 100px;
}
.w-\[130px\] {
  width: 130px;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[552px\] {
  width: 552px;
}
.w-\[75px\] {
  width: 75px;
}
.w-auto {
  width: auto;
}
.w-dvw {
  width: 100dvw;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-lg {
  width: 2rem;
}
.w-lvw {
  width: 100lvw;
}
.w-max {
  width: -moz-max-content;
  width: max-content;
}
.w-md {
  width: 1rem;
}
.w-min {
  width: -moz-min-content;
  width: min-content;
}
.w-navbar-admin-lg {
  width: 136px;
}
.w-navbar-admin-sm {
  width: 100px;
}
.w-navbar-full-lg {
  width: 140px;
}
.w-navbar-full-sm {
  width: 100px;
}
.w-navbar-lg {
  width: 96px;
}
.w-navbar-sm {
  width: 60px;
}
.w-px {
  width: 1px;
}
.w-screen {
  width: 100vw;
}
.w-sm {
  width: 0.5rem;
}
.w-svw {
  width: 100svw;
}
.w-xl {
  width: 4rem;
}
.w-xs {
  width: 0.25rem;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-0\.5 {
  min-width: 0.125rem;
}
.min-w-1 {
  min-width: 0.25rem;
}
.min-w-1\.5 {
  min-width: 0.375rem;
}
.min-w-10 {
  min-width: 2.5rem;
}
.min-w-11 {
  min-width: 2.75rem;
}
.min-w-12 {
  min-width: 3rem;
}
.min-w-14 {
  min-width: 3.5rem;
}
.min-w-16 {
  min-width: 4rem;
}
.min-w-2 {
  min-width: 0.5rem;
}
.min-w-2\.5 {
  min-width: 0.625rem;
}
.min-w-20 {
  min-width: 5rem;
}
.min-w-24 {
  min-width: 6rem;
}
.min-w-28 {
  min-width: 7rem;
}
.min-w-3 {
  min-width: 0.75rem;
}
.min-w-3\.5 {
  min-width: 0.875rem;
}
.min-w-32 {
  min-width: 8rem;
}
.min-w-36 {
  min-width: 9rem;
}
.min-w-4 {
  min-width: 1rem;
}
.min-w-40 {
  min-width: 10rem;
}
.min-w-44 {
  min-width: 11rem;
}
.min-w-48 {
  min-width: 12rem;
}
.min-w-5 {
  min-width: 1.25rem;
}
.min-w-52 {
  min-width: 13rem;
}
.min-w-56 {
  min-width: 14rem;
}
.min-w-6 {
  min-width: 1.5rem;
}
.min-w-60 {
  min-width: 15rem;
}
.min-w-64 {
  min-width: 16rem;
}
.min-w-7 {
  min-width: 1.75rem;
}
.min-w-72 {
  min-width: 18rem;
}
.min-w-8 {
  min-width: 2rem;
}
.min-w-80 {
  min-width: 20rem;
}
.min-w-9 {
  min-width: 2.25rem;
}
.min-w-96 {
  min-width: 24rem;
}
.min-w-\[375px\] {
  min-width: 375px;
}
.min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.min-w-full {
  min-width: 100%;
}
.min-w-lg {
  min-width: 2rem;
}
.min-w-max {
  min-width: -moz-max-content;
  min-width: max-content;
}
.min-w-md {
  min-width: 1rem;
}
.min-w-min {
  min-width: -moz-min-content;
  min-width: min-content;
}
.min-w-navbar-admin-lg {
  min-width: 136px;
}
.min-w-navbar-admin-sm {
  min-width: 100px;
}
.min-w-navbar-full-lg {
  min-width: 140px;
}
.min-w-navbar-full-sm {
  min-width: 100px;
}
.min-w-navbar-lg {
  min-width: 96px;
}
.min-w-navbar-sm {
  min-width: 60px;
}
.min-w-px {
  min-width: 1px;
}
.min-w-sm {
  min-width: 0.5rem;
}
.min-w-xl {
  min-width: 4rem;
}
.min-w-xs {
  min-width: 0.25rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-\[100px\] {
  max-width: 100px;
}
.max-w-\[250px\] {
  max-width: 250px;
}
.max-w-\[275px\] {
  max-width: 275px;
}
.max-w-\[320px\] {
  max-width: 320px;
}
.max-w-\[375px\] {
  max-width: 375px;
}
.max-w-\[400px\] {
  max-width: 400px;
}
.max-w-\[450px\] {
  max-width: 450px;
}
.max-w-\[460px\] {
  max-width: 460px;
}
.max-w-\[480px\] {
  max-width: 480px;
}
.max-w-\[500px\] {
  max-width: 500px;
}
.max-w-\[550px\] {
  max-width: 550px;
}
.max-w-\[575px\] {
  max-width: 575px;
}
.max-w-\[600px\] {
  max-width: 600px;
}
.max-w-\[620px\] {
  max-width: 620px;
}
.max-w-\[675px\] {
  max-width: 675px;
}
.max-w-\[750px\] {
  max-width: 750px;
}
.max-w-\[75px\] {
  max-width: 75px;
}
.max-w-\[768px\] {
  max-width: 768px;
}
.max-w-full {
  max-width: 100%;
}
.max-w-screen-lg {
  max-width: 1024px;
}
.max-w-screen-xl {
  max-width: 1280px;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-2 {
  flex: 2 2 0%;
}
.flex-\[0\.5\] {
  flex: 0.5;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.origin-left {
  transform-origin: left;
}
.-translate-x-1 {
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-6 {
  --tw-translate-y: -1.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1 {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 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));
}
.scale-90 {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  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));
}
.cursor-help {
  cursor: help;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.list-inside {
  list-style-position: inside;
}
.list-outside {
  list-style-position: outside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.gap-lg {
  gap: 2rem;
}
.gap-md {
  gap: 1rem;
}
.gap-sm {
  gap: 0.5rem;
}
.gap-xs {
  gap: 0.25rem;
}
.gap-y-md {
  row-gap: 1rem;
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-sm > :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)));
}
.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-100 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-divide-opacity));
}
.divide-gray-lighter > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(245 245 245 / var(--tw-divide-opacity));
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.self-center {
  align-self: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-l {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-r {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.border-\[clamp\(1px\2c 5cqi\2c 7px\)\] {
  border-width: clamp(1px,5cqi,7px);
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-blue-gray {
  --tw-border-opacity: 1;
  border-color: rgb(59 63 92 / var(--tw-border-opacity));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-gray-light {
  --tw-border-opacity: 1;
  border-color: rgb(226 231 225 / var(--tw-border-opacity));
}
.border-gray-medium {
  --tw-border-opacity: 1;
  border-color: rgb(199 207 198 / var(--tw-border-opacity));
}
.border-green-medium {
  --tw-border-opacity: 1;
  border-color: rgb(160 213 171 / var(--tw-border-opacity));
}
.border-red-medium {
  --tw-border-opacity: 1;
  border-color: rgb(157 39 47 / var(--tw-border-opacity));
}
.border-yellow-medium {
  --tw-border-opacity: 1;
  border-color: rgb(255 223 166 / var(--tw-border-opacity));
}
.border-y-gray-medium {
  --tw-border-opacity: 1;
  border-top-color: rgb(199 207 198 / var(--tw-border-opacity));
  border-bottom-color: rgb(199 207 198 / var(--tw-border-opacity));
}
.border-b-gray-light {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(226 231 225 / var(--tw-border-opacity));
}
.border-b-gray-lightest {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(254 254 254 / var(--tw-border-opacity));
}
.border-b-gray-medium {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(199 207 198 / var(--tw-border-opacity));
}
.border-b-green-dark {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(28 92 41 / var(--tw-border-opacity));
}
.border-b-slate {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(226 232 240 / var(--tw-border-opacity));
}
.border-l-gray-medium {
  --tw-border-opacity: 1;
  border-left-color: rgb(199 207 198 / var(--tw-border-opacity));
}
.border-r-gray-medium {
  --tw-border-opacity: 1;
  border-right-color: rgb(199 207 198 / var(--tw-border-opacity));
}
.border-t-gray-light {
  --tw-border-opacity: 1;
  border-top-color: rgb(226 231 225 / var(--tw-border-opacity));
}
.border-t-gray-medium {
  --tw-border-opacity: 1;
  border-top-color: rgb(199 207 198 / var(--tw-border-opacity));
}
.border-t-slate {
  --tw-border-opacity: 1;
  border-top-color: rgb(226 232 240 / var(--tw-border-opacity));
}
.bg-\[\#276C35\] {
  --tw-bg-opacity: 1;
  background-color: rgb(39 108 53 / var(--tw-bg-opacity));
}
.bg-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.bg-gray-light {
  --tw-bg-opacity: 1;
  background-color: rgb(226 231 225 / var(--tw-bg-opacity));
}
.bg-gray-lighter {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity));
}
.bg-gray-lightest {
  --tw-bg-opacity: 1;
  background-color: rgb(254 254 254 / var(--tw-bg-opacity));
}
.bg-green-light {
  --tw-bg-opacity: 1;
  background-color: rgb(244 248 241 / var(--tw-bg-opacity));
}
.bg-green-lighter {
  --tw-bg-opacity: 1;
  background-color: rgb(250 252 248 / var(--tw-bg-opacity));
}
.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(38 107 53 / var(--tw-bg-opacity));
}
.bg-purple-light {
  --tw-bg-opacity: 1;
  background-color: rgb(231 228 249 / var(--tw-bg-opacity));
}
.bg-red-light {
  --tw-bg-opacity: 1;
  background-color: rgb(248 227 227 / var(--tw-bg-opacity));
}
.bg-slate {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / 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-yellow-light {
  --tw-bg-opacity: 1;
  background-color: rgb(255 250 241 / var(--tw-bg-opacity));
}
.bg-yellow-medium {
  --tw-bg-opacity: 1;
  background-color: rgb(255 223 166 / var(--tw-bg-opacity));
}
.\!bg-disabled-stripes {
  background-image: repeating-linear-gradient(45deg, #fefefe, #fefefe 2px, #f4f4f4 3px, #f4f4f4 9px) !important;
}
.bg-cover {
  background-size: cover;
}
.bg-top {
  background-position: top;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.fill-\[\#0077B5\] {
  fill: #0077B5;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-12 {
  padding: 3rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-2\.5 {
  padding: 0.625rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-lg {
  padding: 2rem;
}
.p-md {
  padding: 1rem;
}
.p-sm {
  padding: 0.5rem;
}
.p-xs {
  padding: 0.25rem;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-lg {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-md {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-sm {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-md {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-md {
  padding-bottom: 1rem;
}
.pb-sm {
  padding-bottom: 0.5rem;
}
.pb-xl {
  padding-bottom: 4rem;
}
.pl-0 {
  padding-left: 0px;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-lg {
  padding-left: 2rem;
}
.pl-md {
  padding-left: 1rem;
}
.pl-sm {
  padding-left: 0.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-md {
  padding-right: 1rem;
}
.pt-md {
  padding-top: 1rem;
}
.pt-sm {
  padding-top: 0.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.align-top {
  vertical-align: top;
}
.font-sans {
  font-family: "Open Sans", sans-serif;
}
.font-serif {
  font-family: faustina, Garamond, serif;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[15px\] {
  font-size: 15px;
}
.text-\[clamp\(10px\2c _35cqi\2c _72px\)\] {
  font-size: clamp(10px, 35cqi, 72px);
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-bold {
  font-weight: 700 !important;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.leading-10 {
  line-height: 2.5rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-8 {
  line-height: 2rem;
}
.leading-9 {
  line-height: 2.25rem;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-blue-gray {
  --tw-text-opacity: 1;
  color: rgb(59 63 92 / var(--tw-text-opacity));
}
.text-error {
  --tw-text-opacity: 1;
  color: rgb(157 39 47 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.text-gray-blue {
  --tw-text-opacity: 1;
  color: rgb(59 63 92 / var(--tw-text-opacity));
}
.text-gray-dark {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.text-gray-medium {
  --tw-text-opacity: 1;
  color: rgb(199 207 198 / var(--tw-text-opacity));
}
.text-green-dark {
  --tw-text-opacity: 1;
  color: rgb(28 92 41 / var(--tw-text-opacity));
}
.text-indigo-700 {
  --tw-text-opacity: 1;
  color: rgb(81 69 205 / var(--tw-text-opacity));
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.text-purple-dark {
  --tw-text-opacity: 1;
  color: rgb(82 73 136 / var(--tw-text-opacity));
}
.text-red-dark {
  --tw-text-opacity: 1;
  color: rgb(125 40 40 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-yellow-dark {
  --tw-text-opacity: 1;
  color: rgb(102 70 13 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.\!opacity-0 {
  opacity: 0 !important;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-card-header {
  --tw-shadow: 0px 4px 38px 0px rgba(191, 199, 208, 0.2);
  --tw-shadow-colored: 0px 4px 38px 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-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 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-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.blur-lg {
  --tw-blur: blur(16px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-100 {
  transition-duration: 100ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.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);
}
.\@container {
  container-type: inline-size;
}
.page-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: faustina, Garamond, serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 400;
  font-style: italic;
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {
  .page-title {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 3rem;
    line-height: 1;
  }
}
.page-subtitle {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: faustina, Garamond, serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 400;
  font-style: italic;
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
@media (min-width: 1024px) {
  .page-subtitle {
    margin-top: 2rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.section-heading {
  font-family: faustina, Garamond, serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
.text-with-formatting > strong {
  font-weight: 700;
}
.text-with-formatting > em {
  font-style: italic;
}
.navbar-link-with-icon svg {
      font-size: 1em !important;
      top: 0.1em !important;
    }
.navbar-link-with-icon svg path {
  fill: #266B35;
}
.navbar-link-with-icon:hover svg path, .navbar-link-with-icon:focus-within svg path {
          fill: currentColor;
        }
@media (min-width: 1024px) {
        .navbar-link-with-icon svg path {
    fill: #A0D5AB;
  }
  }
.container-inline-size {
    container-type: inline-size;
  }
.container-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}
.container-grid > * {
  grid-column: span 12 / span 12;
}
@keyframes foldAndFocus {
    0% {
      transform: scaleY(0);
      filter: blur(10px);
      opacity: 0;
    }
    100% {
      transform: scaleY(1);
      filter: blur(0);
      opacity: 1;
    }
  }
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
@keyframes modalFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
  }
@keyframes modalSlideIn {
    from { transform: translateY(15%); }
    to { transform: translateY(0); }
  }
@keyframes modalSlideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
  }
.fold-and-focus-element {
    opacity: 0;
    transform: scaleY(0);
    filter: blur(10px);
    transform-origin: top;
    transition-property: transform, filter, opacity;
    transition-duration: 0.125s;
    transition-timing-function: ease-in;
  }
.fold-and-focus-element.fold-and-focus-element-visible {
      transform: scaleY(1);
      filter: blur(0);
      opacity: 1;
      transition-timing-function: ease-out;
    }
.modal-slide[aria-hidden="false"] .modal-overlay {
    animation: modalFadeIn 0.125s cubic-bezier(0.0, 0.0, 0.2, 1);
  }
.modal-slide[aria-hidden="false"] .modal-container {
    animation: modalSlideIn 0.125s cubic-bezier(0, 0, .2, 1);
  }
.modal-slide[aria-hidden="true"] .modal-overlay {
    animation: modalFadeOut 0.125s cubic-bezier(0.0, 0.0, 0.2, 1);
  }
.modal-slide[aria-hidden="true"] .modal-container {
    animation: modalSlideOut 0.125s cubic-bezier(0, 0, .2, 1);
  }
.modal-slide .modal-container,
  .modal-slide .modal-overlay {
    will-change: transform;
  }
.dl-list-with-headers > dt {
      font-weight: bold;
      float: left;
    }
.dl-list-with-headers > dt::after {
        content: ':';
        margin-right: 0.25em;
      }
.bordered-list > li {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-bottom-color: rgb(199 207 198 / var(--tw-border-opacity));
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.bordered-list > li:last-child {
  border-bottom-width: 0px;
}
@media (min-width: 768px) {
  .bordered-list > li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.metric-with-icon {
  display: grid;
  width: 100%;
  grid-template-columns: 24px 1fr;
  grid-template-rows: repeat(2, min-content);
  align-items: flex-start;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.metric-with-icon__icon {
  grid-column: span 1 / span 1;
}
.metric-with-icon__label {
  grid-column: span 2 / span 2;
  grid-column-start: 2;
}
.metric-with-icon__metric {
  grid-column: span 1 / span 1;
  grid-column-start: 2;
  grid-row-start: 2;
}
.metric-with-icon-stacked .metric-with-icon__label {
  flex: 1 1 0%;
  text-align: center;
}
.metric-with-icon-stacked .metric-with-icon__metric {
  margin-top: auto;
  text-align: center;
}
.bg-header-organization {
    background-image: -webkit-image-set(
      url(/assets/organization_registration_header_image-39f23986010dc18c0a59c84cde1ed040855dd89dbe204cb40c45e8ad6a97dfec.png) 1x,
      url(/assets/organization_registration_header_image@2x-172e548f27ffe04a0df0642abca1fe4736aea35119320ea378163220fc642f08.png) 2x,
      url(/assets/organization_registration_header_image@3x-52689cfc1c5fd956558071ecabbb70b163e37b4ab201bfbddd325c7aef2517ee.png) 3x
    );
    background-image: image-set(
      url(/assets/organization_registration_header_image-39f23986010dc18c0a59c84cde1ed040855dd89dbe204cb40c45e8ad6a97dfec.png) 1x,
      url(/assets/organization_registration_header_image@2x-172e548f27ffe04a0df0642abca1fe4736aea35119320ea378163220fc642f08.png) 2x,
      url(/assets/organization_registration_header_image@3x-52689cfc1c5fd956558071ecabbb70b163e37b4ab201bfbddd325c7aef2517ee.png) 3x
    );
  }
.bg-header-individual {
    background-image: -webkit-image-set(
      url(/assets/individual_registration_header_image-433291b80c5876f1c7cf19b867dd36ef811110ecb4e19ae8215e88c3cd7042f7.png) 1x,
      url(/assets/individual_registration_header_image@2x-cbbbb88647e6cb82332a29f1415037b93aa2372e5efd72ffc8a2f2fee2a5cb1c.png) 2x,
      url(/assets/individual_registration_header_image@3x-940afba522af2006abb2fa480a564b30d8517e3c1a8fc9e2a10ab3b509818a25.png) 3x
    );
    background-image: image-set(
      url(/assets/individual_registration_header_image-433291b80c5876f1c7cf19b867dd36ef811110ecb4e19ae8215e88c3cd7042f7.png) 1x,
      url(/assets/individual_registration_header_image@2x-cbbbb88647e6cb82332a29f1415037b93aa2372e5efd72ffc8a2f2fee2a5cb1c.png) 2x,
      url(/assets/individual_registration_header_image@3x-940afba522af2006abb2fa480a564b30d8517e3c1a8fc9e2a10ab3b509818a25.png) 3x
    );
  }
.nav-spacing {
    padding-top: calc(60px + 1rem);
  }
.nav-spacing-admin {
    padding-top: calc(100px + 1rem);
  }
.nav-spacing-full {
    padding-top: calc(100px + 1rem);
  }
@media (min-width: 1024px) {
    .nav-spacing {
      padding-top: calc(96px + 1rem);
    }

    .nav-spacing-admin {
      padding-top: calc(136px + 1rem);
    }

    .nav-spacing-full {
      padding-top: calc(140px + 1rem);
    }
  }
.\[text-decoration\:none\] {
  text-decoration: none;
}
.before\:block::before {
  content: var(--tw-content);
  display: block;
}
.before\:h-\[2px\]::before {
  content: var(--tw-content);
  height: 2px;
}
.before\:bg-gradient-to-r::before {
  content: var(--tw-content);
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.before\:from-transparent::before {
  content: var(--tw-content);
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.before\:from-15\%::before {
  content: var(--tw-content);
  --tw-gradient-from-position: 15%;
}
.before\:via-primary::before {
  content: var(--tw-content);
  --tw-gradient-to: rgb(38 107 53 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #266B35 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.before\:via-50\%::before {
  content: var(--tw-content);
  --tw-gradient-via-position: 50%;
}
.before\:to-transparent::before {
  content: var(--tw-content);
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.before\:to-85\%::before {
  content: var(--tw-content);
  --tw-gradient-to-position: 85%;
}
.before\:content-\[\'\'\]::before {
  --tw-content: '';
  content: var(--tw-content);
}
.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}
.after\:start-\[2px\]::after {
  content: var(--tw-content);
  inset-inline-start: 2px;
}
.after\:top-\[2px\]::after {
  content: var(--tw-content);
  top: 2px;
}
.after\:h-\[20px\]::after {
  content: var(--tw-content);
  height: 20px;
}
.after\:w-\[20px\]::after {
  content: var(--tw-content);
  width: 20px;
}
.after\:rounded-full::after {
  content: var(--tw-content);
  border-radius: 9999px;
}
.after\:border::after {
  content: var(--tw-content);
  border-width: 1px;
}
.after\:border-gray-light::after {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(226 231 225 / var(--tw-border-opacity));
}
.after\:bg-white::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.after\:transition-all::after {
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.after\:content-\[\'\'\]::after {
  --tw-content: '';
  content: var(--tw-content);
}
.last\:mb-0:last-child {
  margin-bottom: 0px;
}
.last\:border-b-0:last-child {
  border-bottom-width: 0px;
}
.last\:pb-0:last-child {
  padding-bottom: 0px;
}
.first-of-type\:border-t-0:first-of-type {
  border-top-width: 0px;
}
.empty\:mt-0:empty {
  margin-top: 0px;
}
.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.hover\:bg-gray-light:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(226 231 225 / var(--tw-bg-opacity));
}
.hover\:bg-gray-lighter:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity));
}
.hover\:bg-green-medium:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(160 213 171 / var(--tw-bg-opacity));
}
.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.hover\:text-gray-dark:hover {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity));
}
.hover\:text-primary:hover {
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.focus\:bg-white:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.focus\:text-primary:focus {
  --tw-text-opacity: 1;
  color: rgb(38 107 53 / var(--tw-text-opacity));
}
.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-gray-light:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(226 231 225 / var(--tw-ring-opacity));
}
.peer:checked ~ .peer-checked\:bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(38 107 53 / var(--tw-bg-opacity));
}
.peer:checked ~ .peer-checked\:after\:translate-x-full::after {
  content: var(--tw-content);
  --tw-translate-x: 100%;
  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));
}
.peer:checked ~ .peer-checked\:after\:border-white::after {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.peer:focus ~ .peer-focus\:outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.peer:focus ~ .peer-focus\:ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.peer:focus ~ .peer-focus\:ring-green-light {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 248 241 / var(--tw-ring-opacity));
}
@container (min-width: 24rem) {
  .\@sm\:order-2 {
    order: 2;
  }
  .\@sm\:order-3 {
    order: 3;
  }
  .\@sm\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .\@sm\:col-start-1 {
    grid-column-start: 1;
  }
  .\@sm\:row-start-1 {
    grid-row-start: 1;
  }
  .\@sm\:row-start-2 {
    grid-row-start: 2;
  }
  .\@sm\:grid {
    display: grid;
  }
  .\@sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .\@sm\:grid-rows-\[repeat\(2\2c _min-content\)\] {
    grid-template-rows: repeat(2, min-content);
  }
  .\@sm\:flex-wrap {
    flex-wrap: wrap;
  }
  .\@sm\:gap-x-md {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
@container (min-width: 28rem) {
  .\@md\:col-start-2 {
    grid-column-start: 2;
  }
  .\@md\:my-md {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .\@md\:mb-0 {
    margin-bottom: 0px;
  }
  .\@md\:mb-sm {
    margin-bottom: 0.5rem;
  }
  .\@md\:w-1\/2 {
    width: 50%;
  }
  .\@md\:max-w-\[575px\] {
    max-width: 575px;
  }
  .\@md\:flex-row {
    flex-direction: row;
  }
  .\@md\:gap-lg {
    gap: 2rem;
  }
  .\@md\:px-md {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@container (min-width: 32rem) {
  .\@lg\:absolute {
    position: absolute;
  }
  .\@lg\:right-md {
    right: 1rem;
  }
  .\@lg\:top-md {
    top: 1rem;
  }
  .\@lg\:order-2 {
    order: 2;
  }
  .\@lg\:order-3 {
    order: 3;
  }
  .\@lg\:col-start-1 {
    grid-column-start: 1;
  }
  .\@lg\:col-start-2 {
    grid-column-start: 2;
  }
  .\@lg\:col-start-3 {
    grid-column-start: 3;
  }
  .\@lg\:row-start-1 {
    grid-row-start: 1;
  }
  .\@lg\:mt-0 {
    margin-top: 0px;
  }
  .\@lg\:flex {
    display: flex;
  }
  .\@lg\:h-48 {
    height: 12rem;
  }
  .\@lg\:min-h-48 {
    min-height: 12rem;
  }
  .\@lg\:w-1\/2 {
    width: 50%;
  }
  .\@lg\:w-1\/3 {
    width: 33.333333%;
  }
  .\@lg\:w-48 {
    width: 12rem;
  }
  .\@lg\:min-w-48 {
    min-width: 12rem;
  }
  .\@lg\:flex-\[1\.5\] {
    flex: 1.5;
  }
  .\@lg\:flex-grow {
    flex-grow: 1;
  }
  .\@lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .\@lg\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .\@lg\:flex-col {
    flex-direction: column;
  }
  .\@lg\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .\@lg\:items-start {
    align-items: flex-start;
  }
  .\@lg\:p-md {
    padding: 1rem;
  }
  .\@lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@container (min-width: 36rem) {
  .\@xl\:top-md {
    top: 1rem;
  }
  .\@xl\:w-1\/3 {
    width: 33.333333%;
  }
  .\@xl\:py-lg {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@container (min-width: 42rem) {
  .\@2xl\:absolute {
    position: absolute;
  }
  .\@2xl\:-bottom-md {
    bottom: -1rem;
  }
  .\@2xl\:left-md {
    left: 1rem;
  }
  .\@2xl\:flex-2 {
    flex: 2 2 0%;
  }
  .\@2xl\:flex-row {
    flex-direction: row;
  }
  .\@2xl\:pl-52 {
    padding-left: 13rem;
  }

  .\@2xl\:metric-with-icon-stacked {
    display: flex;
    height: 100%;
    max-height: 100px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
      .\@2xl\:metric-with-icon-stacked .metric-with-icon__label {
    flex: 1 1 0%;
    text-align: center;
  }

      .\@2xl\:metric-with-icon-stacked .metric-with-icon__metric {
    margin-top: auto;
    text-align: center;
  }
}
@container (min-width: 48rem) {
  .\@3xl\:-bottom-lg {
    bottom: -2rem;
  }
  .\@3xl\:flex-row {
    flex-direction: row;
  }
  .\@3xl\:items-end {
    align-items: flex-end;
  }
  .\@3xl\:pl-xl {
    padding-left: 4rem;
  }
}
@container (min-width: 56rem) {
  .\@4xl\:items-baseline {
    align-items: baseline;
  }
}
@media (min-width: 480px) {
  .xs\:flex {
    display: flex;
  }
  .xs\:inline-flex {
    display: inline-flex;
  }
  .xs\:justify-between {
    justify-content: space-between;
  }
  .xs\:space-x-sm > :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)));
  }
}
@media (min-width: 575px) {
  .sm\:left-0 {
    left: 0px;
  }
  .sm\:right-0 {
    right: 0px;
  }
  .sm\:order-1 {
    order: 1;
  }
  .sm\:order-3 {
    order: 3;
  }
  .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .sm\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .sm\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .sm\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .sm\:col-span-9 {
    grid-column: span 9 / span 9;
  }
  .sm\:my-md {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .sm\:ml-0 {
    margin-left: 0px;
  }
  .sm\:ml-auto {
    margin-left: auto;
  }
  .sm\:mr-0 {
    margin-right: 0px;
  }
  .sm\:mt-12 {
    margin-top: 3rem;
  }
  .sm\:flex {
    display: flex;
  }
  .sm\:inline-flex {
    display: inline-flex;
  }
  .sm\:h-0 {
    height: 0px;
  }
  .sm\:h-0\.5 {
    height: 0.125rem;
  }
  .sm\:h-1 {
    height: 0.25rem;
  }
  .sm\:h-1\.5 {
    height: 0.375rem;
  }
  .sm\:h-1\/2 {
    height: 50%;
  }
  .sm\:h-1\/3 {
    height: 33.333333%;
  }
  .sm\:h-1\/4 {
    height: 25%;
  }
  .sm\:h-1\/5 {
    height: 20%;
  }
  .sm\:h-1\/6 {
    height: 16.666667%;
  }
  .sm\:h-10 {
    height: 2.5rem;
  }
  .sm\:h-11 {
    height: 2.75rem;
  }
  .sm\:h-12 {
    height: 3rem;
  }
  .sm\:h-14 {
    height: 3.5rem;
  }
  .sm\:h-16 {
    height: 4rem;
  }
  .sm\:h-2 {
    height: 0.5rem;
  }
  .sm\:h-2\.5 {
    height: 0.625rem;
  }
  .sm\:h-2\/3 {
    height: 66.666667%;
  }
  .sm\:h-2\/4 {
    height: 50%;
  }
  .sm\:h-2\/5 {
    height: 40%;
  }
  .sm\:h-2\/6 {
    height: 33.333333%;
  }
  .sm\:h-20 {
    height: 5rem;
  }
  .sm\:h-24 {
    height: 6rem;
  }
  .sm\:h-28 {
    height: 7rem;
  }
  .sm\:h-3 {
    height: 0.75rem;
  }
  .sm\:h-3\.5 {
    height: 0.875rem;
  }
  .sm\:h-3\/4 {
    height: 75%;
  }
  .sm\:h-3\/5 {
    height: 60%;
  }
  .sm\:h-3\/6 {
    height: 50%;
  }
  .sm\:h-32 {
    height: 8rem;
  }
  .sm\:h-36 {
    height: 9rem;
  }
  .sm\:h-4 {
    height: 1rem;
  }
  .sm\:h-4\/5 {
    height: 80%;
  }
  .sm\:h-4\/6 {
    height: 66.666667%;
  }
  .sm\:h-40 {
    height: 10rem;
  }
  .sm\:h-44 {
    height: 11rem;
  }
  .sm\:h-48 {
    height: 12rem;
  }
  .sm\:h-5 {
    height: 1.25rem;
  }
  .sm\:h-5\/6 {
    height: 83.333333%;
  }
  .sm\:h-52 {
    height: 13rem;
  }
  .sm\:h-56 {
    height: 14rem;
  }
  .sm\:h-6 {
    height: 1.5rem;
  }
  .sm\:h-60 {
    height: 15rem;
  }
  .sm\:h-64 {
    height: 16rem;
  }
  .sm\:h-7 {
    height: 1.75rem;
  }
  .sm\:h-72 {
    height: 18rem;
  }
  .sm\:h-8 {
    height: 2rem;
  }
  .sm\:h-80 {
    height: 20rem;
  }
  .sm\:h-9 {
    height: 2.25rem;
  }
  .sm\:h-96 {
    height: 24rem;
  }
  .sm\:h-auto {
    height: auto;
  }
  .sm\:h-dvh {
    height: 100dvh;
  }
  .sm\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }
  .sm\:h-full {
    height: 100%;
  }
  .sm\:h-lg {
    height: 2rem;
  }
  .sm\:h-lvh {
    height: 100lvh;
  }
  .sm\:h-max {
    height: -moz-max-content;
    height: max-content;
  }
  .sm\:h-md {
    height: 1rem;
  }
  .sm\:h-min {
    height: -moz-min-content;
    height: min-content;
  }
  .sm\:h-modal {
    height: calc(100% - 2rem);
  }
  .sm\:h-navbar-admin-lg {
    height: 136px;
  }
  .sm\:h-navbar-admin-sm {
    height: 100px;
  }
  .sm\:h-navbar-full-lg {
    height: 140px;
  }
  .sm\:h-navbar-full-sm {
    height: 100px;
  }
  .sm\:h-navbar-lg {
    height: 96px;
  }
  .sm\:h-navbar-sm {
    height: 60px;
  }
  .sm\:h-px {
    height: 1px;
  }
  .sm\:h-screen {
    height: 100vh;
  }
  .sm\:h-sm {
    height: 0.5rem;
  }
  .sm\:h-svh {
    height: 100svh;
  }
  .sm\:h-xl {
    height: 4rem;
  }
  .sm\:h-xs {
    height: 0.25rem;
  }
  .sm\:min-h-0 {
    min-height: 0px;
  }
  .sm\:min-h-0\.5 {
    min-height: 0.125rem;
  }
  .sm\:min-h-1 {
    min-height: 0.25rem;
  }
  .sm\:min-h-1\.5 {
    min-height: 0.375rem;
  }
  .sm\:min-h-10 {
    min-height: 2.5rem;
  }
  .sm\:min-h-11 {
    min-height: 2.75rem;
  }
  .sm\:min-h-12 {
    min-height: 3rem;
  }
  .sm\:min-h-14 {
    min-height: 3.5rem;
  }
  .sm\:min-h-16 {
    min-height: 4rem;
  }
  .sm\:min-h-2 {
    min-height: 0.5rem;
  }
  .sm\:min-h-2\.5 {
    min-height: 0.625rem;
  }
  .sm\:min-h-20 {
    min-height: 5rem;
  }
  .sm\:min-h-24 {
    min-height: 6rem;
  }
  .sm\:min-h-28 {
    min-height: 7rem;
  }
  .sm\:min-h-3 {
    min-height: 0.75rem;
  }
  .sm\:min-h-3\.5 {
    min-height: 0.875rem;
  }
  .sm\:min-h-32 {
    min-height: 8rem;
  }
  .sm\:min-h-36 {
    min-height: 9rem;
  }
  .sm\:min-h-4 {
    min-height: 1rem;
  }
  .sm\:min-h-40 {
    min-height: 10rem;
  }
  .sm\:min-h-44 {
    min-height: 11rem;
  }
  .sm\:min-h-48 {
    min-height: 12rem;
  }
  .sm\:min-h-5 {
    min-height: 1.25rem;
  }
  .sm\:min-h-52 {
    min-height: 13rem;
  }
  .sm\:min-h-56 {
    min-height: 14rem;
  }
  .sm\:min-h-6 {
    min-height: 1.5rem;
  }
  .sm\:min-h-60 {
    min-height: 15rem;
  }
  .sm\:min-h-64 {
    min-height: 16rem;
  }
  .sm\:min-h-7 {
    min-height: 1.75rem;
  }
  .sm\:min-h-72 {
    min-height: 18rem;
  }
  .sm\:min-h-8 {
    min-height: 2rem;
  }
  .sm\:min-h-80 {
    min-height: 20rem;
  }
  .sm\:min-h-9 {
    min-height: 2.25rem;
  }
  .sm\:min-h-96 {
    min-height: 24rem;
  }
  .sm\:min-h-dvh {
    min-height: 100dvh;
  }
  .sm\:min-h-fit {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .sm\:min-h-full {
    min-height: 100%;
  }
  .sm\:min-h-lg {
    min-height: 2rem;
  }
  .sm\:min-h-lvh {
    min-height: 100lvh;
  }
  .sm\:min-h-max {
    min-height: -moz-max-content;
    min-height: max-content;
  }
  .sm\:min-h-md {
    min-height: 1rem;
  }
  .sm\:min-h-min {
    min-height: -moz-min-content;
    min-height: min-content;
  }
  .sm\:min-h-navbar-admin-lg {
    min-height: 136px;
  }
  .sm\:min-h-navbar-admin-sm {
    min-height: 100px;
  }
  .sm\:min-h-navbar-full-lg {
    min-height: 140px;
  }
  .sm\:min-h-navbar-full-sm {
    min-height: 100px;
  }
  .sm\:min-h-navbar-lg {
    min-height: 96px;
  }
  .sm\:min-h-navbar-sm {
    min-height: 60px;
  }
  .sm\:min-h-px {
    min-height: 1px;
  }
  .sm\:min-h-screen {
    min-height: 100vh;
  }
  .sm\:min-h-sm {
    min-height: 0.5rem;
  }
  .sm\:min-h-svh {
    min-height: 100svh;
  }
  .sm\:min-h-xl {
    min-height: 4rem;
  }
  .sm\:min-h-xs {
    min-height: 0.25rem;
  }
  .sm\:\!w-1\/3 {
    width: 33.333333% !important;
  }
  .sm\:\!w-2\/12 {
    width: 16.666667% !important;
  }
  .sm\:w-0 {
    width: 0px;
  }
  .sm\:w-0\.5 {
    width: 0.125rem;
  }
  .sm\:w-1 {
    width: 0.25rem;
  }
  .sm\:w-1\.5 {
    width: 0.375rem;
  }
  .sm\:w-1\/12 {
    width: 8.333333%;
  }
  .sm\:w-1\/2 {
    width: 50%;
  }
  .sm\:w-1\/3 {
    width: 33.333333%;
  }
  .sm\:w-1\/4 {
    width: 25%;
  }
  .sm\:w-1\/5 {
    width: 20%;
  }
  .sm\:w-1\/6 {
    width: 16.666667%;
  }
  .sm\:w-10 {
    width: 2.5rem;
  }
  .sm\:w-10\/12 {
    width: 83.333333%;
  }
  .sm\:w-11 {
    width: 2.75rem;
  }
  .sm\:w-11\/12 {
    width: 91.666667%;
  }
  .sm\:w-12 {
    width: 3rem;
  }
  .sm\:w-14 {
    width: 3.5rem;
  }
  .sm\:w-16 {
    width: 4rem;
  }
  .sm\:w-2 {
    width: 0.5rem;
  }
  .sm\:w-2\.5 {
    width: 0.625rem;
  }
  .sm\:w-2\/12 {
    width: 16.666667%;
  }
  .sm\:w-2\/3 {
    width: 66.666667%;
  }
  .sm\:w-2\/4 {
    width: 50%;
  }
  .sm\:w-2\/5 {
    width: 40%;
  }
  .sm\:w-2\/6 {
    width: 33.333333%;
  }
  .sm\:w-20 {
    width: 5rem;
  }
  .sm\:w-24 {
    width: 6rem;
  }
  .sm\:w-28 {
    width: 7rem;
  }
  .sm\:w-3 {
    width: 0.75rem;
  }
  .sm\:w-3\.5 {
    width: 0.875rem;
  }
  .sm\:w-3\/12 {
    width: 25%;
  }
  .sm\:w-3\/4 {
    width: 75%;
  }
  .sm\:w-3\/5 {
    width: 60%;
  }
  .sm\:w-3\/6 {
    width: 50%;
  }
  .sm\:w-32 {
    width: 8rem;
  }
  .sm\:w-36 {
    width: 9rem;
  }
  .sm\:w-4 {
    width: 1rem;
  }
  .sm\:w-4\/12 {
    width: 33.333333%;
  }
  .sm\:w-4\/5 {
    width: 80%;
  }
  .sm\:w-4\/6 {
    width: 66.666667%;
  }
  .sm\:w-40 {
    width: 10rem;
  }
  .sm\:w-44 {
    width: 11rem;
  }
  .sm\:w-48 {
    width: 12rem;
  }
  .sm\:w-5 {
    width: 1.25rem;
  }
  .sm\:w-5\/12 {
    width: 41.666667%;
  }
  .sm\:w-5\/6 {
    width: 83.333333%;
  }
  .sm\:w-52 {
    width: 13rem;
  }
  .sm\:w-56 {
    width: 14rem;
  }
  .sm\:w-6 {
    width: 1.5rem;
  }
  .sm\:w-6\/12 {
    width: 50%;
  }
  .sm\:w-60 {
    width: 15rem;
  }
  .sm\:w-64 {
    width: 16rem;
  }
  .sm\:w-7 {
    width: 1.75rem;
  }
  .sm\:w-7\/12 {
    width: 58.333333%;
  }
  .sm\:w-72 {
    width: 18rem;
  }
  .sm\:w-8 {
    width: 2rem;
  }
  .sm\:w-8\/12 {
    width: 66.666667%;
  }
  .sm\:w-80 {
    width: 20rem;
  }
  .sm\:w-9 {
    width: 2.25rem;
  }
  .sm\:w-9\/12 {
    width: 75%;
  }
  .sm\:w-96 {
    width: 24rem;
  }
  .sm\:w-\[100px\] {
    width: 100px;
  }
  .sm\:w-auto {
    width: auto;
  }
  .sm\:w-dvw {
    width: 100dvw;
  }
  .sm\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }
  .sm\:w-full {
    width: 100%;
  }
  .sm\:w-lg {
    width: 2rem;
  }
  .sm\:w-lvw {
    width: 100lvw;
  }
  .sm\:w-max {
    width: -moz-max-content;
    width: max-content;
  }
  .sm\:w-md {
    width: 1rem;
  }
  .sm\:w-min {
    width: -moz-min-content;
    width: min-content;
  }
  .sm\:w-navbar-admin-lg {
    width: 136px;
  }
  .sm\:w-navbar-admin-sm {
    width: 100px;
  }
  .sm\:w-navbar-full-lg {
    width: 140px;
  }
  .sm\:w-navbar-full-sm {
    width: 100px;
  }
  .sm\:w-navbar-lg {
    width: 96px;
  }
  .sm\:w-navbar-sm {
    width: 60px;
  }
  .sm\:w-px {
    width: 1px;
  }
  .sm\:w-screen {
    width: 100vw;
  }
  .sm\:w-sm {
    width: 0.5rem;
  }
  .sm\:w-svw {
    width: 100svw;
  }
  .sm\:w-xl {
    width: 4rem;
  }
  .sm\:w-xs {
    width: 0.25rem;
  }
  .sm\:min-w-0 {
    min-width: 0px;
  }
  .sm\:min-w-0\.5 {
    min-width: 0.125rem;
  }
  .sm\:min-w-1 {
    min-width: 0.25rem;
  }
  .sm\:min-w-1\.5 {
    min-width: 0.375rem;
  }
  .sm\:min-w-10 {
    min-width: 2.5rem;
  }
  .sm\:min-w-11 {
    min-width: 2.75rem;
  }
  .sm\:min-w-12 {
    min-width: 3rem;
  }
  .sm\:min-w-14 {
    min-width: 3.5rem;
  }
  .sm\:min-w-16 {
    min-width: 4rem;
  }
  .sm\:min-w-2 {
    min-width: 0.5rem;
  }
  .sm\:min-w-2\.5 {
    min-width: 0.625rem;
  }
  .sm\:min-w-20 {
    min-width: 5rem;
  }
  .sm\:min-w-24 {
    min-width: 6rem;
  }
  .sm\:min-w-28 {
    min-width: 7rem;
  }
  .sm\:min-w-3 {
    min-width: 0.75rem;
  }
  .sm\:min-w-3\.5 {
    min-width: 0.875rem;
  }
  .sm\:min-w-32 {
    min-width: 8rem;
  }
  .sm\:min-w-36 {
    min-width: 9rem;
  }
  .sm\:min-w-4 {
    min-width: 1rem;
  }
  .sm\:min-w-40 {
    min-width: 10rem;
  }
  .sm\:min-w-44 {
    min-width: 11rem;
  }
  .sm\:min-w-48 {
    min-width: 12rem;
  }
  .sm\:min-w-5 {
    min-width: 1.25rem;
  }
  .sm\:min-w-52 {
    min-width: 13rem;
  }
  .sm\:min-w-56 {
    min-width: 14rem;
  }
  .sm\:min-w-6 {
    min-width: 1.5rem;
  }
  .sm\:min-w-60 {
    min-width: 15rem;
  }
  .sm\:min-w-64 {
    min-width: 16rem;
  }
  .sm\:min-w-7 {
    min-width: 1.75rem;
  }
  .sm\:min-w-72 {
    min-width: 18rem;
  }
  .sm\:min-w-8 {
    min-width: 2rem;
  }
  .sm\:min-w-80 {
    min-width: 20rem;
  }
  .sm\:min-w-9 {
    min-width: 2.25rem;
  }
  .sm\:min-w-96 {
    min-width: 24rem;
  }
  .sm\:min-w-fit {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .sm\:min-w-full {
    min-width: 100%;
  }
  .sm\:min-w-lg {
    min-width: 2rem;
  }
  .sm\:min-w-max {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .sm\:min-w-md {
    min-width: 1rem;
  }
  .sm\:min-w-min {
    min-width: -moz-min-content;
    min-width: min-content;
  }
  .sm\:min-w-navbar-admin-lg {
    min-width: 136px;
  }
  .sm\:min-w-navbar-admin-sm {
    min-width: 100px;
  }
  .sm\:min-w-navbar-full-lg {
    min-width: 140px;
  }
  .sm\:min-w-navbar-full-sm {
    min-width: 100px;
  }
  .sm\:min-w-navbar-lg {
    min-width: 96px;
  }
  .sm\:min-w-navbar-sm {
    min-width: 60px;
  }
  .sm\:min-w-px {
    min-width: 1px;
  }
  .sm\:min-w-sm {
    min-width: 0.5rem;
  }
  .sm\:min-w-xl {
    min-width: 4rem;
  }
  .sm\:min-w-xs {
    min-width: 0.25rem;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .sm\:items-start {
    align-items: flex-start;
  }
  .sm\:items-baseline {
    align-items: baseline;
  }
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
  .sm\:gap-md {
    gap: 1rem;
  }
  .sm\:space-x-md > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .sm\:text-left {
    text-align: left;
  }
  .sm\:leading-8 {
    line-height: 2rem;
  }
}
@media (min-width: 640px) {
  .sm-md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .sm-md\:w-1\/2 {
    width: 50%;
  }
  .sm-md\:w-1\/3 {
    width: 33.333333%;
  }
  .sm-md\:flex-1 {
    flex: 1 1 0%;
  }
  .sm-md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .md\:static {
    position: static;
  }
  .md\:absolute {
    position: absolute;
  }
  .md\:-bottom-md {
    bottom: -1rem;
  }
  .md\:left-\[10\%\] {
    left: 10%;
  }
  .md\:left-md {
    left: 1rem;
  }
  .md\:right-\[10\%\] {
    right: 10%;
  }
  .md\:right-md {
    right: 1rem;
  }
  .md\:top-8 {
    top: 2rem;
  }
  .md\:top-sm {
    top: 0.5rem;
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .md\:\!mb-0 {
    margin-bottom: 0px !important;
  }
  .md\:-mb-xl {
    margin-bottom: -4rem;
  }
  .md\:mb-0 {
    margin-bottom: 0px;
  }
  .md\:mb-md {
    margin-bottom: 1rem;
  }
  .md\:mb-sm {
    margin-bottom: 0.5rem;
  }
  .md\:ml-0 {
    margin-left: 0px;
  }
  .md\:mr-\[0\.125em\] {
    margin-right: 0.125em;
  }
  .md\:mr-auto {
    margin-right: auto;
  }
  .md\:mr-md {
    margin-right: 1rem;
  }
  .md\:mt-0 {
    margin-top: 0px;
  }
  .md\:mt-16 {
    margin-top: 4rem;
  }
  .md\:mt-auto {
    margin-top: auto;
  }
  .md\:mt-lg {
    margin-top: 2rem;
  }
  .md\:mt-xl {
    margin-top: 4rem;
  }
  .md\:block {
    display: block;
  }
  .md\:inline-block {
    display: inline-block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:grid {
    display: grid;
  }
  .md\:h-0 {
    height: 0px;
  }
  .md\:h-0\.5 {
    height: 0.125rem;
  }
  .md\:h-1 {
    height: 0.25rem;
  }
  .md\:h-1\.5 {
    height: 0.375rem;
  }
  .md\:h-1\/2 {
    height: 50%;
  }
  .md\:h-1\/3 {
    height: 33.333333%;
  }
  .md\:h-1\/4 {
    height: 25%;
  }
  .md\:h-1\/5 {
    height: 20%;
  }
  .md\:h-1\/6 {
    height: 16.666667%;
  }
  .md\:h-10 {
    height: 2.5rem;
  }
  .md\:h-11 {
    height: 2.75rem;
  }
  .md\:h-12 {
    height: 3rem;
  }
  .md\:h-14 {
    height: 3.5rem;
  }
  .md\:h-16 {
    height: 4rem;
  }
  .md\:h-2 {
    height: 0.5rem;
  }
  .md\:h-2\.5 {
    height: 0.625rem;
  }
  .md\:h-2\/3 {
    height: 66.666667%;
  }
  .md\:h-2\/4 {
    height: 50%;
  }
  .md\:h-2\/5 {
    height: 40%;
  }
  .md\:h-2\/6 {
    height: 33.333333%;
  }
  .md\:h-20 {
    height: 5rem;
  }
  .md\:h-24 {
    height: 6rem;
  }
  .md\:h-28 {
    height: 7rem;
  }
  .md\:h-3 {
    height: 0.75rem;
  }
  .md\:h-3\.5 {
    height: 0.875rem;
  }
  .md\:h-3\/4 {
    height: 75%;
  }
  .md\:h-3\/5 {
    height: 60%;
  }
  .md\:h-3\/6 {
    height: 50%;
  }
  .md\:h-32 {
    height: 8rem;
  }
  .md\:h-36 {
    height: 9rem;
  }
  .md\:h-4 {
    height: 1rem;
  }
  .md\:h-4\/5 {
    height: 80%;
  }
  .md\:h-4\/6 {
    height: 66.666667%;
  }
  .md\:h-40 {
    height: 10rem;
  }
  .md\:h-44 {
    height: 11rem;
  }
  .md\:h-48 {
    height: 12rem;
  }
  .md\:h-5 {
    height: 1.25rem;
  }
  .md\:h-5\/6 {
    height: 83.333333%;
  }
  .md\:h-52 {
    height: 13rem;
  }
  .md\:h-56 {
    height: 14rem;
  }
  .md\:h-6 {
    height: 1.5rem;
  }
  .md\:h-60 {
    height: 15rem;
  }
  .md\:h-64 {
    height: 16rem;
  }
  .md\:h-7 {
    height: 1.75rem;
  }
  .md\:h-72 {
    height: 18rem;
  }
  .md\:h-8 {
    height: 2rem;
  }
  .md\:h-80 {
    height: 20rem;
  }
  .md\:h-9 {
    height: 2.25rem;
  }
  .md\:h-96 {
    height: 24rem;
  }
  .md\:h-auto {
    height: auto;
  }
  .md\:h-dvh {
    height: 100dvh;
  }
  .md\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }
  .md\:h-full {
    height: 100%;
  }
  .md\:h-lg {
    height: 2rem;
  }
  .md\:h-lvh {
    height: 100lvh;
  }
  .md\:h-max {
    height: -moz-max-content;
    height: max-content;
  }
  .md\:h-md {
    height: 1rem;
  }
  .md\:h-min {
    height: -moz-min-content;
    height: min-content;
  }
  .md\:h-modal {
    height: calc(100% - 2rem);
  }
  .md\:h-navbar-admin-lg {
    height: 136px;
  }
  .md\:h-navbar-admin-sm {
    height: 100px;
  }
  .md\:h-navbar-full-lg {
    height: 140px;
  }
  .md\:h-navbar-full-sm {
    height: 100px;
  }
  .md\:h-navbar-lg {
    height: 96px;
  }
  .md\:h-navbar-sm {
    height: 60px;
  }
  .md\:h-px {
    height: 1px;
  }
  .md\:h-screen {
    height: 100vh;
  }
  .md\:h-sm {
    height: 0.5rem;
  }
  .md\:h-svh {
    height: 100svh;
  }
  .md\:h-xl {
    height: 4rem;
  }
  .md\:h-xs {
    height: 0.25rem;
  }
  .md\:min-h-0 {
    min-height: 0px;
  }
  .md\:min-h-0\.5 {
    min-height: 0.125rem;
  }
  .md\:min-h-1 {
    min-height: 0.25rem;
  }
  .md\:min-h-1\.5 {
    min-height: 0.375rem;
  }
  .md\:min-h-10 {
    min-height: 2.5rem;
  }
  .md\:min-h-11 {
    min-height: 2.75rem;
  }
  .md\:min-h-12 {
    min-height: 3rem;
  }
  .md\:min-h-14 {
    min-height: 3.5rem;
  }
  .md\:min-h-16 {
    min-height: 4rem;
  }
  .md\:min-h-2 {
    min-height: 0.5rem;
  }
  .md\:min-h-2\.5 {
    min-height: 0.625rem;
  }
  .md\:min-h-20 {
    min-height: 5rem;
  }
  .md\:min-h-24 {
    min-height: 6rem;
  }
  .md\:min-h-28 {
    min-height: 7rem;
  }
  .md\:min-h-3 {
    min-height: 0.75rem;
  }
  .md\:min-h-3\.5 {
    min-height: 0.875rem;
  }
  .md\:min-h-32 {
    min-height: 8rem;
  }
  .md\:min-h-36 {
    min-height: 9rem;
  }
  .md\:min-h-4 {
    min-height: 1rem;
  }
  .md\:min-h-40 {
    min-height: 10rem;
  }
  .md\:min-h-44 {
    min-height: 11rem;
  }
  .md\:min-h-48 {
    min-height: 12rem;
  }
  .md\:min-h-5 {
    min-height: 1.25rem;
  }
  .md\:min-h-52 {
    min-height: 13rem;
  }
  .md\:min-h-56 {
    min-height: 14rem;
  }
  .md\:min-h-6 {
    min-height: 1.5rem;
  }
  .md\:min-h-60 {
    min-height: 15rem;
  }
  .md\:min-h-64 {
    min-height: 16rem;
  }
  .md\:min-h-7 {
    min-height: 1.75rem;
  }
  .md\:min-h-72 {
    min-height: 18rem;
  }
  .md\:min-h-8 {
    min-height: 2rem;
  }
  .md\:min-h-80 {
    min-height: 20rem;
  }
  .md\:min-h-9 {
    min-height: 2.25rem;
  }
  .md\:min-h-96 {
    min-height: 24rem;
  }
  .md\:min-h-dvh {
    min-height: 100dvh;
  }
  .md\:min-h-fit {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .md\:min-h-full {
    min-height: 100%;
  }
  .md\:min-h-lg {
    min-height: 2rem;
  }
  .md\:min-h-lvh {
    min-height: 100lvh;
  }
  .md\:min-h-max {
    min-height: -moz-max-content;
    min-height: max-content;
  }
  .md\:min-h-md {
    min-height: 1rem;
  }
  .md\:min-h-min {
    min-height: -moz-min-content;
    min-height: min-content;
  }
  .md\:min-h-navbar-admin-lg {
    min-height: 136px;
  }
  .md\:min-h-navbar-admin-sm {
    min-height: 100px;
  }
  .md\:min-h-navbar-full-lg {
    min-height: 140px;
  }
  .md\:min-h-navbar-full-sm {
    min-height: 100px;
  }
  .md\:min-h-navbar-lg {
    min-height: 96px;
  }
  .md\:min-h-navbar-sm {
    min-height: 60px;
  }
  .md\:min-h-px {
    min-height: 1px;
  }
  .md\:min-h-screen {
    min-height: 100vh;
  }
  .md\:min-h-sm {
    min-height: 0.5rem;
  }
  .md\:min-h-svh {
    min-height: 100svh;
  }
  .md\:min-h-xl {
    min-height: 4rem;
  }
  .md\:min-h-xs {
    min-height: 0.25rem;
  }
  .md\:w-0 {
    width: 0px;
  }
  .md\:w-0\.5 {
    width: 0.125rem;
  }
  .md\:w-1 {
    width: 0.25rem;
  }
  .md\:w-1\.5 {
    width: 0.375rem;
  }
  .md\:w-1\/12 {
    width: 8.333333%;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:w-1\/3 {
    width: 33.333333%;
  }
  .md\:w-1\/4 {
    width: 25%;
  }
  .md\:w-1\/5 {
    width: 20%;
  }
  .md\:w-1\/6 {
    width: 16.666667%;
  }
  .md\:w-10 {
    width: 2.5rem;
  }
  .md\:w-10\/12 {
    width: 83.333333%;
  }
  .md\:w-11 {
    width: 2.75rem;
  }
  .md\:w-11\/12 {
    width: 91.666667%;
  }
  .md\:w-12 {
    width: 3rem;
  }
  .md\:w-14 {
    width: 3.5rem;
  }
  .md\:w-16 {
    width: 4rem;
  }
  .md\:w-2 {
    width: 0.5rem;
  }
  .md\:w-2\.5 {
    width: 0.625rem;
  }
  .md\:w-2\/12 {
    width: 16.666667%;
  }
  .md\:w-2\/3 {
    width: 66.666667%;
  }
  .md\:w-2\/4 {
    width: 50%;
  }
  .md\:w-2\/5 {
    width: 40%;
  }
  .md\:w-2\/6 {
    width: 33.333333%;
  }
  .md\:w-20 {
    width: 5rem;
  }
  .md\:w-24 {
    width: 6rem;
  }
  .md\:w-28 {
    width: 7rem;
  }
  .md\:w-3 {
    width: 0.75rem;
  }
  .md\:w-3\.5 {
    width: 0.875rem;
  }
  .md\:w-3\/12 {
    width: 25%;
  }
  .md\:w-3\/4 {
    width: 75%;
  }
  .md\:w-3\/5 {
    width: 60%;
  }
  .md\:w-3\/6 {
    width: 50%;
  }
  .md\:w-32 {
    width: 8rem;
  }
  .md\:w-36 {
    width: 9rem;
  }
  .md\:w-4 {
    width: 1rem;
  }
  .md\:w-4\/12 {
    width: 33.333333%;
  }
  .md\:w-4\/5 {
    width: 80%;
  }
  .md\:w-4\/6 {
    width: 66.666667%;
  }
  .md\:w-40 {
    width: 10rem;
  }
  .md\:w-44 {
    width: 11rem;
  }
  .md\:w-48 {
    width: 12rem;
  }
  .md\:w-5 {
    width: 1.25rem;
  }
  .md\:w-5\/12 {
    width: 41.666667%;
  }
  .md\:w-5\/6 {
    width: 83.333333%;
  }
  .md\:w-52 {
    width: 13rem;
  }
  .md\:w-56 {
    width: 14rem;
  }
  .md\:w-6 {
    width: 1.5rem;
  }
  .md\:w-6\/12 {
    width: 50%;
  }
  .md\:w-60 {
    width: 15rem;
  }
  .md\:w-64 {
    width: 16rem;
  }
  .md\:w-7 {
    width: 1.75rem;
  }
  .md\:w-7\/12 {
    width: 58.333333%;
  }
  .md\:w-72 {
    width: 18rem;
  }
  .md\:w-8 {
    width: 2rem;
  }
  .md\:w-8\/12 {
    width: 66.666667%;
  }
  .md\:w-80 {
    width: 20rem;
  }
  .md\:w-9 {
    width: 2.25rem;
  }
  .md\:w-9\/12 {
    width: 75%;
  }
  .md\:w-96 {
    width: 24rem;
  }
  .md\:w-\[100px\] {
    width: 100px;
  }
  .md\:w-\[380px\] {
    width: 380px;
  }
  .md\:w-auto {
    width: auto;
  }
  .md\:w-dvw {
    width: 100dvw;
  }
  .md\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:w-lg {
    width: 2rem;
  }
  .md\:w-lvw {
    width: 100lvw;
  }
  .md\:w-max {
    width: -moz-max-content;
    width: max-content;
  }
  .md\:w-md {
    width: 1rem;
  }
  .md\:w-min {
    width: -moz-min-content;
    width: min-content;
  }
  .md\:w-navbar-admin-lg {
    width: 136px;
  }
  .md\:w-navbar-admin-sm {
    width: 100px;
  }
  .md\:w-navbar-full-lg {
    width: 140px;
  }
  .md\:w-navbar-full-sm {
    width: 100px;
  }
  .md\:w-navbar-lg {
    width: 96px;
  }
  .md\:w-navbar-sm {
    width: 60px;
  }
  .md\:w-px {
    width: 1px;
  }
  .md\:w-screen {
    width: 100vw;
  }
  .md\:w-sm {
    width: 0.5rem;
  }
  .md\:w-svw {
    width: 100svw;
  }
  .md\:w-xl {
    width: 4rem;
  }
  .md\:w-xs {
    width: 0.25rem;
  }
  .md\:min-w-0 {
    min-width: 0px;
  }
  .md\:min-w-0\.5 {
    min-width: 0.125rem;
  }
  .md\:min-w-1 {
    min-width: 0.25rem;
  }
  .md\:min-w-1\.5 {
    min-width: 0.375rem;
  }
  .md\:min-w-10 {
    min-width: 2.5rem;
  }
  .md\:min-w-11 {
    min-width: 2.75rem;
  }
  .md\:min-w-12 {
    min-width: 3rem;
  }
  .md\:min-w-14 {
    min-width: 3.5rem;
  }
  .md\:min-w-16 {
    min-width: 4rem;
  }
  .md\:min-w-2 {
    min-width: 0.5rem;
  }
  .md\:min-w-2\.5 {
    min-width: 0.625rem;
  }
  .md\:min-w-20 {
    min-width: 5rem;
  }
  .md\:min-w-24 {
    min-width: 6rem;
  }
  .md\:min-w-28 {
    min-width: 7rem;
  }
  .md\:min-w-3 {
    min-width: 0.75rem;
  }
  .md\:min-w-3\.5 {
    min-width: 0.875rem;
  }
  .md\:min-w-32 {
    min-width: 8rem;
  }
  .md\:min-w-36 {
    min-width: 9rem;
  }
  .md\:min-w-4 {
    min-width: 1rem;
  }
  .md\:min-w-40 {
    min-width: 10rem;
  }
  .md\:min-w-44 {
    min-width: 11rem;
  }
  .md\:min-w-48 {
    min-width: 12rem;
  }
  .md\:min-w-5 {
    min-width: 1.25rem;
  }
  .md\:min-w-52 {
    min-width: 13rem;
  }
  .md\:min-w-56 {
    min-width: 14rem;
  }
  .md\:min-w-6 {
    min-width: 1.5rem;
  }
  .md\:min-w-60 {
    min-width: 15rem;
  }
  .md\:min-w-64 {
    min-width: 16rem;
  }
  .md\:min-w-7 {
    min-width: 1.75rem;
  }
  .md\:min-w-72 {
    min-width: 18rem;
  }
  .md\:min-w-8 {
    min-width: 2rem;
  }
  .md\:min-w-80 {
    min-width: 20rem;
  }
  .md\:min-w-9 {
    min-width: 2.25rem;
  }
  .md\:min-w-96 {
    min-width: 24rem;
  }
  .md\:min-w-fit {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .md\:min-w-full {
    min-width: 100%;
  }
  .md\:min-w-lg {
    min-width: 2rem;
  }
  .md\:min-w-max {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .md\:min-w-md {
    min-width: 1rem;
  }
  .md\:min-w-min {
    min-width: -moz-min-content;
    min-width: min-content;
  }
  .md\:min-w-navbar-admin-lg {
    min-width: 136px;
  }
  .md\:min-w-navbar-admin-sm {
    min-width: 100px;
  }
  .md\:min-w-navbar-full-lg {
    min-width: 140px;
  }
  .md\:min-w-navbar-full-sm {
    min-width: 100px;
  }
  .md\:min-w-navbar-lg {
    min-width: 96px;
  }
  .md\:min-w-navbar-sm {
    min-width: 60px;
  }
  .md\:min-w-px {
    min-width: 1px;
  }
  .md\:min-w-sm {
    min-width: 0.5rem;
  }
  .md\:min-w-xl {
    min-width: 4rem;
  }
  .md\:min-w-xs {
    min-width: 0.25rem;
  }
  .md\:max-w-\[200px\] {
    max-width: 200px;
  }
  .md\:max-w-\[50px\] {
    max-width: 50px;
  }
  .md\:flex-1 {
    flex: 1 1 0%;
  }
  .md\:flex-2 {
    flex: 2 2 0%;
  }
  .md\:flex-grow {
    flex-grow: 1;
  }
  .md\:columns-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .md\:break-inside-avoid {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
  .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\:flex-wrap {
    flex-wrap: wrap;
  }
  .md\:items-start {
    align-items: flex-start;
  }
  .md\:items-baseline {
    align-items: baseline;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:gap-lg {
    gap: 2rem;
  }
  .md\:gap-md {
    gap: 1rem;
  }
  .md\:space-x-md > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:self-center {
    align-self: center;
  }
  .md\:self-baseline {
    align-self: baseline;
  }
  .md\:border-b-0 {
    border-bottom-width: 0px;
  }
  .md\:bg-contain {
    background-size: contain;
  }
  .md\:bg-right-bottom {
    background-position: right bottom;
  }
  .md\:p-0 {
    padding: 0px;
  }
  .md\:p-lg {
    padding: 2rem;
  }
  .md\:p-md {
    padding: 1rem;
  }
  .md\:px-lg {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:px-md {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .md\:py-sm {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .md\:pb-md {
    padding-bottom: 1rem;
  }
  .md\:pb-xl {
    padding-bottom: 4rem;
  }
  .md\:pl-44 {
    padding-left: 11rem;
  }
  .md\:pl-md {
    padding-left: 1rem;
  }
  .md\:pr-0 {
    padding-right: 0px;
  }
  .md\:pr-md {
    padding-right: 1rem;
  }
  .md\:pt-10 {
    padding-top: 2.5rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:italic {
    font-style: italic;
  }
  .md\:leading-tight {
    line-height: 1.25;
  }
  .md\:text-blue-gray {
    --tw-text-opacity: 1;
    color: rgb(59 63 92 / var(--tw-text-opacity));
  }
  .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);
  }
  .md\:bg-header-organization {
    background-image: -webkit-image-set(
      url(/assets/organization_registration_header_image-39f23986010dc18c0a59c84cde1ed040855dd89dbe204cb40c45e8ad6a97dfec.png) 1x,
      url(/assets/organization_registration_header_image@2x-172e548f27ffe04a0df0642abca1fe4736aea35119320ea378163220fc642f08.png) 2x,
      url(/assets/organization_registration_header_image@3x-52689cfc1c5fd956558071ecabbb70b163e37b4ab201bfbddd325c7aef2517ee.png) 3x
    );
    background-image: image-set(
      url(/assets/organization_registration_header_image-39f23986010dc18c0a59c84cde1ed040855dd89dbe204cb40c45e8ad6a97dfec.png) 1x,
      url(/assets/organization_registration_header_image@2x-172e548f27ffe04a0df0642abca1fe4736aea35119320ea378163220fc642f08.png) 2x,
      url(/assets/organization_registration_header_image@3x-52689cfc1c5fd956558071ecabbb70b163e37b4ab201bfbddd325c7aef2517ee.png) 3x
    );
  }

  .md\:bg-header-individual {
    background-image: -webkit-image-set(
      url(/assets/individual_registration_header_image-433291b80c5876f1c7cf19b867dd36ef811110ecb4e19ae8215e88c3cd7042f7.png) 1x,
      url(/assets/individual_registration_header_image@2x-cbbbb88647e6cb82332a29f1415037b93aa2372e5efd72ffc8a2f2fee2a5cb1c.png) 2x,
      url(/assets/individual_registration_header_image@3x-940afba522af2006abb2fa480a564b30d8517e3c1a8fc9e2a10ab3b509818a25.png) 3x
    );
    background-image: image-set(
      url(/assets/individual_registration_header_image-433291b80c5876f1c7cf19b867dd36ef811110ecb4e19ae8215e88c3cd7042f7.png) 1x,
      url(/assets/individual_registration_header_image@2x-cbbbb88647e6cb82332a29f1415037b93aa2372e5efd72ffc8a2f2fee2a5cb1c.png) 2x,
      url(/assets/individual_registration_header_image@3x-940afba522af2006abb2fa480a564b30d8517e3c1a8fc9e2a10ab3b509818a25.png) 3x
    );
  }
}
@media (min-width: 1024px) {
  .lg\:static {
    position: static;
  }
  .lg\:-bottom-lg {
    bottom: -2rem;
  }
  .lg\:left-\[15\%\] {
    left: 15%;
  }
  .lg\:right-\[15\%\] {
    right: 15%;
  }
  .lg\:top-10 {
    top: 2.5rem;
  }
  .lg\:top-lg {
    top: 2rem;
  }
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .lg\:col-span-9 {
    grid-column: span 9 / span 9;
  }
  .lg\:col-start-1 {
    grid-column-start: 1;
  }
  .lg\:col-start-7 {
    grid-column-start: 7;
  }
  .lg\:col-start-9 {
    grid-column-start: 9;
  }
  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .lg\:mx-sm {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .lg\:my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .lg\:my-lg {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .lg\:\!mb-0 {
    margin-bottom: 0px !important;
  }
  .lg\:mb-0 {
    margin-bottom: 0px;
  }
  .lg\:mb-lg {
    margin-bottom: 2rem;
  }
  .lg\:mb-md {
    margin-bottom: 1rem;
  }
  .lg\:mb-sm {
    margin-bottom: 0.5rem;
  }
  .lg\:ml-0 {
    margin-left: 0px;
  }
  .lg\:ml-auto {
    margin-left: auto;
  }
  .lg\:ml-md {
    margin-left: 1rem;
  }
  .lg\:mr-\[0\.5em\] {
    margin-right: 0.5em;
  }
  .lg\:mr-md {
    margin-right: 1rem;
  }
  .lg\:mt-0 {
    margin-top: 0px;
  }
  .lg\:mt-20 {
    margin-top: 5rem;
  }
  .lg\:mt-lg {
    margin-top: 2rem;
  }
  .lg\:block {
    display: block;
  }
  .lg\:inline-block {
    display: inline-block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:h-0 {
    height: 0px;
  }
  .lg\:h-0\.5 {
    height: 0.125rem;
  }
  .lg\:h-1 {
    height: 0.25rem;
  }
  .lg\:h-1\.5 {
    height: 0.375rem;
  }
  .lg\:h-1\/2 {
    height: 50%;
  }
  .lg\:h-1\/3 {
    height: 33.333333%;
  }
  .lg\:h-1\/4 {
    height: 25%;
  }
  .lg\:h-1\/5 {
    height: 20%;
  }
  .lg\:h-1\/6 {
    height: 16.666667%;
  }
  .lg\:h-10 {
    height: 2.5rem;
  }
  .lg\:h-11 {
    height: 2.75rem;
  }
  .lg\:h-12 {
    height: 3rem;
  }
  .lg\:h-14 {
    height: 3.5rem;
  }
  .lg\:h-16 {
    height: 4rem;
  }
  .lg\:h-2 {
    height: 0.5rem;
  }
  .lg\:h-2\.5 {
    height: 0.625rem;
  }
  .lg\:h-2\/3 {
    height: 66.666667%;
  }
  .lg\:h-2\/4 {
    height: 50%;
  }
  .lg\:h-2\/5 {
    height: 40%;
  }
  .lg\:h-2\/6 {
    height: 33.333333%;
  }
  .lg\:h-20 {
    height: 5rem;
  }
  .lg\:h-24 {
    height: 6rem;
  }
  .lg\:h-28 {
    height: 7rem;
  }
  .lg\:h-3 {
    height: 0.75rem;
  }
  .lg\:h-3\.5 {
    height: 0.875rem;
  }
  .lg\:h-3\/4 {
    height: 75%;
  }
  .lg\:h-3\/5 {
    height: 60%;
  }
  .lg\:h-3\/6 {
    height: 50%;
  }
  .lg\:h-32 {
    height: 8rem;
  }
  .lg\:h-36 {
    height: 9rem;
  }
  .lg\:h-4 {
    height: 1rem;
  }
  .lg\:h-4\/5 {
    height: 80%;
  }
  .lg\:h-4\/6 {
    height: 66.666667%;
  }
  .lg\:h-40 {
    height: 10rem;
  }
  .lg\:h-44 {
    height: 11rem;
  }
  .lg\:h-48 {
    height: 12rem;
  }
  .lg\:h-5 {
    height: 1.25rem;
  }
  .lg\:h-5\/6 {
    height: 83.333333%;
  }
  .lg\:h-52 {
    height: 13rem;
  }
  .lg\:h-56 {
    height: 14rem;
  }
  .lg\:h-6 {
    height: 1.5rem;
  }
  .lg\:h-60 {
    height: 15rem;
  }
  .lg\:h-64 {
    height: 16rem;
  }
  .lg\:h-7 {
    height: 1.75rem;
  }
  .lg\:h-72 {
    height: 18rem;
  }
  .lg\:h-8 {
    height: 2rem;
  }
  .lg\:h-80 {
    height: 20rem;
  }
  .lg\:h-9 {
    height: 2.25rem;
  }
  .lg\:h-96 {
    height: 24rem;
  }
  .lg\:h-auto {
    height: auto;
  }
  .lg\:h-dvh {
    height: 100dvh;
  }
  .lg\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }
  .lg\:h-full {
    height: 100%;
  }
  .lg\:h-lg {
    height: 2rem;
  }
  .lg\:h-lvh {
    height: 100lvh;
  }
  .lg\:h-max {
    height: -moz-max-content;
    height: max-content;
  }
  .lg\:h-md {
    height: 1rem;
  }
  .lg\:h-min {
    height: -moz-min-content;
    height: min-content;
  }
  .lg\:h-modal {
    height: calc(100% - 2rem);
  }
  .lg\:h-navbar-admin-lg {
    height: 136px;
  }
  .lg\:h-navbar-admin-sm {
    height: 100px;
  }
  .lg\:h-navbar-full-lg {
    height: 140px;
  }
  .lg\:h-navbar-full-sm {
    height: 100px;
  }
  .lg\:h-navbar-lg {
    height: 96px;
  }
  .lg\:h-navbar-sm {
    height: 60px;
  }
  .lg\:h-px {
    height: 1px;
  }
  .lg\:h-screen {
    height: 100vh;
  }
  .lg\:h-sm {
    height: 0.5rem;
  }
  .lg\:h-svh {
    height: 100svh;
  }
  .lg\:h-xl {
    height: 4rem;
  }
  .lg\:h-xs {
    height: 0.25rem;
  }
  .lg\:min-h-0 {
    min-height: 0px;
  }
  .lg\:min-h-0\.5 {
    min-height: 0.125rem;
  }
  .lg\:min-h-1 {
    min-height: 0.25rem;
  }
  .lg\:min-h-1\.5 {
    min-height: 0.375rem;
  }
  .lg\:min-h-10 {
    min-height: 2.5rem;
  }
  .lg\:min-h-11 {
    min-height: 2.75rem;
  }
  .lg\:min-h-12 {
    min-height: 3rem;
  }
  .lg\:min-h-14 {
    min-height: 3.5rem;
  }
  .lg\:min-h-16 {
    min-height: 4rem;
  }
  .lg\:min-h-2 {
    min-height: 0.5rem;
  }
  .lg\:min-h-2\.5 {
    min-height: 0.625rem;
  }
  .lg\:min-h-20 {
    min-height: 5rem;
  }
  .lg\:min-h-24 {
    min-height: 6rem;
  }
  .lg\:min-h-28 {
    min-height: 7rem;
  }
  .lg\:min-h-3 {
    min-height: 0.75rem;
  }
  .lg\:min-h-3\.5 {
    min-height: 0.875rem;
  }
  .lg\:min-h-32 {
    min-height: 8rem;
  }
  .lg\:min-h-36 {
    min-height: 9rem;
  }
  .lg\:min-h-4 {
    min-height: 1rem;
  }
  .lg\:min-h-40 {
    min-height: 10rem;
  }
  .lg\:min-h-44 {
    min-height: 11rem;
  }
  .lg\:min-h-48 {
    min-height: 12rem;
  }
  .lg\:min-h-5 {
    min-height: 1.25rem;
  }
  .lg\:min-h-52 {
    min-height: 13rem;
  }
  .lg\:min-h-56 {
    min-height: 14rem;
  }
  .lg\:min-h-6 {
    min-height: 1.5rem;
  }
  .lg\:min-h-60 {
    min-height: 15rem;
  }
  .lg\:min-h-64 {
    min-height: 16rem;
  }
  .lg\:min-h-7 {
    min-height: 1.75rem;
  }
  .lg\:min-h-72 {
    min-height: 18rem;
  }
  .lg\:min-h-8 {
    min-height: 2rem;
  }
  .lg\:min-h-80 {
    min-height: 20rem;
  }
  .lg\:min-h-9 {
    min-height: 2.25rem;
  }
  .lg\:min-h-96 {
    min-height: 24rem;
  }
  .lg\:min-h-dvh {
    min-height: 100dvh;
  }
  .lg\:min-h-fit {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .lg\:min-h-full {
    min-height: 100%;
  }
  .lg\:min-h-lg {
    min-height: 2rem;
  }
  .lg\:min-h-lvh {
    min-height: 100lvh;
  }
  .lg\:min-h-max {
    min-height: -moz-max-content;
    min-height: max-content;
  }
  .lg\:min-h-md {
    min-height: 1rem;
  }
  .lg\:min-h-min {
    min-height: -moz-min-content;
    min-height: min-content;
  }
  .lg\:min-h-navbar-admin-lg {
    min-height: 136px;
  }
  .lg\:min-h-navbar-admin-sm {
    min-height: 100px;
  }
  .lg\:min-h-navbar-full-lg {
    min-height: 140px;
  }
  .lg\:min-h-navbar-full-sm {
    min-height: 100px;
  }
  .lg\:min-h-navbar-lg {
    min-height: 96px;
  }
  .lg\:min-h-navbar-sm {
    min-height: 60px;
  }
  .lg\:min-h-px {
    min-height: 1px;
  }
  .lg\:min-h-screen {
    min-height: 100vh;
  }
  .lg\:min-h-sm {
    min-height: 0.5rem;
  }
  .lg\:min-h-svh {
    min-height: 100svh;
  }
  .lg\:min-h-xl {
    min-height: 4rem;
  }
  .lg\:min-h-xs {
    min-height: 0.25rem;
  }
  .lg\:w-0 {
    width: 0px;
  }
  .lg\:w-0\.5 {
    width: 0.125rem;
  }
  .lg\:w-1 {
    width: 0.25rem;
  }
  .lg\:w-1\.5 {
    width: 0.375rem;
  }
  .lg\:w-1\/12 {
    width: 8.333333%;
  }
  .lg\:w-1\/2 {
    width: 50%;
  }
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  .lg\:w-1\/4 {
    width: 25%;
  }
  .lg\:w-1\/5 {
    width: 20%;
  }
  .lg\:w-1\/6 {
    width: 16.666667%;
  }
  .lg\:w-10 {
    width: 2.5rem;
  }
  .lg\:w-10\/12 {
    width: 83.333333%;
  }
  .lg\:w-11 {
    width: 2.75rem;
  }
  .lg\:w-11\/12 {
    width: 91.666667%;
  }
  .lg\:w-12 {
    width: 3rem;
  }
  .lg\:w-14 {
    width: 3.5rem;
  }
  .lg\:w-16 {
    width: 4rem;
  }
  .lg\:w-2 {
    width: 0.5rem;
  }
  .lg\:w-2\.5 {
    width: 0.625rem;
  }
  .lg\:w-2\/12 {
    width: 16.666667%;
  }
  .lg\:w-2\/3 {
    width: 66.666667%;
  }
  .lg\:w-2\/4 {
    width: 50%;
  }
  .lg\:w-2\/5 {
    width: 40%;
  }
  .lg\:w-2\/6 {
    width: 33.333333%;
  }
  .lg\:w-20 {
    width: 5rem;
  }
  .lg\:w-24 {
    width: 6rem;
  }
  .lg\:w-28 {
    width: 7rem;
  }
  .lg\:w-3 {
    width: 0.75rem;
  }
  .lg\:w-3\.5 {
    width: 0.875rem;
  }
  .lg\:w-3\/12 {
    width: 25%;
  }
  .lg\:w-3\/4 {
    width: 75%;
  }
  .lg\:w-3\/5 {
    width: 60%;
  }
  .lg\:w-3\/6 {
    width: 50%;
  }
  .lg\:w-32 {
    width: 8rem;
  }
  .lg\:w-36 {
    width: 9rem;
  }
  .lg\:w-4 {
    width: 1rem;
  }
  .lg\:w-4\/12 {
    width: 33.333333%;
  }
  .lg\:w-4\/5 {
    width: 80%;
  }
  .lg\:w-4\/6 {
    width: 66.666667%;
  }
  .lg\:w-40 {
    width: 10rem;
  }
  .lg\:w-44 {
    width: 11rem;
  }
  .lg\:w-48 {
    width: 12rem;
  }
  .lg\:w-5 {
    width: 1.25rem;
  }
  .lg\:w-5\/12 {
    width: 41.666667%;
  }
  .lg\:w-5\/6 {
    width: 83.333333%;
  }
  .lg\:w-52 {
    width: 13rem;
  }
  .lg\:w-56 {
    width: 14rem;
  }
  .lg\:w-6 {
    width: 1.5rem;
  }
  .lg\:w-6\/12 {
    width: 50%;
  }
  .lg\:w-60 {
    width: 15rem;
  }
  .lg\:w-64 {
    width: 16rem;
  }
  .lg\:w-7 {
    width: 1.75rem;
  }
  .lg\:w-7\/12 {
    width: 58.333333%;
  }
  .lg\:w-72 {
    width: 18rem;
  }
  .lg\:w-8 {
    width: 2rem;
  }
  .lg\:w-8\/12 {
    width: 66.666667%;
  }
  .lg\:w-80 {
    width: 20rem;
  }
  .lg\:w-9 {
    width: 2.25rem;
  }
  .lg\:w-9\/12 {
    width: 75%;
  }
  .lg\:w-96 {
    width: 24rem;
  }
  .lg\:w-\[115px\] {
    width: 115px;
  }
  .lg\:w-\[150px\] {
    width: 150px;
  }
  .lg\:w-\[180px\] {
    width: 180px;
  }
  .lg\:w-\[480px\] {
    width: 480px;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:w-dvw {
    width: 100dvw;
  }
  .lg\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }
  .lg\:w-full {
    width: 100%;
  }
  .lg\:w-lg {
    width: 2rem;
  }
  .lg\:w-lvw {
    width: 100lvw;
  }
  .lg\:w-max {
    width: -moz-max-content;
    width: max-content;
  }
  .lg\:w-md {
    width: 1rem;
  }
  .lg\:w-min {
    width: -moz-min-content;
    width: min-content;
  }
  .lg\:w-navbar-admin-lg {
    width: 136px;
  }
  .lg\:w-navbar-admin-sm {
    width: 100px;
  }
  .lg\:w-navbar-full-lg {
    width: 140px;
  }
  .lg\:w-navbar-full-sm {
    width: 100px;
  }
  .lg\:w-navbar-lg {
    width: 96px;
  }
  .lg\:w-navbar-sm {
    width: 60px;
  }
  .lg\:w-px {
    width: 1px;
  }
  .lg\:w-screen {
    width: 100vw;
  }
  .lg\:w-sm {
    width: 0.5rem;
  }
  .lg\:w-svw {
    width: 100svw;
  }
  .lg\:w-xl {
    width: 4rem;
  }
  .lg\:w-xs {
    width: 0.25rem;
  }
  .lg\:min-w-0 {
    min-width: 0px;
  }
  .lg\:min-w-0\.5 {
    min-width: 0.125rem;
  }
  .lg\:min-w-1 {
    min-width: 0.25rem;
  }
  .lg\:min-w-1\.5 {
    min-width: 0.375rem;
  }
  .lg\:min-w-10 {
    min-width: 2.5rem;
  }
  .lg\:min-w-11 {
    min-width: 2.75rem;
  }
  .lg\:min-w-12 {
    min-width: 3rem;
  }
  .lg\:min-w-14 {
    min-width: 3.5rem;
  }
  .lg\:min-w-16 {
    min-width: 4rem;
  }
  .lg\:min-w-2 {
    min-width: 0.5rem;
  }
  .lg\:min-w-2\.5 {
    min-width: 0.625rem;
  }
  .lg\:min-w-20 {
    min-width: 5rem;
  }
  .lg\:min-w-24 {
    min-width: 6rem;
  }
  .lg\:min-w-28 {
    min-width: 7rem;
  }
  .lg\:min-w-3 {
    min-width: 0.75rem;
  }
  .lg\:min-w-3\.5 {
    min-width: 0.875rem;
  }
  .lg\:min-w-32 {
    min-width: 8rem;
  }
  .lg\:min-w-36 {
    min-width: 9rem;
  }
  .lg\:min-w-4 {
    min-width: 1rem;
  }
  .lg\:min-w-40 {
    min-width: 10rem;
  }
  .lg\:min-w-44 {
    min-width: 11rem;
  }
  .lg\:min-w-48 {
    min-width: 12rem;
  }
  .lg\:min-w-5 {
    min-width: 1.25rem;
  }
  .lg\:min-w-52 {
    min-width: 13rem;
  }
  .lg\:min-w-56 {
    min-width: 14rem;
  }
  .lg\:min-w-6 {
    min-width: 1.5rem;
  }
  .lg\:min-w-60 {
    min-width: 15rem;
  }
  .lg\:min-w-64 {
    min-width: 16rem;
  }
  .lg\:min-w-7 {
    min-width: 1.75rem;
  }
  .lg\:min-w-72 {
    min-width: 18rem;
  }
  .lg\:min-w-8 {
    min-width: 2rem;
  }
  .lg\:min-w-80 {
    min-width: 20rem;
  }
  .lg\:min-w-9 {
    min-width: 2.25rem;
  }
  .lg\:min-w-96 {
    min-width: 24rem;
  }
  .lg\:min-w-fit {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .lg\:min-w-full {
    min-width: 100%;
  }
  .lg\:min-w-lg {
    min-width: 2rem;
  }
  .lg\:min-w-max {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .lg\:min-w-md {
    min-width: 1rem;
  }
  .lg\:min-w-min {
    min-width: -moz-min-content;
    min-width: min-content;
  }
  .lg\:min-w-navbar-admin-lg {
    min-width: 136px;
  }
  .lg\:min-w-navbar-admin-sm {
    min-width: 100px;
  }
  .lg\:min-w-navbar-full-lg {
    min-width: 140px;
  }
  .lg\:min-w-navbar-full-sm {
    min-width: 100px;
  }
  .lg\:min-w-navbar-lg {
    min-width: 96px;
  }
  .lg\:min-w-navbar-sm {
    min-width: 60px;
  }
  .lg\:min-w-px {
    min-width: 1px;
  }
  .lg\:min-w-sm {
    min-width: 0.5rem;
  }
  .lg\:min-w-xl {
    min-width: 4rem;
  }
  .lg\:min-w-xs {
    min-width: 0.25rem;
  }
  .lg\:max-w-none {
    max-width: none;
  }
  .lg\:flex-1 {
    flex: 1 1 0%;
  }
  .lg\:flex-2 {
    flex: 2 2 0%;
  }
  .lg\:flex-grow {
    flex-grow: 1;
  }
  .lg\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 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));
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, 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\:flex-row {
    flex-direction: row;
  }
  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .lg\:flex-col {
    flex-direction: column;
  }
  .lg\:flex-wrap {
    flex-wrap: wrap;
  }
  .lg\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:items-baseline {
    align-items: baseline;
  }
  .lg\:justify-start {
    justify-content: flex-start;
  }
  .lg\:justify-end {
    justify-content: flex-end;
  }
  .lg\:gap-lg {
    gap: 2rem;
  }
  .lg\:gap-xl {
    gap: 4rem;
  }
  .lg\:rounded-none {
    border-radius: 0px;
  }
  .lg\:border-0 {
    border-width: 0px;
  }
  .lg\:border-l {
    border-left-width: 1px;
  }
  .lg\:border-t-0 {
    border-top-width: 0px;
  }
  .lg\:border-l-gray-dark {
    --tw-border-opacity: 1;
    border-left-color: rgb(51 51 51 / var(--tw-border-opacity));
  }
  .lg\:bg-transparent {
    background-color: transparent;
  }
  .lg\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }
  .lg\:p-lg {
    padding: 2rem;
  }
  .lg\:p-md {
    padding: 1rem;
  }
  .lg\:px-md {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .lg\:py-lg {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .lg\:pb-lg {
    padding-bottom: 2rem;
  }
  .lg\:pl-52 {
    padding-left: 13rem;
  }
  .lg\:pl-lg {
    padding-left: 2rem;
  }
  .lg\:pl-md {
    padding-left: 1rem;
  }
  .lg\:pt-0 {
    padding-top: 0px;
  }
  .lg\:pt-12 {
    padding-top: 3rem;
  }
  .lg\:pt-xl {
    padding-top: 4rem;
  }
  .lg\:text-center {
    text-align: center;
  }
  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .lg\:font-bold {
    font-weight: 700;
  }
  .lg\:leading-tight {
    line-height: 1.25;
  }
  .lg\:text-primary {
    --tw-text-opacity: 1;
    color: rgb(38 107 53 / var(--tw-text-opacity));
  }
  .lg\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
  .lg\:opacity-100 {
    opacity: 1;
  }
  .lg\: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);
  }
  .lg\:blur-none {
    --tw-blur: blur(0);
    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);
  }
  .lg\:hover\:text-primary:hover {
    --tw-text-opacity: 1;
    color: rgb(38 107 53 / var(--tw-text-opacity));
  }
}
@media (min-width: 1280px) {
  .xl\:left-\[20\%\] {
    left: 20%;
  }
  .xl\:right-\[20\%\] {
    right: 20%;
  }
  .xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .xl\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  .xl\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .xl\:col-start-7 {
    grid-column-start: 7;
  }
  .xl\:mx-md {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .xl\:ml-lg {
    margin-left: 2rem;
  }
  .xl\:h-0 {
    height: 0px;
  }
  .xl\:h-0\.5 {
    height: 0.125rem;
  }
  .xl\:h-1 {
    height: 0.25rem;
  }
  .xl\:h-1\.5 {
    height: 0.375rem;
  }
  .xl\:h-1\/2 {
    height: 50%;
  }
  .xl\:h-1\/3 {
    height: 33.333333%;
  }
  .xl\:h-1\/4 {
    height: 25%;
  }
  .xl\:h-1\/5 {
    height: 20%;
  }
  .xl\:h-1\/6 {
    height: 16.666667%;
  }
  .xl\:h-10 {
    height: 2.5rem;
  }
  .xl\:h-11 {
    height: 2.75rem;
  }
  .xl\:h-12 {
    height: 3rem;
  }
  .xl\:h-14 {
    height: 3.5rem;
  }
  .xl\:h-16 {
    height: 4rem;
  }
  .xl\:h-2 {
    height: 0.5rem;
  }
  .xl\:h-2\.5 {
    height: 0.625rem;
  }
  .xl\:h-2\/3 {
    height: 66.666667%;
  }
  .xl\:h-2\/4 {
    height: 50%;
  }
  .xl\:h-2\/5 {
    height: 40%;
  }
  .xl\:h-2\/6 {
    height: 33.333333%;
  }
  .xl\:h-20 {
    height: 5rem;
  }
  .xl\:h-24 {
    height: 6rem;
  }
  .xl\:h-28 {
    height: 7rem;
  }
  .xl\:h-3 {
    height: 0.75rem;
  }
  .xl\:h-3\.5 {
    height: 0.875rem;
  }
  .xl\:h-3\/4 {
    height: 75%;
  }
  .xl\:h-3\/5 {
    height: 60%;
  }
  .xl\:h-3\/6 {
    height: 50%;
  }
  .xl\:h-32 {
    height: 8rem;
  }
  .xl\:h-36 {
    height: 9rem;
  }
  .xl\:h-4 {
    height: 1rem;
  }
  .xl\:h-4\/5 {
    height: 80%;
  }
  .xl\:h-4\/6 {
    height: 66.666667%;
  }
  .xl\:h-40 {
    height: 10rem;
  }
  .xl\:h-44 {
    height: 11rem;
  }
  .xl\:h-48 {
    height: 12rem;
  }
  .xl\:h-5 {
    height: 1.25rem;
  }
  .xl\:h-5\/6 {
    height: 83.333333%;
  }
  .xl\:h-52 {
    height: 13rem;
  }
  .xl\:h-56 {
    height: 14rem;
  }
  .xl\:h-6 {
    height: 1.5rem;
  }
  .xl\:h-60 {
    height: 15rem;
  }
  .xl\:h-64 {
    height: 16rem;
  }
  .xl\:h-7 {
    height: 1.75rem;
  }
  .xl\:h-72 {
    height: 18rem;
  }
  .xl\:h-8 {
    height: 2rem;
  }
  .xl\:h-80 {
    height: 20rem;
  }
  .xl\:h-9 {
    height: 2.25rem;
  }
  .xl\:h-96 {
    height: 24rem;
  }
  .xl\:h-auto {
    height: auto;
  }
  .xl\:h-dvh {
    height: 100dvh;
  }
  .xl\:h-fit {
    height: -moz-fit-content;
    height: fit-content;
  }
  .xl\:h-full {
    height: 100%;
  }
  .xl\:h-lg {
    height: 2rem;
  }
  .xl\:h-lvh {
    height: 100lvh;
  }
  .xl\:h-max {
    height: -moz-max-content;
    height: max-content;
  }
  .xl\:h-md {
    height: 1rem;
  }
  .xl\:h-min {
    height: -moz-min-content;
    height: min-content;
  }
  .xl\:h-modal {
    height: calc(100% - 2rem);
  }
  .xl\:h-navbar-admin-lg {
    height: 136px;
  }
  .xl\:h-navbar-admin-sm {
    height: 100px;
  }
  .xl\:h-navbar-full-lg {
    height: 140px;
  }
  .xl\:h-navbar-full-sm {
    height: 100px;
  }
  .xl\:h-navbar-lg {
    height: 96px;
  }
  .xl\:h-navbar-sm {
    height: 60px;
  }
  .xl\:h-px {
    height: 1px;
  }
  .xl\:h-screen {
    height: 100vh;
  }
  .xl\:h-sm {
    height: 0.5rem;
  }
  .xl\:h-svh {
    height: 100svh;
  }
  .xl\:h-xl {
    height: 4rem;
  }
  .xl\:h-xs {
    height: 0.25rem;
  }
  .xl\:min-h-0 {
    min-height: 0px;
  }
  .xl\:min-h-0\.5 {
    min-height: 0.125rem;
  }
  .xl\:min-h-1 {
    min-height: 0.25rem;
  }
  .xl\:min-h-1\.5 {
    min-height: 0.375rem;
  }
  .xl\:min-h-10 {
    min-height: 2.5rem;
  }
  .xl\:min-h-11 {
    min-height: 2.75rem;
  }
  .xl\:min-h-12 {
    min-height: 3rem;
  }
  .xl\:min-h-14 {
    min-height: 3.5rem;
  }
  .xl\:min-h-16 {
    min-height: 4rem;
  }
  .xl\:min-h-2 {
    min-height: 0.5rem;
  }
  .xl\:min-h-2\.5 {
    min-height: 0.625rem;
  }
  .xl\:min-h-20 {
    min-height: 5rem;
  }
  .xl\:min-h-24 {
    min-height: 6rem;
  }
  .xl\:min-h-28 {
    min-height: 7rem;
  }
  .xl\:min-h-3 {
    min-height: 0.75rem;
  }
  .xl\:min-h-3\.5 {
    min-height: 0.875rem;
  }
  .xl\:min-h-32 {
    min-height: 8rem;
  }
  .xl\:min-h-36 {
    min-height: 9rem;
  }
  .xl\:min-h-4 {
    min-height: 1rem;
  }
  .xl\:min-h-40 {
    min-height: 10rem;
  }
  .xl\:min-h-44 {
    min-height: 11rem;
  }
  .xl\:min-h-48 {
    min-height: 12rem;
  }
  .xl\:min-h-5 {
    min-height: 1.25rem;
  }
  .xl\:min-h-52 {
    min-height: 13rem;
  }
  .xl\:min-h-56 {
    min-height: 14rem;
  }
  .xl\:min-h-6 {
    min-height: 1.5rem;
  }
  .xl\:min-h-60 {
    min-height: 15rem;
  }
  .xl\:min-h-64 {
    min-height: 16rem;
  }
  .xl\:min-h-7 {
    min-height: 1.75rem;
  }
  .xl\:min-h-72 {
    min-height: 18rem;
  }
  .xl\:min-h-8 {
    min-height: 2rem;
  }
  .xl\:min-h-80 {
    min-height: 20rem;
  }
  .xl\:min-h-9 {
    min-height: 2.25rem;
  }
  .xl\:min-h-96 {
    min-height: 24rem;
  }
  .xl\:min-h-dvh {
    min-height: 100dvh;
  }
  .xl\:min-h-fit {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .xl\:min-h-full {
    min-height: 100%;
  }
  .xl\:min-h-lg {
    min-height: 2rem;
  }
  .xl\:min-h-lvh {
    min-height: 100lvh;
  }
  .xl\:min-h-max {
    min-height: -moz-max-content;
    min-height: max-content;
  }
  .xl\:min-h-md {
    min-height: 1rem;
  }
  .xl\:min-h-min {
    min-height: -moz-min-content;
    min-height: min-content;
  }
  .xl\:min-h-navbar-admin-lg {
    min-height: 136px;
  }
  .xl\:min-h-navbar-admin-sm {
    min-height: 100px;
  }
  .xl\:min-h-navbar-full-lg {
    min-height: 140px;
  }
  .xl\:min-h-navbar-full-sm {
    min-height: 100px;
  }
  .xl\:min-h-navbar-lg {
    min-height: 96px;
  }
  .xl\:min-h-navbar-sm {
    min-height: 60px;
  }
  .xl\:min-h-px {
    min-height: 1px;
  }
  .xl\:min-h-screen {
    min-height: 100vh;
  }
  .xl\:min-h-sm {
    min-height: 0.5rem;
  }
  .xl\:min-h-svh {
    min-height: 100svh;
  }
  .xl\:min-h-xl {
    min-height: 4rem;
  }
  .xl\:min-h-xs {
    min-height: 0.25rem;
  }
  .xl\:w-0 {
    width: 0px;
  }
  .xl\:w-0\.5 {
    width: 0.125rem;
  }
  .xl\:w-1 {
    width: 0.25rem;
  }
  .xl\:w-1\.5 {
    width: 0.375rem;
  }
  .xl\:w-1\/12 {
    width: 8.333333%;
  }
  .xl\:w-1\/2 {
    width: 50%;
  }
  .xl\:w-1\/3 {
    width: 33.333333%;
  }
  .xl\:w-1\/4 {
    width: 25%;
  }
  .xl\:w-1\/5 {
    width: 20%;
  }
  .xl\:w-1\/6 {
    width: 16.666667%;
  }
  .xl\:w-10 {
    width: 2.5rem;
  }
  .xl\:w-10\/12 {
    width: 83.333333%;
  }
  .xl\:w-11 {
    width: 2.75rem;
  }
  .xl\:w-11\/12 {
    width: 91.666667%;
  }
  .xl\:w-12 {
    width: 3rem;
  }
  .xl\:w-14 {
    width: 3.5rem;
  }
  .xl\:w-16 {
    width: 4rem;
  }
  .xl\:w-2 {
    width: 0.5rem;
  }
  .xl\:w-2\.5 {
    width: 0.625rem;
  }
  .xl\:w-2\/12 {
    width: 16.666667%;
  }
  .xl\:w-2\/3 {
    width: 66.666667%;
  }
  .xl\:w-2\/4 {
    width: 50%;
  }
  .xl\:w-2\/5 {
    width: 40%;
  }
  .xl\:w-2\/6 {
    width: 33.333333%;
  }
  .xl\:w-20 {
    width: 5rem;
  }
  .xl\:w-24 {
    width: 6rem;
  }
  .xl\:w-28 {
    width: 7rem;
  }
  .xl\:w-3 {
    width: 0.75rem;
  }
  .xl\:w-3\.5 {
    width: 0.875rem;
  }
  .xl\:w-3\/12 {
    width: 25%;
  }
  .xl\:w-3\/4 {
    width: 75%;
  }
  .xl\:w-3\/5 {
    width: 60%;
  }
  .xl\:w-3\/6 {
    width: 50%;
  }
  .xl\:w-32 {
    width: 8rem;
  }
  .xl\:w-36 {
    width: 9rem;
  }
  .xl\:w-4 {
    width: 1rem;
  }
  .xl\:w-4\/12 {
    width: 33.333333%;
  }
  .xl\:w-4\/5 {
    width: 80%;
  }
  .xl\:w-4\/6 {
    width: 66.666667%;
  }
  .xl\:w-40 {
    width: 10rem;
  }
  .xl\:w-44 {
    width: 11rem;
  }
  .xl\:w-48 {
    width: 12rem;
  }
  .xl\:w-5 {
    width: 1.25rem;
  }
  .xl\:w-5\/12 {
    width: 41.666667%;
  }
  .xl\:w-5\/6 {
    width: 83.333333%;
  }
  .xl\:w-52 {
    width: 13rem;
  }
  .xl\:w-56 {
    width: 14rem;
  }
  .xl\:w-6 {
    width: 1.5rem;
  }
  .xl\:w-6\/12 {
    width: 50%;
  }
  .xl\:w-60 {
    width: 15rem;
  }
  .xl\:w-64 {
    width: 16rem;
  }
  .xl\:w-7 {
    width: 1.75rem;
  }
  .xl\:w-7\/12 {
    width: 58.333333%;
  }
  .xl\:w-72 {
    width: 18rem;
  }
  .xl\:w-8 {
    width: 2rem;
  }
  .xl\:w-8\/12 {
    width: 66.666667%;
  }
  .xl\:w-80 {
    width: 20rem;
  }
  .xl\:w-9 {
    width: 2.25rem;
  }
  .xl\:w-9\/12 {
    width: 75%;
  }
  .xl\:w-96 {
    width: 24rem;
  }
  .xl\:w-\[560px\] {
    width: 560px;
  }
  .xl\:w-auto {
    width: auto;
  }
  .xl\:w-dvw {
    width: 100dvw;
  }
  .xl\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }
  .xl\:w-full {
    width: 100%;
  }
  .xl\:w-lg {
    width: 2rem;
  }
  .xl\:w-lvw {
    width: 100lvw;
  }
  .xl\:w-max {
    width: -moz-max-content;
    width: max-content;
  }
  .xl\:w-md {
    width: 1rem;
  }
  .xl\:w-min {
    width: -moz-min-content;
    width: min-content;
  }
  .xl\:w-navbar-admin-lg {
    width: 136px;
  }
  .xl\:w-navbar-admin-sm {
    width: 100px;
  }
  .xl\:w-navbar-full-lg {
    width: 140px;
  }
  .xl\:w-navbar-full-sm {
    width: 100px;
  }
  .xl\:w-navbar-lg {
    width: 96px;
  }
  .xl\:w-navbar-sm {
    width: 60px;
  }
  .xl\:w-px {
    width: 1px;
  }
  .xl\:w-screen {
    width: 100vw;
  }
  .xl\:w-sm {
    width: 0.5rem;
  }
  .xl\:w-svw {
    width: 100svw;
  }
  .xl\:w-xl {
    width: 4rem;
  }
  .xl\:w-xs {
    width: 0.25rem;
  }
  .xl\:min-w-0 {
    min-width: 0px;
  }
  .xl\:min-w-0\.5 {
    min-width: 0.125rem;
  }
  .xl\:min-w-1 {
    min-width: 0.25rem;
  }
  .xl\:min-w-1\.5 {
    min-width: 0.375rem;
  }
  .xl\:min-w-10 {
    min-width: 2.5rem;
  }
  .xl\:min-w-11 {
    min-width: 2.75rem;
  }
  .xl\:min-w-12 {
    min-width: 3rem;
  }
  .xl\:min-w-14 {
    min-width: 3.5rem;
  }
  .xl\:min-w-16 {
    min-width: 4rem;
  }
  .xl\:min-w-2 {
    min-width: 0.5rem;
  }
  .xl\:min-w-2\.5 {
    min-width: 0.625rem;
  }
  .xl\:min-w-20 {
    min-width: 5rem;
  }
  .xl\:min-w-24 {
    min-width: 6rem;
  }
  .xl\:min-w-28 {
    min-width: 7rem;
  }
  .xl\:min-w-3 {
    min-width: 0.75rem;
  }
  .xl\:min-w-3\.5 {
    min-width: 0.875rem;
  }
  .xl\:min-w-32 {
    min-width: 8rem;
  }
  .xl\:min-w-36 {
    min-width: 9rem;
  }
  .xl\:min-w-4 {
    min-width: 1rem;
  }
  .xl\:min-w-40 {
    min-width: 10rem;
  }
  .xl\:min-w-44 {
    min-width: 11rem;
  }
  .xl\:min-w-48 {
    min-width: 12rem;
  }
  .xl\:min-w-5 {
    min-width: 1.25rem;
  }
  .xl\:min-w-52 {
    min-width: 13rem;
  }
  .xl\:min-w-56 {
    min-width: 14rem;
  }
  .xl\:min-w-6 {
    min-width: 1.5rem;
  }
  .xl\:min-w-60 {
    min-width: 15rem;
  }
  .xl\:min-w-64 {
    min-width: 16rem;
  }
  .xl\:min-w-7 {
    min-width: 1.75rem;
  }
  .xl\:min-w-72 {
    min-width: 18rem;
  }
  .xl\:min-w-8 {
    min-width: 2rem;
  }
  .xl\:min-w-80 {
    min-width: 20rem;
  }
  .xl\:min-w-9 {
    min-width: 2.25rem;
  }
  .xl\:min-w-96 {
    min-width: 24rem;
  }
  .xl\:min-w-fit {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .xl\:min-w-full {
    min-width: 100%;
  }
  .xl\:min-w-lg {
    min-width: 2rem;
  }
  .xl\:min-w-max {
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .xl\:min-w-md {
    min-width: 1rem;
  }
  .xl\:min-w-min {
    min-width: -moz-min-content;
    min-width: min-content;
  }
  .xl\:min-w-navbar-admin-lg {
    min-width: 136px;
  }
  .xl\:min-w-navbar-admin-sm {
    min-width: 100px;
  }
  .xl\:min-w-navbar-full-lg {
    min-width: 140px;
  }
  .xl\:min-w-navbar-full-sm {
    min-width: 100px;
  }
  .xl\:min-w-navbar-lg {
    min-width: 96px;
  }
  .xl\:min-w-navbar-sm {
    min-width: 60px;
  }
  .xl\:min-w-px {
    min-width: 1px;
  }
  .xl\:min-w-sm {
    min-width: 0.5rem;
  }
  .xl\:min-w-xl {
    min-width: 4rem;
  }
  .xl\:min-w-xs {
    min-width: 0.25rem;
  }
  .xl\:flex-3 {
    flex: 3 3 0%;
  }
  .xl\:gap-xl {
    gap: 4rem;
  }
}
@media (min-width: 1536px) {
  .\32xl\:relative {
    position: relative;
  }
  .\32xl\:pt-md {
    padding-top: 1rem;
  }
}
:is(:where([dir="rtl"]) .rtl\:space-x-reverse) > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
}
:is(:where([dir="rtl"]) .peer:checked ~ .rtl\:peer-checked\:after\:-translate-x-full)::after {
  content: var(--tw-content);
  --tw-translate-x: -100%;
  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));
}
:is(:where(.dark) .dark\:bg-gray-700) {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}
:is(:where(.dark) .dark\:text-gray-200) {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}
:is(:where(.dark) .dark\:hover\:bg-gray-600:hover) {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity));
}
:is(:where(.dark) .dark\:hover\:text-white:hover) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.\[\&\>\*\]\:h-full>* {
  height: 100%;
}
.\[\&\>\*\]\:flex-1>* {
  flex: 1 1 0%;
}
.\[\&_\*\]\:ms-4 * {
  margin-inline-start: 1rem;
}
.\[\&_\*\]\:flex-grow * {
  flex-grow: 1;
}
.\[\&_fieldset\]\:mb-lg fieldset {
  margin-bottom: 2rem;
}

/*# sourceMappingURL=application.css.map */
