/**!
vi18n-ui - The visual interpretation of the client user interface.
@version v5.1.9
lets start something fresh
*/
@charset "UTF-8";
html,
body {
  height: 100%;
}

/* 
style="
--auto-grid-min-size: 25rem;
--auto-grid-max-columns: 3;
--auto-grid-gap: 1rem;"
  */
.grid-auto {
  --max-column-width: 100% / var(--auto-grid-max-columns, infinity) - var(--auto-grid-gap);
  --column-width: max(var(--max-column-width),
      min(var(--auto-grid-min-size, 10rem), 100%));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--column-width), 1fr));
  gap: var(--auto-grid-gap-vertical, var(--auto-grid-gap, 1rem)) var(--auto-grid-gap, 1rem);
}

vi18n-app,
.page {
  display: grid;
  grid-template-areas: "header" "content" "footer";
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-gap: 1rem;
  height: calc(100vh - 3rem);
  flex-direction: column;
  flex-wrap: wrap;
}

vi18n-app-header {
  grid-area: header;
  z-index: 3;
  position: sticky;
  top: 0;
}

vi18n-infoboard,
.header {
  grid-area: header;
  z-index: 3;
  position: sticky;
  top: 0;
}

.content {
  grid-area: content;
}

vi18n-app-footer {
  grid-area: footer;
  z-index: 3;
}

vi18n-footer,
.footer {
  z-index: 3;
  grid-area: footer;
}

/*!
 * Bootstrap Grid v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*, ::after, ::before {
  box-sizing: inherit;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-table {
  display: table;
}

.d-table-row {
  display: table-row;
}

.d-table-cell {
  display: table-cell;
}

.d-flex {
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none;
  }
  .d-sm-inline {
    display: inline;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-table {
    display: table;
  }
  .d-sm-table-row {
    display: table-row;
  }
  .d-sm-table-cell {
    display: table-cell;
  }
  .d-sm-flex {
    display: -ms-flexbox;
    display: flex;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-block {
    display: block;
  }
  .d-md-table {
    display: table;
  }
  .d-md-table-row {
    display: table-row;
  }
  .d-md-table-cell {
    display: table-cell;
  }
  .d-md-flex {
    display: -ms-flexbox;
    display: flex;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-inline {
    display: inline;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-table {
    display: table;
  }
  .d-lg-table-row {
    display: table-row;
  }
  .d-lg-table-cell {
    display: table-cell;
  }
  .d-lg-flex {
    display: -ms-flexbox;
    display: flex;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none;
  }
  .d-xl-inline {
    display: inline;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-table {
    display: table;
  }
  .d-xl-table-row {
    display: table-row;
  }
  .d-xl-table-cell {
    display: table-cell;
  }
  .d-xl-flex {
    display: -ms-flexbox;
    display: flex;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media print {
  .d-print-none {
    display: none;
  }
  .d-print-inline {
    display: inline;
  }
  .d-print-inline-block {
    display: inline-block;
  }
  .d-print-block {
    display: block;
  }
  .d-print-table {
    display: table;
  }
  .d-print-table-row {
    display: table-row;
  }
  .d-print-table-cell {
    display: table-cell;
  }
  .d-print-flex {
    display: -ms-flexbox;
    display: flex;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.flex-row {
  -ms-flex-direction: row;
  flex-direction: row;
}

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

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

.flex-column-reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

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

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

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

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

.flex-grow-0 {
  -ms-flex-positive: 0;
  flex-grow: 0;
}

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

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

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

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

.justify-content-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify-content-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

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

.align-items-end {
  -ms-flex-align: end;
  align-items: flex-end;
}

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

.align-items-baseline {
  -ms-flex-align: baseline;
  align-items: baseline;
}

.align-items-stretch {
  -ms-flex-align: stretch;
  align-items: stretch;
}

.align-content-start {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.align-content-end {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.align-content-center {
  -ms-flex-line-pack: center;
  align-content: center;
}

.align-content-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.align-content-around {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.align-self-auto {
  -ms-flex-item-align: auto;
  align-self: auto;
}

.align-self-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.align-self-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.align-self-center {
  -ms-flex-item-align: center;
  align-self: center;
}

.align-self-baseline {
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

.align-self-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-sm-column {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-sm-start {
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-sm-end {
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-sm-center {
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-md-column {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
  .justify-content-md-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-md-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-md-center {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-md-start {
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-md-end {
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-md-center {
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .align-self-md-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .align-self-md-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .align-self-md-center {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-lg-column {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-lg-start {
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-lg-end {
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-lg-center {
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-xl-column {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .align-items-xl-start {
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .align-items-xl-end {
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .align-items-xl-center {
    -ms-flex-align: center;
    align-items: center;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
}
.m-0 {
  margin: 0;
}

.mt-0, .my-0 {
  margin-top: 0;
}

.mr-0, .mx-0 {
  margin-right: 0;
}

.mb-0, .my-0 {
  margin-bottom: 0;
}

.ml-0, .mx-0 {
  margin-left: 0;
}

.m-1 {
  margin: 0.25rem;
}

.mt-1, .my-1 {
  margin-top: 0.25rem;
}

.mr-1, .mx-1 {
  margin-right: 0.25rem;
}

.mb-1, .my-1 {
  margin-bottom: 0.25rem;
}

.ml-1, .mx-1 {
  margin-left: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.mt-2, .my-2 {
  margin-top: 0.5rem;
}

.mr-2, .mx-2 {
  margin-right: 0.5rem;
}

.mb-2, .my-2 {
  margin-bottom: 0.5rem;
}

.ml-2, .mx-2 {
  margin-left: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.mt-3, .my-3 {
  margin-top: 1rem;
}

.mr-3, .mx-3 {
  margin-right: 1rem;
}

.mb-3, .my-3 {
  margin-bottom: 1rem;
}

.ml-3, .mx-3 {
  margin-left: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.mt-4, .my-4 {
  margin-top: 1.5rem;
}

.mr-4, .mx-4 {
  margin-right: 1.5rem;
}

.mb-4, .my-4 {
  margin-bottom: 1.5rem;
}

.ml-4, .mx-4 {
  margin-left: 1.5rem;
}

.m-5 {
  margin: 3rem;
}

.mt-5, .my-5 {
  margin-top: 3rem;
}

.mr-5, .mx-5 {
  margin-right: 3rem;
}

.mb-5, .my-5 {
  margin-bottom: 3rem;
}

.ml-5, .mx-5 {
  margin-left: 3rem;
}

.p-0 {
  padding: 0;
}

.pt-0, .py-0 {
  padding-top: 0;
}

.pr-0, .px-0 {
  padding-right: 0;
}

.pb-0, .py-0 {
  padding-bottom: 0;
}

.pl-0, .px-0 {
  padding-left: 0;
}

.p-1 {
  padding: 0.25rem;
}

.pt-1, .py-1 {
  padding-top: 0.25rem;
}

.pr-1, .px-1 {
  padding-right: 0.25rem;
}

.pb-1, .py-1 {
  padding-bottom: 0.25rem;
}

.pl-1, .px-1 {
  padding-left: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.pt-2, .py-2 {
  padding-top: 0.5rem;
}

.pr-2, .px-2 {
  padding-right: 0.5rem;
}

.pb-2, .py-2 {
  padding-bottom: 0.5rem;
}

.pl-2, .px-2 {
  padding-left: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.pt-3, .py-3 {
  padding-top: 1rem;
}

.pr-3, .px-3 {
  padding-right: 1rem;
}

.pb-3, .py-3 {
  padding-bottom: 1rem;
}

.pl-3, .px-3 {
  padding-left: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.pt-4, .py-4 {
  padding-top: 1.5rem;
}

.pr-4, .px-4 {
  padding-right: 1.5rem;
}

.pb-4, .py-4 {
  padding-bottom: 1.5rem;
}

.pl-4, .px-4 {
  padding-left: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.pt-5, .py-5 {
  padding-top: 3rem;
}

.pr-5, .px-5 {
  padding-right: 3rem;
}

.pb-5, .py-5 {
  padding-bottom: 3rem;
}

.pl-5, .px-5 {
  padding-left: 3rem;
}

.m-n1 {
  margin: -0.25rem;
}

.mt-n1, .my-n1 {
  margin-top: -0.25rem;
}

.mr-n1, .mx-n1 {
  margin-right: -0.25rem;
}

.mb-n1, .my-n1 {
  margin-bottom: -0.25rem;
}

.ml-n1, .mx-n1 {
  margin-left: -0.25rem;
}

.m-n2 {
  margin: -0.5rem;
}

.mt-n2, .my-n2 {
  margin-top: -0.5rem;
}

.mr-n2, .mx-n2 {
  margin-right: -0.5rem;
}

.mb-n2, .my-n2 {
  margin-bottom: -0.5rem;
}

.ml-n2, .mx-n2 {
  margin-left: -0.5rem;
}

.m-n3 {
  margin: -1rem;
}

.mt-n3, .my-n3 {
  margin-top: -1rem;
}

.mr-n3, .mx-n3 {
  margin-right: -1rem;
}

.mb-n3, .my-n3 {
  margin-bottom: -1rem;
}

.ml-n3, .mx-n3 {
  margin-left: -1rem;
}

.m-n4 {
  margin: -1.5rem;
}

.mt-n4, .my-n4 {
  margin-top: -1.5rem;
}

.mr-n4, .mx-n4 {
  margin-right: -1.5rem;
}

.mb-n4, .my-n4 {
  margin-bottom: -1.5rem;
}

.ml-n4, .mx-n4 {
  margin-left: -1.5rem;
}

.m-n5 {
  margin: -3rem;
}

.mt-n5, .my-n5 {
  margin-top: -3rem;
}

.mr-n5, .mx-n5 {
  margin-right: -3rem;
}

.mb-n5, .my-n5 {
  margin-bottom: -3rem;
}

.ml-n5, .mx-n5 {
  margin-left: -3rem;
}

.m-auto {
  margin: auto;
}

.mt-auto, .my-auto {
  margin-top: auto;
}

.mr-auto, .mx-auto {
  margin-right: auto;
}

.mb-auto, .my-auto {
  margin-bottom: auto;
}

.ml-auto, .mx-auto {
  margin-left: auto;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0;
  }
  .mt-sm-0, .my-sm-0 {
    margin-top: 0;
  }
  .mr-sm-0, .mx-sm-0 {
    margin-right: 0;
  }
  .mb-sm-0, .my-sm-0 {
    margin-bottom: 0;
  }
  .ml-sm-0, .mx-sm-0 {
    margin-left: 0;
  }
  .m-sm-1 {
    margin: 0.25rem;
  }
  .mt-sm-1, .my-sm-1 {
    margin-top: 0.25rem;
  }
  .mr-sm-1, .mx-sm-1 {
    margin-right: 0.25rem;
  }
  .mb-sm-1, .my-sm-1 {
    margin-bottom: 0.25rem;
  }
  .ml-sm-1, .mx-sm-1 {
    margin-left: 0.25rem;
  }
  .m-sm-2 {
    margin: 0.5rem;
  }
  .mt-sm-2, .my-sm-2 {
    margin-top: 0.5rem;
  }
  .mr-sm-2, .mx-sm-2 {
    margin-right: 0.5rem;
  }
  .mb-sm-2, .my-sm-2 {
    margin-bottom: 0.5rem;
  }
  .ml-sm-2, .mx-sm-2 {
    margin-left: 0.5rem;
  }
  .m-sm-3 {
    margin: 1rem;
  }
  .mt-sm-3, .my-sm-3 {
    margin-top: 1rem;
  }
  .mr-sm-3, .mx-sm-3 {
    margin-right: 1rem;
  }
  .mb-sm-3, .my-sm-3 {
    margin-bottom: 1rem;
  }
  .ml-sm-3, .mx-sm-3 {
    margin-left: 1rem;
  }
  .m-sm-4 {
    margin: 1.5rem;
  }
  .mt-sm-4, .my-sm-4 {
    margin-top: 1.5rem;
  }
  .mr-sm-4, .mx-sm-4 {
    margin-right: 1.5rem;
  }
  .mb-sm-4, .my-sm-4 {
    margin-bottom: 1.5rem;
  }
  .ml-sm-4, .mx-sm-4 {
    margin-left: 1.5rem;
  }
  .m-sm-5 {
    margin: 3rem;
  }
  .mt-sm-5, .my-sm-5 {
    margin-top: 3rem;
  }
  .mr-sm-5, .mx-sm-5 {
    margin-right: 3rem;
  }
  .mb-sm-5, .my-sm-5 {
    margin-bottom: 3rem;
  }
  .ml-sm-5, .mx-sm-5 {
    margin-left: 3rem;
  }
  .p-sm-0 {
    padding: 0;
  }
  .pt-sm-0, .py-sm-0 {
    padding-top: 0;
  }
  .pr-sm-0, .px-sm-0 {
    padding-right: 0;
  }
  .pb-sm-0, .py-sm-0 {
    padding-bottom: 0;
  }
  .pl-sm-0, .px-sm-0 {
    padding-left: 0;
  }
  .p-sm-1 {
    padding: 0.25rem;
  }
  .pt-sm-1, .py-sm-1 {
    padding-top: 0.25rem;
  }
  .pr-sm-1, .px-sm-1 {
    padding-right: 0.25rem;
  }
  .pb-sm-1, .py-sm-1 {
    padding-bottom: 0.25rem;
  }
  .pl-sm-1, .px-sm-1 {
    padding-left: 0.25rem;
  }
  .p-sm-2 {
    padding: 0.5rem;
  }
  .pt-sm-2, .py-sm-2 {
    padding-top: 0.5rem;
  }
  .pr-sm-2, .px-sm-2 {
    padding-right: 0.5rem;
  }
  .pb-sm-2, .py-sm-2 {
    padding-bottom: 0.5rem;
  }
  .pl-sm-2, .px-sm-2 {
    padding-left: 0.5rem;
  }
  .p-sm-3 {
    padding: 1rem;
  }
  .pt-sm-3, .py-sm-3 {
    padding-top: 1rem;
  }
  .pr-sm-3, .px-sm-3 {
    padding-right: 1rem;
  }
  .pb-sm-3, .py-sm-3 {
    padding-bottom: 1rem;
  }
  .pl-sm-3, .px-sm-3 {
    padding-left: 1rem;
  }
  .p-sm-4 {
    padding: 1.5rem;
  }
  .pt-sm-4, .py-sm-4 {
    padding-top: 1.5rem;
  }
  .pr-sm-4, .px-sm-4 {
    padding-right: 1.5rem;
  }
  .pb-sm-4, .py-sm-4 {
    padding-bottom: 1.5rem;
  }
  .pl-sm-4, .px-sm-4 {
    padding-left: 1.5rem;
  }
  .p-sm-5 {
    padding: 3rem;
  }
  .pt-sm-5, .py-sm-5 {
    padding-top: 3rem;
  }
  .pr-sm-5, .px-sm-5 {
    padding-right: 3rem;
  }
  .pb-sm-5, .py-sm-5 {
    padding-bottom: 3rem;
  }
  .pl-sm-5, .px-sm-5 {
    padding-left: 3rem;
  }
  .m-sm-n1 {
    margin: -0.25rem;
  }
  .mt-sm-n1, .my-sm-n1 {
    margin-top: -0.25rem;
  }
  .mr-sm-n1, .mx-sm-n1 {
    margin-right: -0.25rem;
  }
  .mb-sm-n1, .my-sm-n1 {
    margin-bottom: -0.25rem;
  }
  .ml-sm-n1, .mx-sm-n1 {
    margin-left: -0.25rem;
  }
  .m-sm-n2 {
    margin: -0.5rem;
  }
  .mt-sm-n2, .my-sm-n2 {
    margin-top: -0.5rem;
  }
  .mr-sm-n2, .mx-sm-n2 {
    margin-right: -0.5rem;
  }
  .mb-sm-n2, .my-sm-n2 {
    margin-bottom: -0.5rem;
  }
  .ml-sm-n2, .mx-sm-n2 {
    margin-left: -0.5rem;
  }
  .m-sm-n3 {
    margin: -1rem;
  }
  .mt-sm-n3, .my-sm-n3 {
    margin-top: -1rem;
  }
  .mr-sm-n3, .mx-sm-n3 {
    margin-right: -1rem;
  }
  .mb-sm-n3, .my-sm-n3 {
    margin-bottom: -1rem;
  }
  .ml-sm-n3, .mx-sm-n3 {
    margin-left: -1rem;
  }
  .m-sm-n4 {
    margin: -1.5rem;
  }
  .mt-sm-n4, .my-sm-n4 {
    margin-top: -1.5rem;
  }
  .mr-sm-n4, .mx-sm-n4 {
    margin-right: -1.5rem;
  }
  .mb-sm-n4, .my-sm-n4 {
    margin-bottom: -1.5rem;
  }
  .ml-sm-n4, .mx-sm-n4 {
    margin-left: -1.5rem;
  }
  .m-sm-n5 {
    margin: -3rem;
  }
  .mt-sm-n5, .my-sm-n5 {
    margin-top: -3rem;
  }
  .mr-sm-n5, .mx-sm-n5 {
    margin-right: -3rem;
  }
  .mb-sm-n5, .my-sm-n5 {
    margin-bottom: -3rem;
  }
  .ml-sm-n5, .mx-sm-n5 {
    margin-left: -3rem;
  }
  .m-sm-auto {
    margin: auto;
  }
  .mt-sm-auto, .my-sm-auto {
    margin-top: auto;
  }
  .mr-sm-auto, .mx-sm-auto {
    margin-right: auto;
  }
  .mb-sm-auto, .my-sm-auto {
    margin-bottom: auto;
  }
  .ml-sm-auto, .mx-sm-auto {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0;
  }
  .mt-md-0, .my-md-0 {
    margin-top: 0;
  }
  .mr-md-0, .mx-md-0 {
    margin-right: 0;
  }
  .mb-md-0, .my-md-0 {
    margin-bottom: 0;
  }
  .ml-md-0, .mx-md-0 {
    margin-left: 0;
  }
  .m-md-1 {
    margin: 0.25rem;
  }
  .mt-md-1, .my-md-1 {
    margin-top: 0.25rem;
  }
  .mr-md-1, .mx-md-1 {
    margin-right: 0.25rem;
  }
  .mb-md-1, .my-md-1 {
    margin-bottom: 0.25rem;
  }
  .ml-md-1, .mx-md-1 {
    margin-left: 0.25rem;
  }
  .m-md-2 {
    margin: 0.5rem;
  }
  .mt-md-2, .my-md-2 {
    margin-top: 0.5rem;
  }
  .mr-md-2, .mx-md-2 {
    margin-right: 0.5rem;
  }
  .mb-md-2, .my-md-2 {
    margin-bottom: 0.5rem;
  }
  .ml-md-2, .mx-md-2 {
    margin-left: 0.5rem;
  }
  .m-md-3 {
    margin: 1rem;
  }
  .mt-md-3, .my-md-3 {
    margin-top: 1rem;
  }
  .mr-md-3, .mx-md-3 {
    margin-right: 1rem;
  }
  .mb-md-3, .my-md-3 {
    margin-bottom: 1rem;
  }
  .ml-md-3, .mx-md-3 {
    margin-left: 1rem;
  }
  .m-md-4 {
    margin: 1.5rem;
  }
  .mt-md-4, .my-md-4 {
    margin-top: 1.5rem;
  }
  .mr-md-4, .mx-md-4 {
    margin-right: 1.5rem;
  }
  .mb-md-4, .my-md-4 {
    margin-bottom: 1.5rem;
  }
  .ml-md-4, .mx-md-4 {
    margin-left: 1.5rem;
  }
  .m-md-5 {
    margin: 3rem;
  }
  .mt-md-5, .my-md-5 {
    margin-top: 3rem;
  }
  .mr-md-5, .mx-md-5 {
    margin-right: 3rem;
  }
  .mb-md-5, .my-md-5 {
    margin-bottom: 3rem;
  }
  .ml-md-5, .mx-md-5 {
    margin-left: 3rem;
  }
  .p-md-0 {
    padding: 0;
  }
  .pt-md-0, .py-md-0 {
    padding-top: 0;
  }
  .pr-md-0, .px-md-0 {
    padding-right: 0;
  }
  .pb-md-0, .py-md-0 {
    padding-bottom: 0;
  }
  .pl-md-0, .px-md-0 {
    padding-left: 0;
  }
  .p-md-1 {
    padding: 0.25rem;
  }
  .pt-md-1, .py-md-1 {
    padding-top: 0.25rem;
  }
  .pr-md-1, .px-md-1 {
    padding-right: 0.25rem;
  }
  .pb-md-1, .py-md-1 {
    padding-bottom: 0.25rem;
  }
  .pl-md-1, .px-md-1 {
    padding-left: 0.25rem;
  }
  .p-md-2 {
    padding: 0.5rem;
  }
  .pt-md-2, .py-md-2 {
    padding-top: 0.5rem;
  }
  .pr-md-2, .px-md-2 {
    padding-right: 0.5rem;
  }
  .pb-md-2, .py-md-2 {
    padding-bottom: 0.5rem;
  }
  .pl-md-2, .px-md-2 {
    padding-left: 0.5rem;
  }
  .p-md-3 {
    padding: 1rem;
  }
  .pt-md-3, .py-md-3 {
    padding-top: 1rem;
  }
  .pr-md-3, .px-md-3 {
    padding-right: 1rem;
  }
  .pb-md-3, .py-md-3 {
    padding-bottom: 1rem;
  }
  .pl-md-3, .px-md-3 {
    padding-left: 1rem;
  }
  .p-md-4 {
    padding: 1.5rem;
  }
  .pt-md-4, .py-md-4 {
    padding-top: 1.5rem;
  }
  .pr-md-4, .px-md-4 {
    padding-right: 1.5rem;
  }
  .pb-md-4, .py-md-4 {
    padding-bottom: 1.5rem;
  }
  .pl-md-4, .px-md-4 {
    padding-left: 1.5rem;
  }
  .p-md-5 {
    padding: 3rem;
  }
  .pt-md-5, .py-md-5 {
    padding-top: 3rem;
  }
  .pr-md-5, .px-md-5 {
    padding-right: 3rem;
  }
  .pb-md-5, .py-md-5 {
    padding-bottom: 3rem;
  }
  .pl-md-5, .px-md-5 {
    padding-left: 3rem;
  }
  .m-md-n1 {
    margin: -0.25rem;
  }
  .mt-md-n1, .my-md-n1 {
    margin-top: -0.25rem;
  }
  .mr-md-n1, .mx-md-n1 {
    margin-right: -0.25rem;
  }
  .mb-md-n1, .my-md-n1 {
    margin-bottom: -0.25rem;
  }
  .ml-md-n1, .mx-md-n1 {
    margin-left: -0.25rem;
  }
  .m-md-n2 {
    margin: -0.5rem;
  }
  .mt-md-n2, .my-md-n2 {
    margin-top: -0.5rem;
  }
  .mr-md-n2, .mx-md-n2 {
    margin-right: -0.5rem;
  }
  .mb-md-n2, .my-md-n2 {
    margin-bottom: -0.5rem;
  }
  .ml-md-n2, .mx-md-n2 {
    margin-left: -0.5rem;
  }
  .m-md-n3 {
    margin: -1rem;
  }
  .mt-md-n3, .my-md-n3 {
    margin-top: -1rem;
  }
  .mr-md-n3, .mx-md-n3 {
    margin-right: -1rem;
  }
  .mb-md-n3, .my-md-n3 {
    margin-bottom: -1rem;
  }
  .ml-md-n3, .mx-md-n3 {
    margin-left: -1rem;
  }
  .m-md-n4 {
    margin: -1.5rem;
  }
  .mt-md-n4, .my-md-n4 {
    margin-top: -1.5rem;
  }
  .mr-md-n4, .mx-md-n4 {
    margin-right: -1.5rem;
  }
  .mb-md-n4, .my-md-n4 {
    margin-bottom: -1.5rem;
  }
  .ml-md-n4, .mx-md-n4 {
    margin-left: -1.5rem;
  }
  .m-md-n5 {
    margin: -3rem;
  }
  .mt-md-n5, .my-md-n5 {
    margin-top: -3rem;
  }
  .mr-md-n5, .mx-md-n5 {
    margin-right: -3rem;
  }
  .mb-md-n5, .my-md-n5 {
    margin-bottom: -3rem;
  }
  .ml-md-n5, .mx-md-n5 {
    margin-left: -3rem;
  }
  .m-md-auto {
    margin: auto;
  }
  .mt-md-auto, .my-md-auto {
    margin-top: auto;
  }
  .mr-md-auto, .mx-md-auto {
    margin-right: auto;
  }
  .mb-md-auto, .my-md-auto {
    margin-bottom: auto;
  }
  .ml-md-auto, .mx-md-auto {
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0;
  }
  .mt-lg-0, .my-lg-0 {
    margin-top: 0;
  }
  .mr-lg-0, .mx-lg-0 {
    margin-right: 0;
  }
  .mb-lg-0, .my-lg-0 {
    margin-bottom: 0;
  }
  .ml-lg-0, .mx-lg-0 {
    margin-left: 0;
  }
  .m-lg-1 {
    margin: 0.25rem;
  }
  .mt-lg-1, .my-lg-1 {
    margin-top: 0.25rem;
  }
  .mr-lg-1, .mx-lg-1 {
    margin-right: 0.25rem;
  }
  .mb-lg-1, .my-lg-1 {
    margin-bottom: 0.25rem;
  }
  .ml-lg-1, .mx-lg-1 {
    margin-left: 0.25rem;
  }
  .m-lg-2 {
    margin: 0.5rem;
  }
  .mt-lg-2, .my-lg-2 {
    margin-top: 0.5rem;
  }
  .mr-lg-2, .mx-lg-2 {
    margin-right: 0.5rem;
  }
  .mb-lg-2, .my-lg-2 {
    margin-bottom: 0.5rem;
  }
  .ml-lg-2, .mx-lg-2 {
    margin-left: 0.5rem;
  }
  .m-lg-3 {
    margin: 1rem;
  }
  .mt-lg-3, .my-lg-3 {
    margin-top: 1rem;
  }
  .mr-lg-3, .mx-lg-3 {
    margin-right: 1rem;
  }
  .mb-lg-3, .my-lg-3 {
    margin-bottom: 1rem;
  }
  .ml-lg-3, .mx-lg-3 {
    margin-left: 1rem;
  }
  .m-lg-4 {
    margin: 1.5rem;
  }
  .mt-lg-4, .my-lg-4 {
    margin-top: 1.5rem;
  }
  .mr-lg-4, .mx-lg-4 {
    margin-right: 1.5rem;
  }
  .mb-lg-4, .my-lg-4 {
    margin-bottom: 1.5rem;
  }
  .ml-lg-4, .mx-lg-4 {
    margin-left: 1.5rem;
  }
  .m-lg-5 {
    margin: 3rem;
  }
  .mt-lg-5, .my-lg-5 {
    margin-top: 3rem;
  }
  .mr-lg-5, .mx-lg-5 {
    margin-right: 3rem;
  }
  .mb-lg-5, .my-lg-5 {
    margin-bottom: 3rem;
  }
  .ml-lg-5, .mx-lg-5 {
    margin-left: 3rem;
  }
  .p-lg-0 {
    padding: 0;
  }
  .pt-lg-0, .py-lg-0 {
    padding-top: 0;
  }
  .pr-lg-0, .px-lg-0 {
    padding-right: 0;
  }
  .pb-lg-0, .py-lg-0 {
    padding-bottom: 0;
  }
  .pl-lg-0, .px-lg-0 {
    padding-left: 0;
  }
  .p-lg-1 {
    padding: 0.25rem;
  }
  .pt-lg-1, .py-lg-1 {
    padding-top: 0.25rem;
  }
  .pr-lg-1, .px-lg-1 {
    padding-right: 0.25rem;
  }
  .pb-lg-1, .py-lg-1 {
    padding-bottom: 0.25rem;
  }
  .pl-lg-1, .px-lg-1 {
    padding-left: 0.25rem;
  }
  .p-lg-2 {
    padding: 0.5rem;
  }
  .pt-lg-2, .py-lg-2 {
    padding-top: 0.5rem;
  }
  .pr-lg-2, .px-lg-2 {
    padding-right: 0.5rem;
  }
  .pb-lg-2, .py-lg-2 {
    padding-bottom: 0.5rem;
  }
  .pl-lg-2, .px-lg-2 {
    padding-left: 0.5rem;
  }
  .p-lg-3 {
    padding: 1rem;
  }
  .pt-lg-3, .py-lg-3 {
    padding-top: 1rem;
  }
  .pr-lg-3, .px-lg-3 {
    padding-right: 1rem;
  }
  .pb-lg-3, .py-lg-3 {
    padding-bottom: 1rem;
  }
  .pl-lg-3, .px-lg-3 {
    padding-left: 1rem;
  }
  .p-lg-4 {
    padding: 1.5rem;
  }
  .pt-lg-4, .py-lg-4 {
    padding-top: 1.5rem;
  }
  .pr-lg-4, .px-lg-4 {
    padding-right: 1.5rem;
  }
  .pb-lg-4, .py-lg-4 {
    padding-bottom: 1.5rem;
  }
  .pl-lg-4, .px-lg-4 {
    padding-left: 1.5rem;
  }
  .p-lg-5 {
    padding: 3rem;
  }
  .pt-lg-5, .py-lg-5 {
    padding-top: 3rem;
  }
  .pr-lg-5, .px-lg-5 {
    padding-right: 3rem;
  }
  .pb-lg-5, .py-lg-5 {
    padding-bottom: 3rem;
  }
  .pl-lg-5, .px-lg-5 {
    padding-left: 3rem;
  }
  .m-lg-n1 {
    margin: -0.25rem;
  }
  .mt-lg-n1, .my-lg-n1 {
    margin-top: -0.25rem;
  }
  .mr-lg-n1, .mx-lg-n1 {
    margin-right: -0.25rem;
  }
  .mb-lg-n1, .my-lg-n1 {
    margin-bottom: -0.25rem;
  }
  .ml-lg-n1, .mx-lg-n1 {
    margin-left: -0.25rem;
  }
  .m-lg-n2 {
    margin: -0.5rem;
  }
  .mt-lg-n2, .my-lg-n2 {
    margin-top: -0.5rem;
  }
  .mr-lg-n2, .mx-lg-n2 {
    margin-right: -0.5rem;
  }
  .mb-lg-n2, .my-lg-n2 {
    margin-bottom: -0.5rem;
  }
  .ml-lg-n2, .mx-lg-n2 {
    margin-left: -0.5rem;
  }
  .m-lg-n3 {
    margin: -1rem;
  }
  .mt-lg-n3, .my-lg-n3 {
    margin-top: -1rem;
  }
  .mr-lg-n3, .mx-lg-n3 {
    margin-right: -1rem;
  }
  .mb-lg-n3, .my-lg-n3 {
    margin-bottom: -1rem;
  }
  .ml-lg-n3, .mx-lg-n3 {
    margin-left: -1rem;
  }
  .m-lg-n4 {
    margin: -1.5rem;
  }
  .mt-lg-n4, .my-lg-n4 {
    margin-top: -1.5rem;
  }
  .mr-lg-n4, .mx-lg-n4 {
    margin-right: -1.5rem;
  }
  .mb-lg-n4, .my-lg-n4 {
    margin-bottom: -1.5rem;
  }
  .ml-lg-n4, .mx-lg-n4 {
    margin-left: -1.5rem;
  }
  .m-lg-n5 {
    margin: -3rem;
  }
  .mt-lg-n5, .my-lg-n5 {
    margin-top: -3rem;
  }
  .mr-lg-n5, .mx-lg-n5 {
    margin-right: -3rem;
  }
  .mb-lg-n5, .my-lg-n5 {
    margin-bottom: -3rem;
  }
  .ml-lg-n5, .mx-lg-n5 {
    margin-left: -3rem;
  }
  .m-lg-auto {
    margin: auto;
  }
  .mt-lg-auto, .my-lg-auto {
    margin-top: auto;
  }
  .mr-lg-auto, .mx-lg-auto {
    margin-right: auto;
  }
  .mb-lg-auto, .my-lg-auto {
    margin-bottom: auto;
  }
  .ml-lg-auto, .mx-lg-auto {
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0;
  }
  .mt-xl-0, .my-xl-0 {
    margin-top: 0;
  }
  .mr-xl-0, .mx-xl-0 {
    margin-right: 0;
  }
  .mb-xl-0, .my-xl-0 {
    margin-bottom: 0;
  }
  .ml-xl-0, .mx-xl-0 {
    margin-left: 0;
  }
  .m-xl-1 {
    margin: 0.25rem;
  }
  .mt-xl-1, .my-xl-1 {
    margin-top: 0.25rem;
  }
  .mr-xl-1, .mx-xl-1 {
    margin-right: 0.25rem;
  }
  .mb-xl-1, .my-xl-1 {
    margin-bottom: 0.25rem;
  }
  .ml-xl-1, .mx-xl-1 {
    margin-left: 0.25rem;
  }
  .m-xl-2 {
    margin: 0.5rem;
  }
  .mt-xl-2, .my-xl-2 {
    margin-top: 0.5rem;
  }
  .mr-xl-2, .mx-xl-2 {
    margin-right: 0.5rem;
  }
  .mb-xl-2, .my-xl-2 {
    margin-bottom: 0.5rem;
  }
  .ml-xl-2, .mx-xl-2 {
    margin-left: 0.5rem;
  }
  .m-xl-3 {
    margin: 1rem;
  }
  .mt-xl-3, .my-xl-3 {
    margin-top: 1rem;
  }
  .mr-xl-3, .mx-xl-3 {
    margin-right: 1rem;
  }
  .mb-xl-3, .my-xl-3 {
    margin-bottom: 1rem;
  }
  .ml-xl-3, .mx-xl-3 {
    margin-left: 1rem;
  }
  .m-xl-4 {
    margin: 1.5rem;
  }
  .mt-xl-4, .my-xl-4 {
    margin-top: 1.5rem;
  }
  .mr-xl-4, .mx-xl-4 {
    margin-right: 1.5rem;
  }
  .mb-xl-4, .my-xl-4 {
    margin-bottom: 1.5rem;
  }
  .ml-xl-4, .mx-xl-4 {
    margin-left: 1.5rem;
  }
  .m-xl-5 {
    margin: 3rem;
  }
  .mt-xl-5, .my-xl-5 {
    margin-top: 3rem;
  }
  .mr-xl-5, .mx-xl-5 {
    margin-right: 3rem;
  }
  .mb-xl-5, .my-xl-5 {
    margin-bottom: 3rem;
  }
  .ml-xl-5, .mx-xl-5 {
    margin-left: 3rem;
  }
  .p-xl-0 {
    padding: 0;
  }
  .pt-xl-0, .py-xl-0 {
    padding-top: 0;
  }
  .pr-xl-0, .px-xl-0 {
    padding-right: 0;
  }
  .pb-xl-0, .py-xl-0 {
    padding-bottom: 0;
  }
  .pl-xl-0, .px-xl-0 {
    padding-left: 0;
  }
  .p-xl-1 {
    padding: 0.25rem;
  }
  .pt-xl-1, .py-xl-1 {
    padding-top: 0.25rem;
  }
  .pr-xl-1, .px-xl-1 {
    padding-right: 0.25rem;
  }
  .pb-xl-1, .py-xl-1 {
    padding-bottom: 0.25rem;
  }
  .pl-xl-1, .px-xl-1 {
    padding-left: 0.25rem;
  }
  .p-xl-2 {
    padding: 0.5rem;
  }
  .pt-xl-2, .py-xl-2 {
    padding-top: 0.5rem;
  }
  .pr-xl-2, .px-xl-2 {
    padding-right: 0.5rem;
  }
  .pb-xl-2, .py-xl-2 {
    padding-bottom: 0.5rem;
  }
  .pl-xl-2, .px-xl-2 {
    padding-left: 0.5rem;
  }
  .p-xl-3 {
    padding: 1rem;
  }
  .pt-xl-3, .py-xl-3 {
    padding-top: 1rem;
  }
  .pr-xl-3, .px-xl-3 {
    padding-right: 1rem;
  }
  .pb-xl-3, .py-xl-3 {
    padding-bottom: 1rem;
  }
  .pl-xl-3, .px-xl-3 {
    padding-left: 1rem;
  }
  .p-xl-4 {
    padding: 1.5rem;
  }
  .pt-xl-4, .py-xl-4 {
    padding-top: 1.5rem;
  }
  .pr-xl-4, .px-xl-4 {
    padding-right: 1.5rem;
  }
  .pb-xl-4, .py-xl-4 {
    padding-bottom: 1.5rem;
  }
  .pl-xl-4, .px-xl-4 {
    padding-left: 1.5rem;
  }
  .p-xl-5 {
    padding: 3rem;
  }
  .pt-xl-5, .py-xl-5 {
    padding-top: 3rem;
  }
  .pr-xl-5, .px-xl-5 {
    padding-right: 3rem;
  }
  .pb-xl-5, .py-xl-5 {
    padding-bottom: 3rem;
  }
  .pl-xl-5, .px-xl-5 {
    padding-left: 3rem;
  }
  .m-xl-n1 {
    margin: -0.25rem;
  }
  .mt-xl-n1, .my-xl-n1 {
    margin-top: -0.25rem;
  }
  .mr-xl-n1, .mx-xl-n1 {
    margin-right: -0.25rem;
  }
  .mb-xl-n1, .my-xl-n1 {
    margin-bottom: -0.25rem;
  }
  .ml-xl-n1, .mx-xl-n1 {
    margin-left: -0.25rem;
  }
  .m-xl-n2 {
    margin: -0.5rem;
  }
  .mt-xl-n2, .my-xl-n2 {
    margin-top: -0.5rem;
  }
  .mr-xl-n2, .mx-xl-n2 {
    margin-right: -0.5rem;
  }
  .mb-xl-n2, .my-xl-n2 {
    margin-bottom: -0.5rem;
  }
  .ml-xl-n2, .mx-xl-n2 {
    margin-left: -0.5rem;
  }
  .m-xl-n3 {
    margin: -1rem;
  }
  .mt-xl-n3, .my-xl-n3 {
    margin-top: -1rem;
  }
  .mr-xl-n3, .mx-xl-n3 {
    margin-right: -1rem;
  }
  .mb-xl-n3, .my-xl-n3 {
    margin-bottom: -1rem;
  }
  .ml-xl-n3, .mx-xl-n3 {
    margin-left: -1rem;
  }
  .m-xl-n4 {
    margin: -1.5rem;
  }
  .mt-xl-n4, .my-xl-n4 {
    margin-top: -1.5rem;
  }
  .mr-xl-n4, .mx-xl-n4 {
    margin-right: -1.5rem;
  }
  .mb-xl-n4, .my-xl-n4 {
    margin-bottom: -1.5rem;
  }
  .ml-xl-n4, .mx-xl-n4 {
    margin-left: -1.5rem;
  }
  .m-xl-n5 {
    margin: -3rem;
  }
  .mt-xl-n5, .my-xl-n5 {
    margin-top: -3rem;
  }
  .mr-xl-n5, .mx-xl-n5 {
    margin-right: -3rem;
  }
  .mb-xl-n5, .my-xl-n5 {
    margin-bottom: -3rem;
  }
  .ml-xl-n5, .mx-xl-n5 {
    margin-left: -3rem;
  }
  .m-xl-auto {
    margin: auto;
  }
  .mt-xl-auto, .my-xl-auto {
    margin-top: auto;
  }
  .mr-xl-auto, .mx-xl-auto {
    margin-right: auto;
  }
  .mb-xl-auto, .my-xl-auto {
    margin-bottom: auto;
  }
  .ml-xl-auto, .mx-xl-auto {
    margin-left: auto;
  }
}

/**!
Helper styles
*/
.animate-fadein-up-on {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
  transition: visibility 0s, opacity 0.2s, transform 0.2s;
}

.animate-fadein-up-off {
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 10px);
  transition: visibility 0s 0.2s, opacity 0.2s, transform 0.2s;
}

.animate-transition,
.animate-transition-02s {
  transition: all 0.2s;
}

.animate-transition-03s {
  transition: all 0.3s;
}

.animate-transition-04s {
  transition: all 0.4s;
}

.animate-transition-05s {
  transition: all 0.5s;
}

.animate-transition-1s {
  transition: all 1s;
}

.transition-delay-02s {
  transition-delay: 0.2s;
}

.transition-delay-03s {
  transition-delay: 0.3s;
}

.transition-delay-04s {
  transition-delay: 0.4s;
}

.transition-delay-05s {
  transition-delay: 0.5s;
}

:root {
  --radius: 0.25rem;
  --radius-sm: calc(var(--radius) / 1);
  --radius-md: calc(var(--radius) * 2);
  --radius-lg: calc(var(--radius) * 4);
  --radius-xl: calc(var(--radius) * 8);
  --radius-full: 1e5px;
  --radius-none: 0px;
}

.border-radius-0,
.border-radius-none {
  border-radius: var(--radius-none);
}

.border-radius-sm {
  border-radius: var(--radius-sm);
}

.border-radius-md {
  border-radius: var(--radius-md);
}

.border-radius-lg {
  border-radius: var(--radius-lg);
}

.border-radius-xl {
  border-radius: var(--radius-xl);
}

.border-radius-full {
  border-radius: var(--radius-full);
}

.border-radius-top-left-0 {
  border-top-left-radius: var(--radius-none);
}

.border-radius-top-right-0 {
  border-top-right-radius: var(--radius-none);
}

.border-radius-bottom-left-0 {
  border-bottom-left-radius: var(--radius-none);
}

.border-radius-bottom-right-0 {
  border-bottom-right-radius: var(--radius-none);
}

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

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

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

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

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

.border-2 {
  border: 2px solid var(--color-gray-200);
}

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

.border-2-right {
  border-right: 2px solid var(--color-gray-200);
}

.border-2-bottom {
  border-bottom: 2px solid var(--color-gray-200);
}

.border-2-left {
  border-left: 2px solid var(--color-gray-200);
}

.border-3 {
  border: 3px solid var(--color-gray-200);
}

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

.border-3-right {
  border-right: 3px solid var(--color-gray-200);
}

.border-3-bottom {
  border-bottom: 3px solid var(--color-gray-200);
}

.border-3-left {
  border-left: 3px solid var(--color-gray-200);
}

.border-4 {
  border: 4px solid var(--color-gray-200);
}

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

.border-4-right {
  border-right: 4px solid var(--color-gray-200);
}

.border-4-bottom {
  border-bottom: 4px solid var(--color-gray-200);
}

.border-4-left {
  border-left: 4px solid var(--color-gray-200);
}

.border-0 {
  border: 0;
}

.border-0-top {
  border-top: 0;
}

.border-0-right {
  border-right: 0;
}

.border-0-bottom {
  border-bottom: 0;
}

.border-0-left {
  border-left: 0;
}

.border-transparent {
  border-color: var(--color-transparent);
}

.border-current-color {
  border-color: currentColor;
}

.border-gray-100 {
  border-color: var(--color-gray-100);
}

.border-gray-200 {
  border-color: var(--color-gray-200);
}

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

.border-gray-400 {
  border-color: var(--color-gray-400);
}

.border-gray-500,
.border-gray {
  border-color: var(--color-gray-500);
}

.border-gray-600 {
  border-color: var(--color-gray-600);
}

.border-gray-700 {
  border-color: var(--color-gray-700);
}

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

.border-gray-900 {
  border-color: var(--color-gray-900);
}

.border-white {
  border-color: var(--color-white);
}

.border-primary-lighter {
  border-color: var(--color-primary-lighter);
}

.border-primary-light {
  border-color: var(--color-primary-light);
}

.border-primary {
  border-color: var(--color-primary);
}

.border-primary-dark {
  border-color: var(--color-primary-dark);
}

.border-primary-darker {
  border-color: var(--color-primary-darker);
}

.border-secondary-lighter {
  border-color: var(--color-secondary-lighter);
}

.border-secondary-light {
  border-color: var(--color-secondary-light);
}

.border-secondary {
  border-color: var(--color-secondary);
}

.border-secondary-dark {
  border-color: var(--color-secondary-dark);
}

.border-secondary-darker {
  border-color: var(--color-secondary-darker);
}

.border-blue {
  border-color: var(--color-blue-500);
}

.border-success,
.border-green {
  border-color: var(--color-green-500);
}

.border-warning,
.border-orange {
  border-color: var(--color-orange-500);
}

.border-error,
.border-red {
  border-color: var(--color-red-500);
}

.border-black {
  border-color: var(--color-black);
}

.border-auto {
  border-color: currentColor;
}

:root {
  color-scheme: only light;
  --shadow-xs: light-dark(0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 0px 0px 1px rgba(255, 255, 255, 0.05));
  --shadow-sm: light-dark(0px 1px 2px 0px rgba(0, 0, 0, 0.05), 0px 1px 2px 0px rgba(255, 255, 255, 0.05));
  --shadow-md: light-dark(0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(255, 255, 255, 0.1));
  --shadow-lg: light-dark(0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(255, 255, 255, 0.1));
  --shadow-xl: light-dark(0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(255, 255, 255, 0.1));
  --shadow-2xl: light-dark(0px 25px 50px -12px rgba(0, 0, 0, 0.25), 0px 25px 50px -12px rgba(255, 255, 255, 0.25));
  --shadow-inner: light-dark(inset 0px 2px 4px 0px rgba(0, 0, 0, 0.05), inset 0px 2px 4px 0px rgba(255, 255, 255, 0.05));
  --shadow-none: none;
  --base-hue: 208;
  --color-primary-darker: light-dark(hsl(var(--base-hue), 100%, 8%), hsl(var(--base-hue), 100%, 92%));
  --color-primary-dark: light-dark(hsl(var(--base-hue), 100%, 18%), hsl(var(--base-hue), 100%, 82%));
  --color-primary: light-dark(hsl(var(--base-hue), 100%, 34%), hsl(var(--base-hue), 100%, 66%));
  --color-primary-light: light-dark(hsl(var(--base-hue), 100%, 70%), hsl(var(--base-hue), 100%, 30%));
  --color-primary-lighter: light-dark(hsl(var(--base-hue), 100%, 90%), hsl(var(--base-hue), 100%, 10%));
  --complementary-hue: calc(var(--base-hue) + 175);
  --color-secondary-darker: light-dark(hsl(var(--complementary-hue), 100%, 8%), hsl(var(--complementary-hue), 100%, 92%));
  --color-secondary-dark: light-dark(hsl(var(--complementary-hue), 100%, 18%), hsl(var(--complementary-hue), 100%, 82%));
  --color-secondary: light-dark(hsl(var(--complementary-hue), 100%, 34%), hsl(var(--complementary-hue), 100%, 66%));
  --color-secondary-light: light-dark(hsl(var(--complementary-hue), 100%, 70%), hsl(var(--complementary-hue), 100%, 30%));
  --color-secondary-lighter: light-dark(hsl(var(--complementary-hue), 100%, 90%), hsl(var(--complementary-hue), 100%, 10%));
  --accent-hue: calc(var(--base-hue) + 125);
  --color-accent-darker: light-dark(hsl(var(--accent-hue), 100%, 8%), hsl(var(--accent-hue), 100%, 92%));
  --color-accent-dark: light-dark(hsl(var(--accent-hue), 100%, 18%), hsl(var(--accent-hue), 100%, 82%));
  --color-accent: light-dark(hsl(var(--accent-hue), 100%, 34%), hsl(var(--accent-hue), 100%, 66%));
  --color-accent-light: light-dark(hsl(var(--accent-hue), 100%, 70%), hsl(var(--accent-hue), 100%, 30%));
  --color-accent-lighter: light-dark(hsl(var(--accent-hue), 100%, 90%), hsl(var(--accent-hue), 100%, 10%));
  --accent-second-hue: calc(var(--base-hue) + 325);
  --color-accent-second-darker: light-dark(hsl(var(--accent-second-hue), 100%, 8%), hsl(var(--accent-second-hue), 100%, 92%));
  --color-accent-second-dark: light-dark(hsl(var(--accent-second-hue), 100%, 18%), hsl(var(--accent-second-hue), 100%, 82%));
  --color-accent-second: light-dark(hsl(var(--accent-second-hue), 100%, 34%), hsl(var(--accent-second-hue), 100%, 66%));
  --color-accent-second-light: light-dark(hsl(var(--accent-second-hue), 100%, 70%), hsl(var(--accent-second-hue), 100%, 30%));
  --color-accent-second-lighter: light-dark(hsl(var(--accent-second-hue), 100%, 90%), hsl(var(--accent-second-hue), 100%, 10%));
  --red-hue: calc(var(--base-hue) + 155);
  --color-red-darker: light-dark(hsl(var(--red-hue), 100%, 15%), hsl(var(--red-hue), 100%, 85%));
  --color-red-dark: light-dark(hsl(var(--red-hue), 100%, 32%), hsl(var(--red-hue), 100%, 68%));
  --color-red: light-dark(hsl(var(--red-hue), 100%, 45%), hsl(var(--red-hue), 100%, 55%));
  --color-red-light: light-dark(hsl(var(--red-hue), 100%, 70%), hsl(var(--red-hue), 100%, 30%));
  --color-red-lighter: light-dark(hsl(var(--red-hue), 100%, 90%), hsl(var(--red-hue), 100%, 10%));
  --orange-hue: calc(var(--base-hue) + 185);
  --color-orange-darker: light-dark(hsl(var(--orange-hue), 100%, 20%), hsl(var(--orange-hue), 100%, 80%));
  --color-orange-dark: light-dark(hsl(var(--orange-hue), 100%, 37%), hsl(var(--orange-hue), 100%, 63%));
  --color-orange: light-dark(hsl(var(--orange-hue), 100%, 55%), hsl(var(--orange-hue), 100%, 45%));
  --color-orange-light: light-dark(hsl(var(--orange-hue), 100%, 75%), hsl(var(--orange-hue), 100%, 25%));
  --color-orange-lighter: light-dark(hsl(var(--orange-hue), 100%, 90%), hsl(var(--orange-hue), 100%, 10%));
  --green-hue: calc(var(--base-hue) + 285);
  --color-green-darker: light-dark(hsl(var(--green-hue), 100%, 18%), hsl(var(--green-hue), 100%, 82%));
  --color-green-dark: light-dark(hsl(var(--green-hue), 100%, 32%), hsl(var(--green-hue), 100%, 68%));
  --color-green: light-dark(hsl(var(--green-hue), 100%, 42%), hsl(var(--green-hue), 100%, 58%));
  --color-green-light: light-dark(hsl(var(--green-hue), 100%, 77%), hsl(var(--green-hue), 100%, 23%));
  --color-green-lighter: light-dark(hsl(var(--green-hue), 100%, 92%), hsl(var(--green-hue), 100%, 8%));
  --gray-hue: calc(var(--base-hue));
  --color-gray-darker: light-dark(hsl(var(--gray-hue), 0%, 20%), hsl(var(--gray-hue), 0%, 80%));
  --color-gray-dark: light-dark(hsl(var(--gray-hue), 0%, 45%), hsl(var(--gray-hue), 0%, 55%));
  --color-gray: light-dark(hsl(var(--gray-hue), 0%, 75%), hsl(var(--gray-hue), 0%, 25%));
  --color-gray-light: light-dark(hsl(var(--gray-hue), 0%, 90%), hsl(var(--gray-hue), 0%, 10%));
  --color-gray-lighter: light-dark(hsl(var(--gray-hue), 0%, 97%), hsl(var(--gray-hue), 0%, 3%));
  --color-white: light-dark(rgba(255, 255, 255), rgba(30, 30, 30));
  --color-black: light-dark(rgba(30, 30, 30), rgba(255, 255, 255));
  --color-transparent: rgba(255, 255, 255, 0);
  --color-blue-50: light-dark(#f6fafd, #0a1a29);
  --color-blue-100: light-dark(#c7edf8, #0d2b47);
  --color-blue-200: light-dark(#91d6f2, #113a64);
  --color-blue-300: light-dark(#57adda, #164a82);
  --color-blue-400: light-dark(#2d7fb6, #1c5a9f);
  --color-blue-500: light-dark(#004986, #3d7ab3);
  --color-blue: light-dark(#004986, #3d7ab3);
  --color-blue-600: light-dark(#003873, #5e8fc2);
  --color-blue-700: light-dark(#002a60, #7fa5d1);
  --color-blue-800: light-dark(#001d4d, #a0bbe0);
  --color-blue-900: light-dark(#001540, #c1d1ef);
  --color-red-50: light-dark(#fef8f8, #290707);
  --color-red-100: light-dark(#fcddd2, #3d0e0e);
  --color-red-200: light-dark(#fab3a6, #511515);
  --color-red-300: light-dark(#f28078, #661c1c);
  --color-red-400: light-dark(#e65558, #7a2323);
  --color-red-500: light-dark(#d62237, #e63e4d);
  --color-red: light-dark(#d62237, #e63e4d);
  --color-red-600: light-dark(#b8183a, #f05a67);
  --color-red-700: light-dark(#9a113a, #f77680);
  --color-red-800: light-dark(#7c0a37, #ff9299);
  --color-red-900: light-dark(#660635, #ffadb2);
  --color-orange-50: light-dark(#fffbf2, #291e07);
  --color-orange-100: light-dark(#fef6cb, #3d2c0e);
  --color-orange-200: light-dark(#feea98, #513a15);
  --color-orange-300: light-dark(#fddb65, #66491c);
  --color-orange-400: light-dark(#fbcb3e, #7a5723);
  --color-orange-500: light-dark(#f9b300, #ffbf33);
  --color-orange: light-dark(#f9b300, #ffbf33);
  --color-orange-600: light-dark(#d69300, #ffcc66);
  --color-orange-700: light-dark(#b37600, #ffd980);
  --color-orange-800: light-dark(#905b00, #ffe699);
  --color-orange-900: light-dark(#774800, #fff2b2);
  --color-green-50: light-dark(#f9fdf7, #071d07);
  --color-green-100: light-dark(#ebf8cd, #0e2c0e);
  --color-green-200: light-dark(#d4f19e, #153a15);
  --color-green-300: light-dark(#abd768, #1c491c);
  --color-green-400: light-dark(#7db03e, #235723);
  --color-green-500: light-dark(#477c11, #5a9a33);
  --color-green: light-dark(#477c11, #5a9a33);
  --color-green-600: light-dark(#376a0c, #71b34d);
  --color-green-700: light-dark(#295908, #88cc66);
  --color-green-800: light-dark(#1d4705, #a0e680);
  --color-green-900: light-dark(#143b03, #b7ff99);
  --color-dark-grey: light-dark(#444, #bbb);
  --color-light-grey: light-dark(#ebebeb, #444);
  --color-lighter-grey: light-dark(#f4f4f4, #333);
  --color-gray-50: light-dark(rgba(252, 252, 253, 1), rgba(24, 24, 27, 0.9));
  --color-gray-100: light-dark(rgba(244, 244, 245, 1), rgba(39, 39, 42, 1));
  --color-gray-200: light-dark(rgba(228, 228, 231, 0.7), rgba(63, 63, 70, 1));
  --color-gray-300: light-dark(rgba(212, 212, 216, 1), rgba(82, 82, 91, 1));
  --color-gray-400: light-dark(rgba(161, 161, 170, 1), rgba(113, 113, 122, 1));
  --color-gray-500: light-dark(rgba(113, 113, 122, 1), rgba(161, 161, 170, 1));
  --color-gray: light-dark(rgba(113, 113, 122, 1), rgba(161, 161, 170, 1));
  --color-gray-600: light-dark(rgba(82, 82, 91, 1), rgba(212, 212, 216, 1));
  --color-gray-700: light-dark(rgba(63, 63, 70, 1), rgba(228, 228, 231, 0.7));
  --color-gray-800: light-dark(rgba(39, 39, 42, 1), rgba(244, 244, 245, 1));
  --color-gray-900: light-dark(rgba(24, 24, 27, 1), rgba(252, 252, 253, 1));
  --color-primary: var(--color-blue-500);
}
:root.theme-transition {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, fill 0.3s ease, stroke 0.3s ease, box-shadow 0.3s ease;
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-primary-light {
  background-color: var(--color-primary-light);
}

.bg-primary-lighter {
  background-color: var(--color-primary-lighter);
}

.bg-primary-dark {
  background-color: var(--color-primary-dark);
}

.bg-primary-darker {
  background-color: var(--color-primary-darker);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.bg-secondary-light {
  background-color: var(--color-secondary-light);
}

.bg-secondary-lighter {
  background-color: var(--color-secondary-lighter);
}

.bg-secondary-dark {
  background-color: var(--color-secondary-dark);
}

.bg-secondary-darker {
  background-color: var(--color-secondary-darker);
}

.bg-accent {
  background-color: var(--color-accent);
}

.bg-accent-light {
  background-color: var(--color-accent-light);
}

.bg-accent-lighter {
  background-color: var(--color-accent-lighter);
}

.bg-accent-dark {
  background-color: var(--color-accent-dark);
}

.bg-accent-darker {
  background-color: var(--color-accent-darker);
}

.bg-accent-second {
  background-color: var(--color-accent-second);
}

.bg-accent-second-light {
  background-color: var(--color-accent-second-light);
}

.bg-accent-second-lighter {
  background-color: var(--color-accent-second-lighter);
}

.bg-accent-second-dark {
  background-color: var(--color-accent-second-dark);
}

.bg-accent-second-darker {
  background-color: var(--color-accent-second-darker);
}

.bg-transparent {
  background-color: var(--color-transparent);
}

.bg-current-color {
  background-color: currentColor;
}

.bg-white {
  background-color: var(--color-white);
}

.bg-blue-50 {
  background-color: var(--color-blue-50);
}

.bg-blue-100 {
  background-color: var(--color-blue-100);
}

.bg-blue-200 {
  background-color: var(--color-blue-200);
}

.bg-blue-300 {
  background-color: var(--color-blue-300);
}

.bg-blue-400 {
  background-color: var(--color-blue-400);
}

.bg-blue,
.bg-blue-500,
.bg-blue-vois {
  background-color: var(--color-blue);
}

.bg-blue-600 {
  background-color: var(--color-blue-600);
}

.bg-blue-700 {
  background-color: var(--color-blue-700);
}

.bg-blue-800 {
  background-color: var(--color-blue-800);
}

.bg-blue-900 {
  background-color: var(--color-blue-900);
}

.bg-red-50 {
  background-color: var(--color-red-50);
}

.bg-red-100,
.bg-red-lighter {
  background-color: var(--color-red-100);
}

.bg-red-200 {
  background-color: var(--color-red-200);
}

.bg-red-300,
.bg-red-light {
  background-color: var(--color-red-300);
}

.bg-red-400 {
  background-color: var(--color-red-400);
}

.bg-error,
.bg-red,
.bg-red-500 {
  background-color: var(--color-red);
}

.bg-red-600 {
  background-color: var(--color-red-600);
}

.bg-red-700,
.bg-red-dark {
  background-color: var(--color-red-700);
}

.bg-red-800 {
  background-color: var(--color-red-800);
}

.bg-red-900,
.bg-red-darker {
  background-color: var(--color-red-900);
}

.bg-orange-50 {
  background-color: var(--color-orange-50);
}

.bg-orange-100,
.bg-orange-lighter {
  background-color: var(--color-orange-100);
}

.bg-orange-200 {
  background-color: var(--color-orange-200);
}

.bg-orange-300,
.bg-orange-light {
  background-color: var(--color-orange-300);
}

.bg-orange-400 {
  background-color: var(--color-orange-400);
}

.bg-orange,
.bg-orange-500,
.bg-warning {
  background-color: var(--color-orange);
}

.bg-orange-600 {
  background-color: var(--color-orange-600);
}

.bg-orange-700,
.bg-orange-dark {
  background-color: var(--color-orange-700);
}

.bg-orange-800 {
  background-color: var(--color-orange-800);
}

.bg-orange-900,
.bg-orange-darker {
  background-color: var(--color-orange-900);
}

.bg-green-50 {
  background-color: var(--color-green-50);
}

.bg-green-100,
.bg-green-lighter {
  background-color: var(--color-green-100);
}

.bg-green-200 {
  background-color: var(--color-green-200);
}

.bg-green-300,
.bg-green-light {
  background-color: var(--color-green-300);
}

.bg-green-400 {
  background-color: var(--color-green-400);
}

.bg-green,
.bg-green-500,
.bg-success {
  background-color: var(--color-green);
}

.bg-green-600 {
  background-color: var(--color-green-600);
}

.bg-green-700,
.bg-green-dark {
  background-color: var(--color-green-700);
}

.bg-green-800 {
  background-color: var(--color-green-800);
}

.bg-green-900,
.bg-green-darker {
  background-color: var(--color-green-900);
}

.bg-gray-50,
.bg-gray-lighter {
  background-color: var(--color-gray-50);
}

.bg-gray-100 {
  background-color: var(--color-gray-100);
}

.bg-gray-200 {
  background-color: var(--color-gray-200);
}

.bg-gray-300,
.bg-gray-light {
  background-color: var(--color-gray-300);
}

.bg-gray-400 {
  background-color: var(--color-gray-400);
}

.bg-gray,
.bg-gray-500 {
  background-color: var(--color-gray);
}

.bg-gray-600 {
  background-color: var(--color-gray-600);
}

.bg-gray-700,
.bg-gray-dark {
  background-color: var(--color-gray-700);
}

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

.bg-gray-900,
.bg-gray-darker {
  background-color: var(--color-gray-900);
}

.bg-black {
  background-color: var(--color-black);
}

.color-transparent {
  color: var(--color-transparent);
}

.color-current-color {
  color: currentColor;
}

.color-white {
  color: var(--color-white);
}

.color-primary-lighter {
  color: var(--color-primary-lighter);
}

.color-primary-light {
  color: var(--color-primary-light);
}

.color-primary {
  color: var(--color-primary);
}

.color-primary-dark {
  color: var(--color-primary-dark);
}

.color-primary-darker {
  color: var(--color-primary-darker);
}

.color-secondary-lighter {
  color: var(--color-secondary-lighter);
}

.color-secondary-light {
  color: var(--color-secondary-light);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-secondary-dark {
  color: var(--color-secondary-dark);
}

.color-secondary-darker {
  color: var(--color-secondary-darker);
}

.color-blue-50 {
  color: var(--color-blue-50);
}

.color-blue-100 {
  color: var(--color-blue-100);
}

.color-blue-200 {
  color: var(--color-blue-200);
}

.color-blue-300 {
  color: var(--color-blue-300);
}

.color-blue-400 {
  color: var(--color-blue-400);
}

.color-blue,
.color-blue-500,
.color-blue-vois {
  color: var(--color-blue);
}

.color-blue-600 {
  color: var(--color-blue-600);
}

.color-blue-700 {
  color: var(--color-blue-700);
}

.color-blue-800 {
  color: var(--color-blue-800);
}

.color-blue-900 {
  color: var(--color-blue-900);
}

.color-red-50 {
  color: var(--color-red-50);
}

.color-red-100 {
  color: var(--color-red-100);
}

.color-red-200 {
  color: var(--color-red-200);
}

.color-red-300 {
  color: var(--color-red-300);
}

.color-red-400 {
  color: var(--color-red-400);
}

.color-error,
.color-red,
.color-red-500 {
  color: var(--color-red);
}

.color-red-600 {
  color: var(--color-red-600);
}

.color-red-700 {
  color: var(--color-red-700);
}

.color-red-800 {
  color: var(--color-red-800);
}

.color-red-900 {
  color: var(--color-red-900);
}

.color-orange-50 {
  color: var(--color-orange-50);
}

.color-orange-100 {
  color: var(--color-orange-100);
}

.color-orange-200 {
  color: var(--color-orange-200);
}

.color-orange-300 {
  color: var(--color-orange-300);
}

.color-orange-400 {
  color: var(--color-orange-400);
}

.color-orange,
.color-orange-500,
.color-warning {
  color: var(--color-orange);
}

.color-orange-600 {
  color: var(--color-orange-600);
}

.color-orange-700 {
  color: var(--color-orange-700);
}

.color-orange-800 {
  color: var(--color-orange-800);
}

.color-orange-900 {
  color: var(--color-orange-900);
}

.color-green-50 {
  color: var(--color-green-50);
}

.color-green-100 {
  color: var(--color-green-100);
}

.color-green-200 {
  color: var(--color-green-200);
}

.color-green-300 {
  color: var(--color-green-300);
}

.color-green-400 {
  color: var(--color-green-400);
}

.color-green,
.color-green-500,
.color-success {
  color: var(--color-green);
}

.color-green-600 {
  color: var(--color-green-600);
}

.color-green-700 {
  color: var(--color-green-700);
}

.color-green-800 {
  color: var(--color-green-800);
}

.color-green-900 {
  color: var(--color-green-900);
}

.color-gray-50 {
  color: var(--color-gray-50);
}

.color-gray-100 {
  color: var(--color-gray-100);
}

.color-gray-200 {
  color: var(--color-gray-200);
}

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

.color-gray-400 {
  color: var(--color-gray-400);
}

.color-gray,
.color-gray-500 {
  color: var(--color-gray);
}

.color-gray-600 {
  color: var(--color-gray-600);
}

.color-gray-700 {
  color: var(--color-gray-700);
}

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

.color-gray-900 {
  color: var(--color-gray-900);
}

.color-black {
  color: var(--color-black);
}

.gradient-primary-lighter {
  background-image: linear-gradient(to top right, var(--color-primary-lighter), var(--color-gray-50));
}

.gradient-primary-light {
  background-image: linear-gradient(to top right, var(--color-primary-light), var(--color-primary-lighter));
}

.gradient-primary {
  background-image: linear-gradient(to top right, var(--color-primary), var(--color-primary-light));
}

.gradient-primary-dark {
  background-image: linear-gradient(to top right, var(--color-primary-darker), var(--color-primary));
}

.gradient-secondary-light {
  background-image: linear-gradient(to top right, var(--color-secondary-light), var(--color-secondary-lighter));
}

.gradient-secondary {
  background-image: linear-gradient(to top right, var(--color-secondary), var(--color-secondary-lighter));
}

.gradient-secondary-dark {
  background-image: linear-gradient(to top right, var(--color-secondary-darker), var(--color-secondary));
}

.no-dark-mode {
  color-scheme: light;
}

.global [data-theme=light],
.global .theme-light {
  color-scheme: light;
}

.global [data-theme=dark],
.global .theme-dark {
  color-scheme: dark;
}

body:has(.theme-light) {
  color: light-dark(var(--color-gray-800), var(--color-gray-400));
}

body:has(.theme-dark) {
  color: light-dark(var(--color-gray-400), var(--color-gray-800));
}

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

.not-visible,
.is-hidden,
.d-none {
  display: none;
}

.is-visible {
  display: block;
}

.visible {
  visibility: visible;
}

.invisible,
.visibility-hidden {
  visibility: hidden;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.opacity-0,
.opacity-none {
  opacity: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-100,
.opacity-1 {
  opacity: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-default {
  cursor: default;
}

.cursor-move {
  cursor: move;
}

.overflow-y-auto {
  overflow-y: auto;
  overflow-x: hidden;
}

.overflow-x-auto {
  overflow-y: hidden;
  overflow-x: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

/**!
Helper styles
*/
:root {
  --default-transition: all 300ms ease;
}

.animate-fadein-on {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
  transition: visibility 0s, opacity 0.2s, transform 0.2s;
  transition-delay: 500ms;
}

.animate-fadein-off {
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 10px);
  transition: visibility 0s 0.2s, opacity 0.2s, transform 0.2s;
  transition-delay: 500ms;
}

input {
  width: 100%;
  text-overflow: ellipsis;
}

.wrapper-feedback:not(.is-default, .is-valid, .is-invalid) {
  display: none;
}

.is-default + .wrapper-feedback,
.is-valid + .wrapper-feedback,
.is-invalid + .wrapper-feedback {
  display: block;
}

.default-feedback {
  display: block;
  padding-top: 0.2rem;
  font-weight: 300;
  color: var(--color-gray-600);
  transition: var(--default-transition);
}

.invalid-feedback {
  display: block;
  padding-top: 0.2rem;
  font-weight: 300;
  color: var(--color-red-500);
  transition: var(--default-transition);
}

.valid-feedback {
  display: block;
  padding-top: 0.2rem;
  font-weight: 300;
  color: var(--color-green-500);
  transition: var(--default-transition);
}

.form-legend {
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-label {
  display: flex;
  align-items: baseline;
  cursor: pointer;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-gray-500);
  transition: var(--default-transition);
  text-overflow: ellipsis;
}

.form-label.disabled,
.form-label-text.disabled {
  color: var(--color-gray-400);
  pointer-events: none;
  transition: var(--default-transition);
}

.form-label.readonly {
  color: var(--color-gray-400);
  pointer-events: none;
  transform: translate(0);
  position: relative;
  z-index: 1;
}

.form-label-radio.disabled,
.form-label-checkbox.disabled {
  transition: var(--default-transition);
}

.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]),
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]) {
  background-color: var(--color-white);
  padding: 0.4rem 0.6rem;
  display: block;
  width: 100%;
  border: 1px solid var(--color-gray-300);
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):hover,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):hover {
  border: 1px solid var(--color-primary-light);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-primary-light);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):active,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):active {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):focus,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):focus {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):focus-within,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):focus-within {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date])::placeholder,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date])::placeholder {
  color: var(--color-gray-300);
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):focus::placeholder,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]):focus::placeholder {
  color: transparent;
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).form-control-sm,
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]) .autocomplete-form-control-sm,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).form-control-sm,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]) .autocomplete-form-control-sm {
  padding: 0.3rem 0.6rem;
  font-size: var(--text-md);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).form-control-lg,
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]) .autocomplete-form-control-lg,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).form-control-lg,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]) .autocomplete-form-control-lg {
  padding: 0.5rem 0.8rem;
  font-size: var(--text-lg);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid {
  border: 1px solid var(--color-green);
  transition: var(--default-transition);
  outline: none;
  background-image: none;
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid:hover,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid:hover {
  border: 1px solid var(--color-green-light);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-green-light);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid:active,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid:active {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid:focus,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid:focus {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid:focus-within,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-valid:focus-within {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid {
  border: 1px solid var(--color-red);
  transition: var(--default-transition);
  outline: none;
  background-image: none;
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid:hover,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid:hover {
  border: 1px solid var(--color-red-light);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-red-light);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid:active,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid:active {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid:focus,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid:focus {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
  transition: var(--default-transition);
}
.form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid:focus-within,
.autocomplete-form-control:not(.form-group, .form-append, .form-prepend, select, :disabled, [type=date]).is-invalid:focus-within {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
  transition: var(--default-transition);
}

.form-control:read-only:not(select, :disabled),
.autocomplete-form-control:read-only:not(select, :disabled) {
  box-shadow: none;
  padding: 0.4rem 0.6rem;
  background-color: var(--color-gray-50);
  border-top: 1px solid var(--color-transparent);
  border-right: 1px solid var(--color-transparent);
  border-left: 1px solid var(--color-transparent);
  border-bottom: 1px solid var(--color-transparent);
}

.form-control:disabled:not(input[type=date].form-control),
.autocomplete-form-control:disabled {
  cursor: not-allowed;
  box-shadow: none;
  padding: 0.4rem 0.6rem 0.4rem 0;
  background-color: transparent;
  border-top: 1px solid var(--color-transparent);
  border-right: 1px solid var(--color-transparent);
  border-left: 1px solid var(--color-transparent);
  border-bottom: 1px solid var(--color-gray-300);
  pointer-events: none;
}

input:disabled::placeholder {
  display: none !important;
  color: var(--color-transparent) !important;
}

.form-control.is-valid:disabled,
.autocomplete-form-control.is-valid:disabled {
  cursor: not-allowed;
  box-shadow: none;
  border-top: 1px solid var(--color-transparent);
  border-right: 1px solid var(--color-transparent);
  border-left: 1px solid var(--color-transparent);
  border-bottom: 1px solid var(--color-green-300);
  pointer-events: none;
}

.form-control.is-invalid:disabled,
.autocomplete-form-control.is-invalid:disabled {
  cursor: not-allowed;
  box-shadow: none;
  border-top: 1px solid var(--color-transparent);
  border-right: 1px solid var(--color-transparent);
  border-left: 1px solid var(--color-transparent);
  border-bottom: 1px solid var(--color-red-300);
  pointer-events: none;
}

input[type=date].empty,
input[type=date].fake-empty {
  color: var(--color-gray-400);
  font-style: italic;
  font-weight: 200;
}
input[type=date].empty:disabled,
input[type=date].fake-empty:disabled {
  cursor: not-allowed;
}

input[type=date]:disabled {
  cursor: not-allowed;
}

input[type=date].form-control {
  padding: 0.34rem 0.6rem;
  display: block;
  width: 100%;
  border: 1px solid var(--color-gray-300);
  transition: var(--default-transition);
}
input[type=date].form-control.is-valid {
  border: 1px solid var(--color-green);
  transition: var(--default-transition);
  outline: none;
  background-image: none;
}
input[type=date].form-control:hover {
  border: 1px solid var(--color-green-light);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-green-light);
  outline: none;
  transition: var(--default-transition);
}
input[type=date].form-control:active {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
  transition: var(--default-transition);
}
input[type=date].form-control:focus {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
  transition: var(--default-transition);
}
input[type=date].form-control:focus-within {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
  transition: var(--default-transition);
}
input[type=date].form-control.is-invalid {
  border: 1px solid var(--color-red);
  transition: var(--default-transition);
  outline: none;
  background-image: none;
}
input[type=date].form-control:hover {
  border: 1px solid var(--color-red-light);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-red-light);
  outline: none;
  transition: var(--default-transition);
}
input[type=date].form-control:active {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
  transition: var(--default-transition);
}
input[type=date].form-control:focus {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
  transition: var(--default-transition);
}
input[type=date].form-control:focus-within {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
  transition: var(--default-transition);
}

input[type=date].form-control:hover {
  border: 1px solid var(--color-primary-light);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-primary-light);
  outline: none;
  transition: var(--default-transition);
}

input[type=date].form-control:active {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
  transition: var(--default-transition);
}

input[type=date].form-control:focus {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
  transition: var(--default-transition);
}

input[type=date].form-control:focus-within {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
  transition: var(--default-transition);
}

input[type=date].form-control:disabled,
input[type=date].form-control.disabled {
  cursor: not-allowed;
  box-shadow: none;
  padding: 0.34rem 0.6rem 0.34rem 0;
  background-color: rgba(0, 0, 0, 0);
  border-top: 1px solid var(--color-transparent);
  border-right: 1px solid var(--color-transparent);
  border-left: 1px solid var(--color-transparent);
  border-bottom: 1px solid var(--color-gray-300);
  pointer-events: none;
}
input[type=date].form-control:disabled.is-valid,
input[type=date].form-control.disabled.is-valid {
  padding-left: 0;
  border-bottom: 1px solid var(--color-green-300);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  pointer-events: none;
  background-image: none;
}
input[type=date].form-control:disabled.is-invalid,
input[type=date].form-control.disabled.is-invalid {
  padding-left: 0;
  border-bottom: 1px solid var(--color-red-300);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  pointer-events: none;
  background-image: none;
}

textarea:disabled.form-control {
  border: none;
  resize: none;
}

.floating-label-field {
  border: 1px solid var(--color-gray-400);
  border-radius: var(--radius-sm);
  min-height: 2.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  height: 2.25rem;
  line-height: calc(var(--font-size-base) * 2);
  transition: var(--default-transition);
}
.floating-label-field:hover {
  box-shadow: inset 0px 0px 0px 1px var(--color-primary);
  transition: var(--default-transition);
  outline: none;
}

.floating-label {
  color: var(--color-gray-700);
  width: auto;
  display: block;
  cursor: text;
}

.floating-label-field {
  display: block;
  width: 100%;
  cursor: text;
}

.floating-label-field:focus-within {
  outline: none;
}
.floating-label-field:focus-within:active {
  box-shadow: 0px 0px 0px 1px var(--color-primary), var(--shadow-sm), 0px 0px 2px 1px var(--color-primary);
  transition: var(--default-transition);
  outline: none;
}
.floating-label-field:focus-within:focus {
  box-shadow: 0px 0px 1px 0px var(--color-primary), var(--shadow-sm), 0px 0px 2px 1px var(--color-primary);
  transition: var(--default-transition);
  outline: none;
}

.floating-label-field::placeholder {
  color: transparent;
}

.floating-label-field:focus-within::placeholder {
  color: var(--color-gray-400);
}

.floating-label-field,
.floating-label-wrap {
  position: relative;
}

.floating-label-field + .floating-label {
  position: absolute;
  top: 0.6rem;
  left: 0.75rem;
  transition: transform 150ms ease 0s, color 150ms ease 0s, font-size 150ms ease 0s;
  transform-origin: 0 0;
  transform: none;
  will-change: transition;
}

.floating-label-field:focus + .floating-label,
.floating-label-field:not(:placeholder-shown) + .floating-label {
  display: inline-block;
  word-break: break-word;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  z-index: 2;
  top: 0.4375rem;
  left: 0.75rem;
  pointer-events: none;
  color: var(--color-gray-700);
  transition: transform 150ms ease 0s, color 150ms ease 0s, font-size 150ms ease 0s;
  transform: translate(-0.75rem, -1.6rem);
  font-size: var(--text-md);
}

select.form-control {
  background-color: var(--color-white);
  padding: 0.4rem 2rem 0.4rem 0.6rem;
  border: 1px solid var(--color-gray-300);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='rgb(161, 161, 170)' stroke-linecap='square' stroke-miterlimit='10' stroke-width='48' d='M112 184l144 144 144-144'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 16px 16px;
  appearance: none;
  transition: var(--default-transition);
}
select.form-control:hover {
  border: 1px solid var(--color-primary-light);
  box-shadow: var(--shadow-xs), inset 0px 0px 0px 1px var(--color-primary-light);
  outline: none;
  transition: var(--default-transition);
}
select.form-control:active {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
}
select.form-control:focus {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
}
select.form-control:focus-within {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
}
select.form-control:visited {
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-primary);
  outline: none;
}
select.form-control.form-control-sm {
  padding: 0.2rem 1.4rem 0.2rem 0.4rem;
  font-size: var(--text-sm);
  background-position: right 0.3rem center;
  background-size: 12px 12px;
}
select.form-control.form-control-lg {
  padding: 0.5rem 0.8rem;
  font-size: var(--text-lg);
}
select.form-control.is-valid {
  border: 1px solid var(--color-green);
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='rgb(106, 153, 78)' stroke-linecap='square' stroke-miterlimit='10' stroke-width='48' d='M112 184l144 144 144-144'/%3E%3C/svg%3E");
}
select.form-control.is-valid:hover {
  border: 1px solid var(--color-green-light);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-green-light);
  outline: none;
}
select.form-control.is-valid:active {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
}
select.form-control.is-valid:focus {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
}
select.form-control.is-valid:focus-within {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
}
select.form-control.is-valid:visited {
  border: 1px solid var(--color-green);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-green);
  outline: none;
}
select.form-control.is-invalid {
  border: 1px solid var(--color-red);
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='rgb(227, 23, 10)' stroke-linecap='square' stroke-miterlimit='10' stroke-width='48' d='M112 184l144 144 144-144'/%3E%3C/svg%3E");
}
select.form-control.is-invalid:hover {
  border: 1px solid var(--color-red-light);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-red-light);
  outline: none;
}
select.form-control.is-invalid:active {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
}
select.form-control.is-invalid:focus {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
}
select.form-control.is-invalid:focus-within {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
}
select.form-control.is-invalid:visited {
  border: 1px solid var(--color-red);
  box-shadow: var(--shadow-sm), inset 0px 0px 0px 1px var(--color-red);
  outline: none;
}
select.form-control.is-invalid.form-control-sm {
  padding: 0.3rem 0.6rem;
  font-size: var(--text-md);
}
select.form-control.is-invalid.form-control-lg {
  padding: 0.4rem 0.8rem;
  font-size: var(--text-lg);
}

select.form-control.is-valid.disabled,
select.form-control-disabled.is-valid,
select.form-control.is-valid[disabled],
select.form-control.is-valid input:disabled {
  padding-left: 0;
  border-bottom: 1px solid var(--color-green-300);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  pointer-events: none;
  background-image: none;
}

select.form-control.is-invalid.disabled,
select.form-control-disabled.is-invalid,
select.form-control.is-invalid[disabled],
select.form-control.is-invalid input:disabled {
  padding-left: 0;
  border-bottom: 1px solid var(--color-red-300);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  pointer-events: none;
  background-image: none;
}

select.form-control.disabled,
select.form-control-disabled,
select.form-control[disabled],
select.form-control input:disabled,
select.form-control.form-control-sm.disabled,
select.form-control-disabled.form-control-sm,
select.form-control.form-control-sm[disabled],
select.form-control.form-control-sm input:disabled {
  padding: 0.4rem 0.6rem 0.4rem 0;
  border-bottom: 1px solid var(--color-gray-300);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  pointer-events: none;
  background-image: none;
  color: var(--color-gray-600);
  opacity: 1;
}
select.form-control.disabled:hover,
select.form-control-disabled:hover,
select.form-control[disabled]:hover,
select.form-control input:disabled:hover,
select.form-control.form-control-sm.disabled:hover,
select.form-control-disabled.form-control-sm:hover,
select.form-control.form-control-sm[disabled]:hover,
select.form-control.form-control-sm input:disabled:hover {
  outline: none;
  box-shadow: none;
  pointer-events: none;
  background-image: none;
}
select.form-control.disabled:focus,
select.form-control-disabled:focus,
select.form-control[disabled]:focus,
select.form-control input:disabled:focus,
select.form-control.form-control-sm.disabled:focus,
select.form-control-disabled.form-control-sm:focus,
select.form-control.form-control-sm[disabled]:focus,
select.form-control.form-control-sm input:disabled:focus {
  outline: none;
  box-shadow: none;
  pointer-events: none;
  background-image: none;
}
select.form-control.disabled:active,
select.form-control-disabled:active,
select.form-control[disabled]:active,
select.form-control input:disabled:active,
select.form-control.form-control-sm.disabled:active,
select.form-control-disabled.form-control-sm:active,
select.form-control.form-control-sm[disabled]:active,
select.form-control.form-control-sm input:disabled:active {
  outline: none;
  box-shadow: none;
  pointer-events: none;
  background-image: none;
}

:root {
  --checkbox-radio-size: 18px;
  --checkbox-radio-gap: 0.5rem;
  --checkbox-radio-border-width: 1px;
  --checkbox-radio-line-height: var(--text-scale-ratio);
  --radio-marker-size: 8px;
  --checkbox-marker-size: 10px;
  --checkbox-radius: 4px;
}

.radio,
.checkbox {
  position: absolute;
  padding: 0;
  margin: 0;
  margin-top: calc((1em * var(--checkbox-radio-line-height) - var(--checkbox-radio-size)) / 2);
  opacity: 0;
  height: var(--checkbox-radio-size);
  width: var(--checkbox-radio-size);
  pointer-events: none;
}

.radio + label,
.checkbox + label {
  align-items: center;
  display: flex;
  user-select: none;
  padding-left: calc(var(--checkbox-radio-size) + var(--checkbox-radio-gap));
  cursor: pointer;
}

.checkbox + .form-label,
.radio + .form-label {
  margin-bottom: 0;
}

.form-label:not(.disabled) + .radio + label,
.form-label:not(.disabled) + .checkbox + label {
  margin-top: calc(var(--font-size-base) / 1.6);
}

.form-label.disabled + .radio + label,
.form-label.disabled + .checkbox + label {
  margin-top: calc(var(--font-size-base) / var(--checkbox-radio-line-height) + 0.15rem);
}

.radio + label::before,
.checkbox + label::before {
  content: "";
  box-sizing: border-box;
  position: relative;
  vertical-align: middle;
  margin-left: calc(-1 * (var(--checkbox-radio-size) + var(--checkbox-radio-gap)));
  flex-shrink: 0;
  width: var(--checkbox-radio-size);
  height: var(--checkbox-radio-size);
  background-color: var(--color-white);
  box-shadow: none;
  border: 1px solid var(--color-gray-400);
  transition: all 100ms cubic-bezier(0.19, 1, 0.22, 1);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: var(--checkbox-radio-gap);
  cursor: pointer;
}

.radio + label:hover::before,
.checkbox + label:hover::before {
  border: 1px solid var(--color-primary-light);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--default-transition);
}

.radio + label::before {
  border-radius: var(--radius-full);
}

.checkbox + label::before {
  border-radius: var(--radius-sm);
}

.radio:checked + label::before,
.checkbox:checked + label::before {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.radio:disabled + label,
.checkbox:disabled + label {
  color: var(--color-gray-300);
  cursor: not-allowed;
}

.radio:disabled + label::before,
.checkbox:disabled + label::before {
  box-shadow: none;
  border: 1px solid var(--color-gray-200);
  cursor: not-allowed;
}

.radio:disabled + label:hover,
.checkbox:disabled + label:hover {
  box-shadow: none;
  color: var(--color-gray-300);
}

.radio:disabled + label:hover::before,
.checkbox:disabled + label:hover::before {
  box-shadow: none;
  border: 1px solid var(--color-gray-200);
}

.radio:checked:disabled + label,
.checkbox:checked:disabled + label {
  color: var(--color-gray-800);
  cursor: not-allowed;
}

.radio:checked:disabled + label:hover::before,
.checkbox:checked:disabled + label:hover::before {
  pointer-events: none;
  box-shadow: none;
  border: 1px solid var(--color-transparent);
  cursor: not-allowed;
}

.radio:active + label::before,
.checkbox:active + label::before {
  transform: scale(0.9);
}

.radio:checked + label::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg class='nc-icon-wrapper' fill='%23ffffff'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23ffffff'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
  background-size: var(--radio-marker-size);
}

.checkbox:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='1 6.5 4 9.5 11 2.5' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/svg%3E");
  background-size: var(--checkbox-marker-size);
}

.radio:checked:active + label::before,
.checkbox:checked:active + label::before,
.radio:focus + label::before,
.checkbox:focus + label::before {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* hide the normal checkbox */
.custom-checkbox {
  position: absolute;
  padding: 0;
  margin: 0;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

/* default status */
.custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background-color: var(--color-gray-50);
  box-shadow: var(--shadow-xs);
  transition: var(--default-transition);
  padding: 0.3rem 0.6rem 0.3rem 0.4rem;
  color: var(--color-gray-500);
}

.custom-checkbox + label:hover {
  transition: var(--default-transition);
  border: 1px solid;
  border-color: var(--color-primary-light);
  background-color: var(--color-gray-50);
}

.custom-checkbox:focus + label {
  transition: var(--default-transition);
  border: 1px solid;
  border-color: var(--color-primary);
  background-color: var(--color-gray-50);
  box-shadow: var(--shadow-xs);
}

.custom-checkbox:focus:hover + label {
  transition: var(--default-transition);
  border: 1px solid;
  border-color: var(--color-primary-light);
  background-color: var(--color-gray-50);
}

.custom-checkbox:checked:not(:disabled) + label {
  border: 1px solid;
  border-color: var(--color-primary);
  background-color: var(--color-gray-50);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary-darker);
}

.custom-checkbox:checked:not(:disabled) + label:hover {
  border: 1px solid;
  border-color: var(--color-primary-light);
  background-color: var(--color-gray-50);
}

.custom-checkbox:checked:not(:disabled) + label:focus {
  border: 1px solid;
  border-color: var(--color-primary);
  background-color: var(--color-gray-50);
  box-shadow: var(--shadow-sm);
}

.custom-checkbox:disabled + label {
  cursor: not-allowed;
}

.custom-checkbox:disabled + label:hover {
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background-color: var(--color-gray-50);
  box-shadow: var(--shadow-xs);
}

.custom-checkbox:checked:disabled + label {
  border: 1px solid;
  border-color: var(--color-gray-50);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary-darker);
  padding: 0.4rem 0.8rem;
}

.custom-checkbox:checked:disabled + label:hover {
  cursor: not-allowed;
}

.custom-checkbox + label > * {
  grid-template-columns: auto;
  place-items: center;
}

.custom-checkbox + label .first {
  grid-row: 1;
  grid-column-start: 1;
  opacity: 1;
  transition: var(--default-transition);
  color: var(--color-gray-300);
}

.custom-checkbox + label .second {
  grid-row: 1;
  grid-column-start: 1;
  opacity: 0;
  transition: var(--default-transition);
}

.custom-checkbox[type=checkbox]:checked + label .first {
  opacity: 0;
  transition: var(--default-transition);
}

.custom-checkbox[type=checkbox]:checked + label .second {
  opacity: 1;
  transition: var(--default-transition);
  color: var(--color-blue-500);
}

:root {
  --switch-width: 44px;
  --switch-height: 20px;
  --switch-padding: 3px;
  --switch-animation-duration: 0.3s;
}

.form-label:not(.disabled) + .switch {
  margin-top: calc(var(--font-size-base) / 2);
}

.form-label.disabled + .switch {
  margin-top: calc(var(--font-size-base) / 1.4);
}

.switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  width: var(--switch-width);
  height: var(--switch-height);
  border-radius: 50em;
  padding: var(--switch-padding) 0;
  box-shadow: var(--shadow-sm);
}

.switch-input,
.switch-label {
  position: absolute;
  left: 0;
  top: 0;
}

.switch-input {
  margin: 0;
  padding: 0;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.switch-input:disabled + .switch-label {
  background-color: var(--color-gray-100);
  box-shadow: none;
  cursor: not-allowed;
  transition: var(--default-transition);
}

.switch-input:checked:disabled + .switch-label {
  background-color: var(--color-blue);
  box-shadow: none;
  cursor: not-allowed;
  transition: var(--default-transition);
}

.switch-input:checked:disabled + .switch-label:hover {
  background-color: var(--color-blue);
  box-shadow: none;
  cursor: not-allowed;
  transition: var(--default-transition);
}

.switch-input:disabled + .switch-label:hover {
  box-shadow: none;
  border: 0;
  cursor: not-allowed;
  transition: var(--default-transition);
}

.switch-input:disabled + .switch-label + .switch-marker {
  background-color: light-dark(var(--color-white), var(--color-gray-100));
  box-shadow: none;
  cursor: not-allowed;
  transition: var(--default-transition);
}

.switch-input:checked + .switch-label {
  background-color: var(--color-blue);
}

.switch-input:checked + .switch-label + .switch-marker {
  left: calc(100% - var(--switch-height) + var(--switch-padding));
}

.switch-input:focus + .switch-label,
.switch-input:active + .switch-label {
  box-shadow: var(--shadow-sm);
  transform: none;
  transition: var(--default-transition);
}

.switch-input:checked:hover + .switch-label,
.switch-input:checked:hover + .switch-label {
  box-shadow: var(--shadow-sm);
  transform: none;
  transition: var(--default-transition);
}

.switch-input:hover + .switch-label,
.switch-input:hover + .switch-label {
  box-shadow: var(--shadow-sm);
  transform: none;
  transition: var(--default-transition);
}

.switch-input:checked:focus + .switch-label,
.switch-input:checked:active + .switch-label {
  box-shadow: var(--shadow-sm);
  transform: none;
  transition: var(--default-transition);
}

.switch-label {
  width: 100%;
  height: 100%;
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: inherit;
  z-index: 1;
  transition: var(--default-transition);
  background-color: var(--color-gray-300);
  overflow: hidden;
}
.switch-label:hover {
  cursor: pointer;
}

.switch-marker {
  position: relative;
  width: calc(var(--switch-height) - var(--switch-padding) * 2);
  height: calc(var(--switch-height) - var(--switch-padding) * 2);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  background-color: light-dark(var(--color-white), var(--color-primary-dark));
  box-shadow: var(--shadow-xs);
  left: var(--switch-padding);
  transition: left var(--switch-animation-duration);
  will-change: left;
}

.form-group {
  position: relative;
  display: flex;
  width: 100%;
}

.form-group .form-control {
  width: 100%;
  padding-right: 0.6rem;
  flex-grow: 1;
}

.form-prepend {
  pointer-events: none;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
}

.form-group .form-prepend + .form-control {
  padding-left: 2.625rem;
}

.form-append:not(.disabled) {
  display: inline-flex;
  padding: 0 0.5rem;
  cursor: pointer;
  border-left: 0;
  border: 1px solid var(--color-gray-300);
  transition: var(--default-transition);
  justify-content: center;
  align-items: center;
  height: auto;
}

.form-append.disabled {
  display: inline-flex;
  padding: 0 0.5rem;
  border-left: 0;
  border: 1px solid var(--color-gray-300);
  transition: var(--default-transition);
  justify-content: center;
  align-items: center;
  height: auto;
  cursor: not-allowed;
  pointer-events: none;
}

.form-group .icon {
  opacity: 0.7;
  transition: var(--default-transition);
}

.form-group:hover .icon {
  opacity: 1;
  transition: var(--default-transition);
}

#hux-application {
  height: calc(100% - 3rem) !important;
}

.application-window-head + #app-main-container {
  height: calc(100vh - 3rem);
}

.application-window-head {
  background-color: var(--color-blue-vois, #004987);
  height: 3rem;
  /* max-height: 48px; */
  padding: 0 1rem;
  position: relative;
}

.application-window-title {
  color: var(--color-monochrom-white, #ffffff);
  display: inline-block;
  width: 20em;
  position: absolute;
  left: 50%;
  text-align: center;
  margin: 0 0 0 -10em;
  font-size: 1.5em;
  top: 0.5rem;
}

.application-window-close {
  position: absolute;
  z-index: 1;
  top: 0.6rem;
}

.application-window-close:before {
  display: block;
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 47 38' xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2'%3E%3Cpath style='fill:none' d='M-2.226-2.877h36.502v26.818H-2.226z' transform='matrix(1.2771 0 0 1.40447 2.842 4.04)'/%3E%3Cpath d='m16.759 20.816-7.715-.061 9.797-16.923 9.796 16.923-7.715.061v8.854h16.65v4.162H16.759V20.816Z' style='fill:%23fff'/%3E%3C/svg%3E");
  width: 36px;
}

.dialogNativeWindow .hux-dialog-content {
  height: auto !important;
}

/* Colorize all vi-icons blue again */
[class^=vi-],
[class*=vi-] {
  color: var(--color-blue-vois, #004987);
}

.hux-form label {
  position: relative;
}

[data-tooltip]:hover:before {
  letter-spacing: initial;
  width: max-content;
  max-width: 10rem;
  top: 10px;
  left: -10%;
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  opacity: 1;
}

.hover-cursor-pointer:hover {
  cursor: pointer;
}

.hover-cursor-default:hover {
  cursor: default;
}

.hover-cursor-not-allowed:hover {
  cursor: not-allowed;
}

.hover-shadow-xs:hover {
  box-shadow: var(--shadow-xs);
}

.hover-shadow-sm:hover {
  box-shadow: var(--shadow-sm);
}

.hover-shadow-md:hover {
  box-shadow: var(--shadow-md);
}

.hover-shadow-lg:hover {
  box-shadow: var(--shadow-lg);
}

.hover-shadow-xl:hover {
  box-shadow: var(--shadow-xl);
}

.hover-shadow-0:hover,
.hover-shadow-none:hover {
  box-shadow: none;
}

.hover-bg-current-color:hover {
  background-color: currentColor;
}

.hover-bg-primary:hover {
  background-color: var(--color-primary);
}

.hover-bg-white:hover {
  background-color: var(--color-white);
}

.hover-bg-black:hover {
  background-color: var(--color-black);
}

.hover-bg-error:hover,
.hover-bg-red:hover {
  background-color: var(--color-red);
}

.hover-bg-warning:hover,
.hover-bg-orange:hover {
  background-color: var(--color-orange);
}

.hover-bg-success:hover,
.hover-bg-green:hover {
  background-color: var(--color-green);
}

.hover-bg-gray-50:hover {
  background-color: var(--color-gray-50);
}

.hover-bg-gray-100:hover {
  background-color: var(--color-gray-100);
}

.hover-bg-gray-200:hover {
  background-color: var(--color-gray-200);
}

.hover-bg-gray-300:hover {
  background-color: var(--color-gray-300);
}

.hover-bg-gray-400:hover {
  background-color: var(--color-gray-400);
}

.hover-bg-gray-500:hover,
.hover-bg-gray:hover {
  background-color: var(--color-gray-500);
}

.hover-bg-gray-600:hover {
  background-color: var(--color-gray-600);
}

.hover-bg-gray-700:hover {
  background-color: var(--color-gray-700);
}

.hover-bg-gray-800:hover {
  background-color: var(--color-gray-800);
}

.hover-bg-gray-900:hover {
  background-color: var(--color-gray-900);
}

.hover-border-current-color:hover {
  border: 1px solid;
  border-color: currentColor;
}

.hover-border-primary:hover {
  border: 1px solid;
  border-color: var(--color-primary);
}

.hover-border-blue:hover {
  border: 1px solid;
  border-color: var(--color-blue);
}

.hover-border-white:hover {
  border: 1px solid;
  border-color: var(--color-white);
}

.hover-border-black:hover {
  border: 1px solid;
  border-color: var(--color-black);
}

.hover-border-error:hover,
.hover-border-red:hover {
  border: 1px solid;
  border-color: var(--color-red);
}

.hover-border-warning:hover,
.hover-border-orange:hover {
  border: 1px solid;
  border-color: var(--color-orange);
}

.hover-border-success:hover,
.hover-border-green:hover {
  border: 1px solid;
  border-color: var(--color-green);
}

.hover-border-gray-50:hover {
  border: 1px solid;
  border-color: var(--color-gray-50);
}

.hover-border-gray-100:hover {
  border: 1px solid;
  border-color: var(--color-gray-100);
}

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

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

.hover-border-gray-400:hover {
  border: 1px solid;
  border-color: var(--color-gray-400);
}

.hover-border-gray-500:hover,
.hover-border-gray:hover {
  border: 1px solid;
  border-color: var(--color-gray-500);
}

.hover-border-gray-600:hover {
  border: 1px solid;
  border-color: var(--color-gray-600);
}

.hover-border-gray-700:hover {
  border: 1px solid;
  border-color: var(--color-gray-700);
}

.hover-border-gray-800:hover {
  border: 1px solid;
  border-color: var(--color-gray-800);
}

.hover-border-gray-900:hover {
  border: 1px solid;
  border-color: var(--color-gray-900);
}

.hover-color-current-color:hover {
  color: currentColor;
}

.hover-color-primary:hover {
  color: var(--color-primary);
}

.hover-color-blue:hover {
  color: var(--color-blue);
}

.hover-color-white:hover {
  color: var(--color-white);
}

.hover-color-black:hover {
  color: var(--color-black);
}

.hover-color-error:hover,
.hover-color-red:hover {
  color: var(--color-red);
}

.hover-color-warning:hover,
.hover-color-orange:hover {
  color: var(--color-orange);
}

.hover-color-success:hover,
.hover-color-green:hover {
  color: var(--color-green);
}

.hover-opacity-0 {
  opacity: 0;
}

.hover-opacity-1 {
  opacity: 1;
}

.hover-icon .icon {
  transform: translate(0%, 0px);
  transition: all 200ms ease-in-out;
}

.hover-icon:hover .icon,
.hover-icon:focus .icon {
  transform: translate(50%, 0px);
  transition: all 200ms ease-in-out;
}

:root {
  --ratio-square: 1;
  --ratio-landscape: 4/3;
  --ratio-portrait: 3/4;
  --ratio-widescreen: 16/9;
  --ratio-ultrawide: 18/5;
  --ratio-golden: 1.618/1;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

.ratio-square {
  aspect-ratio: var(--ratio-square);
}

.ratio-landscape {
  aspect-ratio: var(--ratio-landscape);
}

.ratio-portrait {
  aspect-ratio: var(--ratio-portrait);
}

.ratio-widescreen {
  aspect-ratio: var(--ratio-widescreen);
}

.ratio-ultrawide {
  aspect-ratio: var(--ratio-ultrawide);
}

.ratio-golden {
  aspect-ratio: var(--ratio-golden);
}

.object-fit-contain {
  object-fit: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.object-fit-cover {
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-height-25 img {
  object-fit: cover !important;
  max-height: calc(25vh + 100px) !important;
  width: 100% !important;
}

.image-height-50 img {
  object-fit: cover;
  max-height: calc(50vh + 100px);
  width: 100%;
}

.image-height-75 img {
  object-fit: cover;
  max-height: calc(75vh + 100px);
  width: 100%;
}

.image-height-100 img {
  object-fit: cover;
  max-height: 100vh;
  width: 100%;
}

/**
Use a better box model (opinionated).
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/**
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)
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
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;
  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 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
hr {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
form legend {
  display: block;
}

blockquote,
q {
  quotes: none;
}

button,
input,
textarea,
select {
  margin: 0;
}

select.form-control::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

input::-ms-clear {
  display: none;
}

.flex-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

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

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

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

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

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

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

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

.flex-self-auto {
  align-self: auto;
}

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

.flex-self-end {
  align-self: flex-end;
}

.flex-self-center {
  align-self: center;
}

.flex-self-baseline {
  align-self: baseline;
}

.flex-self-stretch {
  align-self: stretch;
}

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

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

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

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

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

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

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

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

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

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

.flex-content-end {
  align-content: flex-end;
}

.flex-content-center {
  align-content: center;
}

.flex-content-between {
  align-content: space-between;
}

.flex-content-around {
  align-content: space-around;
}

.flex-content-stretch {
  align-content: stretch;
}

.flex-1 {
  flex: 1;
}

.flex-auto {
  flex: auto;
}

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

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

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

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

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

.d-flex.break,
.flex.break,
.flex-clear {
  flex-basis: 100%;
  height: 0;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-clear {
  clear: both;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-sticky {
  position: sticky;
}

.p-center {
  display: block;
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.align-text-top {
  vertical-align: text-top;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

:root {
  --shadow-xs: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --shadow-sm: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  --shadow-md: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  --shadow-lg: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  --shadow-xl: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.shadow-xs {
  box-shadow: var(--shadow-xs);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-0,
.shadow-none {
  box-shadow: none;
}

.shadow-auto {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.dark-theme .shadow-auto {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.dark-theme .shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.dark-theme .shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.12);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.dark-theme .shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

:root {
  --spacing-unit: 1rem;
  --spacing-xs: calc(var(--spacing-unit) * 0.1) ;
}

.spacing-xs {
  padding: var(--spacing-xs);
}

.gap-0 {
  gap: 0;
}

.gap-025 {
  gap: 0.25rem;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-10 {
  gap: 1rem;
}

.gap-20 {
  gap: 2rem;
}

.gap-30 {
  gap: 3rem;
}

.gap-40 {
  gap: 4rem;
}

.gap-50 {
  gap: 5rem;
}

.gap-60 {
  gap: 6rem;
}

.gap-70 {
  gap: 7rem;
}

.gap-80 {
  gap: 8rem;
}

.gap-90 {
  gap: 9rem;
}

.gap-100 {
  gap: 10rem;
}

.min-vh-25 {
  min-height: 25vh;
}

.min-vh-50 {
  min-height: 50vh;
}

.min-vh-75 {
  min-height: 75vh;
}

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

.min-h-auto {
  min-height: auto;
}

.min-h-25 {
  min-height: 25%;
}

.min-h-50 {
  min-height: 50%;
}

.min-h-75 {
  min-height: 75%;
}

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

.max-vh-25 {
  max-height: 25vh;
}

.max-vh-50 {
  max-height: 50vh;
}

.max-vh-75 {
  max-height: 75vh;
}

.max-vh-100 {
  max-height: 100vh;
}

.max-h-auto {
  max-height: auto;
}

.max-h-25 {
  max-height: 25%;
}

.max-h-50 {
  max-height: 50%;
}

.max-h-75 {
  max-height: 75%;
}

.max-h-100 {
  max-height: 100%;
}

.vh-25 {
  height: 25vh;
}

.vh-50 {
  height: 50vh;
}

.vh-75 {
  height: 75vh;
}

.vh-100 {
  height: 100vh;
}

.h-auto {
  height: auto;
}

.h-25 {
  height: 25%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-100 {
  height: 100%;
}

.min-vw-25 {
  min-width: 25vw;
}

.min-vw-50 {
  min-width: 50vw;
}

.min-vw-75 {
  min-width: 75vw;
}

.min-vw-100 {
  min-width: 100vw;
}

.max-vw-25 {
  max-width: 25vw;
}

.max-vw-50 {
  max-width: 50vw;
}

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

.max-vw-100 {
  max-width: 100vw;
}

.max-w-auto {
  max-width: auto;
}

.max-w-25 {
  max-width: 25%;
}

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

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

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

.min-w-auto {
  min-width: auto;
}

.min-w-25 {
  min-width: 25%;
}

.min-w-50 {
  min-width: 50%;
}

.min-w-75 {
  min-width: 75%;
}

.min-w-100 {
  min-width: 100%;
}

.w-auto {
  width: auto;
}

.w-25 {
  width: 25%;
}

.w-33 {
  width: 33.3333333333%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

.vw-25 {
  width: 25vw;
}

.vw-50 {
  width: 50vw;
}

.vw-75 {
  width: 75vw;
}

.vw-100 {
  width: 100vw;
}

/* spacing helper like padding, margin and so on*/
/* margin values for display flex*/
.m-auto {
  margin: auto;
}

.mt-auto,
.my-auto {
  margin-top: auto;
}

.mr-auto,
.mx-auto {
  margin-right: auto;
}

.ml-auto,
.mx-auto {
  margin-left: auto;
}

.mb-auto,
.my-auto {
  margin-bottom: auto;
}

/* start negative values */
.m-n025 {
  margin: -0.25rem;
}

.mt-n025,
.my-n025 {
  margin-top: -0.25rem;
}

.mr-n025,
.mx-n025 {
  margin-right: -0.25rem;
}

.mb-n025,
.my-n025 {
  margin-bottom: -0.25rem;
}

.ml-n025,
.mx-n025 {
  margin-left: -0.25rem;
}

.mt-n05,
.my-n05 {
  margin-top: -0.5rem;
}

.mr-n05,
.mx-n05 {
  margin-right: -0.5rem;
}

.mb-n05,
.my-n05 {
  margin-bottom: -0.5rem;
}

.ml-n05,
.mx-n05 {
  margin-left: -0.5rem;
}

.m-n10 {
  margin: -1rem;
}

.mt-n10,
.my-n10 {
  margin-top: -1rem;
}

.mr-n10,
.mx-n10 {
  margin-right: -1rem;
}

.mb-n10,
.my-n10 {
  margin-bottom: -1rem;
}

.ml-n10,
.mx-n10 {
  margin-left: -1rem;
}

.m-n15 {
  margin: -1.5rem;
}

.mt-n15,
.my-n15 {
  margin-top: -1.5rem;
}

.mr-n15,
.mx-n15 {
  margin-right: -1.5rem;
}

.mb-n15,
.my-n15 {
  margin-bottom: -1.5rem;
}

.ml-n15,
.mx-n15 {
  margin-left: -1.5rem;
}

.m-n20 {
  margin: -2rem;
}

.m-n30 {
  margin: -3rem;
}

.mt-n30,
.my-n30 {
  margin-top: -3rem;
}

.mr-n30,
.mx-n30 {
  margin-right: -3rem;
}

.mb-n30,
.my-n30 {
  margin-bottom: -3rem;
}

.ml-n30,
.mx-n30 {
  margin-left: -3rem;
}

.ml-n02 {
  margin-left: -0.2rem;
}

/* start positive values*/
.m-0 {
  margin: 0;
}

.mt-0,
.my-0 {
  margin-top: 0;
}

.mr-0,
.mx-0 {
  margin-right: 0;
}

.mb-0,
.my-0 {
  margin-bottom: 0;
}

.ml-0,
.mx-0 {
  margin-left: 0;
}

.m-01 {
  margin: 0.1rem;
}

.mt-01,
.my-01 {
  margin-top: 0.1rem;
}

.mr-01,
.mx-01 {
  margin-right: 0.1rem;
}

.mb-01,
.my-01 {
  margin-bottom: 0.1rem;
}

.ml-01,
.mx-01 {
  margin-left: 0.1rem;
}

.m-02 {
  margin: 0.2rem;
}

.mt-02,
.my-02 {
  margin-top: 0.2rem;
}

.mr-02,
.mx-02 {
  margin-right: 0.2rem;
}

.mb-02,
.my-02 {
  margin-bottom: 0.2rem;
}

.ml-02,
.mx-02 {
  margin-left: 0.2rem;
}

.m-025 {
  margin: 0.25rem;
}

.mt-025,
.my-025 {
  margin-top: 0.25rem;
}

.mr-025,
.mx-025 {
  margin-right: 0.25rem;
}

.mb-025,
.my-025 {
  margin-bottom: 0.25rem;
}

.ml-025,
.mx-025 {
  margin-left: 0.25rem;
}

.m-03 {
  margin: 0.3rem;
}

.mt-03,
.my-03 {
  margin-top: 0.3rem;
}

.mr-03,
.mx-03 {
  margin-right: 0.3rem;
}

.mb-03,
.my-03 {
  margin-bottom: 0.3rem;
}

.ml-03,
.mx-03 {
  margin-left: 0.3rem;
}

.m-04 {
  margin: 0.4rem;
}

.mt-04,
.my-04 {
  margin-top: 0.4rem;
}

.mr-04,
.mx-04 {
  margin-right: 0.4rem;
}

.mb-04,
.my-04 {
  margin-bottom: 0.4rem;
}

.ml-04,
.mx-04 {
  margin-left: 0.4rem;
}

.m-05 {
  margin: 0.5rem;
}

.mt-05,
.my-05 {
  margin-top: 0.5rem;
}

.mr-05,
.mx-05 {
  margin-right: 0.5rem;
}

.mb-05,
.my-05 {
  margin-bottom: 0.5rem;
}

.ml-05,
.mx-05 {
  margin-left: 0.5rem;
}

.m-06 {
  margin: 0.6rem;
}

.mt-06,
.my-06 {
  margin-top: 0.6rem;
}

.mr-06,
.mx-06 {
  margin-right: 0.6rem;
}

.mb-06,
.my-06 {
  margin-bottom: 0.6rem;
}

.ml-06,
.mx-06 {
  margin-left: 0.6rem;
}

.m-07 {
  margin: 0.7rem;
}

.mt-07,
.my-07 {
  margin-top: 0.7rem;
}

.mr-07,
.mx-07 {
  margin-right: 0.7rem;
}

.mb-07,
.my-07 {
  margin-bottom: 0.7rem;
}

.ml-07,
.mx-07 {
  margin-left: 0.7rem;
}

.m-08 {
  margin: 0.8rem;
}

.mt-08,
.my-08 {
  margin-top: 0.8rem;
}

.mr-08,
.mx-08 {
  margin-right: 0.8rem;
}

.mb-08,
.my-08 {
  margin-bottom: 0.8rem;
}

.ml-08,
.mx-08 {
  margin-left: 0.8rem;
}

.m-09 {
  margin: 0.9rem;
}

.mt-09,
.my-09 {
  margin-top: 0.9rem;
}

.mr-09,
.mx-09 {
  margin-right: 0.9rem;
}

.mb-09,
.my-09 {
  margin-bottom: 0.9rem;
}

.ml-09,
.mx-09 {
  margin-left: 0.9rem;
}

.m-10 {
  margin: 1rem;
}

.mt-10,
.my-10 {
  margin-top: 1rem;
}

.mr-10,
.mx-10 {
  margin-right: 1rem;
}

.mb-10,
.my-10 {
  margin-bottom: 1rem;
}

.ml-10,
.mx-10 {
  margin-left: 1rem;
}

.m-11 {
  margin: 1.1rem;
}

.mr-11,
.mx-11 {
  margin-right: 1.1rem;
}

.mt-11,
.my-11 {
  margin-top: 1.1rem;
}

.mb-11,
.my-11 {
  margin-bottom: 1.1rem;
}

.ml-12,
.mx-12 {
  margin-left: 1.2rem;
}

.m-12 {
  margin: 1.2rem;
}

.mr-12,
.mx-12 {
  margin-right: 1.2rem;
}

.mt-12,
.my-12 {
  margin-top: 1.2rem;
}

.mb-12,
.my-12 {
  margin-bottom: 1.2rem;
}

.ml-12,
.mx-12 {
  margin-left: 1.2rem;
}

.m-13 {
  margin: 1.3rem;
}

.mr-13,
.mx-13 {
  margin-right: 1.3rem;
}

.mt-13,
.my-13 {
  margin-top: 1.3rem;
}

.mb-13,
.my-13 {
  margin-bottom: 1.3rem;
}

.ml-13,
.mx-13 {
  margin-left: 1.3rem;
}

.m-14 {
  margin: 1.4rem;
}

.mr-14,
.mx-14 {
  margin-right: 1.4rem;
}

.mt-14,
.my-14 {
  margin-top: 1.4rem;
}

.mb-14,
.my-14 {
  margin-bottom: 1.4rem;
}

.ml-14,
.mx-14 {
  margin-left: 1.4rem;
}

.m-15 {
  margin: 1.5rem;
}

.mr-15,
.mx-15 {
  margin-right: 1.5rem;
}

.mt-15,
.my-15 {
  margin-top: 1.5rem;
}

.mb-15,
.my-15 {
  margin-bottom: 1.5rem;
}

.ml-15,
.mx-15 {
  margin-left: 1.5rem;
}

.m-16 {
  margin: 1.6rem;
}

.mr-16,
.mx-16 {
  margin-right: 1.6rem;
}

.mt-16,
.my-16 {
  margin-top: 1.6rem;
}

.mb-16,
.my-16 {
  margin-bottom: 1.6rem;
}

.ml-16,
.mx-16 {
  margin-left: 1.6rem;
}

.m-17 {
  margin: 1.7rem;
}

.mr-17,
.mx-17 {
  margin-right: 1.7rem;
}

.mt-17,
.my-17 {
  margin-top: 1.7rem;
}

.mb-17,
.my-17 {
  margin-bottom: 1.7rem;
}

.ml-17,
.mx-17 {
  margin-left: 1.7rem;
}

.m-18 {
  margin: 1.8rem;
}

.mr-18,
.mx-18 {
  margin-right: 1.8rem;
}

.mt-18,
.my-18 {
  margin-top: 1.8rem;
}

.mb-18,
.my-18 {
  margin-bottom: 1.8rem;
}

.ml-18,
.mx-18 {
  margin-left: 1.8rem;
}

.m-19 {
  margin: 1.9rem;
}

.mr-19,
.mx-19 {
  margin-right: 1.9rem;
}

.mt-19,
.my-19 {
  margin-top: 1.9rem;
}

.mb-19,
.my-19 {
  margin-bottom: 1.9rem;
}

.ml-19,
.mx-19 {
  margin-left: 1.9rem;
}

.m-20 {
  margin: 2rem;
}

.mr-20,
.mx-20 {
  margin-right: 2rem;
}

.mt-20,
.my-20 {
  margin-top: 2rem;
}

.mb-20,
.my-20 {
  margin-bottom: 2rem;
}

.ml-20,
.mx-20 {
  margin-left: 2rem;
}

.m-30 {
  margin: 3rem;
}

.mt-30,
.my-30 {
  margin-top: 3rem;
}

.mr-30,
.mx-30 {
  margin-right: 3rem;
}

.mb-30,
.my-30 {
  margin-bottom: 3rem;
}

.ml-30,
.mx-30 {
  margin-left: 3rem;
}

.m-40 {
  margin: 4rem;
}

.mt-40,
.my-40 {
  margin-top: 4rem;
}

.mr-40,
.mx-40 {
  margin-right: 4rem;
}

.mb-40,
.my-40 {
  margin-bottom: 4rem;
}

.ml-40,
.mx-40 {
  margin-left: 4rem;
}

.m-50 {
  margin: 5rem;
}

.mt-50,
.my-50 {
  margin-top: 5rem;
}

.mr-50,
.mx-50 {
  margin-right: 5rem;
}

.mb-50,
.my-50 {
  margin-bottom: 5rem;
}

.ml-50,
.mx-50 {
  margin-left: 5rem;
}

.p-0 {
  padding: 0;
}

.pt-0,
.py-0 {
  padding-top: 0;
}

.pr-0,
.px-0 {
  padding-right: 0;
}

.pb-0,
.py-0 {
  padding-bottom: 0;
}

.pl-0,
.px-0 {
  padding-left: 0;
}

.p-01 {
  padding: 0.1rem;
}

.pt-01,
.py-01 {
  padding-top: 0.1rem;
}

.pr-01,
.px-01 {
  padding-right: 0.1rem;
}

.pb-01,
.py-01 {
  padding-bottom: 0.1rem;
}

.pl-01,
.px-01 {
  padding-left: 0.1rem;
}

.p-015 {
  padding: 0.15rem;
}

.pt-015,
.py-015 {
  padding-top: 0.15rem;
}

.pr-015,
.px-015 {
  padding-right: 0.15rem;
}

.pb-015,
.py-015 {
  padding-bottom: 0.15rem;
}

.pl-015,
.px-015 {
  padding-left: 0.15rem;
}

.p-02 {
  padding: 0.2rem;
}

.pt-02,
.py-02 {
  padding-top: 0.2rem;
}

.pr-02,
.px-02 {
  padding-right: 0.2rem;
}

.pb-02,
.py-02 {
  padding-bottom: 0.2rem;
}

.pl-02,
.px-02 {
  padding-left: 0.2rem;
}

.p-025 {
  padding: 0.25rem;
}

.pt-025,
.py-025 {
  padding-top: 0.25rem;
}

.pr-025,
.px-025 {
  padding-right: 0.25rem;
}

.pb-025,
.py-025 {
  padding-bottom: 0.25rem;
}

.pl-025,
.px-025 {
  padding-left: 0.25rem;
}

.p-03 {
  padding: 0.3rem;
}

.pt-03,
.py-03 {
  padding-top: 0.3rem;
}

.pr-03,
.px-03 {
  padding-right: 0.3rem;
}

.pb-03,
.py-03 {
  padding-bottom: 0.3rem;
}

.pl-03,
.px-03 {
  padding-left: 0.3rem;
}

.p-04 {
  padding: 0.4rem;
}

.pt-04,
.py-04 {
  padding-top: 0.4rem;
}

.pr-04,
.px-04 {
  padding-right: 0.4rem;
}

.pb-04,
.py-04 {
  padding-bottom: 0.4rem;
}

.pl-04,
.px-04 {
  padding-left: 0.4rem;
}

.p-05 {
  padding: 0.5rem;
}

.pt-05,
.py-05 {
  padding-top: 0.5rem;
}

.pr-05,
.px-05 {
  padding-right: 0.5rem;
}

.pb-05,
.py-05 {
  padding-bottom: 0.5rem;
}

.pl-05,
.px-05 {
  padding-left: 0.5rem;
}

.p-06 {
  padding: 0.6rem;
}

.pt-06,
.py-06 {
  padding-top: 0.6rem;
}

.pr-06,
.px-06 {
  padding-right: 0.6rem;
}

.pb-06,
.py-06 {
  padding-bottom: 0.6rem;
}

.pl-06,
.px-06 {
  padding-left: 0.6rem;
}

.p-07 {
  padding: 0.7rem;
}

.pt-07,
.py-07 {
  padding-top: 0.7rem;
}

.pr-07,
.px-07 {
  padding-right: 0.7rem;
}

.pb-07,
.py-07 {
  padding-bottom: 0.7rem;
}

.pl-07,
.px-07 {
  padding-left: 0.7rem;
}

.p-08 {
  padding: 0.8rem;
}

.pt-08,
.py-08 {
  padding-top: 0.8rem;
}

.pr-08,
.px-08 {
  padding-right: 0.8rem;
}

.pb-08,
.py-08 {
  padding-bottom: 0.8rem;
}

.pl-08,
.px-08 {
  padding-left: 0.8rem;
}

.p-09 {
  padding: 0.9rem;
}

.pt-09,
.py-09 {
  padding-top: 0.9rem;
}

.pr-09,
.px-09 {
  padding-right: 0.9rem;
}

.pb-09,
.py-09 {
  padding-bottom: 0.9rem;
}

.pl-09,
.px-09 {
  padding-left: 0.9rem;
}

.p-10 {
  padding: 1rem;
}

.pt-10,
.py-10 {
  padding-top: 1rem;
}

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

.pb-10,
.py-10 {
  padding-bottom: 1rem;
}

.pl-10,
.px-10 {
  padding-left: 1rem;
}

.p-11 {
  padding: 1.1rem;
}

.pt-11,
.py-11 {
  padding-top: 1.1rem;
}

.pr-11,
.px-11 {
  padding-right: 1.1rem;
}

.pb-11,
.py-11 {
  padding-bottom: 1.1rem;
}

.pl-11,
.px-11 {
  padding-left: 1.1rem;
}

.p-12 {
  padding: 1.2rem;
}

.pt-12,
.py-12 {
  padding-top: 1.2rem;
}

.pr-12,
.px-12 {
  padding-right: 1.2rem;
}

.pb-12,
.py-12 {
  padding-bottom: 1.2rem;
}

.pl-12,
.px-12 {
  padding-left: 1.2rem;
}

.p-13 {
  padding: 1.3rem;
}

.pt-13,
.py-13 {
  padding-top: 1.3rem;
}

.pr-13,
.px-13 {
  padding-right: 1.3rem;
}

.pb-13,
.py-13 {
  padding-bottom: 1.3rem;
}

.pl-13,
.px-13 {
  padding-left: 1.3rem;
}

.p-14 {
  padding: 1.4rem;
}

.pt-14,
.py-14 {
  padding-top: 1.4rem;
}

.pr-14,
.px-14 {
  padding-right: 1.4rem;
}

.pb-14,
.py-14 {
  padding-bottom: 1.4rem;
}

.pl-14,
.px-14 {
  padding-left: 1.4rem;
}

.p-15 {
  padding: 1.5rem;
}

.pt-15,
.py-15 {
  padding-top: 1.5rem;
}

.pr-15,
.px-15 {
  padding-right: 1.5rem;
}

.pb-15,
.py-15 {
  padding-bottom: 1.5rem;
}

.pl-15,
.px-15 {
  padding-left: 1.5rem;
}

.p-16 {
  padding: 1.6rem;
}

.pt-16,
.py-16 {
  padding-top: 1.6rem;
}

.pr-16,
.px-16 {
  padding-right: 1.6rem;
}

.pb-16,
.py-16 {
  padding-bottom: 1.6rem;
}

.pl-16,
.px-16 {
  padding-left: 1.6rem;
}

.p-17 {
  padding: 1.7rem;
}

.pt-17,
.py-17 {
  padding-top: 1.7rem;
}

.pr-17,
.px-17 {
  padding-right: 1.7rem;
}

.pb-17,
.py-17 {
  padding-bottom: 1.7rem;
}

.pl-17,
.px-17 {
  padding-left: 1.7rem;
}

.p-18 {
  padding: 1.8rem;
}

.pt-18,
.py-18 {
  padding-top: 1.8rem;
}

.pr-18,
.px-18 {
  padding-right: 1.8rem;
}

.pb-18,
.py-18 {
  padding-bottom: 1.8rem;
}

.pl-18,
.px-18 {
  padding-left: 1.8rem;
}

.p-19 {
  padding: 1.9rem;
}

.pt-19,
.py-19 {
  padding-top: 1.9rem;
}

.pr-19,
.px-19 {
  padding-right: 1.9rem;
}

.pb-19,
.py-19 {
  padding-bottom: 1.9rem;
}

.pl-19,
.px-19 {
  padding-left: 1.9rem;
}

.p-20 {
  padding: 2rem;
}

.pt-20,
.py-20 {
  padding-top: 2rem;
}

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

.pb-20,
.py-20 {
  padding-bottom: 2rem;
}

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

.p-30 {
  padding: 3rem;
}

.pt-30,
.py-30 {
  padding-top: 3rem;
}

.pr-30,
.px-30 {
  padding-right: 3rem;
}

.pb-30,
.py-30 {
  padding-bottom: 3rem;
}

.pl-30,
.px-30 {
  padding-left: 3rem;
}

.p-40 {
  padding: 4rem;
}

.pt-40,
.py-40 {
  padding-top: 4rem;
}

.pr-40,
.px-40 {
  padding-right: 4rem;
}

.pb-40,
.py-40 {
  padding-bottom: 4rem;
}

.pl-40,
.px-40 {
  padding-left: 4rem;
}

.p-50 {
  padding: 5rem;
}

.pt-50,
.py-50 {
  padding-top: 5rem;
}

.pr-50,
.px-50 {
  padding-right: 5rem;
}

.pb-50,
.py-50 {
  padding-bottom: 5rem;
}

.pl-50,
.px-50 {
  padding-left: 5rem;
}

.left-0 {
  left: 0;
}

.left-100 {
  left: 100%;
}

.right-0 {
  right: 0;
}

.right-100 {
  right: 100%;
}

.top-0 {
  top: 0;
}

.top-100 {
  top: 100%;
}

.bottom-0 {
  bottom: 0;
}

.bottom-100 {
  bottom: 100%;
}

@font-face {
  font-family: "Inter var";
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
  font-named-instance: "Regular";
  src: url(/ui/fonts/InterVariable.woff2) format("woff2");
}
@font-face {
  font-family: "Inter var";
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
  font-named-instance: "Italic";
  src: url(/ui/fonts/InterVariable-Italic.woff2) format("woff2");
}
/* -------------------------------------------------------
Variable font.
Usage:
s
  html { font-family: 'Inter', sans-serif; }
  @supports (font-variation-settings: normal) {
    html { font-family: 'Inter var', sans-serif; }
  }
*/
:root {
  --font-family-sans-serif: "Inter var", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  --font-family-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times,
    serif;
  --font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --font-size-base: 1rem;
  --text-scale-ratio: 1.4;
  --font-weight-base: 400;
  --text-sm: calc(var(--font-size-base) / var(--text-scale-ratio));
  --text-md: calc(var(--font-size-base) / 1.2);
  --text-lg: calc(var(--font-size-base) * var(--text-scale-ratio));
  --text-xl: calc(var(--font-size-base) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xxl: calc(var(--font-size-base) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-family-sans-serif);
  hyphens: auto;
  overflow-wrap: break-word;
}

@supports (font-variation-settings: normal) {
  html {
    font-family: "Inter var", sans-serif;
  }
}
body {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
  line-height: normal;
  font-weight: var(--font-weight-base);
}

h1,
h2,
h3,
h4 {
  line-height: normal;
}

small {
  font-size: var(--text-sm);
}

.text-sans {
  font-family: var(--font-family-sans-serif);
}

.text-serif {
  font-family: var(--font-family-serif);
}

.text-mono {
  font-family: var(--font-family-mono);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-md {
  font-size: var(--text-md);
}

.text-base {
  font-size: var(--font-size-base);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-xxl {
  font-size: var(--text-xxl);
}

.legend {
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 700;
}

.text-decoration-none {
  text-decoration: none;
}

.text-decoration-underline {
  text-decoration: underline;
}

.text-decoration-line-trough {
  text-decoration: line-through;
}

a.link {
  text-decoration: none;
}

.link {
  white-space: nowrap;
  padding-bottom: 2px;
  background-image: linear-gradient(to right, currentColor, currentColor);
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 500ms ease;
}
.link:hover {
  background-size: 0 2px;
  background-position: 100% 100%;
  opacity: 1;
  cursor: pointer;
}

.text-100 {
  font-weight: 100;
}

.text-thin,
.text-200 {
  font-weight: 200;
}

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

.text-400,
.text-normal {
  font-weight: 400;
}

.text-500 {
  font-weight: 500;
}

.text-600 {
  font-weight: 600;
}

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

.text-800,
.text-bold {
  font-weight: 800;
}

.text-900 {
  font-weight: 900;
}

.text-italic {
  font-style: italic;
}

.text-muted {
  opacity: 0.6;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-wrap {
  white-space: normal;
}

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

.text-clip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-break {
  hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
}

.text-wrap-balance {
  text-wrap: balance;
}

.text-wrap-pretty {
  text-wrap: pretty;
}

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

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

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

ol,
ul,
.list ul,
.list ol {
  padding-left: 0;
  list-style: none;
}

.list > li:last-child,
.list ul > li:last-child,
.list ol > li:last-child,
ul > li:last-child,
ol > li:last-child {
  margin-bottom: 0;
}

.list-bullets > li {
  margin-left: 1rem;
}

.list-bullets ul li,
.list-bullets ol li {
  padding-left: 19px;
}

.list-bullets li::before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  top: -0.03em;
}

.list-bullets > li::before,
.list-bullets > li::before {
  content: "";
  border-radius: 50%;
  color: var(--color-gray-400);
  background-color: currentColor;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  left: -12px;
}

/**!
this needs to be in place - for our body class in all modules!!
Component styles
*/
.global {
  /* infoboard enhanced */
  /* add the 2 infoboards with the content together */
  /* only for height spacing */
  /**!
  Helper styles
  */
  /* left tooltip */
}
.global .accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}
.global .accordion .accordion-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 5px;
}
.global .accordion .accordion-container .accordion-trigger {
  margin: 0;
  position: relative;
  padding: 0.5rem 1rem;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  align-content: center;
  align-items: center;
  display: flex;
}
.global .accordion .accordion-container .accordion-trigger .hint {
  font-size: 1.3em;
  transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}
.global .accordion .accordion-container.active .accordion-trigger .hint {
  transform: rotate(90deg);
}
.global .accordion .accordion-container .accordion-panel {
  width: 100%;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  overflow: hidden;
  height: auto;
  max-height: 0;
  padding: 0 0.5rem;
}
.global .accordion .accordion-container.active .accordion-panel {
  padding: 0 0.5rem;
  opacity: 1;
  height: auto;
  max-height: 500px;
}
.global .badge {
  white-space: nowrap;
  --padding-y: 0.2rem;
  --padding-x: 0.4rem;
  font-size: 0.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
  padding-top: var(--padding-y);
  padding-bottom: var(--padding-y);
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
}
.global .btn .badge,
.global .btn-light .badge {
  border-radius: var(--radius-xl);
  align-items: baseline;
}
.global .badge-absolute {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-xl);
}
.global .badge-absolute:empty {
  --padding-y: 0.5rem;
  --padding-x: 0.5rem;
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
  padding-top: var(--padding-y);
  padding-bottom: var(--padding-y);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-xl);
}
.global .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  border: 0;
  font-size: 1em;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background-color: var(--color-white);
  color: var(--color-gray-800);
}
.global .btn:hover {
  cursor: pointer;
  background-color: color-mix(in srgb, var(--color-white), var(--color-gray-200));
  color: var(--color-gray-800);
  transition: all 200ms ease-in-out;
  box-shadow: var(--shadow-md);
}
.global .btn:focus-visible {
  outline: none;
  box-shadow: 0px 0px 0px 3px var(--color-white), 0px 0px 0px 6px var(--color-gray-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn:active {
  outline: none;
  box-shadow: 0px 0px 0px 3px var(--color-white), 0px 0px 0px 6px var(--color-gray-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn:visited {
  outline: none;
  box-shadow: 0px 0px 0px 3px var(--color-white), 0px 0px 0px 6px var(--color-gray-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-lighter);
  border: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 200ms ease-in-out;
}
.global .btn.btn-primary:hover {
  background-color: var(--color-primary-darker);
  color: var(--color-primary-lighter);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-primary:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-primary:active {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-primary:visited {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary);
}
.global .btn.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-secondary-lighter);
  border: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 200ms ease-in-out;
}
.global .btn.btn-secondary:hover {
  background-color: var(--color-secondary-darker);
  color: var(--color-secondary-lighter);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-secondary:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-secondary);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-blue {
  background-color: var(--color-primary);
  color: var(--color-primary-lighter);
  border: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 200ms ease-in-out;
}
.global .btn.btn-blue:hover {
  background-color: var(--color-primary-darker);
  color: var(--color-primary-lighter);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-blue:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-blue:active {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-blue:visited {
  outline: none;
  box-shadow: 0px 0px 0px 3px var(--color-white), 0px 0px 0px 6px var(--color-blue-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-red, .global .btn.btn-error {
  background-color: var(--color-red-500);
  border: 0;
  color: var(--color-red-50);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 200ms ease-in-out;
}
.global .btn.btn-red:hover, .global .btn.btn-error:hover {
  border: 0;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  background-color: var(--color-red-800);
  color: var(--color-red-100);
}
.global .btn.btn-red:focus-visible, .global .btn.btn-error:focus-visible {
  outline: none;
  box-shadow: 0px 0px 0px 3px var(--color-white), 0px 0px 0px 6px var(--color-red-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-red:active, .global .btn.btn-error:active {
  outline: none;
  box-shadow: 0px 0px 0px 3px var(--color-white), 0px 0px 0px 6px var(--color-red-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-red:visited, .global .btn.btn-error:visited {
  outline: none;
  box-shadow: 0px 0px 0px 3px var(--color-white), 0px 0px 0px 6px var(--color-red-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-orange, .global .btn.btn-warning {
  background-color: var(--color-orange-500);
  color: var(--color-orange-50);
  border: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 200ms ease-in-out;
}
.global .btn.btn-orange:hover, .global .btn.btn-warning:hover {
  background-color: var(--color-orange-700);
  color: var(--color-white);
  border: 0;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}
.global .btn.btn-green, .global .btn.btn-success {
  background-color: var(--color-green-500);
  color: var(--color-green-50);
  border: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 200ms ease-in-out;
}
.global .btn.btn-green:hover, .global .btn.btn-success:hover {
  background-color: var(--color-green-700);
  color: var(--color-green-100);
  border: 0;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}
.global .btn.btn-dark {
  background-color: var(--color-gray-800);
  color: var(--color-gray-50);
  border: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 200ms ease-in-out;
}
.global .btn.btn-dark:hover {
  background-color: var(--color-gray-900);
  color: var(--color-gray-100);
  border: 0;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}
.global .btn.btn-transparent {
  --btn-custom-color: currentColor;
  --btn-custom-bg: transparent;
  background-color: var(--btn-custom-bg);
  color: var(--btn-custom-color);
  border: 0;
  box-shadow: none;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 200ms ease-in-out;
}
.global .btn.btn-transparent:hover {
  --btn-custom-bg: color-mix(in srgb, var(--btn-custom-color) 15%, transparent);
  background-color: var(--btn-custom-bg);
  border: 0;
  transition: all 200ms ease-in-out;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.global .btn.btn-link {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  color: currentColor;
  transition: all 200ms ease-in-out;
}
.global .btn.btn-link:hover {
  background-color: color-mix(in srgb, currentColor 15%, transparent);
  color: currentColor;
  border: 0;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}
.global .btn.btn-sm {
  font-size: var(--text-sm);
  padding: 0.3rem 0.6rem;
}
.global .btn.btn-md {
  font-size: var(--text-md);
  padding: 0.5rem 0.8rem;
}
.global .btn.btn-lg {
  font-size: var(--text-lg);
  padding: 1.1rem 1.3rem;
}
.global .btn.btn-xl {
  font-size: var(--text-xl);
  padding: 1.3rem 1.5rem;
}
.global .btn-light {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: 1em;
  padding: 0.8rem 1rem;
  border: 0;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  box-shadow: none;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 0, 0, 0.04);
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.global .btn-light:hover {
  cursor: pointer;
  border: 0;
  transition: all 200ms ease-in-out;
  background-color: var(--color-gray-200);
}
.global .btn-light:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-gray-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light:active {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-gray-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light:visited {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-gray-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-primary {
  background-color: var(--color-primary-lighter);
  color: var(--color-primary-dark);
  border: 0;
  border-radius: var(--radius-sm);
}
.global .btn-light.btn-primary:hover {
  cursor: pointer;
  border: 0;
  transition: all 200ms ease-in-out;
  background-color: var(--color-primary-light);
}
.global .btn-light.btn-primary:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary-dark);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-primary:active {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary-dark);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-primary:visited {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary-dark);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-secondary {
  background-color: var(--color-secondary-lighter);
  color: var(--color-secondary-dark);
  border: 0;
  border-radius: var(--radius-sm);
}
.global .btn-light.btn-secondary:hover {
  cursor: pointer;
  border: 0;
  transition: all 200ms ease-in-out;
  background-color: var(--color-secondary-light);
}
.global .btn-light.btn-secondary:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-secondary-dark);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-secondary:active {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-secondary-dark);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-secondary:visited {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-secondary-dark);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-blue {
  background-color: var(--color-primary-lighter);
  color: var(--color-primary-dark);
  border: 0;
  border-radius: var(--radius-sm);
}
.global .btn-light.btn-blue:hover {
  cursor: pointer;
  border: 0;
  transition: all 200ms ease-in-out;
  background-color: var(--color-primary-light);
}
.global .btn-light.btn-blue:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary-dark);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-blue:active {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary-dark);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-blue:visited {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-primary-dark);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-red, .global .btn-light.btn-error {
  background-color: var(--color-red-100);
  color: var(--color-red-900);
  border: 0;
  border-radius: var(--radius-sm);
}
.global .btn-light.btn-red:hover, .global .btn-light.btn-error:hover {
  cursor: pointer;
  background-color: var(--color-red-200);
  color: var(--color-red-900);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-red:focus-visible, .global .btn-light.btn-error:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-red-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-red:active, .global .btn-light.btn-error:active {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-red-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-red:visited, .global .btn-light.btn-error:visited {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-red-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-orange, .global .btn-light.btn-warning {
  background-color: var(--color-orange-200);
  color: var(--color-orange-900);
  border: 0;
  border-radius: var(--radius-sm);
}
.global .btn-light.btn-orange:hover, .global .btn-light.btn-warning:hover {
  cursor: pointer;
  background-color: var(--color-orange-300);
  color: var(--color-orange-900);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-orange:focus-visible, .global .btn-light.btn-warning:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-orange-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-orange:active, .global .btn-light.btn-warning:active {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-orange-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-orange:visited, .global .btn-light.btn-warning:visited {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-orange-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-green, .global .btn-light.btn-success {
  background-color: var(--color-green-200);
  color: var(--color-green-900);
  border: 0;
  border-radius: var(--radius-sm);
}
.global .btn-light.btn-green:hover, .global .btn-light.btn-success:hover {
  cursor: pointer;
  background-color: var(--color-green-300);
  color: var(--color-green-900);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-green:focus-visible, .global .btn-light.btn-success:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-green-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-green:active, .global .btn-light.btn-success:active {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-green-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-green:visited, .global .btn-light.btn-success:visited {
  outline: none;
  box-shadow: inset 0px 0px 0px 0px var(--color-white), 0px 0px 2px 4px var(--color-green-500);
  border: 0;
  transition: all 200ms ease-in-out;
}
.global .btn-light.btn-sm {
  font-size: var(--text-sm);
  padding: 0.3rem 0.6rem;
}
.global .btn-light.btn-md {
  font-size: var(--text-md);
  padding: 0.5rem 0.8rem;
}
.global .btn-light.btn-lg {
  font-size: var(--text-lg);
  padding: 1.1rem 1.3rem;
}
.global .btn-light.btn-xl {
  font-size: var(--text-xl);
  padding: 1.3rem 1.5rem;
}
.global .btn-group {
  /* button group */
  display: flex;
}
.global .btn-group > .btn-light,
.global .btn-group > .btn {
  border-radius: 0;
}
.global .btn-group > *:first-child,
.global .btn-group *:first-child .btn-group.btn-light,
.global .btn-group *:first-child .btn-group.btn {
  /* button group */
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.global .btn-group > *:last-child,
.global .btn-group *:last-child .btn-group.btn-light,
.global .btn-group *:last-child .btn-group.btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.global .btn:disabled,
.global .btn[disabled],
.global .btn[aria-disabled=true],
.global .btn-light:disabled,
.global .btn-light[disabled],
.global .btn-light[aria-disabled=true] {
  outline: none;
  pointer-events: unset;
  cursor: not-allowed;
  border: 0;
  opacity: 0.4;
}
.global .btn:disabled:hover,
.global .btn[disabled]:hover,
.global .btn[aria-disabled=true]:hover,
.global .btn-light:disabled:hover,
.global .btn-light[disabled]:hover,
.global .btn-light[aria-disabled=true]:hover {
  outline: none;
  cursor: not-allowed;
  border: 0;
  opacity: 0.4;
}
.global .btn:disabled:focus-visible,
.global .btn[disabled]:focus-visible,
.global .btn[aria-disabled=true]:focus-visible,
.global .btn-light:disabled:focus-visible,
.global .btn-light[disabled]:focus-visible,
.global .btn-light[aria-disabled=true]:focus-visible {
  outline: none;
  cursor: not-allowed;
  border: 0;
  opacity: 0.4;
}
.global .btn:disabled:active,
.global .btn[disabled]:active,
.global .btn[aria-disabled=true]:active,
.global .btn-light:disabled:active,
.global .btn-light[disabled]:active,
.global .btn-light[aria-disabled=true]:active {
  outline: none;
  cursor: not-allowed;
  border: 0;
  opacity: 0.4;
}
.global .btn:disabled:visited,
.global .btn[disabled]:visited,
.global .btn[aria-disabled=true]:visited,
.global .btn-light:disabled:visited,
.global .btn-light[disabled]:visited,
.global .btn-light[aria-disabled=true]:visited {
  outline: none;
  cursor: not-allowed;
  border: 0;
  opacity: 0.4;
}
.global .dropdown {
  position: relative;
  width: fit-content;
  margin-left: 0;
}
.global .dropdown-menu {
  list-style: none;
  user-select: none;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  transform-origin: top center;
  left: 50%;
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 5.7px 9px);
  visibility: hidden;
  opacity: 0;
  will-change: transition, transform;
  transition: visibility 0s 250ms, opacity 250ms, transform 400ms;
  transform: translate(-50%, -2px);
}
.global .dropdown-menu.is-open {
  user-select: auto;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 250ms, transform 400ms;
  transform: translate(-50%, 20px);
}
.global .dropdown-menu::before {
  content: "";
  position: absolute;
  inline-size: 0px;
  block-size: 0px;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  inset-block-start: -12px;
  border-inline: 12px solid transparent;
  border-block-end: 12px solid rgb(255, 255, 255);
}
.global .dropdown-menu.left {
  transform-origin: top right;
  left: 0%;
  transform: translate(0%, -2px);
}
.global .dropdown-menu.left.is-open {
  user-select: auto;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 250ms, transform 400ms;
  transform: translate(0%, 20px);
}
.global .dropdown-menu.left::before {
  right: 100%;
  left: 6%;
  transform: translate(0, 0);
}
.global .dropdown-menu.right {
  transform-origin: top right;
  left: 100%;
  transform: translate(-100%, -2px);
}
.global .dropdown-menu.right::before {
  right: 100%;
  left: 81%;
  transform: translate(0, 0);
}
.global .dropdown-menu.right.is-open {
  user-select: auto;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 250ms, transform 400ms;
  transform: translate(-100%, 20px);
}
.global .dropdown-menu-container {
  min-width: 200px;
  width: 100%;
  max-width: 26rem;
  max-height: 280px;
  min-height: 0;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow-x: hidden;
  overflow-y: auto;
}
.global .dropdown-menu-icon.is-open {
  transform: rotate(180deg);
  will-change: rotate;
  transition: transform 250ms;
}
.global .dropdown-menu-icon:not(.is-open) {
  transform: rotate(0deg);
  will-change: rotate;
  transition: transform 250ms;
}
.global .dropdown-menu li:is(:not(:last-child)) {
  border-bottom: 1px solid var(--color-gray-100);
}
.global .dropdown-menu li.disabled {
  pointer-events: none;
}
.global .dropdown-menu li.disabled a {
  opacity: 0.4;
}
.global svg.icon {
  --size: 1.2em;
  display: inline-flex;
  height: var(--size);
  width: var(--size);
  flex-shrink: 0;
  max-width: initial;
  vertical-align: text-bottom;
}
.global svg.icon-baseline {
  top: 0.2rem;
  position: relative;
}
.global svg.icon {
  fill: currentColor;
}
.global svg.icon use {
  color: inherit;
  fill: currentColor;
}
.global svg.icon.icon-sm {
  height: calc(var(--size) / 1.8);
  width: calc(var(--size) / 1.8);
}
.global svg.icon.icon-md {
  height: calc(var(--size) * 1.2);
  width: calc(var(--size) * 1.2);
}
.global svg.icon.icon-lg {
  height: calc(var(--size) * 1.8);
  width: calc(var(--size) * 1.8);
}
.global svg.icon.icon-xl {
  height: calc(var(--size) * 3.6);
  width: calc(var(--size) * 3.6);
}
.global svg.icon.icon-xxl {
  height: calc(var(--size) * 7.4);
  width: calc(var(--size) * 7.4);
}
.global svg.icon.icon-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.global .infoboard {
  background-color: var(--color-light-grey);
}
.global .infoboard .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.global .infoboard .header .title {
  padding-left: 0.5rem;
  flex-grow: 10;
  color: var(--color-blue-vois);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flow-root;
  font-size: 1.15rem;
}
.global .infoboard .search {
  margin-left: auto;
  flex-grow: 1;
  align-self: center;
}
.global .infoboard .body {
  padding: 1rem;
  background-color: var(--color-lighter-grey);
  min-height: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.global .infoboard .body .actions {
  position: relative;
  margin-left: auto;
  flex-grow: 1;
  align-self: center;
}
.global .infoboard.enhanced {
  background-color: var(--color-light-grey);
  padding: 1rem;
  display: flex;
}
.global .infoboard.enhanced .image {
  margin-right: 0.5rem;
}
.global .infoboard.enhanced .image img {
  min-height: 4rem;
  max-height: 4rem;
}
.global .infoboard.enhanced .container {
  flex: 1;
  flex-grow: 15;
  color: var(--color-blue-vois);
  margin-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flow-root;
}
.global .infoboard.enhanced .title {
  font-size: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flow-root;
  height: 1.75rem;
}
.global .infoboard.enhanced .row {
  white-space: nowrap;
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  text-overflow: ellipsis;
  display: flow-root;
  font-size: 0.8rem;
  color: var(--color-dark-grey);
  height: 1.25rem;
}
.global .infoboard.enhanced .search {
  margin-left: auto;
  flex-grow: 1;
  align-self: inherit;
  position: relative;
}
.global .infoboard.enhanced .actions {
  display: flex;
}
.global .infoboard + #hux-layout-skeleton {
  height: calc(100% - 4rem - 2rem - 2.5rem);
}
.global .infoboard.enhanced + #hux-layout-skeleton {
  /* 100% - window head - infoboard height - footer height */
  height: calc(100% - 2rem - 6.375rem - 2.5rem);
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.global .loading-circle {
  color: transparent;
  pointer-events: none;
  animation: loading 900ms infinite linear;
  background: transparent;
  border-top: 2px solid;
  border-left: 2px solid;
  border-bottom: 2px solid;
  border-right: 2px solid var(--color-transparent);
  border-radius: 50%;
  content: "";
  display: inline-flex;
  position: relative;
  opacity: 1;
  padding: 0;
  margin: 0;
  height: 8px;
  width: 8px;
}
.global .circle-xs {
  height: 8px;
  width: 8px;
}
.global .circle-sm {
  height: 16px;
  width: 16px;
}
.global .circle-md {
  height: 32px;
  width: 32px;
}
.global .circle-lg {
  height: 64px;
  width: 64px;
}
.global .circle-xl {
  height: 128px;
  width: 128px;
}
.global .circle-border-2 {
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid var(--color-transparent);
}
.global .circle-border-3 {
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-right: 3px solid var(--color-transparent);
}
.global .circle-border-4 {
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-right: 4px solid var(--color-transparent);
}
.global .circle-border-primary,
.global .circle-border-blue {
  border-color: var(--color-blue-500);
  border-right-color: transparent;
}
.global .circle-border-warning,
.global .circle-border-orange {
  border-color: var(--color-orange-500);
  border-right-color: transparent;
}
.global .circle-border-error,
.global .circle-border-red {
  border-color: var(--color-red-500);
  border-right-color: transparent;
}
.global .circle-border-success,
.global .circle-border-green {
  border-color: var(--color-green-500);
  border-right-color: transparent;
}
.global .circle-border-white {
  border-color: var(--color-white);
  border-right-color: transparent;
}
.global .circle-border-gray-100 {
  border-color: var(--color-gray-100);
  border-right-color: transparent;
}
.global .circle-border-gray-200 {
  border-color: var(--color-gray-200);
  border-right-color: transparent;
}
.global .circle-border-gray-300 {
  border-color: var(--color-gray-300);
  border-right-color: transparent;
}
.global .circle-border-gray-400 {
  border-color: var(--color-gray-400);
  border-right-color: transparent;
}
.global .circle-border-gray-500,
.global .circle-border-gray {
  border-color: var(--color-gray-500);
  border-right-color: transparent;
}
.global .circle-border-gray-600 {
  border-color: var(--color-gray-600);
  border-right-color: transparent;
}
.global .circle-border-gray-700 {
  border-color: var(--color-gray-700);
  border-right-color: transparent;
}
.global .circle-border-gray-800 {
  border-color: var(--color-gray-800);
  border-right-color: transparent;
}
.global .circle-border-gray-900 {
  border-color: var(--color-gray-900);
  border-right-color: transparent;
}
.global .circle-border-black {
  border-color: var(--color-black);
  border-right-color: transparent;
}
.global .circle-border-warning,
.global .circle-border-orange {
  border-color: var(--color-orange-500);
  border-right-color: transparent;
}
.global .circle-border-error,
.global .circle-border-red {
  border-color: var(--color-red-500);
  border-right-color: transparent;
}
.global .circle-border-success,
.global .circle-border-green {
  border-color: var(--color-green-500);
  border-right-color: transparent;
}
.global .message {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
}
.global .message.message-small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-md);
}
.global .message.message-default {
  border: 1px solid var(--color-gray-300);
  color: var(--color-gray-900);
  background-color: var(--color-gray-100);
}
.global .message.message-info {
  border: 1px solid var(--color-primary);
  border-left: 5px solid var(--color-primary);
  color: var(--color-primary-darker);
  background-color: var(--color-primary-lighter);
}
.global .message.message-error {
  border: 1px solid var(--color-red-200);
  border-left: 5px solid var(--color-red);
  color: var(--color-red-900);
  background-color: var(--color-red-50);
}
.global .message.message-warning {
  border: 1px solid var(--color-orange-200);
  border-left: 5px solid var(--color-orange);
  color: var(--color-orange-900);
  background-color: var(--color-orange-50);
}
.global .message.message-success {
  border: 1px solid var(--color-green-200);
  border-left: 5px solid var(--color-green);
  color: var(--color-green-900);
  background-color: var(--color-green-50);
}
.global :root {
  --modal-transition-duration: 300ms;
}
.global .modal {
  position: fixed;
  z-index: 15;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  will-change: transition;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.global .modal:not(.modal-is-visible),
.global .modal:not(.modal--is-visible) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--modal-transition-duration) ease-out;
}
.global .modal.modal-is-visible,
.global .modal.modal--is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.15);
  transition: all var(--modal-transition-duration) ease-out;
}
.global .modal-window:not(.sm, .md, .lg, .full) {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 0;
  min-height: 0;
  max-width: 80%;
  max-height: 80%;
}
.global .modal-window.sm {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 30%;
  height: 30%;
}
.global .modal-window.md {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 50%;
  height: 50%;
}
.global .modal-window.lg {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: calc(100% - 20rem);
  height: calc(100% - 20rem);
}
.global .modal-window.full {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0;
  box-shadow: none;
  width: 100vw;
  height: 100vh;
}
.global .modal-window.full:has(.header) {
  background-color: var(--color-white);
}
.global .modal-window.full .modal-content {
  padding: 3rem 2rem;
}
.global .modal-window .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  padding: 1rem 2rem;
  gap: 2rem;
}
.global .modal-window .content {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 2rem;
  flex-grow: 1;
  height: 100%;
}
.global .modal-window__content .flex-grow-0 {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 2rem;
}
.global .modal-window .footer {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  padding: 1.5rem 2rem;
}
.global .modal-close-outside {
  position: fixed;
  z-index: 15;
  top: 0.7rem;
  right: 0.7rem;
  border-radius: 50%;
  cursor: pointer;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  border: none;
  outline: none;
  appearance: none;
  transition: all 200ms ease-out;
}
.global .modal-close-outside:hover,
.global .modal-close-outside:focus,
.global .modal-close-outside:visited {
  outline: 1px solid var(--color-white);
  background-color: rgb(255, 255, 255);
  transition: all 200ms ease-out;
}
.global .modal-close-outside svg.icon {
  width: 1.1rem;
  height: 1.1rem;
}
.global .placeholder-full {
  height: 100%;
  overflow: hidden;
  background-color: #f0f0f0;
  padding: 2rem;
  display: flex;
}
.global .placeholder-image {
  height: 6rem;
  position: relative;
  margin-right: 1.5rem;
  text-align: center;
  border: 1px solid #ccc;
}
.global .placeholder-image i {
  color: #919191;
  margin-top: 1rem;
}
.global .placeholder-title {
  background-color: #cccccc;
  height: 2rem;
  border-radius: 0;
  margin-bottom: 1rem;
  display: flex;
}
.global .placeholder-sub-title {
  background-color: #cccccc;
  height: 1rem;
  border-radius: 0;
  margin-bottom: 0.5rem;
  display: flex;
}
.global .placeholder-paragraph {
  background-color: #cccccc;
  height: 0.6rem;
  border-radius: 0;
  margin-bottom: 0.4rem;
  display: flex;
}
.global .placeholder-list {
  border-radius: 0;
  margin-bottom: 0.25rem;
  margin-left: 1rem;
  list-style: none;
}
.global .placeholder-list li {
  display: list-item;
  height: 0.5rem;
  line-height: 0.5;
  margin-bottom: 0.5rem;
  background-color: #ccc;
}
.global .placeholder-list li::before {
  content: "•";
  color: #ccc;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}
.global .placeholder-spacer {
  height: 1rem;
}
.global .animate-fadein-up-on {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
  transition: visibility 0s, opacity 0.2s, transform 0.2s;
}
.global .animate-fadein-up-off {
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 10px);
  transition: visibility 0s 0.2s, opacity 0.2s, transform 0.2s;
}
.global .animate-transition,
.global .animate-transition-02s {
  transition: all 0.2s;
}
.global .animate-transition-03s {
  transition: all 0.3s;
}
.global .animate-transition-04s {
  transition: all 0.4s;
}
.global .animate-transition-05s {
  transition: all 0.5s;
}
.global .animate-transition-1s {
  transition: all 1s;
}
.global .transition-delay-02s {
  transition-delay: 0.2s;
}
.global .transition-delay-03s {
  transition-delay: 0.3s;
}
.global .transition-delay-04s {
  transition-delay: 0.4s;
}
.global .transition-delay-05s {
  transition-delay: 0.5s;
}
.global .popover {
  position: fixed;
  min-width: 150px;
  max-width: 200px;
  width: 100%;
  z-index: 1;
  margin-top: 4px;
  margin-bottom: 4px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 10px);
  transition: visibility 0s 0.2s, opacity 0.2s, transform 0.2s;
}
.global .popover--is-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
  transition: visibility 0s, opacity 0.2s, transform 0.2s;
}
.global .table,
.global .table .table-striped,
.global .table .table-small {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: auto;
  cursor: default;
}
.global .table-fixed,
.global .table-fixed .table-striped,
.global .table-fixed .table-small {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  cursor: default;
}
.global caption {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  text-align: left;
}
.global .table th,
.global .table-fixed th,
.global .table-small th {
  text-align: left;
  padding: calc(var(--font-size-base) / 2);
  font-weight: 600;
  font-size: var(--text-md);
  color: light-dark(var(--color-gray-900), var(--color-gray-50));
}
.global .table td {
  padding: calc(var(--font-size-base) / 2);
}
.global .table tdsvg {
  vertical-align: middle;
}
.global .table-small:not(.table-no-space) th,
.global .table-small:not(.table-no-space) td {
  font-size: var(--text-md);
  padding: 2.5px 5px;
}
.global .table-small:not(.table-no-space) thsvg,
.global .table-small:not(.table-no-space) tdsvg {
  vertical-align: middle;
}
.global .table-no-space:not(.table-small) th,
.global .table-no-space:not(.table-small) td {
  padding: 0;
}
.global .table-no-space:not(.table-small) thsvg,
.global .table-no-space:not(.table-small) tdsvg {
  vertical-align: middle;
}
.global .table tbody tr:not(.border-blue):first-child {
  border-top: 1px solid light-dark(var(--color-gray-300), var(--color-gray-700));
}
.global .table tbody tr:not(.border-blue) {
  border-bottom: 1px solid light-dark(var(--color-gray-300), var(--color-gray-700));
}
.global .table tbody tr.border-blue {
  box-shadow: inset 0px 1px 0px 1px var(--color-blue-500);
}
.global .table tbody tr.border-blue:first-child {
  box-shadow: inset 0px 1px 0px 1px var(--color-blue-500);
}
.global .table tbody tr:hover {
  background-color: light-dark(var(--color-gray-200), rgba(255, 255, 255, 0.12));
  transition: background-color 300ms ease;
}
.global .table td,
.global .table th {
  color: light-dark(var(--color-gray-900), var(--color-gray-500));
}
.global .table.table-striped tbody tr:nth-child(even) {
  background-color: light-dark(hsl(0, 0%, 97%), hsla(0, 0%, 100%, 0.1));
}
.global .table.table-striped tbody tr:nth-child(odd) {
  background-color: light-dark(var(--color-white), hsla(0, 0%, 100%, 0.03));
}
.global .table.table-striped tbody tr:not(.border-blue):first-child {
  border-top: 1px solid light-dark(var(--color-gray-200), var(--color-gray-700));
}
.global .table.table-striped tbody tr:not(.border-blue) {
  border-bottom: 1px solid light-dark(var(--color-gray-200), var(--color-gray-700));
}
.global .table.table-striped tbody tr.border-blue {
  box-shadow: inset 0px 1px 0px 1px var(--color-blue-500);
}
.global .table.table-striped tbody tr.border-blue:first-child {
  box-shadow: inset 0px 1px 0px 1px var(--color-blue-500);
}
.global .table.table-striped tbody tr:hover {
  background-color: light-dark(var(--color-gray-200), rgba(255, 255, 255, 0.12));
  transition: background-color 300ms ease;
}
.global .table.table-striped td,
.global .table.table-striped th {
  color: light-dark(var(--color-gray-900), var(--color-gray-500));
}
.global .tooltip[data-tooltip] {
  position: relative;
}
.global .tooltip[data-tooltip]::before,
.global .tooltip[data-tooltip]::after {
  text-transform: none;
  font-size: 0.7rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.global .tooltip[data-tooltip]:hover::before,
.global .tooltip[data-tooltip]:hover::after {
  pointer-events: none;
  display: block;
  transition: all 0.2s ease-in-out 0.5s;
  opacity: 0.9;
  animation: fadeInUp forwards 0.4s;
}
.global .tooltip[data-tooltip]::after {
  content: "";
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: var(--color-monochrom-mortar, #595959);
  margin: 0;
  left: 50%;
  top: calc(100% + 5px);
}
.global .tooltip[data-tooltip]::before {
  text-transform: none;
  font-size: 0.7rem;
  line-height: 1;
  content: attr(data-tooltip);
  text-align: center;
  min-width: 3em;
  z-index: 10;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  left: 50%;
  width: fit-content;
  bottom: inherit;
  margin: 10px 0 0 0;
  top: calc(100% + 13px);
  color: var(--color-monochrom-white, #ffffff);
  background-color: var(--color-monochrom-mortar, #595959);
  padding: 0.3rem 0.5rem;
  border-radius: 2px;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate(20%, 150%);
  }
  to {
    opacity: 1;
    transform: translate(0%, 150%);
  }
}
.global .tooltip.left[data-tooltip]:hover::before,
.global .tooltip.left[data-tooltip]:hover::after {
  display: block;
  transition: all 0.2s ease-in-out 0.5s;
  opacity: 0.9;
  animation: fadeInLeft forwards 0.4s;
}
.global .tooltip.left[data-tooltip]::after {
  content: "";
  position: absolute;
  border: 5px solid transparent;
  border-bottom-color: var(--color-monochrom-mortar, #595959);
  margin: 0;
  left: 11px;
  right: auto;
  top: 10px;
}
.global .tooltip.left[data-tooltip]::before {
  text-transform: none;
  font-size: 0.7rem;
  line-height: 1;
  content: attr(data-tooltip);
  text-align: center;
  min-width: 3em;
  z-index: 10;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  top: 3px;
  right: 0;
  margin: 0px 5px 0 0;
  left: -290%;
  color: var(--color-monochrom-white, #ffffff);
  background-color: var(--color-monochrom-mortar, #595959);
  padding: 0.3rem 0.5rem;
  border-radius: 2px;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
}
.global .tool-tip {
  --triangle-size: 10px;
  --alpha: 25%;
  --_bottom-tip: conic-gradient(from -30deg at bottom, rgba(0, 0, 0, 0), #000 1deg 60deg, rgba(0, 0, 0, 0) 61deg) bottom / 100% 50% no-repeat;
  --_top-tip: conic-gradient(from 150deg at top, rgba(0, 0, 0, 0), #000 1deg 60deg, rgba(0, 0, 0, 0) 61deg) top / 100% 50% no-repeat;
  --_right-tip: conic-gradient(from -120deg at right, rgba(0, 0, 0, 0), #000 1deg 60deg, rgba(0, 0, 0, 0) 61deg) right / 50% 100% no-repeat;
  --_left-tip: conic-gradient(from 60deg at left, rgba(0, 0, 0, 0), #000 1deg 60deg, rgba(0, 0, 0, 0) 61deg) left / 50% 100% no-repeat;
  --p-block: .6rem;
  --p-inline: 1rem;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: absolute;
  transform: translateX(var(--_x, 0)) translateY(var(--_y, 0));
  z-index: 1;
  inline-size: -webkit-max-content;
  inline-size: -moz-max-content;
  inline-size: max-content;
  max-inline-size: 25ch;
  white-space: normal;
  text-align: left;
  font-size: var(--font-size-base);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  margin: 0;
  background-color: var(--color-white);
  opacity: 0;
  font-weight: 500;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: var(--p-block) var(--p-inline);
  color: var(--color-gray-900);
}
.global .tool-tip.tool-tip-dark {
  --_bottom-tip: conic-gradient(
      from -30deg at bottom,
      rgba(0, 0, 0, 0),
      #000 1deg 60deg,
      rgba(0, 0, 0, 0) 61deg
    )
    bottom / 100% 50% no-repeat;
  --_top-tip: conic-gradient(
      from 150deg at top,
      rgba(0, 0, 0, 0),
      #000 1deg 60deg,
      rgba(0, 0, 0, 0) 61deg
    )
    top / 100% 50% no-repeat;
  --_right-tip: conic-gradient(
      from -120deg at right,
      rgba(0, 0, 0, 0),
      #000 1deg 60deg,
      rgba(0, 0, 0, 0) 61deg
    )
    right / 50% 100% no-repeat;
  --_left-tip: conic-gradient(
      from 60deg at left,
      rgba(0, 0, 0, 0),
      #000 1deg 60deg,
      rgba(0, 0, 0, 0) 61deg
    )
    left / 50% 100% no-repeat;
  background-color: var(--color-gray-800);
  color: var(--color-gray-100);
}
.global .has-tool-tip {
  position: relative;
}
.global .has-tool-tip:is(:hover, :focus-visible, :active) .tool-tip {
  opacity: 1;
  transition-delay: 0.2s;
}
.global .tool-tip:before {
  content: "; Has tooltip: ";
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
.global .tool-tip:after {
  content: "";
  background-color: var(--color-white);
  position: absolute;
  z-index: -1;
  inset: 0;
  -webkit-mask: var(--_tip);
  mask: var(--_tip);
}
.global .tool-tip.tool-tip-dark:after {
  content: "";
  background-color: var(--color-gray-800);
  position: absolute;
  z-index: -1;
  inset: 0;
  -webkit-mask: var(--_tip);
  mask: var(--_tip);
}
.global .tool-tip:is([tip-position=top], :not([tip-position])) {
  inset-inline-start: 50%;
  inset-block-end: calc(100% + var(--p-block) + var(--triangle-size));
  --_x: calc(50% * -1) ;
}
.global .has-tool-tip > .tool-tip:is([tip-position=top], :not([tip-position])):not(:hover):not(:active) .tool-tip {
  --_y: 5px ;
}
.global .tool-tip:is([tip-position=top], :not([tip-position])):after {
  --_tip: var(--_bottom-tip);
  inset-block-end: calc(var(--triangle-size) * -1);
  -webkit-border-after: var(--triangle-size) solid transparent;
  border-block-end: var(--triangle-size) solid transparent;
}
.global .tool-tip:is([tip-position=right]) {
  inset-inline-start: calc(100% + var(--p-inline) + var(--triangle-size));
  inset-block-end: 50%;
  --_y: 50%;
}
.global .has-tool-tip > .tool-tip:is([tip-position=right]):not(:hover):not(:active) .tool-tip {
  --_x: calc(-1 * -3px * -1) ;
}
.global .tool-tip:is([tip-position=right]):after {
  --_tip: var(--_left-tip);
  inset-inline-start: calc(var(--triangle-size) * -1);
  -webkit-border-start: var(--triangle-size) solid transparent;
  border-inline-start: var(--triangle-size) solid transparent;
}
.global .tool-tip:is([tip-position=bottom]) {
  inset-inline-start: 50%;
  inset-block-start: calc(100% + var(--p-block) + var(--triangle-size));
  --_x: calc(50% * -1) ;
}
.global .has-tool-tip > .tool-tip:is([tip-position=bottom]):not(:hover):not(:active) .tool-tip {
  --_y: -5px ;
}
.global .tool-tip:is([tip-position=bottom]):after {
  --_tip: var(--_top-tip);
  inset-block-start: calc(var(--triangle-size) * -1);
  -webkit-border-before: var(--triangle-size) solid transparent;
  border-block-start: var(--triangle-size) solid transparent;
}
.global .tool-tip:is([tip-position=left]) {
  inset-inline-end: calc(100% + var(--p-inline) + var(--triangle-size));
  inset-block-end: 50%;
  --_y: 50% ;
}
.global .has-tool-tip > .tool-tip:is([tip-position=left]):not(:hover):not(:active) .tool-tip {
  --_x: calc(-1 * 5px * -1) ;
}
.global .tool-tip:is([tip-position=left]):after {
  --_tip: var(--_right-tip);
  inset-inline-end: calc(var(--triangle-size) * -1);
  -webkit-border-end: var(--triangle-size) solid transparent;
  border-inline-end: var(--triangle-size) solid transparent;
}
.global.modal-is-visible {
  overflow: hidden;
}
.global router-outlet {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
}
/*# sourceMappingURL=global.css.map */
