body {
  min-height: 800px;
}
body.loading {
  cursor: progress;
}
body div.loading-overlay {
  background-color: rgba(128, 128, 128, 0.3137254902);
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.btn {
  border-radius: 0.25rem;
  font-family: sans-serif;
  padding: 0.75rem;
  height: -moz-fit-content;
  height: fit-content;
  text-transform: uppercase;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.btn:focus {
  outline: 2px solid var(--input-focus-outline);
}
.btn.back {
  align-items: center;
  background-color: var(--button-back-bg);
  color: var(--button-back-color);
  display: flex;
  font-size: 0.75rem;
  gap: 1rem;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
}
.btn.back:hover {
  background-color: var(--button-back-hover-bg);
  color: var(--button-back-hover-color);
}
.btn.primary {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-color);
}
.btn.primary:hover {
  background-color: var(--button-primary-hover-bg);
  color: var(--button-primary-hover-color);
}
.btn.primary:focus {
  border: 1px solid var(--button-primary-focus-border);
}
.btn.secondary {
  background-color: var(--button-secondary-bg);
  color: var(--button-secondary-color);
}
.btn.secondary:hover {
  background-color: var(--button-secondary-hover-bg);
  color: var(--button-secondary-hover-color);
}
.btn.secondary:focus {
  border: 1px solid var(--button-secondary-focus-border);
}
.btn.small {
  font-size: 0.75rem;
  padding: 0.5rem;
}

.blue {
  --rgb: 57, 105, 243;
}

.green {
  --rgb: 51, 91, 11;
}

.red {
  --rgb: 255, 0, 0;
}

:root {
  --main-text-color: #282828;
  --black: #000000;
  --blue-active: #2990c1;
  --dark-gray: #686868;
  --dark-red: #ae2b2b;
  --dark-yellow: #dfd218;
  --gray: #a4a4a4;
  --green: #63ca4d;
  --light-gray: #e9e9e9;
  --red: #d34141;
  --very-light-gray: #fbfbfb;
  --yellow: #e8de48;
  --input-bg: #fff;
  --input-border: #ced4da;
  --input-placeholder: #c9c9c9;
  --input-focus-outline: var(--blue-active);
  --button-bg: #f8f9fa;
  --button-border: #f8f9fa;
  --button-color: #3c4043;
  --button-hover-border: #dadce0;
  --button-hover-color: #202124;
  --button-focus-border: #4285f4;
  --button-primary-bg: #04577f;
  --button-primary-border: #fff;
  --button-primary-color: #fff;
  --button-primary-hover-bg: #089be1;
  --button-primary-hover-color: #f8f9fa;
  --button-primary-hover-border: #dadce0;
  --button-primary-focus-border: var(--input-focus-outline);
  --button-secondary-bg: #9b9b9b;
  --button-secondary-color: #fff;
  --button-secondary-hover-bg: #c7c7c7;
  --button-secondary-hover-color: #fff;
  --button-secondary-focus-border: #4285f4;
  --button-back-bg: #8a8a8a;
  --button-back-hover-bg: #bbb;
  --button-back-color: #fff;
  --button-back-hover-color: #fff;
  --data-list-no-option-available: var(--dark-gray);
  --form-input-label: #979797;
  --form-buttons-wrapper-bg: #fff;
  --form-validation-error-message-color: var(--red);
  --form-button-bg: #5f9f45;
  --form-button-border: #5f9f45;
  --form-button-color: #fff;
  --form-button-hover-bg: #95d57b;
  --form-button-hover-border: #95d57b;
  --form-button-hover-color: #55762f;
  --form-button-focus-border: var(--input-focus-outline);
  --form-fieldset-list-title-color: var(--gray);
  --grid-filter-bg: var(--very-light-gray);
  --grid-filter-border: var(--light-gray);
  --grid-filter-legend: var(--black);
  --grid-filter-button: var(--dark-gray);
  --grid-filter-button-bg: var(--very-light-gray);
  --grid-filter-button-hover-bg: var(--light-gray);
  --grid-filter-button-border: var(--gray);
  --grid-header-color: var(--black);
  --grid-navigation-link-bg: #efefef;
  --grid-navigation-link-color: var(--main-text-color);
  --grid-navigation-link-current-bg: var(--blue-active);
  --grid-navigation-link-current-color: #fff;
  --grid-row-bg: #f7f7f7;
  --grid-table-border: var(--light-gray);
  --notification-error-bg: var(--red);
  --notification-warning-bg: var(--yellow);
  --notification-success-bg: var(--green);
  --svg-main-fill-color: #000000;
  --time-grid-header-bg: var(--light-gray);
  --time-grid-table-header-bg: var(--gray);
  --time-grid-table-header-color: #fff;
}

div.data-list-component {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
div.data-list-component div.data-list-field-wrapper {
  display: flex;
  flex-direction: column;
}
div.data-list-component div.data-list-field-wrapper div.data-list-input-wrapper {
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 0.375rem;
  display: flex;
  padding: 0.375rem 0.65rem;
  overflow: hidden;
}
div.data-list-component div.data-list-field-wrapper div.data-list-input-wrapper.focused {
  outline: 2px solid var(--input-focus-outline);
  outline-offset: -2px;
}
div.data-list-component div.data-list-field-wrapper div.data-list-input-wrapper:hover {
  cursor: text;
}
div.data-list-component div.data-list-field-wrapper div.data-list-input-wrapper input {
  border: none;
  height: 2rem;
  margin-left: 5px;
  min-width: 75px;
  padding: 0;
  width: 100%;
}
div.data-list-component div.data-list-field-wrapper div.data-list-input-wrapper input:focus {
  outline: none;
  outline-width: 0;
}
div.data-list-component div.data-list-field-wrapper div.data-list-input-wrapper div.data-list-selected-options {
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
div.data-list-component div.data-list-field-wrapper div.data-list-input-wrapper div.data-list-selected-options div.data-list-selected-option {
  align-content: center;
  background-color: var(--light-gray);
  display: flex;
  gap: 1rem;
  font-size: 1rem;
  line-height: 2;
  padding-right: 2rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
div.data-list-component div.data-list-field-wrapper div.data-list-input-wrapper div.data-list-selected-options div.data-list-selected-option span {
  position: absolute;
  right: 0;
  top: 0;
}
div.data-list-component div.data-list-field-wrapper a.clear-input {
  color: var(--main-text-color);
  position: absolute;
  right: 10px;
  text-decoration: none;
  top: 1.7rem;
}
div.data-list-component div.data-list-choices {
  background-color: white;
  border: 1px solid #959595;
  box-shadow: 1px 1px 5px gray;
  max-height: 250px;
  min-width: 300px;
  overflow-y: scroll;
  position: absolute;
  z-index: 100;
}
div.data-list-component div.data-list-choices a {
  display: block;
  padding: 1rem;
}
div.data-list-component div.data-list-choices div.data-list-option {
  cursor: pointer;
  font-size: 1rem;
  padding: 1rem;
}
div.data-list-component div.data-list-choices div.data-list-option:hover {
  background-color: lightgray;
}
div.data-list-component div.data-list-choices div.data-list-no-option {
  color: var(--data-list-no-option-available);
  font-size: 1rem;
  padding: 1rem;
}
div.data-list-component div.data-list-selected-option {
  cursor: pointer;
}
div.data-list-component div.data-list-selected-option:hover {
  background-color: lightgray;
}

div[data-controller=DateField] span.age {
  align-content: center;
  background-color: #f9f9f9;
  border: 1px solid lightgray;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 1rem;
  margin-left: -5px;
  padding: 0.75rem;
}

div.drop-down-component {
  position: relative;
}
div.drop-down-component ul {
  background-color: #A9A9A9;
  box-shadow: 2px 3px 4px -2px black;
  list-style: none;
  min-width: 140px;
  padding: 10px 0;
  position: absolute;
  z-index: 100;
}
div.drop-down-component ul li {
  padding: 6px 10px;
  transition: background 0.15s ease-in-out;
}
div.drop-down-component ul li:hover {
  background: #8F8F8F;
}
div.drop-down-component ul a {
  color: white;
  display: inline-block;
  font-size: 12px;
  height: 100%;
  text-decoration: none;
  width: 100%;
}
div.drop-down-component .drop-down-list.closed {
  display: none;
}

form fieldset {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 2rem;
  -moz-column-gap: 4%;
       column-gap: 4%;
  justify-content: space-between;
  width: 100%;
}
form fieldset.uppercase-input-values input,
form fieldset.uppercase-input-values textarea,
form fieldset.uppercase-input-values select,
form fieldset.uppercase-input-values .data-list-input-wrapper,
form fieldset.uppercase-input-values .data-list-option {
  text-transform: uppercase;
}
form a:focus {
  outline: 2px solid var(--input-focus-outline);
}
form .form-fieldset-component {
  display: flex;
  flex-direction: column;
}
form .form-fieldset-component.full {
  width: 100%;
}
form .form-fieldset-component.half {
  width: 48%;
}
form .form-fieldset-component.half.break {
  margin-right: 52%;
}
form .form-fieldset-component.one-fourth {
  width: 22%;
}
form .form-fieldset-component.one-third {
  width: 30%;
}
form .form-fieldset-component.one-third.break {
  margin-right: 70%;
}
form .form-fieldset-component.two-thirds {
  width: 65%;
}
form .form-fieldset-component.three-fourths {
  width: 74%;
}
form .form-fieldset-component label {
  color: var(--form-input-label);
  font-family: sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
}
form .form-fieldset-component input,
form .form-fieldset-component textarea,
form .form-fieldset-component select {
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 0.375rem;
  color: #212529;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  height: 2.75rem;
  line-height: 1.25;
  padding: 0.375rem 0.65rem;
}
form .form-fieldset-component input::-moz-placeholder, form .form-fieldset-component textarea::-moz-placeholder, form .form-fieldset-component select::-moz-placeholder {
  color: var(--input-placeholder);
  font-size: 0.85rem;
}
form .form-fieldset-component input::placeholder,
form .form-fieldset-component textarea::placeholder,
form .form-fieldset-component select::placeholder {
  color: var(--input-placeholder);
  font-size: 0.85rem;
}
form .form-fieldset-component input:focus,
form .form-fieldset-component textarea:focus,
form .form-fieldset-component select:focus {
  outline: 2px solid var(--input-focus-outline);
}
form .form-fieldset-component.checkbox {
  align-items: center;
  flex-direction: row;
}
form .form-fieldset-component.checkbox input {
  height: 1.5rem;
  width: 1.5rem;
}
form .form-fieldset-component span.selected-option-label-read-only {
  line-height: 2.75rem;
}
form .form-fieldset-component .focus {
  outline: 2px solid var(--input-focus-outline) !important;
}
form .form-fieldset-component span.extra-label {
  align-content: center;
  background-color: #f9f9f9;
  border: 1px solid lightgray;
  font-size: 1rem;
  padding: 0.75rem;
  text-wrap: nowrap;
}
form .form-fieldset-component span.extra-label.right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-left: -5px;
}
form .form-fieldset-component span.extra-label.left {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-right: -5px;
  z-index: 1;
}
form .form-fieldset-component span.extra-label .extra-label-label {
  color: var(--form-input-label);
  font-size: 0.75rem;
  text-transform: uppercase;
}
form .form-buttons {
  background-color: var(--form-buttons-wrapper-bg);
  bottom: 0;
  border-top: 1px solid var(--light-gray);
  margin-top: 50px;
  padding: 0.5rem;
  position: sticky;
  text-align: right;
  width: auto;
}
form .form-buttons input {
  background-color: var(--form-button-bg);
  border: 1px solid var(--form-button-border);
  border-radius: 4px;
  color: var(--form-button-color);
  cursor: pointer;
  font-family: arial, sans-serif;
  font-size: 1rem;
  height: 36px;
  line-height: 27px;
  min-width: 54px;
  padding: 0 16px;
  text-align: center;
  text-transform: uppercase;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: pre;
}
form .form-buttons input:hover {
  background-color: var(--form-button-hover-bg);
  border-color: var(--form-button-hover-border);
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 1px;
  color: var(--form-button-hover-color);
}
form .form-buttons input:focus {
  border-color: var(--form-button-focus-border);
  outline: none;
}
form div.form-field-validation-error-message,
form div.fieldset-validation-error-message {
  color: var(--form-validation-error-message-color);
  font-family: sans-serif;
  font-size: 0.75rem;
}
form div.fieldset-validation-error-message {
  flex: 1 1 100%;
}
form div.money-with-discount-fields-wrapper {
  display: flex;
  flex-direction: row;
}
form div.money-with-discount-fields-wrapper > :first-child {
  margin-right: 10px;
  width: 7rem;
}

div.form-fieldset-list {
  min-height: 250px;
}
div.form-fieldset-list h2 {
  text-transform: uppercase;
}
div.form-fieldset-list div.form-fieldset-list-header {
  display: flex;
  margin-bottom: 1rem;
}
div.form-fieldset-list div.form-fieldset-list-header span.title {
  color: var(--form-fieldset-list-title-color);
  font-family: sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}
div.form-fieldset-list div.form-fieldset-list-header a.new.button {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-color);
  font-family: sans-serif;
  font-size: 0.75rem;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
div.form-fieldset-list div.form-fieldset-list-header a.new.button:hover {
  background-color: var(--button-primary-hover-bg);
  color: var(--button-primary-hover-color);
}
div.form-fieldset-list div.form-fieldset-list-header div.form-fieldset-list-buttons {
  align-items: center;
  display: flex;
  gap: 15px;
  margin-left: 15px;
}
div.form-fieldset-list div.list-content {
  align-content: flex-start;
  align-items: flex-start;
  border: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: flex-start;
}
div.form-fieldset-list div.list-content.form-fieldset-list-item-on-copy-mode {
  gap: 1%;
}
div.form-fieldset-list section.form-fieldset-list-item {
  background-color: #F8F8F8;
  display: flex;
  flex-wrap: wrap;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  transition: all 0.2s ease-in-out;
}
div.form-fieldset-list section.form-fieldset-list-item.per-row-4 {
  width: 21.8%;
}
div.form-fieldset-list section.form-fieldset-list-item.per-row-2 {
  width: 49%;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-header-title {
  flex-basis: 100%;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode {
  border: 5px solid #555555;
  border-top-width: 40px;
  cursor: pointer;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode::before {
  content: "Click To Copy";
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1rem;
  position: absolute;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  top: -28px;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode:hover {
  border-color: #4124B6;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode:hover::before {
  font-size: 16px;
}
div.form-fieldset-list section.form-fieldset-list-item.form-fieldset-list-item-on-copy-mode:hover div.form-fielset-list-item-copy-overlay {
  opacity: 25%;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-copy-overlay {
  height: 100%;
  width: 100%;
  background: white;
  position: absolute;
  opacity: 50%;
  transition: all 0.2s ease-in-out;
  z-index: 2;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 2.5rem 0 1.25rem;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper > * {
  flex-basis: 100%;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper > label {
  color: #565656;
  flex-basis: 30%;
  font-size: 10px;
  text-transform: uppercase;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper > p {
  flex-basis: 100%;
  font-size: 12px;
}
div.form-fieldset-list section.form-fieldset-list-item div.form-fieldset-list-item-content-wrapper > p a {
  font-size: 12px;
}
div.form-fieldset-list section.form-fieldset-list-item > header {
  align-items: last baseline;
  background-color: #8F8F8F;
  color: white;
  display: flex;
  flex: 100%;
  gap: 13px;
  margin-bottom: 13px;
  padding: 8px 13px;
  position: relative;
  text-transform: uppercase;
}
div.form-fieldset-list section.form-fieldset-list-item > header h2 {
  font-size: 20px;
  margin: 0;
  text-wrap: nowrap;
}
div.form-fieldset-list section.form-fieldset-list-item > header input {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  width: 100%;
}
div.form-fieldset-list section.form-fieldset-list-item > header input:focus {
  background: white;
  border: none;
  color: black;
}
div.form-fieldset-list section.form-fieldset-list-item > header > a.edit-order-form {
  background-image: url("../images/order-form.svg");
  text-indent: -9999px;
  background-repeat: no-repeat;
  width: 45px;
  height: 40px;
  background-size: 18px;
  background-position: center;
  display: inline-flex;
  align-self: center;
}
div.form-fieldset-list section.form-fieldset-list-item > header > a.edit-order-form:hover {
  background-image: url("../images/order-form-hover.svg");
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component {
  align-self: center;
  display: inline-flex;
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component a.actions-link {
  height: 3rem;
  width: 3rem;
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component a.actions-link circle:first-child {
  transition: all 0.25s ease-in-out;
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component a.actions-link:hover circle:first-child {
  fill: gray;
  r: 12;
}
div.form-fieldset-list section.form-fieldset-list-item > header div.drop-down-component ul {
  margin-top: 40px;
}
div.form-fieldset-list.lighter {
  min-height: 0px !important;
}
div.form-fieldset-list.lighter header {
  background-color: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
}
div.form-fieldset-list.lighter header circle[r="1"] {
  fill: var(--svg-main-fill-color) !important;
}
div.form-fieldset-list.rows section.form-fieldset-list-item {
  flex-basis: content !important;
  width: 100% !important;
}

div.grid-component-wrapper.uppercase-input-values td {
  text-transform: uppercase;
}
div.grid-component-wrapper form {
  align-items: end;
  background-color: var(--grid-filter-bg);
  border: 1px solid var(--grid-filter-border);
  border-bottom: none;
  border-radius: 0.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}
div.grid-component-wrapper form fieldset {
  align-items: flex-start !important;
  justify-content: flex-start;
}
div.grid-component-wrapper form fieldset legend {
  color: var(--grid-filter-legend);
  font-size: 1rem;
  margin-bottom: 1rem;
}
div.grid-component-wrapper form input[type=submit] {
  background-color: var(--grid-filter-button-bg);
  border: 1px solid var(--grid-filter-button-border);
  border-radius: 0.5rem;
  color: var(--grid-filter-button);
  font-size: 0.75rem;
  height: 2rem;
  padding: 1rem;
  text-transform: uppercase;
}
div.grid-component-wrapper form input[type=submit]:hover {
  background-color: var(--grid-filter-button-hover-bg);
  cursor: pointer;
}
div.grid-component-wrapper div.grid-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
div.grid-component-wrapper div.grid-actions a {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-color);
  font-family: sans-serif;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
div.grid-component-wrapper div.grid-actions a:hover {
  background-color: var(--button-primary-hover-bg);
  color: var(--button-primary-hover-color);
}
div.grid-component-wrapper table {
  border: 1px solid var(--grid-table-border);
  width: 100%;
}
div.grid-component-wrapper table colgroup col.row-actions {
  width: 10%;
}
div.grid-component-wrapper table thead {
  text-transform: uppercase;
}
div.grid-component-wrapper table thead th {
  color: var(--grid-header-color);
  font-family: sans-serif;
  font-size: 0.85rem;
  line-height: 2rem;
  padding: 1rem;
  text-align: left;
}
div.grid-component-wrapper table thead th.sortable {
  cursor: pointer;
}
div.grid-component-wrapper table thead th.sortable:before {
  content: url("./svg/up-down.svg");
  margin-right: 5px;
}
div.grid-component-wrapper table thead th.asc:before {
  content: url("./svg/up.svg");
}
div.grid-component-wrapper table thead th.desc:before {
  content: url("./svg/down.svg");
}
div.grid-component-wrapper table tbody tr:nth-child(2n+1) {
  background-color: var(--grid-row-bg);
}
div.grid-component-wrapper table tbody td {
  padding: 15px;
}
div.grid-component-wrapper nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
div.grid-component-wrapper nav a {
  background-color: var(--grid-navigation-link-bg);
  border-radius: 2px;
  color: var(--grid-navigation-link-color);
  padding: 5px;
  text-decoration: none;
}
div.grid-component-wrapper nav a[data-current="1"] {
  background-color: var(--grid-navigation-link-current-bg);
  color: var(--grid-navigation-link-current-color);
}

header {
  align-items: baseline;
  display: flex;
  gap: 30px;
  justify-content: left;
  padding: 25px;
}
header a:focus {
  outline: 2px solid var(--input-focus-outline);
}

.hidden {
  display: none !important;
}

.element-loading {
  background-image: url("/svg/loader.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150px 150px;
  opacity: 1;
  visibility: visible;
}

.x-icon {
  background-image: url("./svg/x-icon.svg");
  display: block;
  height: 15px;
  margin: 2px;
  transition: all 0.1s ease-in-out;
  width: 15px;
}
.x-icon:hover {
  height: 20px;
  width: 20px;
}

.back-arrow {
  background-image: url("./svg/back-arrow.svg");
  display: block;
  height: 20px;
  margin: 2px;
  transition: all 0.1s ease-in-out;
  width: 20px;
}

.row-wrapper {
  display: flex;
  flex-direction: column;
}

.column-wrapper {
  display: flex;
  flex-direction: row;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.half-max-width {
  max-width: 50%;
}

.max-width-75 {
  max-width: 75%;
}

section#main-content-section {
  display: flex;
  flex-direction: row;
}
section#main-content-section div.content-section-content-wrapper {
  transition: width 0.25s ease-in-out;
  width: 100%;
}
section#main-content-section div.content-section-content-wrapper.aside-open {
  width: 80%;
}
section#main-content-section aside.content-section-aside {
  box-shadow: -1px 1px 10px gray;
  clip-path: inset(-10px 0px -10px -10px);
  padding: 1rem;
  position: fixed;
  right: 0;
  transition: width 0.25s ease-in-out;
  width: 18%;
}
section#main-content-section aside.content-section-aside.close {
  visibility: collapse;
  width: 0%;
}

ul.menu a:focus {
  outline: 2px solid var(--input-focus-outline);
}
ul.menu {
  display: flex;
  font-family: sans-serif;
  gap: 30px;
}
ul.menu li.active > a {
  background-color: var(--blue-active);
  color: #fff;
}
ul.menu li a {
  background-color: #414141;
  border-radius: 2px;
  color: white;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}
ul.menu li a:hover {
  background-color: lightgray !important;
  cursor: pointer;
  color: black !important;
}
ul.menu li ul {
  background-color: white;
  box-shadow: 2px 2px 10px gray;
  clip-path: inset(0px -10px -10px -10px);
  margin-top: 9px;
  position: absolute;
  z-index: 100;
}
ul.menu li ul li {
  display: flex;
}
ul.menu li ul li a {
  background-color: white;
  border-radius: 0;
  color: black;
}
ul.menu li ul li a.active {
  background-color: lightgray;
  border: none;
  color: black;
}

dialog#modal {
  min-width: 30%;
}

dialog#modal,
dialog#confirmation-modal,
aside.aside {
  border: none;
  border-radius: 5px;
  box-shadow: 1px 1px 10px #000;
  max-width: 65%;
  padding: 1rem;
}
dialog#modal header,
dialog#confirmation-modal header,
aside.aside header {
  padding: 0;
}
dialog#modal header a.close-modal-button,
dialog#confirmation-modal header a.close-modal-button,
aside.aside header a.close-modal-button {
  position: absolute;
  right: 15px;
  top: 15px;
}
dialog#modal header h3,
dialog#confirmation-modal header h3,
aside.aside header h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}
dialog#modal footer,
dialog#confirmation-modal footer,
aside.aside footer {
  display: flex;
  justify-content: end;
}
dialog#modal > section,
dialog#confirmation-modal > section,
aside.aside > section {
  padding: 0;
}

div.toastify.error {
  background-image: none;
  background-color: var(--notification-error-bg);
}
div.toastify.warning {
  background-image: none;
  background-color: var(--notification-warning-bg);
  color: var(--main-text-color);
}
div.toastify.warning .toast-close {
  color: var(--main-text-color);
}
div.toastify.success {
  background-image: none;
  background-color: var(--notification-success-bg);
}

div.page-content-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
div.page-content-header h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
div.page-content-header h1 span {
  font-size: 1rem;
  font-weight: normal;
}

body {
  padding: 0;
  margin: 0;
}

fieldset {
  padding: 0;
  border: none;
  margin-inline: 0;
  padding-block: 0;
  padding-inline: 0;
}
fieldset legend {
  padding-inline: 0;
}

input {
  padding-block: 0 !important;
}

table {
  border-collapse: collapse;
}

ul {
  list-style: none;
  padding: 0;
}

div.time-grid-wrapper {
  max-height: 500px;
  overflow-y: auto;
}
div.time-grid-wrapper div.time-grid-header {
  background-color: var(--time-grid-header-bg);
  display: flex;
  flex-direction: row;
  height: 2.7rem;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 2;
}
div.time-grid-wrapper div.time-grid-header div.time-grid-actions {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: flex-end;
}
div.time-grid-wrapper div.time-grid-header div.time-grid-actions a {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-color);
  font-family: sans-serif;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
div.time-grid-wrapper div.time-grid-header div.time-grid-actions a:hover {
  background-color: var(--button-primary-hover-bg);
  color: var(--button-primary-hover-color);
}
div.time-grid-wrapper span.title {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2rem;
  text-transform: uppercase;
}
div.time-grid-wrapper table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
div.time-grid-wrapper table th {
  background-color: var(--time-grid-table-header-bg);
  color: var(--time-grid-table-header-color);
  padding: 10px 0 10px 0;
  position: sticky;
  text-transform: uppercase;
  top: 4.7rem;
  width: 13.71%;
  z-index: 2;
}
div.time-grid-wrapper table th:first-child {
  width: 4%;
}
div.time-grid-wrapper table td {
  border: 1px solid black;
  position: relative;
}
div.time-grid-wrapper table td:first-child {
  vertical-align: top;
  position: relative;
}
div.time-grid-wrapper table td:first-child[data-tooltip]:hover::after {
  top: 0px;
  left: 0px;
}
div.time-grid-wrapper table td:not(:first-child):hover {
  background-color: lightgray;
  cursor: pointer;
}
div.time-grid-wrapper table td:hover:has(div:hover) {
  background-color: white;
}
div.time-grid-wrapper table td div.time-grid-time-slot {
  display: flex;
  overflow-x: clip;
  pointer-events: none;
  position: absolute;
  width: 75%;
  z-index: 1;
}
div.time-grid-wrapper table td div.time-grid-time-slot:hover {
  overflow-x: visible;
  width: 100%;
  z-index: 1000;
}
div.time-grid-wrapper table td div.time-grid-event-wrapper {
  background-color: white;
  border-radius: 5px;
  pointer-events: all;
}
div.time-grid-wrapper table td div.time-grid-event-wrapper.highlight div.time-grid-event-colored-bg {
  border: 3px solid #495293;
  background-color: #e6f1ff;
}
div.time-grid-wrapper table td div.time-grid-event-wrapper div.time-grid-event-colored-bg {
  background-color: #ededed;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 0 3px black;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 5px;
  position: relative;
  transition: all 0.15s ease-out;
  width: 100%;
}
div.time-grid-wrapper table td div.time-grid-event-wrapper div.time-grid-event-colored-bg:hover {
  opacity: 100%;
  padding: 10px;
  z-index: 1000;
}
div.time-grid-wrapper table td div.time-grid-event-wrapper div.time-grid-event-colored-bg:hover ul {
  display: block;
}
div.time-grid-wrapper table td div.time-grid-event-wrapper div.time-grid-event-colored-bg span {
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
div.time-grid-wrapper table td div.time-grid-event-wrapper div.time-grid-event-colored-bg ul {
  display: none;
  list-style: none;
  justify-items: right;
  margin: 0;
  margin-bottom: 8px;
  margin-right: -5px;
  margin-top: -5px;
  padding: 0;
  padding-inline: 0;
}
div.time-grid-wrapper table td div.time-grid-event-wrapper div.time-grid-event-colored-bg ul li.delete {
  background: url("/svg/trash-delete-bin.svg");
  background-repeat: no-repeat;
  height: 17px;
  width: 17px;
}

[data-tooltip]:hover::after {
  box-shadow: 0 0 3px black;
  display: block;
  position: absolute;
  content: attr(data-tooltip);
  background: #eee;
  padding: 0.25em;
  left: 0px;
  top: 40px;
  z-index: 1000;
}

html {
  font-family: sans-serif;
  font-size: 0.8vw;
}

h1 {
  font-family: sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

input[type=submit] {
  font-family: sans-serif !important;
}

div#llm_requests table colgroup col.row-actions {
  width: 25%;
}

div#plan_batches table colgroup col.row-actions {
  width: 15%;
}

div#plan_batch_plans table colgroup col.row-actions {
  width: 25%;
}
div#plan_batch_plans div.plan-generation-progress-record {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}
div#plan_batch_plans div.plan-generation-progress-record progress {
  background-color: #4CAF50;
  border-radius: 9px;
  height: 15px;
}

body.frontend {
  background: url("./images/background-pattern.jpg");
  min-height: 1200px;
}
body.frontend div.toastify {
  font-family: "Libre Franklin";
  font-size: 14px;
}
body.frontend h1 {
  text-align: center;
  font-family: "Libre Franklin";
  text-transform: none;
  font-style: italic;
  font-weight: 500;
  font-size: 25px;
  line-height: 37px;
  color: #fff;
  margin-bottom: 60px;
  margin-top: 15px;
}
body.frontend form .form-field-validation-error-message {
  font-family: "Libre Franklin";
  font-size: 20px;
  color: #f73030;
  font-weight: 500;
}
body.frontend form .fieldset-validation-error-message {
  display: none;
}
body.frontend form#plan_request {
  background: #434fa3;
  border-radius: 10px;
  padding: 35px;
}
body.frontend form .form-fieldset-component label {
  font-size: 25px;
  font-family: "Libre Franklin";
  color: #fff;
  margin-bottom: 25px;
  text-transform: none;
}
body.frontend form .form-fieldset-component textarea {
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 18px;
  color: #434FA2;
  font-family: "Libre Franklin";
  height: 210px;
  line-height: 21px;
  padding: 20px;
  width: 100%;
}
body.frontend form div.form-buttons {
  background: none;
  border: 0;
  margin: 0;
  margin-top: 20px;
  padding: 0;
  position: unset;
  text-align: center;
}
body.frontend form div.form-buttons input {
  border-radius: 25px;
  border: 3px solid #fff;
  background-color: #CAE553;
  color: #434FA2;
  font-family: "Libre Franklin" !important;
  font-size: 20px;
  font-weight: bold;
  text-transform: none;
  padding: 30px;
  height: 50px;
}
body.frontend section#main-content-section div.content-section-content-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
@media (max-width: 768px) {
  body.frontend section#main-content-section div.content-section-content-wrapper {
    width: 80%;
  }
}
body.frontend #loading-component {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 45px;
  margin-bottom: 65px;
  text-align: center;
}
body.frontend #loading-component #loading-text {
  font-family: "Libre Franklin";
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
body.frontend #response {
  width: 100%;
  background: #fff;
  min-height: 250px;
  border-radius: 10px;
  padding: 35px;
  box-sizing: border-box;
  font-family: "Libre Franklin";
  font-weight: 500;
  font-size: 18px;
  line-height: 31px;
  color: #434FA2;
}

body.frontend.home div.content-section-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  margin: 0 !important;
  width: 100% !important;
}
body.frontend.home header {
  align-items: center;
  flex-direction: column;
}
body.frontend.home #swoosh-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  background-image: url("./svg/swoosh.svg");
  font-size: 70px;
  font-family: "Libre Franklin";
  line-height: 85px;
  color: #fff;
  font-weight: 700;
  background-repeat: no-repeat;
  background-position: center;
  padding: 26px 90px 50px 90px;
}
body.frontend.home #swoosh-wrapper span {
  color: #CAE553;
}
body.frontend.home #contact-us-wrapper {
  text-align: center;
  font-family: "Libre Franklin";
  font-weight: 500;
  font-size: 25px;
  color: #fff;
  line-height: 37px;
}
body.frontend.home #contact-us-wrapper a {
  text-decoration: none;
  color: #fff;
}
body.frontend.home #team-wrapper {
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
}
@media (max-width: 640px) {
  body.frontend.home #team-wrapper {
    flex-direction: column;
  }
}
body.frontend.home #team-wrapper {
  margin-bottom: 50px;
}
body.frontend.home div.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: "Libre Franklin";
  font-size: 20px;
  font-weight: 500;
}
body.frontend.home div.team-member a {
  margin-bottom: 15px;
}

div.cardList {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
div.cardList div.card {
  border: 1px solid gray;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
div.cardList div.card span.card-title {
  font-weight: bold;
}
div.cardList div.card:hover {
  background-color: lightgray;
}
