:root {
  --primary-color: #3333ce;
  --primary-color-hover: #4b4bd4;
  --primary-color-text: #fff;
  --secondary-color: #aaa;
}
.window {
  background: #ffffffe0;
  border-radius: 0.5em;
  border: #00000088;
  padding: 2rem;
  box-shadow: 0 0 0.5rem #00000088;
  width: 100%;
  max-width: 100rem;
  display: flex;
  flex-direction: column;
  /* if backdrop support: very transparent and blurred */
}
.window.medium-width {
  max-width: 50rem;
}
.window.center {
  margin: auto;
}
@media only screen and (min-width: 500px) {
  .window {
    padding: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .window {
    min-width: 30rem;
  }
}
@supports ((-webkit-backdrop-filter: blur(1rem)) or (backdrop-filter: blur(1rem))) {
  .window {
    backdrop-filter: blur(1rem);
    background: linear-gradient(#ffffffad, #f0f0f0a6);
    -webkit-backdrop-filter: blur(1rem);
  }
}
.window > .header {
  margin: calc(-1 * 2rem) calc(-1 * 2rem) 1rem;
}
.window > .header .main {
  font-size: clamp(1rem, 6vw, 2.2rem);
  font-family: "Saira", "Roboto", sans-serif;
  font-weight: bold;
  background: #fffe;
  padding: 1rem 1rem 1rem 2rem;
  margin: 0;
}
.window > .header .sub {
  background: linear-gradient(45deg, #ffffff7d, transparent);
  padding: 0.5em 0 0.5em 2rem;
  font-size: 1rem;
  font-family: "Archivo", "Roboto", sans-serif;
}
.window .contents {
  transition: 0.5s height ease-in-out;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.window.hide_contents {
  padding-bottom: 0;
  display: block;
}
.window.hide_contents .header {
  margin-bottom: 0;
}
.window.hide_contents .contents {
  overflow: hidden;
  height: 0;
}
.panel {
  background: #ffffff80;
  padding: 2rem;
  box-shadow: 0 0 0.5rem #0004;
  border-radius: 0.5rem;
}
.panel > :first-child {
  margin-top: 0;
}
.panel + .panel {
  margin-top: 3rem;
}
.panel > .header {
  margin: calc(-1 * 2rem) calc(-1 * 2rem) 0rem;
  font-size: 0.9rem;
  padding: 0;
  border-top-left-radius: 0.5rem;
  color: #0000007d;
  user-select: none;
}
.panel > .header.mini {
  /* FIlters type header*/
  padding: 0.5em;
  background: linear-gradient(90deg, #ffffff75, #fff0);
}
.panel > .header .main {
  font-size: clamp(0.9rem, 3.6vw, 1rem);
  font-family: "Saira", "Roboto", sans-serif;
  font-weight: bold;
  background: #d8b11a;
  padding: 0.4rem 1rem 0.3rem 2rem;
  margin: 0;
  /*-0.5rem -0.5rem 0;*/
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  color: black;
}
.panel > .header .sub {
  background: linear-gradient(45deg, #ffffff7d, transparent);
  padding: 0.5em 0 0.5em 2rem;
  font-size: 1rem;
  margin: 0 0 1rem;
}
html,
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  font-family: "Archivo", "Roboto", sans-serif;
}
:root {
  --background-url: url('/static/main/images/portal_background.webp');
}
body {
  background: #eee var(--background-url) fixed center;
  background-size: cover;
}
.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
label {
  display: block;
}
.error-message {
  white-space: pre-wrap;
  background: #0000006b;
  border: 1px solid red;
  padding: 1rem;
  display: none;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.error-message:not(:empty) {
  display: block;
}
.error-no-date-cell {
  background: #f002 !important;
  border: 1px solid red;
  padding: 0.5em 1rem;
  text-align: center;
  font-weight: 900;
  color: red;
  display: block;
  width: 7em;
}
.error-no-value-cell {
  background: #f002 !important;
  border: 1px solid red;
  padding: 0.5em 1rem;
  text-align: center;
  font-weight: 900;
  color: red;
  display: block;
  width: 7em;
}
.alert.alert-danger {
  font-size: 1.3rem;
  color: #101012e6;
  background: #f9a7a7ad;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.1rem #000000a6;
}
a {
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: 0.3s all ease-in-out;
}
a:hover {
  border-bottom: 1px solid #006;
}
a.btn {
  border-bottom: unset !important;
  text-decoration: none;
}
a.btn:hover {
  text-decoration: underline !important;
}
.dashboard {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}
.dashboard .dashboard--left-bar {
  background: #d7b31be0;
  background: linear-gradient(to left, #FFCC05, #ffcc05d9);
  width: 15rem;
  color: black;
  backdrop-filter: blur(0.3rem);
}
.dashboard .dashboard--left-bar h1 {
  font-size: 2rem;
  margin-left: 1rem;
  font-family: "Saira", "Roboto", sans-serif;
}
.dashboard .dashboard--left-bar h2 {
  font-size: 0.7rem;
  padding: 2em 0 0.2em 0.4em;
  margin: 0;
  font-family: "Saira", "Roboto", sans-serif;
}
.dashboard .dashboard--left-bar ul {
  list-style: none;
  color: black;
  padding: 0;
  margin: 0;
  font-family: "Archivo", "Roboto", sans-serif;
}
.dashboard .dashboard--left-bar ul li a {
  display: block;
  color: black !important;
  text-decoration: none;
  padding: 0.5em 1em;
  transition: 0.3s ease-in-out background-color;
  border-bottom: 0 !important;
}
.dashboard .dashboard--left-bar ul li a:hover {
  background: #555;
  text-decoration: none;
}
.dashboard .dashboard--contents-side {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dashboard .dashboard--contents-side .dashboard--top-bar {
  height: 4rem;
  background: white;
  display: flex;
  flex-direction: row;
  color: #555;
  gap: 2rem;
  padding: 0.5rem 2rem;
  align-items: center;
}
.dashboard .dashboard--contents-side .dashboard--top-bar .dashboard--top-bar--logo {
  height: 3rem;
}
.dashboard .dashboard--contents-side .dashboard--top-bar .breadcrumb {
  margin: 0;
}
.dashboard .dashboard--contents-side .dashboard--contents {
  padding: 2rem;
  flex: 1;
  color: #555;
  background: #d5d5d5 var(--background-url) cover;
}
.user-profile {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem;
}
.user-profile .user-profile--image {
  background: url("/static/main/images/user.png");
  background-size: cover;
  border-radius: 50%;
  border: 1px solid white;
  aspect-ratio: 1;
  width: 30%;
}
.user-profile .user-profile--name {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.table {
  width: 100%;
  border: 1px solid #888;
}
.table > tr > td {
  padding: 0.5em;
  border-bottom: 1px solid #888;
}
.table > :nth-child(odd) {
  background: #f0f0f0DD;
}
.table > :nth-child(even) {
  background: #fffD;
}
.font-small {
  font-size: 0.8em;
}
.notyf__toast {
  max-width: 650px;
}
.notyf__toast .notyf__ripple {
  width: calc(100% + 15rem);
}
label.label-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.5em;
  padding-right: 1em;
}
label.label-header .label-header--title {
  font-weight: 900;
  width: 14rem;
  padding-right: 1em;
}
.nice_extra_info {
  display: inline;
  width: 3em;
  background: #ffffff61;
  border: 1px solid #8881;
  text-align: center;
  color: #000;
  border-radius: 0.4em;
}
.nice_extra_info:invalid {
  background: #f005;
}
.action-tweaker {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.action-tweaker > div {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
.action-tweaker > div > :nth-child(1) button {
  width: 12rem;
}
.action-tweaker > div > :nth-child(2) {
  flex-grow: 1;
}
.ts-wrapper .option .title {
  display: block;
}
.ts-wrapper .option .url {
  font-size: 12px;
  display: block;
  color: #a0a0a0;
}
.todo_highlight {
  background: #ffff9c;
  padding: 0.2em 1em;
  border: 1px solid #c0c0a9;
}
.todo_highlight:before {
  content: "TODO:";
  font-size: max(0.3em, 0.7rem);
}
.table > :not(caption) > * > *.no_table_stuff {
  padding: 0;
}
.small-details {
  font-size: 0.8em;
  color: #555;
}
.greenlane {
  border-radius: 50%;
  background: green;
  width: 1rem;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.table_custom tbody > .greenlane:nth-child(odd) {
  background: #92ed92;
}
.table_custom tbody > .greenlane:nth-child(even) {
  background: #c6ffc6;
}
.btn.green_lane_toggle {
  border-radius: 50%;
  background: green;
  width: 1rem;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.btn.green_lane_toggle[data-state='off'] {
  background: white;
  border: 2px solid green !important;
}
.column_data {
  width: 30rem;
}
.column_data tr + tr > td {
  padding-top: 1rem;
}
.column_data td:nth-child(1) {
  font-weight: 900;
  white-space: pre;
  padding-right: 1rem;
}
.column_data td:nth-child(2) {
  min-width: 17rem;
}
/* used in admin interface */
.errorlist {
  margin: -25px 0 25px 0;
  list-style-type: none;
  color: #d96060;
  background: #fff2f2;
  padding: 0.5rem;
}
/* used in admin interfce */
.vCheckboxLabel {
  position: absolute;
}
.help {
  color: #666;
  font-style: italic;
  font-size: 0.9em;
}
button {
  background: #eee;
  color: black;
  border: 1px solid gray;
  padding: 0.5rem 3rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
button.primary {
  background: var(--primary-color);
  color: var(--primary-color-text);
}
button.primary:hover {
  background: var(--primary-color-hover);
}
.dialog_wrapper {
  position: absolute;
  width: 100%;
  min-height: 100%;
  padding: 2em 1em;
  background: #00000088;
  z-index: 1000;
  transition: 0.3s opacity ease-in-out;
  opacity: 0;
  display: none;
  flex-direction: column;
}
.dialog_wrapper[shown] {
  opacity: 1;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}
.dialog_wrapper .card {
  max-width: 30rem;
  margin: auto;
  padding: 2rem;
  min-width: 30rem;
  box-shadow: 0 0 1rem #00000088;
}
.dialog_wrapper .card hr {
  margin: 2rem -2rem 0;
}
.dialog_wrapper .card .dialog_footer {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.dialog-center-screen {
  position: static;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  max-width: calc(100vw - 2rem);
}
.dialog-card {
  --padding-used: 2rem;
  background: #ffffff;
  margin: auto;
  border-radius: 0.5em;
  border: #00000088;
  padding: var(--padding-used);
  box-shadow: 0 0 1rem #00000088 !important;
  width: 100%;
  max-width: 60rem;
  background: linear-gradient(#fffffff0, #dbd9d9c4);
  /* if backdrop support: very transparent and blurred */
}
@supports ((-webkit-backdrop-filter: blur(1rem)) or (backdrop-filter: blur(1rem))) {
  .dialog-card {
    backdrop-filter: blur(1rem);
    background: linear-gradient(#ffffff94, #dbd9d994) !important;
    -webkit-backdrop-filter: blur(1rem);
  }
}
.dialog-card h1 {
  margin: -2rem -2rem 2rem;
  background: white;
  padding: 1rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  color: #303030;
}
.dialog-card .dialog_footer {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 2em calc(-1 * var(--padding-used)) calc(-1 * var(--padding-used));
  padding: 1em;
  border-top: 1px solid #888;
  background: #fffc;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
@media only screen and (min-width: 500px) {
  .dialog-card {
    width: 80%;
    --padding-used: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .dialog-card {
    min-width: 30rem;
  }
  .dialog-card .dialog_footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
.dialog-card button {
  padding: 0.5em 3em;
}
.meter {
  box-sizing: content-box;
  height: 20px;
  /* Can be anything */
  position: relative;
  margin: 1rem 0 20px 0;
  /* Just for demo spacing */
  background: #424141a8;
  border-radius: 25px;
  padding: 10px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}
.meter > span {
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #2bc253;
  background-image: linear-gradient(center bottom, #2bc253 37%, #54f054 69%);
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.meter > span:after,
.animate > span > span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  z-index: 1;
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}
.animate > span:after {
  display: none;
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
.green > span {
  background-image: linear-gradient(#a9f165, #67f30a);
}
.orange > span {
  background-image: linear-gradient(#f1a165, #f36d0a);
}
.red > span {
  background-image: linear-gradient(#f0a3a3, #f42323);
}
.nostripes > span > span,
.nostripes > span::after {
  background-image: none;
}
.table_custom {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0.5rem;
  border-style: hidden;
  /* hide standard table (collapsed) border */
  box-shadow: 0 0 0 1px #666;
  /* this draws the table border  */
}
.table_custom th {
  vertical-align: text-top;
  color: #303030;
}
.table_custom th small {
  font-size: 0.7rem;
  color: #555;
  display: block;
}
.table_custom tr > td {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #888;
}
.table_custom th {
  background: #0000000f;
  padding: 0.5rem 0.5rem;
  vertical-align: text-top;
  border-bottom: 1px solid #555;
}
.table_custom th:first-child {
  border-top-left-radius: 0.5rem;
}
.table_custom th:last-child {
  border-top-right-radius: 0.5rem;
}
.table_custom tbody > :nth-child(odd) {
  background: #f0f0f0DD;
}
.table_custom tbody > :nth-child(even) {
  background: #fffD;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.saira-500 {
  font-family: "Saira", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.saira-900 {
  font-family: "Saira", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.archivo-500 {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
/*# sourceMappingURL=main.css.map */