:root {
  /* Light Mode Colors (Material Design inspired) */
  --md-sys-color-primary: #2563eb;
  --md-sys-color-on-primary: #ffffff;
  --md-sys-color-background: #f3f4f6;
  --md-sys-color-surface: #ffffff;
  --md-sys-color-surface-container: #f9fafb;
  --md-sys-color-on-surface: #1f2937;
  --md-sys-color-on-surface-variant: #6b7280;
  --md-sys-color-outline: #e5e7eb;
  --md-sys-color-outline-variant: #d1d5db;
  --md-sys-color-error: #b3261e;

  /* Elevations/Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --transition-speed: 0.2s;


  /* Badges */
  --badge-product-bg: #9bb8e7;

  --badge-product-text: #1d192b;
  --badge-mjete-bg: #c4eed0;
  --badge-mjete-text: #05210b;

  /* Elevation (Shadows) */
  --md-sys-elevation-1: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  --md-sys-elevation-2: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);



  --body-background-color: #fff;
  --header-background-color: #fff;

  --card-background-color: var(--md-sys-color-surface);
  --card-higher-background-color: #fff;


  --menu-item-fill: #181818;
  --menu-item-color: #181818;

  --default-padding-frame: 32px;
  --default-items-margin: 16px;
  --default-items-padding: 16px;
  --primary-brand-color: rgb(0 176 240);



  --header-logo-height: 50px;
  --header-item-color: rgb(255 255 255);
  --header-set-height: 64px;
  --default-header-row: 64px;
  --default-card-shadow: 0 4px 5px 0 rgb(0 0 0 / 4%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 20px -10px rgb(0 0 0 / 10%);

  --default-card-border-radius: 12px;
  --default-card-padding: 16px;

  --color-shade-dark-500: rgba(0, 0, 0, 0.5);
  --color-shade-dark-700: rgba(0, 0, 0, 0.7);

  --default-frame-border-color: rgba(0, 0, 0, .05);

  --default-text-color: rgba(0, 0, 0, 0.85);

  --navigation-set-width: 48px;
  --navigation-set-width-opened: 250px;
  --default-input-border-width: 3px;
  --default-input-border-radius: 4px;
  --default-input-border-color: rgba(0, 0, 0, .05);
  --default-input-background-color: #fff;
  --default-input-label-background-color: #fff;
  --default-input-text-color: rgba(0, 0, 0, 0.85);
  --default-input-border-color-focused: rgba(0, 0, 0, 0.438);


  --default-button-background-color: #e3e3e3;
  --default-button-color: rgba(0, 0, 0, .7);
  --default-button-fill: rgba(0, 0, 0, .7);

  --default-icon-button-background-color--hover: rgb(0 0 0 / 8%);

  --disabled-button-background-color: rgba(227, 227, 227, 1);
  --disabled-button-color: rgba(0, 0, 0, .25);
  --disabled-button-fill: rgba(0, 0, 0, .25);

  --chip-background-color: rgb(227 227 227);
  --chip-text-color: rgba(0, 0, 0, .87);
  --chip-action-fill: rgb(0 0 0 / 50%);
  --chip-action-color: rgb(0 0 0 / 50%);
  --chip-action-fill--hover: var(--primary-brand-color);
  --chip-action-color--hover: var(--primary-brand-color);


  --section-tittle-color: #555555;

  --hover-surface-color: rgb(0 176 240 / 10%);





  --dialog-background-color: var(--md-sys-color-surface);
  --dialog-shadow: 0 4px 5px 0 rgb(0 0 0 / 4%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 20px -10px rgb(0 0 0 / 10%);
  --dialog-backdrop-color: rgba(0, 0, 0, 0.5);
  --dialog-text-color: var(--default-text-color);
  --dialog-border-radius: 16px;

  --timepicker-background-color: transparent;

  --error-color: #f80;
  --success-color: #23b354;

  --transparent-20-error-color: rgba(255, 136, 0, 0.25);

  --transparent-20-success-color: rgb(35 179 84 / 25%);




}

/* Style the entire scrollbar */
.scrolling-container::-webkit-scrollbar {
  width: 8px;
  /* Adjust scrollbar width */
  height: 8px;
}

/* Style the scrollbar thumb */
.scrolling-container::-webkit-scrollbar-thumb {
  background-color: rgb(159 159 159);
  /* hotpink thumb */
  border-radius: 5px;
}

/* Style the scrollbar thumb */
.scrolling-container::-webkit-scrollbar-thumb:horizontal {
  background-color: rgb(159 159 159);
  /* hotpink thumb */
  border-radius: 5px;
}

/* Style the scrollbar track */
.scrolling-container::-webkit-scrollbar-track {
  background-color: rgb(44 44 44);
  /* skyblue track */
}

/* Style the scrollbar track */
.scrolling-container::-webkit-scrollbar-track:horizontal {
  background-color: rgb(44 44 44);
  /* skyblue track */
}

@media (prefers-color-scheme: dark) {

  :root {

    /* Dark Mode Colors */
    --md-sys-color-primary: #60a5fa;
    /* Lighter blue for dark mode */
    --md-sys-color-on-primary: #000000;
    --md-sys-color-background: #121212;
    --md-sys-color-surface: #1e1e1e;
    --md-sys-color-surface-container: #2d2d2d;
    --md-sys-color-on-surface: #e5e7eb;
    --md-sys-color-on-surface-variant: #9ca3af;
    --md-sys-color-outline: #4b5563;
    --md-sys-color-outline-variant: #374151;
    --md-sys-color-error: #f2b8b5;

    /* Adjust shadows for dark mode (subtler) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);

    --badge-product-bg: #2a3b56;
    --badge-product-text: #e8def8;
    --badge-mjete-bg: #2d4632;
    --badge-mjete-text: #c4eed0;






    --body-background-color: #24262b;
    --header-background-color: #24262b;

    --card-background-color: var(--md-sys-color-surface);

    --card-higher-background-color: #121518;

    --default-card-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 22%), 0 2px 20px -10px rgb(0 0 0 / 20%);

    --dialog-background-color: var(--md-sys-color-surface);
    --dialog-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 22%), 0 2px 20px -10px rgb(0 0 0 / 20%);




    --color-shade-dark-500: rgba(255, 255, 255, 0.5);
    --color-shade-dark-700: rgba(255, 255, 255, 0.7);
    --default-frame-border-color: rgba(255, 255, 255, 0.05);

    --default-text-color: rgba(232, 234, 237, 1.00);

    --default-input-border-color: rgba(255, 255, 255, 0.05);
    --default-input-background-color: rgb(78 81 86);
    --default-input-label-background-color: rgb(78 81 86);
    --default-input-border-color-focused: rgba(255, 255, 255, 0.438);

    --default-input-text-color: #fff;

    --default-button-background-color: rgb(255 255 255 / 15%);
    --default-button-color: rgba(255, 255, 255, 0.7);
    --default-button-fill: rgba(255, 255, 255, 0.7);
    --default-icon-button-background-color--hover: rgb(255 255 255 / 9%);

    --disabled-button-background-color: rgb(53, 53, 53);
    --disabled-button-color: rgba(255, 255, 255, 0.25);
    --disabled-button-fill: rgba(255, 255, 255, 0.25);


    --menu-item-fill: #ebebeb;
    --menu-item-color: #ebebeb;

    --chip-background-color: rgb(61 62 67);
    --chip-text-color: rgba(239, 239, 239, .87);
    --chip-action-fill: rgb(255 255 255 / 50%);
    --chip-action-color: rgb(255 255 255 / 50%);
    --chip-action-fill--hover: var(--primary-brand-color);
    --chip-action-color--hover: var(--primary-brand-color);

    --timepicker-background-color: transparent;


    --section-tittle-color: #e5e5e5;
    --hover-surface-color: rgb(0 176 240 / 10%);



  }

  /* Style the scrollbar thumb */
  .scrolling-container::-webkit-scrollbar-thumb {
    background-color: rgb(159 159 159);
    /* hotpink thumb */
    border-radius: 5px;
  }

  .scrolling-container::-webkit-scrollbar-thumb:horizontal {
    background-color: rgb(159 159 159);
    /* hotpink thumb */
    border-radius: 5px;
  }

  /* Style the scrollbar track */
  .scrolling-container::-webkit-scrollbar-track {
    background-color: rgb(44 44 44);
    /* skyblue track */
  }

  /* Style the scrollbar track */
  .scrolling-container::-webkit-scrollbar-track:horizontal {
    background-color: rgb(44 44 44);
    /* skyblue track */
  }
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--body-background-color);
  color: var(--default-text-color);
}

.constraint {
  width: 1670px;
  margin: 0 auto;
  position: relative;
}

.constraint .add-padding {
  padding: var(--default-padding-frame);
  box-sizing: border-box;
  position: relative;
}

.frame-padding {
  padding: var(--default-padding-frame);
  box-sizing: border-box;
  position: relative;
}

.border-bottom-light {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: var(--default-frame-border-color);
}

#header-section {
  position: sticky;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 12;
  background-color: var(--header-background-color);
  box-shadow: 0 0 30px #0000001a;
  /* mix-blend-mode: difference; */
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

#header-section .constraint,
#header-section .constraint .add-padding,
#header-section .constraint .add-padding .container {
  height: 100%;
}

@keyframes fade-in-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.loader {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
}

.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 3px solid #00b0f0;
  animation: prixClipFix 2s linear infinite;
}

.loader-container {
  opacity: 0;
  animation-duration: 250ms;
  animation-timing-function: ease-in-out;
  animation-delay: 50ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;

}

.loader-container.start {
  animation-name: fade-in-animation;
}

.loader-container.start .loader {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
  }

  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
  }

  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
  }
}

.header .loader-container {
  width: var(--navigation-set-width);
  height: var(--navigation-set-width);
  display: flex;
  align-items: center;
  justify-content: center;
}

#frame-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: var(--header-set-height);
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--header-background-color);
  z-index: 99;
  border-bottom-width: 1px;
  border-bottom-color: var(--default-frame-border-color);
  border-bottom-style: solid;
  box-sizing: border-box;
}

#frame-container>section {
  border-bottom-width: 1px;
  border-bottom-color: var(--default-frame-border-color);
  border-bottom-style: solid;
  height: 100%;
  width: 100%;
}

section.navigation {
  position: fixed;
  left: 0;
  width: calc((var(--navigation-set-width) - 1px) + (var(--default-items-padding) / 2));
  height: 100%;
  top: var(--header-set-height);
  border-right-width: 1px;
  border-right-color: var(--default-frame-border-color);
  border-right-style: solid;
  background-color: var(--header-background-color);
  z-index: 92;
  box-sizing: border-box;
}

section.navigation .wraper {
  width: 100%;
  height: 100%;
  background-color: var(--header-background-color);
  position: relative;
  z-index: 100;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.22) 0px 0px 0px 0px;
  box-sizing: border-box;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

section.navigation .wraper:hover {
  width: calc(var(--navigation-set-width-opened));
  box-shadow: rgb(0 0 0 / 5%) 20px 1px 20px 0px;
}

section.navigation .wraper nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section.navigation .wraper nav ul li {
  width: var(--navigation-set-width-opened);
  user-select: none;
  padding: calc(var(--default-items-padding) / 2) calc(var(--default-items-padding) / 4);
  box-sizing: border-box;
}

section.navigation .wraper nav ul li>a {
  width: var(--navigation-set-width-opened);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  cursor: pointer;
  fill: var(--menu-item-fill);
  color: var(--menu-item-color);
}

section.navigation .wraper nav ul li>a:hover .icon-container,
section.navigation .wraper nav ul li>a:hover .label-container {
  fill: var(--primary-brand-color);
  color: var(--primary-brand-color);
}

section.navigation .wraper nav ul li .icon-container {
  width: var(--navigation-set-width);
  height: var(--navigation-set-width);
  display: flex;
  align-items: center;
  justify-content: center;
}

section.navigation .wraper nav ul li .icon-container svg {
  height: 22px;
  width: 22px;
  fill: inherit;
}

section.navigation .wraper nav ul li .label-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  text-align: left;
  margin-left: 4px;
}

section.navigation .wraper nav ul li .label-container h4 {
  margin: 0;
  font-weight: 500;
  color: inherit;
}

section.header.row {
  margin: 0 auto;
  height: var(--default-header-row);
}

section.header.row .add-padding,
section.header.row .add-padding .container {
  height: 100%;
}

section.header.row.second {
  background-color: var(--primary-brand-color);
}

#frame-container .add-padding {
  padding: 0 var(--default-padding-frame) 0;
}

#frame-container .add-padding .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#frame-container .add-padding .container .segment {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-loader-container {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-menu-button-container {
  display: none;
}

#menu-button {
  height: 40px;
  width: 40px;
  padding: 4px;
  background-color: transparent;
}

#menu-button svg {
  height: 32px;
  width: 32px;
}

#bodyContainer {
  padding-top: var(--header-set-height);
  padding-left: var(--header-set-height);
  min-height: calc(100dvh - 16px);
  box-sizing: border-box;
}

.button.input-button {
  white-space: nowrap;
  background-color: var(--default-input-background-color);
  text-decoration: none;
  height: 50px;
  box-sizing: border-box;
}

.button.input-button>span {}

.button,
button {
  appearance: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: var(--default-items-padding) calc(var(--default-items-padding) * 2);
  border: none;
  background-color: var(--default-button-background-color);
  fill: var(--default-button-color);
  color: var(--default-button-fill);

  align-items: center;
  font-size: 1.05em;
  font-weight: 600;
  color: var(--primary-brand-color);
  border-radius: var(--default-input-border-radius);
}

.button.filled,
button.filled {
  background-color: var(--primary-brand-color);
  color: #fff;
  fill: #fff;
}

.button:disabled,
button:disabled,
.button.input-button.disabled {
  color: rgba(0, 0, 0, 0.142);
  fill: rgba(0, 0, 0, 0.142);
}

.button.filled:disabled,
button.filled:disabled,
.button.input-button.filled.disabled {
  background-color: var(--disabled-button-background-color);
  color: var(--disabled-button-color);
  fill: var(--disabled-button-fill);
}

.button.with-icon,
button.with-icon {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: var(--default-items-padding) calc(var(--default-items-padding) * 2);
  align-items: center;
}

.button.with-icon.smaller,
button.with-icon.smaller {
  padding: calc(var(--default-items-padding) / 1.6) var(--default-items-padding);
}

.button.smaller {
  padding: calc(var(--default-items-padding) / 1.6) var(--default-items-padding);
}

.button.secondary {
  color: var(--default-button-fill);
}

.button.with-icon span,
button.with-icon span {
  margin-right: 8px;
}

button.with-icon svg {
  width: 20px;
  height: 20px;
  fill: inherit;
}

.button.with-icon.filled svg,
button.with-icon.filled svg {
  fill: #fff;
}

.button.with-icon span.icon-cont,
button.with-icon span.icon-cont {
  margin-right: 0;
  fill: var(--primary-brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
}

.button.with-icon span.icon-cont,
button.with-icon span.icon-cont {
  fill: #fff;
}

.button.with-icon span.icon-cont svg,
button.with-icon span.icon-cont svg {
  width: 24px;
  height: 24px;
  fill: inherit;
}

.icon-button {
  padding: calc(var(--default-items-padding) / 6);
  background-color: transparent;

  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.button.primary-fill,
button.primary-fill {
  fill: var(--primary-brand-color);
}

.icon-button svg {
  fill: inherit;
}

.icon-button .icon-cont {
  height: 24px;
  width: 24px;
}

.icon-button:hover {
  background-color: var(--default-icon-button-background-color--hover);
}

.form-toolbar-bottom {
  margin-top: calc(var(--default-items-margin) * 2);
  padding: calc(var(--default-items-margin) * 2) 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.form-toolbar-bottom:has(> *:only-child) {
  justify-content: flex-end;
}

.dialog {
  position: fixed;
  width: 100vw;
  height: 80vh;
  bottom: -80vh;
  left: 0;
  background-color: #fff;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  z-index: 3;
}

.dialog-open .dialog {
  bottom: 0;
  -webkit-box-shadow: 0 0 10px 5px #000000;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.49);
}

.dialog .wraper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.form-container {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  max-width: 600px;
  margin: 24px auto 0;
  height: fit-content;
}

.form-container .form-row {
  width: 100%;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  height: fit-content;
  margin: 0 0;
  position: relative;
}

.form-container .form-row {
  width: 100%;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  height: fit-content;
  gap: 32px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  container-type: inline-size;

}

.form-row.single-column {
  grid-template-columns: 1fr;
}

.form-row.double-column {
  grid-template-columns: 1fr 1fr;
}

.form-row.max-min-col-split {
  grid-template-columns: 1fr min-content;
}

.form-col.max-width {
  min-width: max-content;
}

.form-col.min-width {
  min-width: fit-content;
}

@container manager-form (inline-size < 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row.max-min-col-split {
    grid-template-columns: 1fr min-content;
  }

  .form-row.double-column {
    grid-template-columns: 1fr 1fr;
  }
}



.form-container .form-row .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-container .form-row .fields .form-col {
  width: 100%;
  padding: 0 0 4px 0px;
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 1;
}

.form-container .form-row .input-wrapper .full-row-button {
  height: 53px;
  width: 100%;
}


.form-container .form-row .input-wrapper input,
.form-container .form-row .input-wrapper textarea,
.form-container .form-row .input-wrapper select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: var(--default-input-border-radius);
  font-size: 1.05em;

  background-color: var(--default-input-background-color);

  border-width: var(--default-input-border-width);
  border-style: solid;
  border-color: var(--default-input-border-color);
  transition: border-color 200ms;
  color: var(--default-input-text-color);
  position: relative;
  resize: none;
  -webkit-appearance: none;
}

.form-container .form-row .input-wrapper.with-icon-right input,
.form-container .form-row .input-wrapper.with-icon-right textarea,
.form-container .form-row .input-wrapper.with-icon-right select {
  width: 100%;
  flex-grow: 1;
  border-right-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--default-input-text-color);
  box-sizing: border-box;
}

.form-container .form-row .input-wrapper.with-icon-right input:focus,
.form-container .form-row .input-wrapper.with-icon-right textarea:focus,
.form-container .form-row .input-wrapper.with-icon-right select:focus {
  outline: none;
}

.form-container .form-row .input-wrapper.with-expand-icon-right input,
.form-container .form-row .input-wrapper.with-expand-icon-right textarea,
.form-container .form-row .input-wrapper.with-expand-icon-right select {
  padding: 12px 32px 12px 16px;
}

.form-container .form-row .input-wrapper .icon-button {
  width: 50px;
  height: 50px;
  border-radius: 0;
  border-width: var(--default-input-border-width);
  border-style: solid;
  border-color: var(--default-input-border-color);
  border-left-width: 0;
  background-color: var(--default-input-background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  fill: var(--default-button-color);
  border-radius: 0 var(--default-input-border-radius) var(--default-input-border-radius) 0;
}

.form-container .form-row .input-wrapper .icon-button.filled {
  background-color: var(--primary-brand-color);
}

.form-container .form-row .input-wrapper .icon-button.filled svg {
  fill: #fff;
}

.form-container .form-row .input-wrapper label {
  margin: 10px 0 0 14px;
  display: block;
  position: absolute;
  font-size: 1.1em;
  line-height: 1.6em;
  opacity: 1;
  background-color: var(--default-input-label-background-color);
  z-index: 1;
  padding: 0 6px 0 4px;
  top: 0;
  border-radius: 6px;
  width: fit-content;
  cursor: text;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  user-select: auto;
  -webkit-user-select: none;
}

.form-container .form-row .input-wrapper input:focus+label,
.form-container .form-row .visible-label .input-wrapper label,
.form-container .form-row .input-wrapper select:focus+label {
  opacity: 1;
  font-size: 0.8em;
  transform: translate(0, calc(-100% + 2px));
}

.form-container .form-row .input-wrapper select:focus+label,
.form-container .form-row .visible-label .input-wrapper select+label {
  transform: translate(0, calc(-260% - calc(100% - var(--default-input-border-width))));
}

.form-row .visible-error-hint .input-wrapper input,
.form-row .visible-error-hint .input-wrapper textarea,
.form-row .visible-error-hint .input-wrapper select {
  border-color: var(--error-color);
}

.form-col.visible-error-hint .checkmarkSingUp,
.form-col.visible-error-hint .checkmarkSingUp {
  border-color: var(--error-color);
}

.form-col .error-hint,
.form-col .error-hint {
  min-height: 0.8em;
  margin: 8px;
  display: block;
  font-size: 0.8em;
  display: block;
  opacity: 0;
  color: #333;
  font-weight: 500;
  color: #f80;
  font-weight: bold;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 250ms ease-in-out;
  user-select: auto;
  -webkit-user-select: none;
}

form .input-wrapper .input-search-results-container {
  display: block;
  height: 0;
  overflow: hidden;
  width: 100%;
  top: 100%;
  position: absolute;
  left: 0;
  background-color: var(--card-background-color);
  box-sizing: border-box;
  -webkit-transition: height 200ms ease-in-out;
  -moz-transition: height 200ms ease-in-out;
  -ms-transition: height 200ms ease-in-out;
  -o-transition: height 200ms ease-in-out;
  transition: height 200ms ease-in-out;
  z-index: 2;
}

form .input-wrapper.showing-serach .input-search-results-container {
  box-shadow: var(--default-card-shadow);
  height: 270px;
}

form .input-wrapper .expand-icon {
  fill: var(--color-shade-dark-500);
  position: absolute;
  right: 8px;
  top: calc(50% - 11px);
  height: 20px;
  width: 20px;
  z-index: 1;
}

#home-search-airport-selected-icon {
  z-index: 3;
  cursor: pointer;
}

.input-search-results-container {}

.input-search-results-container ul {
  margin: 4px 8px;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  height: 100%;
}

.input-search-results-container ul li {
  width: 100%;
  padding: 12px 8px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.input-search-results-container ul li:hover {
  background-color: rgba(0, 176, 240, 0.089);
}

.loagged-in-user-header {
  width: var(--navigation-set-width);
  height: var(--navigation-set-width);
}

.loagged-in-user-header ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.loagged-in-user-header ul li {
  position: relative;
}

.loagged-in-user-header ul li span {
  width: var(--navigation-set-width);
  height: var(--navigation-set-width);
  fill: var(--menu-item-fill);
  color: var(--menu-item-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loagged-in-user-header ul li span svg {
  fill: inherit;
}

.loagged-in-user-header ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100px;
  box-sizing: border-box;
  padding: var(--default-items-padding);
  background-color: var(--card-background-color);
  border-width: 1px;
  border-color: var(--default-frame-border-color);
  border-style: solid;
  box-shadow: rgb(0 0 0 / 10%) 3px 5px 8px 0px;
}

.loagged-in-user-header ul li:hover ul {
  display: block;
}

.loagged-in-user-header ul li ul li {
  min-width: 100%;
}

.loagged-in-user-header ul li ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  cursor: pointer;
  fill: var(--menu-item-fill);
  color: var(--menu-item-color);
}

.loagged-in-user-header ul li ul li a:hover {
  fill: var(--primary-brand-color);
  color: var(--primary-brand-color);
}

.loagged-in-user-header ul li ul li a .icon-container {
  width: var(--navigation-set-width);
  height: var(--navigation-set-width);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loagged-in-user-header ul li ul li a .icon-container svg {
  height: 22px;
  width: 22px;
  fill: inherit;
}

.loagged-in-user-header ul li ul li a .label-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  text-align: left;
}

.loagged-in-user-header ul li ul li a .label-container h4 {
  margin: 0;
  font-weight: 500;
  color: inherit;
}

@keyframes rotate-45 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

.display-none {
  display: none !important;
}

/* --- MATERIAL TABS STYLES --- */
.tabs-header {
  display: flex;
  background-color: var(--md-sys-color-surface);
  /* Clean surface header */
  border-bottom: 1px solid var(--md-sys-color-outline);
  position: relative;
}

.tab-btn {
  flex: 1;
  padding: 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  transition: all var(--transition-speed);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  /* For ripple effect containment if added */
}

/* Hover State */
.tab-btn:hover {
  color: var(--md-sys-color-on-surface);
  background-color: rgba(107, 114, 128, 0.08);
  /* Subtle hover overlay */
}

/* Active State */
.tab-btn.active {
  color: var(--md-sys-color-primary);
}

/* Animated Bottom Indicator */
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--md-sys-color-primary);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

/* Tab Content Logic */
.tab-content {
  display: none;
  padding: 24px;
  min-height: 300px;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 0;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(5px);
  }
}

#snackbarContainer {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  height: 0;
  width: 0;
  z-index: 30;
  left: 50%;
  right: 50%;
}

.snackbar {
  max-width: 450px;
  width: max-content;
  padding: var(--default-items-margin) calc(var(--default-items-margin) * 1.6);
  border-radius: 20px;
  position: absolute;
  bottom: 32px;
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-on-surface);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  user-select: none;
  align-items: center;
  opacity: 0;
  font-size: 1.1em;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 20%), 0 1px 5px 0 rgb(0 0 0 / 12%);
  box-shadow: var(--shadow-md);
  animation-duration: 150ms;
  animation-timing-function: ease-in-out;
  animation-delay: 0ms;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  z-index: 10;
}

.snackbar::after {
  content: '';
  position: absolute;
  border-radius: 20px;
  left: 0;
  width: 100%;
  bottom: 0px;
  top: 0;
  height: 100%;
  backdrop-filter: blur(16px);
  -webkit-mask: linear-gradient(180deg, transparent, black 0%);
  mask: linear-gradient(180deg, transparent, black 0%);
}

.snackbar.fadeIn {
  animation-name: fadeIn;
}

.snackbar.fadeIn.slideOutToBottom {
  animation-name: fadeOut;
}

.snackbar p {
  margin: 0;
  font-size: 0.95em;
  position: relative;
  z-index: 30;
}

@media screen and (min-width: 1801px) and (max-width: 1920px) {
  .constraint {
    width: calc(1780px - var(--navigation-set-width));
  }
}

@media screen and (min-width: 1701px) and (max-width: 1800px) {
  .constraint {
    width: calc(1680px - var(--navigation-set-width));
  }
}

@media screen and (min-width: 1601px) and (max-width: 1700px) {
  .constraint {
    width: calc(1584px - var(--navigation-set-width));
  }
}

@media screen and (min-width: 1560px) and (max-width: 1600px) {
  .constraint {
    width: calc(1537px - var(--navigation-set-width));
  }
}

@media screen and (min-width: 1366px) and (max-width: 1559px) {
  .constraint {
    width: calc(1346px - var(--navigation-set-width));
  }
}

@media screen and (min-width: 1260px) and (max-width: 1365px) {
  .constraint {
    width: calc(1200px - var(--navigation-set-width));
  }
}

@media screen and (min-width: 1020px) and (max-width: 1259px) {
  .constraint {
    width: calc(1000px - var(--navigation-set-width));
  }
}

@media screen and (min-width:0px) and (max-width:1019px) {
  :root {
    --default-padding-frame: 24px;
    --header-logo-height: 42px;
    --header-set-height: 64px;
  }

  @keyframes animate-menu {
    0% {
      transform: translate(-100vw);
      -webkit-box-shadow: 0px 0px 0px 0 #999999;
      box-shadow: 0px 0px 0px 0 #999999;
    }

    70% {
      transform: translate(0);
      -webkit-box-shadow: 0px 0px 0px 0 #999999;
      box-shadow: 0px 0px 0px 0 #999999;
    }

    100% {
      transform: translate(0);
      -webkit-box-shadow: 20px 1px 20px 0 #00000038;
      box-shadow: 20px 1px 20px 0 #00000038
    }
  }

  @keyframes animate-menu-shadow {
    0% {
      /*
      transform:translate(-100vw);
      */
      transform: translate(0);
      opacity: 0;
    }

    100% {
      transform: translate(0);
      opacity: 1;
    }
  }

  .constraint {
    width: 100%;
  }

  .form-container .form-row .fields {
    flex-wrap: wrap;
  }

  .header-menu-button-container {
    display: block;
    z-index: 94;
  }

  #frame-container>section {
    margin: 0 0;
    width: 100%;
    height: 100%;
  }

  #frame-container .add-padding {
    padding: 0 var(--default-padding-frame) 0;
  }

  section.navigation {
    left: 0;
    top: 0;
    width: 90vw;
    height: 100%;
    transform: translate(-100vw);
    animation-duration: 250ms;
    animation-timing-function: ease-in-out;
    animation-delay: 0ms;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;

  }

  section.navigation::after {
    display: block;
    content: "";
    width: 10vw;
    height: 100%;
    background-color: #00000031;
    transform: translate(0);
    left: 90vw;
    position: absolute;
    top: 0;
    opacity: 0;
    animation-duration: 200ms;
    animation-timing-function: ease-in-out;
    animation-delay: 100ms;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    z-index: 99;
    transform: translate(0);

  }

  .show-menu section.navigation {
    animation-name: animate-menu;
  }

  .show-menu section.navigation::after {

    animation-name: animate-menu-shadow;

  }

  section.navigation .wraper nav ul li .icon-container {
    width: 32px;
  }

  section.navigation .wraper {
    margin-top: var(--header-set-height);
    padding: 0 0 0 var(--default-padding-frame);
  }

  section.navigation .wraper:hover {
    width: 100%;
    box-shadow: unset;
  }

  section.navigation .wraper nav ul li {
    width: 100%;
  }

  section.navigation .wraper nav ul li .label-container {
    margin-left: 6px;
  }

  #bodyContainer {
    padding-top: var(--header-set-height);
    padding-left: 0;
  }

  #menu-button {
    height: 32px;
    width: 32px;
    padding: 0;
  }

  .form-container .form-row {
    grid-template-columns: 1fr;
  }

  .form-row.max-min-col-split {
    grid-template-columns: 1fr;
  }
}