/*@import "../assets/styles/color-palette.scss"; */
:root {
    --primary: 0 157 216; /* --theme-primary-background #009dd8 */
    --on-primary: 255 255 255; /* --theme-primary-font */
    --on-primary-hover: 63 173 16; /* --theme-primary-font-hover */

    --primary-accent: 241 90 34; /* --theme-primary-accent */
    --on-primary-accent: 255 255 255; /* --theme-primary-accent-font */

    --workspace-selector: 63 173 16; /* --theme-workspace-selector-background */
    --workspace-selector-hover: 0 157 216; /* --theme-workspace-selector-background-hover */
    --on-workspace-selector: 255 255 255; /* --theme-workspace-selector-font */
    --on-workspace-selector-hover: 255 255 255; /* --theme-workspace-selector-font-hover */

    --sidebar: 246 247 249; /* --theme-workspace-background */
    --sidebar-icon: 121 131 155; /* --theme-workspace-icon */
    --sidebar-header: 76 92 115; /* --theme-workspace-header-font */
    --sidebar-header-hover: 50 63 78; /* --theme-workspace-header-font-hover */
    --sidebar-link: 121 131 155; /* --theme-workspace-link-font */
    --sidebar-link-hover: 50 63 78; /* --theme-workspace-link-font */
    --sidebar-border: 246 247 249; /*--theme-workspace-border */

    --button: 234 240 246; /* (Grey-7 (#EAF0F6)) --theme-widget-button-background */
    --on-button: 57 76 98; /*(Dark-Grey-6 (#394C62)) */
    --button-hover: 248 250 252; /* F8FAFC --theme-widget-button-background-hover */
    --on-button-hover: 101 109 129; /*656D81 */
    --widget-header: 219 229 240; /* --theme-widget-background */
    --on-widget-header: 121, 131, 155; /* --theme-widget-font */

    --widget: 248 250 252;
    --on-widget: 57 76 98;
    --selected: 0 157 216;
    --on-selected: 255 255 255;
    --hovered: 239 239 239;
    --on-hovered: 51 51 51;
    --form: 255 255 255;
    --on-form: 57 76 98;
    --form-header: 219 229 240;
    --on-form-header: 57 76 98;
    --title: 57 76 98; /* --theme-form-title */
    --link: 0 157 216; /* --theme-form-cancel-font */
    --link-hover: 0 185 255; /* --theme-form-cancel-font-hover */

    --body: 255 255 255; /* --theme-body-background */
    --on-body: 57 76 98;
    --mobile-workspace: 76 92 115;
    --subtitle: 65 72 88;
    --menu-divider: 234 240 246;
    --splitter-handle: 131 144 175;
    --widget-button-background: 204 210 225;
    --widget-on-button: 121 131 155;
    --widget-on-button-hover: 57 76 98;
    --list-alternate-row: 248 250 252;
    --list-row-border: 204 210 225;
    --list-row-hover: 220 229 239;
    --button-active: 204 210 225;
    --form-control-border: 220 229 239;
    --warning: 255 186 8; /*yellow */
    --danger: 220 73 58; /*red */

    --on-body-text-disabled: 204 210 225;
    --popover: 36 46 56;
    --on-popover: 255 255 255;
}
/*! tailwindcss v3.3.2 | 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.
*/
html {
  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: Noto Sans, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
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. 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-size: 1em; /* 2 */
}
/*
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-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;
}
/*
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;
}
@font-face {
        font-family: 'Noto Sans';
        font-weight: 100 900;
        font-stretch: 62.5% 100%; /* 62.5% is the minimum value for the font-stretch property */
        font-style: normal;
        src: url(../assets/fonts/Noto-Sans/NotoSans-Variable.woff2) format("woff2");
    }
@font-face {
        font-family: 'Noto Sans';
        font-weight: 100 900;
        font-stretch: 62.5% 100%; /* 62.5% is the minimum value for the font-stretch property */
        font-style: italic;
        src: url(../assets/fonts/Noto-Sans/NotoSans-Italic-Variable.woff2) format("woff2");
    }
/* Montserrat */
/* Thin - 100 */
@font-face {
        font-family: Montserrat;
        font-weight: 100 900;
        src: url(../assets/fonts/Montserrat/Montserrat-Variable.woff2) format("woff2");
    }
@font-face {
        font-family: Montserrat;
        font-weight: 100 900;
        font-style: italic;
        src: url(../assets/fonts/Montserrat/Montserrat-Italic-Variable.woff2) format("woff2");
    }
*, ::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(0 157 216 / 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(0 157 216 / 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: 640px) {
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}
.card {
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(var(--widget) / var(--tw-bg-opacity));
}
.card-header {
    margin: 1rem;
    --tw-bg-opacity: 1;
    background-color: rgb(var(--widget-header) / var(--tw-bg-opacity));
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(var(--on-widget-header) / var(--tw-text-opacity));
}
.card-body {
    margin: 1rem;
}
.static {
    position: static;
}
.fixed {
    position: fixed;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.left-0 {
    left: 0px;
}
.left-1\/2 {
    left: 50%;
}
.right-0 {
    right: 0px;
}
.top-0 {
    top: 0px;
}
.top-1\/2 {
    top: 50%;
}
.top-8 {
    top: 2rem;
}
.z-10 {
    z-index: 10;
}
.z-50 {
    z-index: 50;
}
.m-0 {
    margin: 0px;
}
.m-16 {
    margin: 4rem;
}
.m-4 {
    margin: 1rem;
}
.m-auto {
    margin: auto;
}
.mx-0 {
    margin-left: 0px;
    margin-right: 0px;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}
.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}
.my-3\.5 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
}
.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.mb-0 {
    margin-bottom: 0px;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mr-2 {
    margin-right: 0.5rem;
}
.mr-3 {
    margin-right: 0.75rem;
}
.mt-1 {
    margin-top: 0.25rem;
}
.mt-20 {
    margin-top: 5rem;
}
.mt-3 {
    margin-top: 0.75rem;
}
.mt-3\.5 {
    margin-top: 0.875rem;
}
.mt-4 {
    margin-top: 1rem;
}
.box-border {
    box-sizing: border-box;
}
.inline-block {
    display: inline-block;
}
.flex {
    display: flex;
}
.hidden {
    display: none;
}
.h-12 {
    height: 3rem;
}
.h-2 {
    height: 0.5rem;
}
.h-3 {
    height: 0.75rem;
}
.h-4 {
    height: 1rem;
}
.h-4\/5 {
    height: 80%;
}
.h-5 {
    height: 1.25rem;
}
.h-8 {
    height: 2rem;
}
.h-9 {
    height: 2.25rem;
}
.h-\[18px\] {
    height: 18px;
}
.h-\[200px\] {
    height: 200px;
}
.h-\[41px\] {
    height: 41px;
}
.h-auto {
    height: auto;
}
.h-fit {
    height: -moz-fit-content;
    height: fit-content;
}
.h-full {
    height: 100%;
}
.h-screen {
    height: 100vh;
}
.w-12 {
    width: 3rem;
}
.w-4 {
    width: 1rem;
}
.w-8 {
    width: 2rem;
}
.w-auto {
    width: auto;
}
.w-fit {
    width: -moz-fit-content;
    width: fit-content;
}
.w-full {
    width: 100%;
}
.w-screen {
    width: 100vw;
}
.min-w-\[1rem\] {
    min-width: 1rem;
}
.max-w-xs {
    max-width: 20rem;
}
.grow {
    flex-grow: 1;
}
.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1\/2 {
    --tw-translate-x: 50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.animate-spin {
    animation: spin 1s linear infinite;
}
.cursor-not-allowed {
    cursor: not-allowed;
}
.cursor-pointer {
    cursor: pointer;
}
.flex-row {
    flex-direction: row;
}
.flex-col {
    flex-direction: column;
}
.flex-col-reverse {
    flex-direction: column-reverse;
}
.content-start {
    align-content: flex-start;
}
.items-center {
    align-items: center;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-evenly {
    justify-content: space-evenly;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-y-auto {
    overflow-y: auto;
}
.overflow-x-hidden {
    overflow-x: hidden;
}
.rounded {
    border-radius: 0.25rem;
}
.rounded-\[5px\] {
    border-radius: 5px;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.rounded-none {
    border-radius: 0px;
}
.rounded-br-3xl {
    border-bottom-right-radius: 1.5rem;
}
.rounded-br-md {
    border-bottom-right-radius: 0.375rem;
}
.rounded-tr-3xl {
    border-top-right-radius: 1.5rem;
}
.rounded-tr-md {
    border-top-right-radius: 0.375rem;
}
.border-2 {
    border-width: 2px;
}
.border-b {
    border-bottom-width: 1px;
}
.border-b-2 {
    border-bottom-width: 2px;
}
.border-t-2 {
    border-top-width: 2px;
}
.border-\[\#8c8c8c\] {
    --tw-border-opacity: 1;
    border-color: rgb(140 140 140 / var(--tw-border-opacity));
}
.border-on-button {
    --tw-border-opacity: 1;
    border-color: rgb(var(--on-button) / var(--tw-border-opacity));
}
.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-b-gray-200 {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-t-gray-200 {
    --tw-border-opacity: 1;
    border-top-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(0 157 216 / var(--tw-bg-opacity));
}
.bg-body {
    --tw-bg-opacity: 1;
    background-color: rgb(var(--body) / var(--tw-bg-opacity));
}
.bg-button {
    --tw-bg-opacity: 1;
    background-color: rgb(var(--button) / var(--tw-bg-opacity));
}
.bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
.bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(63 173 16 / var(--tw-bg-opacity));
}
.bg-on-button {
    --tw-bg-opacity: 1;
    background-color: rgb(var(--on-button) / var(--tw-bg-opacity));
}
.bg-primary-accent {
    --tw-bg-opacity: 1;
    background-color: rgb(var(--primary-accent) / var(--tw-bg-opacity));
}
.bg-red-500 {
    background-color: rgba(164, 61, 23, 1);
}
.bg-slate-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity));
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-widget {
    --tw-bg-opacity: 1;
    background-color: rgb(var(--widget) / var(--tw-bg-opacity));
}
.bg-widget-header {
    --tw-bg-opacity: 1;
    background-color: rgb(var(--widget-header) / var(--tw-bg-opacity));
}
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-\[\#00000038\] {
    --tw-gradient-from: #00000038 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-30\% {
    --tw-gradient-from-position: 30%;
}
.to-\[\#ffffff44\] {
    --tw-gradient-to: #ffffff44 var(--tw-gradient-to-position);
}
.to-100\% {
    --tw-gradient-to-position: 100%;
}
.bg-cover {
    background-size: cover;
}
.fill-current {
    fill: currentColor;
}
.object-cover {
    -o-object-fit: cover;
       object-fit: cover;
}
.object-center {
    -o-object-position: center;
       object-position: center;
}
.p-0 {
    padding: 0px;
}
.p-2 {
    padding: 0.5rem;
}
.p-2\.5 {
    padding: 0.625rem;
}
.p-3 {
    padding: 0.75rem;
}
.p-4 {
    padding: 1rem;
}
.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.pb-16 {
    padding-bottom: 4rem;
}
.pb-2 {
    padding-bottom: 0.5rem;
}
.pb-3 {
    padding-bottom: 0.75rem;
}
.pb-4 {
    padding-bottom: 1rem;
}
.pb-8 {
    padding-bottom: 2rem;
}
.pl-11 {
    padding-left: 2.75rem;
}
.pl-3 {
    padding-left: 0.75rem;
}
.pl-9 {
    padding-left: 2.25rem;
}
.pr-3 {
    padding-right: 0.75rem;
}
.pr-9 {
    padding-right: 2.25rem;
}
.pt-1 {
    padding-top: 0.25rem;
}
.pt-2 {
    padding-top: 0.5rem;
}
.text-center {
    text-align: center;
}
.font-\[\'Segoe_UI\'\] {
    font-family: 'Segoe UI';
}
.font-montserrat {
    font-family: Montserrat, sans-serif;
}
.font-sans {
    font-family: Noto Sans, sans-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-6xl {
    font-size: 3.75rem;
    line-height: 1;
}
.text-\[15px\] {
    font-size: 15px;
}
.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;
}
.font-medium {
    font-weight: 500;
}
.font-normal {
    font-weight: 400;
}
.font-semibold {
    font-weight: 600;
}
.italic {
    font-style: italic;
}
.leading-4 {
    line-height: 1rem;
}
.leading-8 {
    line-height: 2rem;
}
.leading-none {
    line-height: 1;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.text-\[\#5e5e5e\] {
    --tw-text-opacity: 1;
    color: rgb(94 94 94 / var(--tw-text-opacity));
}
.text-blue-400 {
    color: rgba(0, 157, 216, 1);
}
.text-on-body {
    --tw-text-opacity: 1;
    color: rgb(var(--on-body) / var(--tw-text-opacity));
}
.text-on-button {
    --tw-text-opacity: 1;
    color: rgb(var(--on-button) / var(--tw-text-opacity));
}
.text-on-primary {
    --tw-text-opacity: 1;
    color: rgb(var(--on-primary) / var(--tw-text-opacity));
}
.text-on-primary-accent {
    --tw-text-opacity: 1;
    color: rgb(var(--on-primary-accent) / var(--tw-text-opacity));
}
.text-on-widget {
    --tw-text-opacity: 1;
    color: rgb(var(--on-widget) / var(--tw-text-opacity));
}
.text-on-widget-header {
    --tw-text-opacity: 1;
    color: rgb(var(--on-widget-header) / var(--tw-text-opacity));
}
.text-red-400 {
    color: rgba(241, 90, 34, 1);
}
.text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity));
}
.text-sidebar-header {
    --tw-text-opacity: 1;
    color: rgb(var(--sidebar-header) / var(--tw-text-opacity));
}
.text-title {
    --tw-text-opacity: 1;
    color: rgb(var(--title) / var(--tw-text-opacity));
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
    text-decoration-line: underline;
}
.no-underline {
    text-decoration-line: none;
}
.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-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;
}
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
  }
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
.alert {
    display: flex;
}
.auth-background {
  background-image: url("../image/login-bizzmine.jpg");
  position: relative;
  display: flex;
  height: 100vh;
  width: 100vw;
  background-size: cover;
  background-repeat: no-repeat;
}
.auth-logo {
    position: absolute;
    top: 2rem;
    left: 50%;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 768px) {
    .auth-logo {
        left: 2rem;
        --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));
    }
}
.auth-logo {
  max-width: 180px;
}
button,
.button {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 5px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-weight: 600;
    text-decoration-line: none;
    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:hover,
.button:hover {
    cursor: pointer;
    --tw-brightness: brightness(1.1);
    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);
}
button:active,
.button:active {
    --tw-brightness: brightness(.75);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
button:disabled,
.button:disabled {
    opacity: 0.5;
}
/*&:hover:enabled { */
/*  @apply opacity-100; */
/*} */
button:disabled, .button:disabled {
    cursor: not-allowed;
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity));
}
button.default, .button.default {
    --tw-border-opacity: 1;
    border-color: rgb(var(--on-button) / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(var(--button) / var(--tw-bg-opacity));
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(var(--on-button) / var(--tw-text-opacity));
}
button.default:hover, .button.default:hover {
    --tw-brightness: brightness(.9);
    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);
}
button.default:active, .button.default:active {
    --tw-brightness: brightness(.75);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
button.alternate, .button.alternate {
    --tw-bg-opacity: 1;
    background-color: rgb(var(--on-button) / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(var(--button) / var(--tw-text-opacity));
}
button.primary, .button.primary {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(63 173 16 / var(--tw-bg-opacity));
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
button.cancel, .button.cancel {
    background-color: rgba(164, 61, 23, 1);
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button-group {
    display: flex;
}
.button-group button {
    border-radius: 0px;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.button-group button:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 0.75rem;
}
.button-group button:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-right: 0.75rem;
}
h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}
.header-popup-icon {
    height: 1.25rem;
    width: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(var(--on-primary) / var(--tw-text-opacity));
    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;
}
.header-popup-icon:hover {
    --tw-text-opacity: 1;
    color: rgb(var(--on-primary-hover) / var(--tw-text-opacity));
}
.header-popup-icon-counter {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 1rem;
    min-width: 1rem;
    --tw-translate-x: 50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(var(--primary-accent) / var(--tw-bg-opacity));
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(var(--on-primary-accent) / var(--tw-text-opacity));
}
input {
    height: 2.25rem;
    width: 100%;
    border-radius: 5px;
    border-width: 2px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-family: Noto Sans, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgb(var(--on-body) / var(--tw-text-opacity));
}
input:default {
    --tw-border-opacity: 1;
    border-color: rgb(var(--form-header) / var(--tw-border-opacity));
}
input:-webkit-autofill {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
input:autofill {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
input:invalid {
    border-color: rgba(241, 90, 34, 1);
}
input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
@media (min-width: 640px) {
    input {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
input:-webkit-autofill {
      box-shadow: 0 0 0 40px #ffff inset !important;
      -webkit-transition: background-color 9000s ease-in-out 0s;
      transition: background-color 9000s ease-in-out 0s;
      font-family: Noto Sans, sans-serif;
      font-size: 0.875rem;
      line-height: 1.25rem;
      --tw-text-opacity: 1;
      color: rgb(var(--on-body) / var(--tw-text-opacity));    
    }
input:autofill,
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-internal-autofill-selected {
      box-shadow: 0 0 0 40px #ffff inset !important;
      -webkit-transition: background-color 9000s ease-in-out 0s;
      transition: background-color 9000s ease-in-out 0s;
      font-family: Noto Sans, sans-serif;
      font-size: 0.875rem;
      line-height: 1.25rem;
      --tw-text-opacity: 1;
      color: rgb(var(--on-body) / var(--tw-text-opacity));    
    }
input[type="password"]:not(:-moz-placeholder-shown) {
    height: 3rem;
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: 0.05em;
    --tw-text-opacity: 1;
    color: rgb(var(--on-body) / var(--tw-text-opacity));
}
input[type="password"]:not(:placeholder-shown) {
    height: 3rem;
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: 0.05em;
    --tw-text-opacity: 1;
    color: rgb(var(--on-body) / var(--tw-text-opacity));
}
@media (min-width: 640px) {
    input[type="password"]:not(:-moz-placeholder-shown) {
        height: 2.25rem;
    }
    input[type="password"]:not(:placeholder-shown) {
        height: 2.25rem;
    }
}
input[type="password"]:not(:-moz-placeholder-shown) { /*Verdana to make dots bigger on chrome. */
        font-family: 'Verdana','Noto Sans', sans-serif !important;
    }
input[type="password"]:not(:placeholder-shown) { /*Verdana to make dots bigger on chrome. */
        font-family: 'Verdana','Noto Sans', sans-serif !important;
    }
input::-moz-placeholder {
    --tw-text-opacity: 1;
    color: rgb(var(--form-header) / var(--tw-text-opacity));
}
input::placeholder {
    --tw-text-opacity: 1;
    color: rgb(var(--form-header) / var(--tw-text-opacity));
}
::-ms-reveal {
    display: none;
}
a {
    --tw-text-opacity: 1;
    color: rgb(0 157 216 / var(--tw-text-opacity));
    text-decoration-line: underline;
}
.modal-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    --tw-bg-opacity: 1;
    background-color: rgb(var(--widget) / var(--tw-bg-opacity));
    padding: 1rem;
    --tw-text-opacity: 1;
    color: rgb(var(--on-widget) / var(--tw-text-opacity));
}
@media (min-width: 1024px) {
    .modal-container {
        height: auto;
        width: auto;
        border-radius: 0.5rem;
        --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}
.modal-container-password {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 50;
    box-sizing: border-box;
    display: flex;
    height: 100%;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 1rem;
}
@media (min-width: 768px) {
    .modal-container-password {
        padding: 0px;
    }
}
.modal-container-password {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-password {
    margin: auto;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    border-radius: 0.25rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 0.75rem;
}
@media (min-width: 768px) {
    .modal-password {
        margin-top: 2rem;
        width: 60%;
    }
}
.modal-password {
  max-width: 1130px;
}
.modal-password-error {
    box-sizing: border-box;
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 0.25rem;
    padding: 1rem;
    background-color: #fcf8e3 !important;
}
.modal-password-error p {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.modal-password-inputs {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    border-top-width: 2px;
    border-bottom-width: 1px;
    border-top-color: rgb(229 231 235 / var(--tw-border-opacity));
    --tw-border-opacity: 1;
    border-bottom-color: rgb(229 231 235 / var(--tw-border-opacity));
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
}
.modal-password h1 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
}
.modal-password span {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 768px) {
    .modal-password span {
        flex-direction: row;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
}
.modal-password label {
    margin-bottom: 0.5rem;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
@media (min-width: 768px) {
    .modal-password label {
        margin-bottom: 0px;
        width: 25%;
        padding-right: 1rem;
        text-align: right;
    }
}
.modal-password input {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1rem;
}
@media (min-width: 768px) {
    .modal-password input {
        width: 75%;
    }
}
.modal-password input{
    padding: 6px 12px;
  }
.modal-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1rem;
}
.modal-buttons a {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgba(0, 157, 216, 1);
}
.modal-buttons button {
    --tw-bg-opacity: 1;
    background-color: rgb(0 157 216 / var(--tw-bg-opacity));
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.cover-image {
    background-color: rgba(0, 0, 0, 0);
    background-position: 0% 0%, center center;
    background-repeat: repeat, no-repeat;
    background-attachment: scroll, scroll;
    background-image: url("../assets/img/background.jpg");
    background-origin: padding-box, padding-box;
    background-clip: border-box, border-box;
    background-size: cover;
}
.cover-image .has-message {
        background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.5) 20%, rgba(255, 255, 255, 0.10) 100%), url("../assets/img/background.jpg");
    }
body {
    margin: 0px;
}
.first\:rounded-l-\[5px\]:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.first\:pl-3:first-child {
    padding-left: 0.75rem;
}
.last\:rounded-r-\[5px\]:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.default\:border-form-header:default {
    --tw-border-opacity: 1;
    border-color: rgb(var(--form-header) / var(--tw-border-opacity));
}
.invalid\:border-red-400:invalid {
    border-color: rgba(241, 90, 34, 1);
}
.hover\:cursor-pointer:hover {
    cursor: pointer;
}
.hover\:text-on-button-hover:hover {
    --tw-text-opacity: 1;
    color: rgb(var(--on-button-hover) / var(--tw-text-opacity));
}
.hover\:text-on-primary-hover:hover {
    --tw-text-opacity: 1;
    color: rgb(var(--on-primary-hover) / var(--tw-text-opacity));
}
.hover\:underline:hover {
    text-decoration-line: underline;
}
.hover\:brightness-110:hover {
    --tw-brightness: brightness(1.1);
    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);
}
.hover\:brightness-90:hover {
    --tw-brightness: brightness(.9);
    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);
}
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.active\:brightness-75:active {
    --tw-brightness: brightness(.75);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.disabled\:opacity-50:disabled {
    opacity: 0.5;
}
@media (min-width: 640px) {
    .sm\:h-9 {
        height: 2.25rem;
    }
    .sm\:p-2 {
        padding: 0.5rem;
    }
    .sm\:p-2\.5 {
        padding: 0.625rem;
    }
    .sm\:py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .sm\:py-2\.5 {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }
    .sm\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
@media (min-width: 768px) {
    .md\:left-0 {
        left: 0px;
    }
    .md\:left-8 {
        left: 2rem;
    }
    .md\:mt-8 {
        margin-top: 2rem;
    }
    .md\:block {
        display: block;
    }
    .md\:flex {
        display: flex;
    }
    .md\:h-1\/2 {
        height: 50%;
    }
    .md\:h-\[600px\] {
        height: 600px;
    }
    .md\:h-\[min\(25vh\2c 20vw\)\] {
        height: min(25vh,20vw);
    }
    .md\:max-h-\[75\%\] {
        max-height: 75%;
    }
    .md\:w-1\/2 {
        width: 50%;
    }
    .md\:w-1\/4 {
        width: 25%;
    }
    .md\:w-3\/5 {
        width: 60%;
    }
    .md\:w-4\/5 {
        width: 80%;
    }
    .md\:w-\[200px\] {
        width: 200px;
    }
    .md\:max-w-\[1220px\] {
        max-width: 1220px;
    }
    .md\:flex-row {
        flex-direction: row;
    }
    .md\:items-center {
        align-items: center;
    }
    .md\:justify-start {
        justify-content: flex-start;
    }
    .md\:justify-center {
        justify-content: center;
    }
    .md\:rounded-3xl {
        border-radius: 1.5rem;
    }
    .md\:rounded-full {
        border-radius: 9999px;
    }
    .md\:rounded-md {
        border-radius: 0.375rem;
    }
    .md\:bg-button {
        --tw-bg-opacity: 1;
        background-color: rgb(var(--button) / var(--tw-bg-opacity));
    }
    .md\:bg-white {
        --tw-bg-opacity: 1;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    }
    .md\:p-0 {
        padding: 0px;
    }
    .md\:p-\[6vh\] {
        padding: 6vh;
    }
    .md\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .md\:pb-16 {
        padding-bottom: 4rem;
    }
    .md\:pb-8 {
        padding-bottom: 2rem;
    }
    .md\:pr-10 {
        padding-right: 2.5rem;
    }
    .md\:pr-4 {
        padding-right: 1rem;
    }
    .md\:text-right {
        text-align: right;
    }
    .md\:drop-shadow-lg {
        --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
        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);
    }
}
@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }
    .lg\:h-auto {
        height: auto;
    }
    .lg\:w-5\/12 {
        width: 41.666667%;
    }
    .lg\:w-7\/12 {
        width: 58.333333%;
    }
    .lg\:w-auto {
        width: auto;
    }
    .lg\:items-center {
        align-items: center;
    }
    .lg\:justify-center {
        justify-content: center;
    }
    .lg\:rounded-lg {
        border-radius: 0.5rem;
    }
    .lg\: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);
    }
}

