.js-flash-messenger {
    position: fixed;
    width: 320px;
    top: 5px;
    left: 50%;
    margin-left: -160px;
    color: var(--color-white);
    z-index: 10000;
    line-height: 20px;
    max-height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 12px 0 rgb(0 0 0 / 0.15);
}

.js-flash-messenger__content {
    padding: 10px 40px 0 10px;
}

.js-flash-messenger__item {
    margin-bottom: 10px;
}

.js-flash-messenger a {
    color: var(--color-white);
    text-decoration: underline;
}

.js-flash-messenger a:hover {
    color: var(--color-gray-800);
    text-decoration: none;
}

.js-flash-messenger--error {
    background-color: var(--color-red-500);
}

.js-flash-messenger--success {
    background-color: var(--color-green-500);
}

.js-flash-messenger--info {
    background-color: var(--accent0--alt);
}

.js-flash-messenger--warning {
    background-color: var(--color-amber-500);
}

.js-flash-messenger__hide-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    z-index: 100;
}

.js-flash-messenger__hide-button svg {
    display: block;
    margin-left: 13px;
    margin-top: 13px;
    width: 14px;
    height: 14px;
    fill: var(--color-white);
}

.js-flash-messenger__raw-data {
    border: none;
    overflow: scroll;
}

.js-ajax-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 100000;

    background: linear-gradient(270deg, orange, red);
    background-size: 400% 400%;
    animation: LoaderGradient 2s ease infinite;
}

@keyframes LoaderGradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.dropdown-wrapper {
    position: relative;
}

.dropdown-menu {
    padding: 5px 0;
    margin: 5px;
    position: absolute;
    z-index: 5;
    background-color: var(--color-white);
    min-width: 100px;
    transition: opacity 150ms, transform 150ms;
    transform: translateY(-10px);
    opacity: 0;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 0.08);
    border: 1px solid var(--color-gray-300);
}

.js-dropdown--active .dropdown-menu,
.dropdown-menu.dropdown-menu--active {
    transform: translateY(0);
    opacity: 1;
}

.dropdown-menu__item {
    position: relative;
    display: block;
    padding-left: 40px;
    text-align: left;
    color: var(--color-gray-800);
    transition: background-color 150ms;
}

.dropdown-menu__item--active {
    font-weight: 600;
}

.dropdown-menu__item:hover {
    text-decoration: none;
    background-color: var(--color-gray-100);
}

.dropdown-menu__item-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--color-gray-400);
}

.dropdown-menu__item-icon svg {
    top: 12px;
    left: 12px;
    position: absolute;
    width: 16px;
    height: 16px;
    fill: var(--color-gray-400);
}

.dropdown-menu__item-name {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 10px 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 100px;
}

.dropdown-menu::before,
.dropdown-menu::after {
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    bottom: 100%;
    right: 20px;
}

.dropdown-menu::before {
    border-width: 11px;
    margin: 0 -11px;
    border-bottom-color: var(--color-gray-300);
}

.dropdown-menu::after {
    border-width: 10px;
    margin: 0 -10px;
    border-bottom-color: var(--color-white);
}

.form-input,
.form-text {
    display: block;
    width: 100%;
    height: 34px;
    line-height: 20px;
    padding: 0 10px;
    border-radius: 3px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-300);
    font-weight: 400;
    color: var(--color-gray-800);
    transition: border 150ms, box-shadow 150ms;
}

.form-input:focus,
.form-text:focus {
    outline: none;
    border-color: var(--color-gray-500);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.form-select {
    display: block;
    width: 100%;
    height: 34px;
    line-height: 20px;
    padding: 0 10px;
    border-radius: 3px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-300);
    font-weight: 400;
    color: var(--color-gray-800);
    transition: border 150ms, box-shadow 150ms;
}

.form-select:focus {
    outline: none;
    border-color: var(--color-gray-500);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.form-textarea {
    display: block;
    width: 100%;
    min-height: 80px;
    line-height: 20px;
    padding: 10px 15px;
    border-radius: 3px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-300);
    font-weight: 400;
    color: var(--color-gray-800);
    transition: border 150ms, box-shadow 150ms;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--color-gray-500);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.form-label {
    display: block;
    margin-bottom: 7px;
    color: var(--color-gray-500);
}

.form-label--required::after {
    content: "*";
    color: var(--color-red-500);
    padding-left: 2px;
}

.form-description {
    margin-top: 5px;
    line-height: 15px;
    color: var(--color-gray-400);
}

.form-element__errors {
    margin-top: 5px;
    line-height: 20px;
    color: var(--color-red-500);
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.form-button {
    position: relative;
    display: inline-block;
    height: 34px;
    line-height: 18px;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 150ms;
    overflow: hidden;
    background-color: var(--accent0);
}

.form-button:hover {
    background-color: var(--accent0-alt);
    text-decoration: none;
}

.form-button:focus,
.form-button:active {
    outline: none;
}

:disabled,
[readonly="readonly"] {
    opacity: 0.5;
}

/* Checkbox */

input[type="checkbox"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-gray-400);
    border-radius: 4px;
    background-color: var(--color-white);
    cursor: pointer;
    vertical-align: middle;
    flex-shrink: 0;
    transition: background-color 0.15s, border-color 0.15s;
}

input[type="checkbox"]:checked {
    background-color: var(--accent0);
    border-color: var(--accent0);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--accent0);
    outline-offset: 2px;
}

input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Radio */

input[type="radio"] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-gray-400);
    border-radius: 50%;
    background-color: var(--color-white);
    cursor: pointer;
    vertical-align: middle;
    flex-shrink: 0;
    transition: background-color 0.15s, border-color 0.15s;
}

input[type="radio"]:checked {
    background-color: var(--color-gray-400);
    border-color: var(--accent0);
    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: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

input[type="radio"]:focus-visible {
    outline: 2px solid var(--accent0);
    outline-offset: 2px;
}

input[type="radio"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/*
--- GRID ------------------------------------------------------------------*/

.grid-wrapper {
    overflow: auto;
}

.grid-tools {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border-bottom: 1px solid var(--color-gray-200);
}

.grid-tools a {
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 20px;
}

.grid-table {
    border-collapse: collapse;
    table-layout: fixed;
}

.grid__empty-list {
    font-size: 16px;
    line-height: 20px;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    color: var(--color-gray-400);
    font-weight: 300;
}

.grid-table th a {
    color: var(--color-gray-800);
}

.grid-table th a.current-sort {
    color: var(--color-gray-800);
    font-weight: 600;
}

.grid-table tr th:last-child {
    border-right: none !important;
}

.grid-table tr th {
    color: var(--color-gray-800);
    background-color: var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-200);
}

.grid-th-sort {
    display: block;
    padding: 10px 40px 10px 10px;
    position: relative;
    white-space: nowrap;
    text-align: left;
    line-height: 20px;
}

.grid-th-sort__arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 20px;
    text-align: center;
    color: var(--color-gray-800);
}

.grid-th-content {
    padding: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: normal;
}

.grid-td-content {
    display: block;
    padding: 10px;
    vertical-align: top;
}

.grid-action-icon {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: var(--accent0);
    transition: color 150ms;
}

.grid-action-icon:hover {
    color: var(--accent0-alt);
    text-decoration: none;
}

.grid-action-icon:last-of-type {
    margin-right: 0;
}

.grid-td-content svg {
    fill: var(--color-gray-800);
    stroke: var(--color-gray-800);
}

.grid-td-content__svg-img {
    max-height: 30px;
}

.grid-table tr td {
    transition: background-color 150ms;
    background-color: var(--color-white);
}

.grid-table tr:nth-child(2n) td {
    background-color: var(--color-gray-50);
}

th.min,
td.min {
    width: 1%;
    white-space: nowrap;
}

/*
---	INFO ------------------------------------------------------------------*/

.info {
    border: 1px solid var(--color-gray-300);
}

.info--no-border {
    border: none;
}

.info tr td {
    padding: 10px;
    background-color: var(--color-white);
}

.info tr td:nth-child(odd) {
    width: 1%;
    white-space: nowrap;
    color: var(--color-gray-400);
    border-left: 1px solid var(--color-gray-300);
}

.info tr:nth-child(2n) td {
    background-color: var(--color-gray-50);
}

.info-wrapper {
    overflow: auto;
}

/*
--- PAGINATOR ------------------------------------------------------------------*/

.paginator {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.paginator__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--color-gray-800);
    text-decoration: none;
}

.paginator__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--color-gray-400);
}

.paginator__item--disabled {
    cursor: not-allowed;
    color: var(--color-gray-400);
}

.paginator__item--active {
    color: var(--accent0);
    font-weight: 600;
}

.js-super-select__wrapper {
    position: relative;
}

.js-super-select__empty-list {
    text-align: center;
    color: var(--color-gray-400);
    padding: 7px 15px;
    font-size: 12px;
}

.js-super-select__suggest {
    position: absolute;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 40px;
    background-color: var(--color-white);
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 0.08);
    border: 1px solid var(--color-gray-300);
}

.js-super-select__item {
    cursor: pointer;
    padding: 8px 15px;
    line-height: 20px;
    color: var(--color-gray-800);
    transition: background-color 150ms;
}

.js-super-select__item--active,
.js-super-select__item:hover {
    background-color: var(--color-gray-100);
}

.js-super-select__item em,
.js-super-select__item--hl {
    color: var(--accent0);
}

.js-super-select__result-container {
    display: flex;
    flex-wrap: wrap;
}

.js-super-select__result {
    position: relative;
    min-height: 34px;
    padding: 6px 34px 6px 10px;
    box-sizing: border-box;
    line-height: 20px;
    background-color: var(--color-gray-100);
    color: var(--color-gray-800);
    border: 1px solid var(--color-gray-300);
    border-radius: 3px;
    overflow: hidden;
    z-index: 2;
}

.js-super-select__result em {
    color: var(--color-gray-400);
}

.js-super-select--multi .js-super-select__result {
    margin: 0 5px 5px 0;
}

.js-super-select--single .js-super-select__result-container {
    display: block;
}

.js-super-select__remove-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: var(--accent0);
    z-index: 2;
}

.js-super-select__remove-button svg {
    display: block;
    margin: 9px 0 0 9px;
    width: 14px;
    height: 14px;
    fill: var(--color-gray-400);
    transition: fill 150ms;
}

.js-super-select__remove-button:hover svg {
    fill: var(--color-gray-800);
}

.js-super-select__paginator {
    position: relative;
    height: 34px;
    padding: 0 34px;
    text-align: center;
    border-top: 1px solid var(--color-gray-200);
}

.js-super-select__paginator-button {
    position: absolute;
    top: 0;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    color: var(--color-gray-400);
    transition: color 150ms;
}

.js-super-select__paginator-button.previous {
    left: 0;
}

.js-super-select__paginator-button.next {
    right: 0;
}

.js-super-select__paginator-button:hover {
    color: var(--color-gray-800);
}

.js-super-select__paginator-counter {
    height: 34px;
    line-height: 34px;
    font-size: 12px;
    color: var(--color-gray-400);
}

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

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

button,
select {
  text-transform: none;
}

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

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

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

:-moz-focusring {
  outline: auto;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

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

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

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

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

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

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

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

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

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

.container {
    width: 100%;
}

@media (min-width: 640px) {

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

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

@media (min-width: 768px) {

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

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

@media (min-width: 1024px) {

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

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

@media (min-width: 1280px) {

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

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

@media (min-width: 1536px) {

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

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

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.left-0 {
    left: 0px;
}

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

.right-0 {
    right: 0px;
}

.right-1 {
    right: 10px;
}

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

.top-0 {
    top: 0px;
}

.top-1 {
    top: 10px;
}

.top-5 {
    top: 50px;
}

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

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

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

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

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

.mb-1 {
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

.box-border {
    box-sizing: border-box;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.table {
    display: table;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.h-4 {
    height: 40px;
}

.h-5 {
    height: 50px;
}

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

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

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

.max-h-96 {
    max-height: 960px;
}

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

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

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

.min-h-screen {
    min-height: 100vh;
}

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

.w-4 {
    width: 40px;
}

.w-5 {
    width: 50px;
}

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

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

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

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

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

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

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

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

.w-full {
    width: 100%;
}

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

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

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

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

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

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

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

.flex-none {
    flex: none;
}

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

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

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

.basis-1\/4 {
    flex-basis: 25%;
}

.basis-\[320px\] {
    flex-basis: 320px;
}

.border-separate {
    border-collapse: separate;
}

.border-spacing-\[2px\] {
    --tw-border-spacing-x: 2px;
    --tw-border-spacing-y: 2px;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.cursor-pointer {
    cursor: pointer;
}

.resize {
    resize: both;
}

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

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

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

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

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

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

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

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 10px;
}

.gap-2 {
    gap: 20px;
}

.gap-6 {
    gap: 60px;
}

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

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

.overflow-auto {
    overflow: auto;
}

.overflow-scroll {
    overflow: scroll;
}

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

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

.border {
    border-width: 1px;
}

.border-\[10px\] {
    border-width: 10px;
}

.border-\[5px\] {
    border-width: 5px;
}

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

.border-\[\#8ad5f4\] {
    --tw-border-opacity: 1;
    border-color: rgb(138 213 244 / var(--tw-border-opacity, 1));
}

.border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}

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

.bg-\[\#8ad5f4\] {
    --tw-bg-opacity: 1;
    background-color: rgb(138 213 244 / var(--tw-bg-opacity, 1));
}

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

.bg-\[var\(--accent0\)\] {
    background-color: var(--accent0);
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

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

.bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

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

.bg-yellow-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
}

.p-1 {
    padding: 10px;
}

.p-2 {
    padding: 20px;
}

.p-\[15px\] {
    padding: 15px;
}

.p-\[5px\] {
    padding: 5px;
}

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

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

.py-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

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

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

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

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

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

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

.pr-1 {
    padding-right: 10px;
}

.pr-2 {
    padding-right: 20px;
}

.pr-\[5px\] {
    padding-right: 5px;
}

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

.pt-\[60px\] {
    padding-top: 60px;
}

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

.font-mono {
    font-family: Geist Mono, ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

.text-8xl {
    font-size: 6rem;
    line-height: 1;
}

.text-\[12px\] {
    font-size: 12px;
}

.text-\[13px\] {
    font-size: 13px;
}

.text-\[17px\] {
    font-size: 17px;
}

.text-\[18px\] {
    font-size: 18px;
}

.text-\[30px\] {
    font-size: 30px;
}

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

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

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

.leading-6 {
    line-height: 1.5rem;
}

.leading-\[15px\] {
    line-height: 15px;
}

.leading-\[50px\] {
    line-height: 50px;
}

.text-\[\#ff4961\] {
    --tw-text-opacity: 1;
    color: rgb(255 73 97 / var(--tw-text-opacity, 1));
}

.text-\[color\:var\(--accent0\)\] {
    color: var(--accent0);
}

.text-\[var\(--accent0-over\)\] {
    color: var(--accent0-over);
}

.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

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

.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

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

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

.text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}

.text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.no-underline {
    text-decoration-line: none;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.opacity-50 {
    opacity: 0.5;
}

.outline {
    outline-style: solid;
}

.outline-\[3px\] {
    outline-width: 3px;
}

.outline-\[\#ffff94\] {
    outline-color: #ffff94;
}

.blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

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

:root {
    --color-white: #fff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-800: #1f2937;
    --color-blue-500: #2563eb;
    --color-red-500: #ef4444;
    --color-green-500: #22c55e;
    --color-amber-500: #f59e0b;
    --color-orange-500: #f97316;

    --accent0: #08A89E;
    --accent0-alt: #09b0a5;
    --accent0-over: #ffffff;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: auto;
    font-size: 14px;
    line-height: 20px;
    font-family: Geist, 'ui-sans-serif', 'system-ui', 'sans-serif';
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card {
    position: relative;
    background-color: var(--color-white);
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 0.18);
}

.hl {
    background-color: var(--color-orange-500);
}

a {
    text-decoration: none;
    color: var(--accent0);
}

a:hover {
    text-decoration: underline;
}

/*
--- MENU ------------------------------------------------------------------*/

.separator {
    border-top: 1px solid var(--color-gray-200);
}

.menu__item {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 40px;
    line-height: 40px;
    background-color: var(--color-white);
    transition: background-color 150ms;
    color: var(--color-gray-800);
    text-decoration: none;
}

.menu__item:hover {
    background-color: var(--color-gray-100);
    text-decoration: none;
}

.menu__item:focus {
    outline: none;
}

.menu__item--active {
    color: var(--color-white);
    background-color: var(--accent0);
}

.menu__item--active:hover {
    background-color: var(--accent0-alt);
}

.menu__item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
}

.menu__item--active .menu__item-icon {
    color: var(--color-white);
}

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

.menu__submenu {
    display: none;
}

.menu__submenu .menu__item {
    padding-left: 20px;
}

.js-menu--active .menu__submenu {
    display: block;
}

.menu__item-arrow {
    color: var(--color-gray-400);
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.menu__item-arrow .fa-angle-down {
    display: none;
}

.menu__item-arrow .fa-angle-right {
    display: inline;
}

.js-menu--active .menu__item-arrow .fa-angle-down {
    display: inline;
}

.js-menu--active .menu__item-arrow .fa-angle-right {
    display: none;
}

/*
--- MOBILE MENU ------------------------------------------------------------------*/

.js-mobile-menu__shade {
    display: none;
    position: fixed;
    overflow: hidden;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(0 0 0 / 0.5);
    z-index: 1000;
}

.js-mobile-menu__shade--active {
    display: block;
}

.js-mobile-menu__menu {
    position: fixed;
    overflow: auto;
    left: -300px;
    top: 0;
    bottom: 0;
    width: 300px;
    background-color: var(--color-gray-50);
    transition: left 150ms;
    z-index: 1200;
}

.js-mobile-menu__menu--active {
    left: 0;
}

.mobile-menu__item {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    color: var(--color-gray-800);
    text-decoration: none;
}

.mobile-menu__item--active {
    font-weight: 600;
}

.mobile-menu__item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent0);
}

.mobile-menu__item-name {
    flex-grow: 1;
}

.mobile-menu__submenu {
    display: none;
}

.mobile-menu__submenu .mobile-menu__item {
    padding-left: 20px;
}

.js-menu--active .mobile-menu__submenu {
    display: block;
}

.mobile-menu__item-arrow {
    color: var(--color-gray-400);
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.mobile-menu__item-arrow .fa-angle-down {
    display: none;
}

.mobile-menu__item-arrow .fa-angle-right {
    display: inline;
}

.js-menu--active .mobile-menu__item-arrow .fa-angle-down {
    display: inline;
}

.js-menu--active .mobile-menu__item-arrow .fa-angle-right {
    display: none;
}

/*
--- BREADCRUMBS ------------------------------------------------------------------*/

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 10px;
    line-height: 20px;
    margin-bottom: 10px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .breadcrumb {
        margin-bottom: 20px;
    }
}

.breadcrumb__item {
    color: var(--color-gray-800);
}

.breadcrumb__separator {
    color: var(--color-gray-300);
}

.breadcrumb__item--active {
    font-weight: 600;
}

/*
--- TABS ------------------------------------------------------------------*/

.tabs {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .tabs {
        margin-bottom: 20px;
    }
}

.tabs__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.tabs__header h1 {
    line-height: 25px;
    margin-bottom: 5px;
}

.tabs__header h2 {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 0;
}

.tabs__header-left {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gray-200);
}

.tabs__header-left .fa {
    font-size: 26px;
    color: var(--color-gray-400);
}

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

.tabs__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5px;
    border-top: 1px solid var(--color-gray-200);
}

.tabs__item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    padding: 2px 7px;
    transition: background-color 150ms;
    color: var(--color-gray-800);
    margin: 3px;
}

.tabs__item:hover {
    text-decoration: none;
    background-color: var(--color-gray-100);
}

@media (min-width: 800px) {
    .tabs__content {
        padding: 0;
    }

    .tabs__item {
        margin: 0;
        padding: 5px 10px;
    }
}

@media (min-width: 900px) {
    .tabs__item {
        padding: 10px 20px;
    }
}

.tabs__item--active {
    font-weight: 600;
}

.tab__under {
    display: none;
}

.tabs__item--active .tab__under {
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent0);
}

/*
--- FILTER FORM TOGGLER ------------------------------------------------------------------*/

.js-filter-form-toggler__trigger--active {
    color: var(--color-gray-800);
    font-weight: 600;
}

.js-filter-form-toggler__close-button {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 0;
    right: 0;
}

.js-filter-form-toggler__close-button svg {
    display: block;
    margin-left: 10px;
    margin-top: 10px;
    width: 14px;
    height: 14px;
    fill: var(--color-gray-400);
    transition: fill 150ms;
}

.js-filter-form-toggler__close-button:hover svg {
    fill: var(--color-gray-800);
}

.hover\:bg-\[var\(--accent0-alt\)\]:hover {
    background-color: var(--accent0-alt);
}

.hover\:bg-gray-400:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}

.hover\:no-underline:hover {
    text-decoration-line: none;
}

@media (min-width: 768px) {

    .md\:static {
        position: static;
    }

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

    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

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

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

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

    .md\:gap-2 {
        gap: 20px;
    }

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

    .md\:pr-\[20px\] {
        padding-right: 20px;
    }

    .md\:pt-\[20px\] {
        padding-top: 20px;
    }

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