
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;500&display=swap");
@import "flatpickr/dist/flatpickr.css";
html::before {
  display: none;
}

:root {
  --offset: 0px;
  --max_width: 1342px;
  --columns: 18;
  --gutter: 20px;
  --color: hsla(204, 80%, 72%, 0.25);
}

:root {
  --repeating-width: calc(100% / var(--columns));
  --column-width: calc((100% / var(--columns)) - var(--gutter));
  --background-width: calc(100% + var(--gutter));
  --background-columns: repeating-linear-gradient(
    to right,
    var(--color),
    var(--color) var(--column-width),
    transparent var(--column-width),
    transparent var(--repeating-width)
  );
}

html {
  position: relative;
}

html::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  width: calc(100% - 2 * var(--offset));
  max-width: var(--max_width);
  min-height: 100vh;
  content: "";
  background-image: var(--background-columns);
  background-size: var(--background-width) 100%;
  z-index: 1000;
  pointer-events: none;
}

.debug {
  border: 1px solid red;
}

.animated {
  animation-fill-mode: both;
  backface-visibility: visible;
}

.animation--fade-in-down {
  animation-fill-mode: both;
  backface-visibility: visible;
  animation: fade-in-down 0.24s;
}

.animation--fade-in-up, .c-flash__content {
  animation-fill-mode: both;
  backface-visibility: visible;
  animation: fade-in-up 0.24s;
}

.animation--fade-in-up-small {
  animation-fill-mode: both;
  backface-visibility: visible;
  animation: fade-in-up-small 0.24s;
}

.animation--fade {
  animation-fill-mode: both;
  backface-visibility: visible;
  animation: fade 0.24s;
}

@keyframes fade-in-down {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-up-small {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/MaterialIcons-Regular-ffbf7634155ff1a09749c731fd8869aa160e23844ea61ea2377a709063f44198.woff2) format("woff2"), url(/assets/MaterialIcons-Regular-85b431750ef70f23a0ba5c9aeaa557288604f8e8bbc2d315f5406b2df860af6b.woff) format("woff");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

.font-xs {
  font-size: 0.75rem;
}

.font-s {
  font-size: 0.875rem;
}

.font-m {
  font-size: 1rem;
}

.font-l {
  font-size: 1.125rem;
}

.c-form-group {
  display: flex;
  position: relative;
  width: 100%;
}
.c-form-group input[type=text],
.c-form-group input[type=email],
.c-form-group input[type=tel],
.c-form-group input[type=password],
.c-form-group input[type=number],
.c-form-group input[type=date],
.c-form-group input[type=search] {
  display: inline;
  flex-grow: 1;
  padding: 0 0.75rem;
  height: 2.5rem;
  border-color: transparent;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-shadow: none;
  background: #f3f5f5;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.c-form-group input[type=text]:focus,
.c-form-group input[type=email]:focus,
.c-form-group input[type=tel]:focus,
.c-form-group input[type=password]:focus,
.c-form-group input[type=number]:focus,
.c-form-group input[type=date]:focus,
.c-form-group input[type=search]:focus {
  outline: 1px solid #009ce5;
  background: #fff;
}
.c-form-group input[type=text].c-control--filled,
.c-form-group input[type=email].c-control--filled,
.c-form-group input[type=tel].c-control--filled,
.c-form-group input[type=password].c-control--filled,
.c-form-group input[type=number].c-control--filled,
.c-form-group input[type=date].c-control--filled,
.c-form-group input[type=search].c-control--filled {
  outline: solid #009ce5;
  background: #fff;
}
.c-form-group input[type=text]:focus.c-control--filled,
.c-form-group input[type=email]:focus.c-control--filled,
.c-form-group input[type=tel]:focus.c-control--filled,
.c-form-group input[type=password]:focus.c-control--filled,
.c-form-group input[type=number]:focus.c-control--filled,
.c-form-group input[type=date]:focus.c-control--filled,
.c-form-group input[type=search]:focus.c-control--filled {
  outline: 1px solid #009ce5;
  background: #fff;
}
.c-form-group input[type=text].c-control--error, .c-form-group input[type=text]:focus.c-control--error,
.c-form-group input[type=email].c-control--error,
.c-form-group input[type=email]:focus.c-control--error,
.c-form-group input[type=tel].c-control--error,
.c-form-group input[type=tel]:focus.c-control--error,
.c-form-group input[type=password].c-control--error,
.c-form-group input[type=password]:focus.c-control--error,
.c-form-group input[type=number].c-control--error,
.c-form-group input[type=number]:focus.c-control--error,
.c-form-group input[type=date].c-control--error,
.c-form-group input[type=date]:focus.c-control--error,
.c-form-group input[type=search].c-control--error,
.c-form-group input[type=search]:focus.c-control--error {
  outline: solid #fe2713;
  background: #fff;
}
.c-form-group input[type=text].c-control--error ~ .c-control-label, .c-form-group input[type=text]:focus.c-control--error ~ .c-control-label,
.c-form-group input[type=email].c-control--error ~ .c-control-label,
.c-form-group input[type=email]:focus.c-control--error ~ .c-control-label,
.c-form-group input[type=tel].c-control--error ~ .c-control-label,
.c-form-group input[type=tel]:focus.c-control--error ~ .c-control-label,
.c-form-group input[type=password].c-control--error ~ .c-control-label,
.c-form-group input[type=password]:focus.c-control--error ~ .c-control-label,
.c-form-group input[type=number].c-control--error ~ .c-control-label,
.c-form-group input[type=number]:focus.c-control--error ~ .c-control-label,
.c-form-group input[type=date].c-control--error ~ .c-control-label,
.c-form-group input[type=date]:focus.c-control--error ~ .c-control-label,
.c-form-group input[type=search].c-control--error ~ .c-control-label,
.c-form-group input[type=search]:focus.c-control--error ~ .c-control-label {
  color: #fe2713;
  position: absolute;
  top: -0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-size: 0.75rem;
  background: #fff;
  font-weight: normal;
}
.c-form-group input[type=text].c-control--error ~ .c-control-label--gray, .c-form-group input[type=text]:focus.c-control--error ~ .c-control-label--gray,
.c-form-group input[type=email].c-control--error ~ .c-control-label--gray,
.c-form-group input[type=email]:focus.c-control--error ~ .c-control-label--gray,
.c-form-group input[type=tel].c-control--error ~ .c-control-label--gray,
.c-form-group input[type=tel]:focus.c-control--error ~ .c-control-label--gray,
.c-form-group input[type=password].c-control--error ~ .c-control-label--gray,
.c-form-group input[type=password]:focus.c-control--error ~ .c-control-label--gray,
.c-form-group input[type=number].c-control--error ~ .c-control-label--gray,
.c-form-group input[type=number]:focus.c-control--error ~ .c-control-label--gray,
.c-form-group input[type=date].c-control--error ~ .c-control-label--gray,
.c-form-group input[type=date]:focus.c-control--error ~ .c-control-label--gray,
.c-form-group input[type=search].c-control--error ~ .c-control-label--gray,
.c-form-group input[type=search]:focus.c-control--error ~ .c-control-label--gray {
  opacity: 1;
}
.c-form-group input[type=text] ~ .c-control-label,
.c-form-group input[type=email] ~ .c-control-label,
.c-form-group input[type=tel] ~ .c-control-label,
.c-form-group input[type=password] ~ .c-control-label,
.c-form-group input[type=number] ~ .c-control-label,
.c-form-group input[type=date] ~ .c-control-label,
.c-form-group input[type=search] ~ .c-control-label {
  padding: 3px;
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  z-index: 1;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.c-form-group input[type=text] ~ .c-control-label--gray,
.c-form-group input[type=email] ~ .c-control-label--gray,
.c-form-group input[type=tel] ~ .c-control-label--gray,
.c-form-group input[type=password] ~ .c-control-label--gray,
.c-form-group input[type=number] ~ .c-control-label--gray,
.c-form-group input[type=date] ~ .c-control-label--gray,
.c-form-group input[type=search] ~ .c-control-label--gray {
  opacity: 0.5;
}
.c-form-group .field_with_errors {
  display: flex;
  width: 100%;
  flex: 1 0 auto;
}
.c-form-group .field_with_errors input {
  display: inline;
  flex-grow: 1;
  padding: 0 0.75rem;
  height: 2.5rem;
  border-color: transparent;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-shadow: none;
  background: #f3f5f5;
  margin-bottom: 20px;
  font-size: 0.875rem;
  outline: solid #fe2713 !important;
}
.c-form-group .field_with_errors input:focus {
  background: #fff;
}
.c-form-group .field_with_errors input.c-control--filled {
  background: #fff;
}
.c-form-group .field_with_errors input:focus.c-control--filled {
  background: #fff;
}
.c-form-group .field_with_errors + .field_with_errors .c-control-label {
  color: #fe2713;
  position: absolute;
  top: -0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-size: 0.75rem;
  background: #fff;
  font-weight: normal;
}

.c-form-group--simple {
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-form-group--simple .c-select {
  position: relative;
  min-width: 280px;
}
.c-form-group--simple .c-select select {
  width: 100%;
  margin: 0;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-form-group--simple .c-select:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 10px;
  height: 6px;
  top: 1rem;
  right: 1rem;
  background: url(/assets/arrow-expand-9f856520bd513756f33bc8988b9bf94a24d869de6750d1dd875bcb8128a67ec2.svg) 0 0 no-repeat;
}
.c-form-group--simple .c-control {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-form-group--simple .field_with_errors {
  width: 100%;
}
.c-form-group--simple .field_with_errors input {
  outline: solid #fe2713 1px !important;
}

.c-control--radio {
  padding-top: 0.7rem;
  display: flex;
}
.c-control--radio label {
  line-height: 1rem;
  padding-left: 0.3rem;
  margin-right: 3.9375rem;
}

.c-form-group input[type=text].c-control--filled ~ .c-control-label,
.c-form-group input[type=email].c-control--filled ~ .c-control-label,
.c-form-group input[type=tel].c-control--filled ~ .c-control-label,
.c-form-group input[type=password].c-control--filled ~ .c-control-label,
.c-form-group input[type=number].c-control--filled ~ .c-control-label,
.c-form-group input[type=date].c-control--filled ~ .c-control-label,
.c-form-group input[type=search].c-control--filled ~ .c-control-label,
.c-form-group input[type=text]:focus ~ .c-control-label,
.c-form-group input[type=email]:focus ~ .c-control-label,
.c-form-group input[type=tel]:focus ~ .c-control-label,
.c-form-group input[type=password]:focus ~ .c-control-label,
.c-form-group input[type=number]:focus ~ .c-control-label,
.c-form-group input[type=date]:focus ~ .c-control-label,
.c-form-group input[type=search]:focus ~ .c-control-label {
  position: absolute;
  top: -0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-size: 0.75rem;
  background: #fff;
  font-weight: normal;
  color: #009ce5;
}
.c-form-group input[type=text].c-control--filled ~ .c-control-label--gray,
.c-form-group input[type=email].c-control--filled ~ .c-control-label--gray,
.c-form-group input[type=tel].c-control--filled ~ .c-control-label--gray,
.c-form-group input[type=password].c-control--filled ~ .c-control-label--gray,
.c-form-group input[type=number].c-control--filled ~ .c-control-label--gray,
.c-form-group input[type=date].c-control--filled ~ .c-control-label--gray,
.c-form-group input[type=search].c-control--filled ~ .c-control-label--gray,
.c-form-group input[type=text]:focus ~ .c-control-label--gray,
.c-form-group input[type=email]:focus ~ .c-control-label--gray,
.c-form-group input[type=tel]:focus ~ .c-control-label--gray,
.c-form-group input[type=password]:focus ~ .c-control-label--gray,
.c-form-group input[type=number]:focus ~ .c-control-label--gray,
.c-form-group input[type=date]:focus ~ .c-control-label--gray,
.c-form-group input[type=search]:focus ~ .c-control-label--gray {
  opacity: 1;
}

.c-form-group--inline {
  display: flex;
  align-items: center;
  margin-bottom: 1.3125rem;
  min-width: 25rem;
  justify-content: space-between;
  position: relative;
}
.c-form-group--inline .c-select {
  position: relative;
  min-width: 18rem;
}
.c-form-group--inline .c-select select {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0.5rem 0.2rem 0.5rem 0.75rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url(/assets/arrow-expand-9f856520bd513756f33bc8988b9bf94a24d869de6750d1dd875bcb8128a67ec2.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 1rem);
  background-position-y: 1rem;
}
.c-form-group--inline .c-select--number {
  display: inline-block;
  min-width: 4rem;
  min-height: 2rem;
}
.c-form-group--inline .c-control {
  min-width: 18rem;
  display: block;
  padding: 0 0.75rem;
  height: 2.5rem;
  border-color: transparent;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-shadow: none;
  background: #f3f5f5;
  font-size: 0.875rem;
}
.c-form-group--inline .c-control:focus {
  outline: 1px solid #009ce5;
  background: #fff;
}
.c-form-group--inline .c-control.c-control--filled {
  outline: 1px solid #d3d3d3;
  background: #fff;
}
.c-form-group--inline .c-control:focus.c-control--filled {
  outline: 1px solid #a1a1a1;
  background: #fff;
}
.c-form-group--inline .has-error input.c-control--filled {
  outline: 1px solid #fe2713;
}
.c-form-group--inline .has-error .c-help-block {
  position: absolute;
  display: block;
  bottom: -1.3125rem;
  right: 0;
  font-size: 0.875rem;
  color: #fe2713;
}
.c-form-group--inline .field_with_errors input.c-control--filled {
  outline: 1px solid #fe2713;
}
.c-form-group--inline .field_with_errors + .c-help-block {
  display: block;
  font-size: 0.875rem;
  color: #fe2713;
  margin-top: 5px;
}
.c-form-group--inline .c-suffix {
  position: absolute;
  right: 0.75rem;
  color: #353331;
  font-weight: 200;
  font-size: 0.875rem;
}
.c-form-group--inline .c-control-label {
  padding-right: 1rem;
}
.c-form-group--inline .c-control-label--port {
  min-width: 200px;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-center {
  text-align: center;
  margin-inline: auto;
}
.input-center:not(focus) {
  border: none;
}
.input-center:focus {
  outline: 1px solid #009ce5;
  border-radius: 3px;
}
.input-center:focus::placeholder {
  opacity: 0;
}

.bordered-input {
  outline: 1px solid #9A9998;
  border-radius: 3px;
  padding: 6px 8px !important;
}

.checkboxes {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.checkboxes input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin-inline: 10px;
}

input[disabled=disabled] {
  pointer-events: all;
  cursor: not-allowed !important;
  opacity: 0.5;
}

input.c-control-no-border {
  outline: unset !important;
  border: unset !important;
  background-color: unset !important;
  padding: unset !important;
  margin: unset !important;
  height: unset !important;
}

.config-select-container {
  position: relative;
  min-width: 18rem;
}
.config-select-container select {
  padding-right: 24px;
  width: 100%;
  max-width: 162px;
  display: inline-block;
  margin: 0;
  padding: 0.5rem 1.4rem 0.5rem 0.75rem;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url(/assets/arrow-expand-9f856520bd513756f33bc8988b9bf94a24d869de6750d1dd875bcb8128a67ec2.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 0.5rem);
  background-position-y: 0.9rem;
}
.config-select-container--number {
  display: inline-block;
  min-width: 4rem;
  min-height: 2rem;
}

.config-select-container-width {
  width: 162px !important;
  min-width: unset !important;
}

.current-value-container {
  overflow-wrap: break-word;
}

.current-value-container-preset {
  width: 200px;
}

* {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f3f5f5;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", sans-serif;
  min-height: 100vh;
}

img {
  max-width: 100%;
  vertical-align: middle;
}
img[width], img[height] {
  max-width: none;
}

ul,
ol {
  list-style: none;
}

body {
  font-size: 1rem;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 400;
  line-height: 1.3125;
  color: #353331;
}

strong {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin-bottom: 1.3125rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.125rem;
}

h3 {
  font-size: 1rem;
}

* + p {
  margin-top: 0.984375rem;
}

blockquote {
  font-style: italic;
  font-weight: 600;
}
blockquote p:before {
  content: open-quote;
}
blockquote p:after {
  content: close-quote;
}
* + blockquote {
  margin-top: 0.984375rem;
}

a {
  text-decoration: none;
  color: #353331;
  font-weight: 400;
}
a:hover, a:focus {
  text-decoration: none;
  color: #b6b3b0;
}

.u-text-blue a:hover,
a.u-text-blue:hover {
  color: #4cc6ff !important;
}

.u-text-muted a:hover,
a.u-text-muted:hover {
  color: #b6b3b0;
}

.l-main {
  flex: 1;
  padding: 1.96875rem 0;
}

.l-container {
  max-width: 1382px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.l-row {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.l-col-xs, .l-col-xs-offset-18, .l-col-xs-offset-17, .l-col-xs-offset-16, .l-col-xs-offset-15, .l-col-xs-offset-14, .l-col-xs-offset-13, .l-col-xs-offset-12, .l-col-xs-offset-11, .l-col-xs-offset-10, .l-col-xs-offset-9, .l-col-xs-offset-8, .l-col-xs-offset-7, .l-col-xs-offset-6, .l-col-xs-offset-5, .l-col-xs-offset-4, .l-col-xs-offset-3, .l-col-xs-offset-2, .l-col-xs-offset-1, .l-col-xs-offset-0, .l-col-xs-18, .l-col-xs-17, .l-col-xs-16, .l-col-xs-15, .l-col-xs-14, .l-col-xs-13, .l-col-xs-12, .l-col-xs-11, .l-col-xs-10, .l-col-xs-9, .l-col-xs-8, .l-col-xs-7, .l-col-xs-6, .l-col-xs-5, .l-col-xs-4, .l-col-xs-3, .l-col-xs-2, .l-col-xs-1 {
  flex: 0 0 auto;
  padding-right: 5px;
  padding-left: 5px;
}

.l-col-grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.l-col-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.l-col-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.l-col-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.l-col-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.l-col-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.l-col-grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.l-col-grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.l-col-grid-9 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}

.l-col-grid-10 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.l-col-grid-11 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
}

.l-col-grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.l-col-grid-13 {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
}

.l-col-grid-14 {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
}

.l-col-grid-15 {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
}

.l-col-grid-16 {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
}

.l-col-grid-17 {
  display: grid;
  grid-template-columns: repeat(17, 1fr);
}

.l-col-grid-18 {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
}

.l-col-xs-1 {
  flex-basis: 5.5555555556%;
  max-width: 5.5555555556%;
}

.l-col-xs-2 {
  flex-basis: 11.1111111111%;
  max-width: 11.1111111111%;
}

.l-col-xs-3 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.l-col-xs-4 {
  flex-basis: 22.2222222222%;
  max-width: 22.2222222222%;
}

.l-col-xs-5 {
  flex-basis: 27.7777777778%;
  max-width: 27.7777777778%;
}

.l-col-xs-6 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.l-col-xs-7 {
  flex-basis: 38.8888888889%;
  max-width: 38.8888888889%;
}

.l-col-xs-8 {
  flex-basis: 44.4444444444%;
  max-width: 44.4444444444%;
}

.l-col-xs-9 {
  flex-basis: 50%;
  max-width: 50%;
}

.l-col-xs-10 {
  flex-basis: 55.5555555556%;
  max-width: 55.5555555556%;
}

.l-col-xs-11 {
  flex-basis: 61.1111111111%;
  max-width: 61.1111111111%;
}

.l-col-xs-12 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.l-col-xs-13 {
  flex-basis: 72.2222222222%;
  max-width: 72.2222222222%;
}

.l-col-xs-14 {
  flex-basis: 77.7777777778%;
  max-width: 77.7777777778%;
}

.l-col-xs-15 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.l-col-xs-16 {
  flex-basis: 88.8888888889%;
  max-width: 88.8888888889%;
}

.l-col-xs-17 {
  flex-basis: 94.4444444444%;
  max-width: 94.4444444444%;
}

.l-col-xs-18 {
  flex-basis: 100%;
  max-width: 100%;
}

.l-col-xs-offset-0 {
  margin-left: 0%;
}

.l-col-xs-offset-1 {
  margin-left: 5.5555555556%;
}

.l-col-xs-offset-2 {
  margin-left: 11.1111111111%;
}

.l-col-xs-offset-3 {
  margin-left: 16.6666666667%;
}

.l-col-xs-offset-4 {
  margin-left: 22.2222222222%;
}

.l-col-xs-offset-5 {
  margin-left: 27.7777777778%;
}

.l-col-xs-offset-6 {
  margin-left: 33.3333333333%;
}

.l-col-xs-offset-7 {
  margin-left: 38.8888888889%;
}

.l-col-xs-offset-8 {
  margin-left: 44.4444444444%;
}

.l-col-xs-offset-9 {
  margin-left: 50%;
}

.l-col-xs-offset-10 {
  margin-left: 55.5555555556%;
}

.l-col-xs-offset-11 {
  margin-left: 61.1111111111%;
}

.l-col-xs-offset-12 {
  margin-left: 66.6666666667%;
}

.l-col-xs-offset-13 {
  margin-left: 72.2222222222%;
}

.l-col-xs-offset-14 {
  margin-left: 77.7777777778%;
}

.l-col-xs-offset-15 {
  margin-left: 83.3333333333%;
}

.l-col-xs-offset-16 {
  margin-left: 88.8888888889%;
}

.l-col-xs-offset-17 {
  margin-left: 94.4444444444%;
}

.l-col-xs-offset-18 {
  margin-left: 100%;
}

.l-row--start-xs {
  justify-content: flex-start;
}

.l-row--center-xs {
  justify-content: center;
}

.l-row--end-xs {
  justify-content: flex-end;
}

.l-row--top-xs {
  align-items: flex-start;
}

.l-row--middle-xs {
  align-items: center;
}

.l-row--bottom-xs {
  align-items: flex-end;
}

.l-row--around-xs {
  justify-content: space-around;
}

.l-row--between-xs {
  justify-content: space-between;
}

@media only screen and (max-width: 48em) {
  .u-hidden-xs {
    display: none !important;
  }
}
@media only screen and (min-width: 48em) {
  .l-col-sm, .l-col-sm-offset-18, .l-col-sm-offset-17, .l-col-sm-offset-16, .l-col-sm-offset-15, .l-col-sm-offset-14, .l-col-sm-offset-13, .l-col-sm-offset-12, .l-col-sm-offset-11, .l-col-sm-offset-10, .l-col-sm-offset-9, .l-col-sm-offset-8, .l-col-sm-offset-7, .l-col-sm-offset-6, .l-col-sm-offset-5, .l-col-sm-offset-4, .l-col-sm-offset-3, .l-col-sm-offset-2, .l-col-sm-offset-1, .l-col-sm-offset-0, .l-col-sm-18, .l-col-sm-17, .l-col-sm-16, .l-col-sm-15, .l-col-sm-14, .l-col-sm-13, .l-col-sm-12, .l-col-sm-11, .l-col-sm-10, .l-col-sm-9, .l-col-sm-8, .l-col-sm-7, .l-col-sm-6, .l-col-sm-5, .l-col-sm-4, .l-col-sm-3, .l-col-sm-2, .l-col-sm-1 {
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .l-col-sm-1 {
    flex-basis: 5.5555555556%;
    max-width: 5.5555555556%;
  }

  .l-col-sm-2 {
    flex-basis: 11.1111111111%;
    max-width: 11.1111111111%;
  }

  .l-col-sm-3 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .l-col-sm-4 {
    flex-basis: 22.2222222222%;
    max-width: 22.2222222222%;
  }

  .l-col-sm-5 {
    flex-basis: 27.7777777778%;
    max-width: 27.7777777778%;
  }

  .l-col-sm-6 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .l-col-sm-7 {
    flex-basis: 38.8888888889%;
    max-width: 38.8888888889%;
  }

  .l-col-sm-8 {
    flex-basis: 44.4444444444%;
    max-width: 44.4444444444%;
  }

  .l-col-sm-9 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .l-col-sm-10 {
    flex-basis: 55.5555555556%;
    max-width: 55.5555555556%;
  }

  .l-col-sm-11 {
    flex-basis: 61.1111111111%;
    max-width: 61.1111111111%;
  }

  .l-col-sm-12 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .l-col-sm-13 {
    flex-basis: 72.2222222222%;
    max-width: 72.2222222222%;
  }

  .l-col-sm-14 {
    flex-basis: 77.7777777778%;
    max-width: 77.7777777778%;
  }

  .l-col-sm-15 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .l-col-sm-16 {
    flex-basis: 88.8888888889%;
    max-width: 88.8888888889%;
  }

  .l-col-sm-17 {
    flex-basis: 94.4444444444%;
    max-width: 94.4444444444%;
  }

  .l-col-sm-18 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .l-col-sm-offset-0 {
    margin-left: 0%;
  }

  .l-col-sm-offset-1 {
    margin-left: 5.5555555556%;
  }

  .l-col-sm-offset-2 {
    margin-left: 11.1111111111%;
  }

  .l-col-sm-offset-3 {
    margin-left: 16.6666666667%;
  }

  .l-col-sm-offset-4 {
    margin-left: 22.2222222222%;
  }

  .l-col-sm-offset-5 {
    margin-left: 27.7777777778%;
  }

  .l-col-sm-offset-6 {
    margin-left: 33.3333333333%;
  }

  .l-col-sm-offset-7 {
    margin-left: 38.8888888889%;
  }

  .l-col-sm-offset-8 {
    margin-left: 44.4444444444%;
  }

  .l-col-sm-offset-9 {
    margin-left: 50%;
  }

  .l-col-sm-offset-10 {
    margin-left: 55.5555555556%;
  }

  .l-col-sm-offset-11 {
    margin-left: 61.1111111111%;
  }

  .l-col-sm-offset-12 {
    margin-left: 66.6666666667%;
  }

  .l-col-sm-offset-13 {
    margin-left: 72.2222222222%;
  }

  .l-col-sm-offset-14 {
    margin-left: 77.7777777778%;
  }

  .l-col-sm-offset-15 {
    margin-left: 83.3333333333%;
  }

  .l-col-sm-offset-16 {
    margin-left: 88.8888888889%;
  }

  .l-col-sm-offset-17 {
    margin-left: 94.4444444444%;
  }

  .l-col-sm-offset-18 {
    margin-left: 100%;
  }

  .l-row--start-sm {
    justify-content: flex-start;
  }

  .l-row--center-sm {
    justify-content: center;
  }

  .l-row--end-sm {
    justify-content: flex-end;
  }

  .l-row--top-sm {
    align-items: flex-start;
  }

  .l-row--middle-sm {
    align-items: center;
  }

  .l-row--bottom-sm {
    align-items: flex-end;
  }

  .l-row--around-sm {
    justify-content: space-around;
  }

  .l-row--between-sm {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 48em) and (max-width: 64em) {
  .u-hidden-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 64em) {
  .l-col-md, .l-col-md-offset-18, .l-col-md-offset-17, .l-col-md-offset-16, .l-col-md-offset-15, .l-col-md-offset-14, .l-col-md-offset-13, .l-col-md-offset-12, .l-col-md-offset-11, .l-col-md-offset-10, .l-col-md-offset-9, .l-col-md-offset-8, .l-col-md-offset-7, .l-col-md-offset-6, .l-col-md-offset-5, .l-col-md-offset-4, .l-col-md-offset-3, .l-col-md-offset-2, .l-col-md-offset-1, .l-col-md-offset-0, .l-col-md-18, .l-col-md-17, .l-col-md-16, .l-col-md-15, .l-col-md-14, .l-col-md-13, .l-col-md-12, .l-col-md-11, .l-col-md-10, .l-col-md-9, .l-col-md-8, .l-col-md-7, .l-col-md-6, .l-col-md-5, .l-col-md-4, .l-col-md-3, .l-col-md-2, .l-col-md-1 {
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .l-col-md-1 {
    flex-basis: 5.5555555556%;
    max-width: 5.5555555556%;
  }

  .l-col-md-2 {
    flex-basis: 11.1111111111%;
    max-width: 11.1111111111%;
  }

  .l-col-md-3 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .l-col-md-4 {
    flex-basis: 22.2222222222%;
    max-width: 22.2222222222%;
  }

  .l-col-md-5 {
    flex-basis: 27.7777777778%;
    max-width: 27.7777777778%;
  }

  .l-col-md-6 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .l-col-md-7 {
    flex-basis: 38.8888888889%;
    max-width: 38.8888888889%;
  }

  .l-col-md-8 {
    flex-basis: 44.4444444444%;
    max-width: 44.4444444444%;
  }

  .l-col-md-9 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .l-col-md-10 {
    flex-basis: 55.5555555556%;
    max-width: 55.5555555556%;
  }

  .l-col-md-11 {
    flex-basis: 61.1111111111%;
    max-width: 61.1111111111%;
  }

  .l-col-md-12 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .l-col-md-13 {
    flex-basis: 72.2222222222%;
    max-width: 72.2222222222%;
  }

  .l-col-md-14 {
    flex-basis: 77.7777777778%;
    max-width: 77.7777777778%;
  }

  .l-col-md-15 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .l-col-md-16 {
    flex-basis: 88.8888888889%;
    max-width: 88.8888888889%;
  }

  .l-col-md-17 {
    flex-basis: 94.4444444444%;
    max-width: 94.4444444444%;
  }

  .l-col-md-18 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .l-col-md-offset-0 {
    margin-left: 0%;
  }

  .l-col-md-offset-1 {
    margin-left: 5.5555555556%;
  }

  .l-col-md-offset-2 {
    margin-left: 11.1111111111%;
  }

  .l-col-md-offset-3 {
    margin-left: 16.6666666667%;
  }

  .l-col-md-offset-4 {
    margin-left: 22.2222222222%;
  }

  .l-col-md-offset-5 {
    margin-left: 27.7777777778%;
  }

  .l-col-md-offset-6 {
    margin-left: 33.3333333333%;
  }

  .l-col-md-offset-7 {
    margin-left: 38.8888888889%;
  }

  .l-col-md-offset-8 {
    margin-left: 44.4444444444%;
  }

  .l-col-md-offset-9 {
    margin-left: 50%;
  }

  .l-col-md-offset-10 {
    margin-left: 55.5555555556%;
  }

  .l-col-md-offset-11 {
    margin-left: 61.1111111111%;
  }

  .l-col-md-offset-12 {
    margin-left: 66.6666666667%;
  }

  .l-col-md-offset-13 {
    margin-left: 72.2222222222%;
  }

  .l-col-md-offset-14 {
    margin-left: 77.7777777778%;
  }

  .l-col-md-offset-15 {
    margin-left: 83.3333333333%;
  }

  .l-col-md-offset-16 {
    margin-left: 88.8888888889%;
  }

  .l-col-md-offset-17 {
    margin-left: 94.4444444444%;
  }

  .l-col-md-offset-18 {
    margin-left: 100%;
  }

  .l-row--start-md {
    justify-content: flex-start;
  }

  .l-row--center-md {
    justify-content: center;
  }

  .l-row--end-md {
    justify-content: flex-end;
  }

  .l-row--top-md {
    align-items: flex-start;
  }

  .l-row--middle-md {
    align-items: center;
  }

  .l-row--bottom-md {
    align-items: flex-end;
  }

  .l-row--around-md {
    justify-content: space-around;
  }

  .l-row--between-md {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 64em) and (max-width: 75em) {
  .u-hidden-md {
    display: none !important;
  }
}
@media only screen and (min-width: 75em) {
  .l-col-lg, .l-col-lg-offset-18, .l-col-lg-offset-17, .l-col-lg-offset-16, .l-col-lg-offset-15, .l-col-lg-offset-14, .l-col-lg-offset-13, .l-col-lg-offset-12, .l-col-lg-offset-11, .l-col-lg-offset-10, .l-col-lg-offset-9, .l-col-lg-offset-8, .l-col-lg-offset-7, .l-col-lg-offset-6, .l-col-lg-offset-5, .l-col-lg-offset-4, .l-col-lg-offset-3, .l-col-lg-offset-2, .l-col-lg-offset-1, .l-col-lg-offset-0, .l-col-lg-18, .l-col-lg-17, .l-col-lg-16, .l-col-lg-15, .l-col-lg-14, .l-col-lg-13, .l-col-lg-12, .l-col-lg-11, .l-col-lg-10, .l-col-lg-9, .l-col-lg-8, .l-col-lg-7, .l-col-lg-6, .l-col-lg-5, .l-col-lg-4, .l-col-lg-3, .l-col-lg-2, .l-col-lg-1 {
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .l-col-lg-1 {
    flex-basis: 5.5555555556%;
    max-width: 5.5555555556%;
  }

  .l-col-lg-2 {
    flex-basis: 11.1111111111%;
    max-width: 11.1111111111%;
  }

  .l-col-lg-3 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .l-col-lg-4 {
    flex-basis: 22.2222222222%;
    max-width: 22.2222222222%;
  }

  .l-col-lg-5 {
    flex-basis: 27.7777777778%;
    max-width: 27.7777777778%;
  }

  .l-col-lg-6 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .l-col-lg-7 {
    flex-basis: 38.8888888889%;
    max-width: 38.8888888889%;
  }

  .l-col-lg-8 {
    flex-basis: 44.4444444444%;
    max-width: 44.4444444444%;
  }

  .l-col-lg-9 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .l-col-lg-10 {
    flex-basis: 55.5555555556%;
    max-width: 55.5555555556%;
  }

  .l-col-lg-11 {
    flex-basis: 61.1111111111%;
    max-width: 61.1111111111%;
  }

  .l-col-lg-12 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .l-col-lg-13 {
    flex-basis: 72.2222222222%;
    max-width: 72.2222222222%;
  }

  .l-col-lg-14 {
    flex-basis: 77.7777777778%;
    max-width: 77.7777777778%;
  }

  .l-col-lg-15 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .l-col-lg-16 {
    flex-basis: 88.8888888889%;
    max-width: 88.8888888889%;
  }

  .l-col-lg-17 {
    flex-basis: 94.4444444444%;
    max-width: 94.4444444444%;
  }

  .l-col-lg-18 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .l-col-lg-offset-0 {
    margin-left: 0%;
  }

  .l-col-lg-offset-1 {
    margin-left: 5.5555555556%;
  }

  .l-col-lg-offset-2 {
    margin-left: 11.1111111111%;
  }

  .l-col-lg-offset-3 {
    margin-left: 16.6666666667%;
  }

  .l-col-lg-offset-4 {
    margin-left: 22.2222222222%;
  }

  .l-col-lg-offset-5 {
    margin-left: 27.7777777778%;
  }

  .l-col-lg-offset-6 {
    margin-left: 33.3333333333%;
  }

  .l-col-lg-offset-7 {
    margin-left: 38.8888888889%;
  }

  .l-col-lg-offset-8 {
    margin-left: 44.4444444444%;
  }

  .l-col-lg-offset-9 {
    margin-left: 50%;
  }

  .l-col-lg-offset-10 {
    margin-left: 55.5555555556%;
  }

  .l-col-lg-offset-11 {
    margin-left: 61.1111111111%;
  }

  .l-col-lg-offset-12 {
    margin-left: 66.6666666667%;
  }

  .l-col-lg-offset-13 {
    margin-left: 72.2222222222%;
  }

  .l-col-lg-offset-14 {
    margin-left: 77.7777777778%;
  }

  .l-col-lg-offset-15 {
    margin-left: 83.3333333333%;
  }

  .l-col-lg-offset-16 {
    margin-left: 88.8888888889%;
  }

  .l-col-lg-offset-17 {
    margin-left: 94.4444444444%;
  }

  .l-col-lg-offset-18 {
    margin-left: 100%;
  }

  .l-row--start-lg {
    justify-content: flex-start;
  }

  .l-row--center-lg {
    justify-content: center;
  }

  .l-row--end-lg {
    justify-content: flex-end;
  }

  .l-row--top-lg {
    align-items: flex-start;
  }

  .l-row--middle-lg {
    align-items: center;
  }

  .l-row--bottom-lg {
    align-items: flex-end;
  }

  .l-row--around-lg {
    justify-content: space-around;
  }

  .l-row--between-lg {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 75em) {
  .u-hidden-lg {
    display: none !important;
  }
}
.l-elevator-actions {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  min-height: 40px;
}

.l-elevator-card {
  margin: -10px;
}

.card {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  background-color: #fff;
}

.card-header {
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.card-body {
  padding: 10px;
}

.card-footer {
  font-size: 14px;
  padding: 5px 10px;
  border-top: 1px solid #ddd;
}

.card-footer.text-muted {
  background-color: #f8f9fa;
}

.card-footer.text-end {
  text-align: right;
}

.l-login {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-login__form {
  width: 280px;
  height: 235px;
}

.u-display-flex {
  display: flex;
}

.u-display-inline-block {
  display: inline-block !important;
}

.u-display-block {
  display: block;
}

.u-grid-2-3-2-1 {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr 0.5fr;
}

.u-grid-2-2-2-1 {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr;
}

.u-grid-2-2-2-1-1 {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr 1fr;
}

.u-h-full {
  height: 100%;
}

.u-min-h-100 {
  min-height: 100px !important;
}

.u-min-h-unset {
  min-height: unset !important;
}

.u-max-h-70vh {
  max-height: 70vh;
}

.u-max-h-200 {
  max-height: 200px;
}

.u-h-unset {
  height: unset !important;
}

.u-h-fit-content {
  height: fit-content;
}

.u-h-0 {
  height: 0px !important;
}

.u-w-full {
  width: 100%;
}

.u-w-half {
  min-width: 50% !important;
}

.u-w-unset {
  min-width: unset !important;
}

.u-offset-navbar {
  padding-top: 6rem;
}

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

.u-justify-space-evenly {
  justify-content: space-evenly;
}

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

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

.u-justify-items-start {
  justify-items: start;
}

.u-justify-self-start {
  justify-self: flex-start;
  text-align: left;
}

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

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

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

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

.u-contents {
  display: contents !important;
}

.u-whitespace-nowrap {
  white-space: nowrap;
}

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

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

.u-align-start {
  align-items: flex-start !important;
}

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

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

.u-margin-between-l + .u-margin-between-l {
  margin-left: 2.625rem;
}

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

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-left {
  text-align: left !important;
}

.u-overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis ellipsis;
}

.u-overflow-wrap {
  word-break: break-all;
}

.u-padding {
  padding: 0.984375rem;
}

.u-padding-x {
  padding: 0px 0.984375rem;
}

.u-padding-y-l {
  padding-block: 1.96875rem;
}

.u-padding-bottom-sm {
  padding-bottom: 0.984375rem;
}

.u-padding-bottom-lg {
  padding-bottom: 1.96875rem;
}

.u-padding-l {
  padding: 1.96875rem;
}

.u-padding-lg {
  padding: 2.296875rem !important;
}

.u-horizontal-padding-s {
  padding: 0 0.984375rem;
}

.u-horizontal-padding-l {
  padding: 0 1.96875rem;
}

.u-padding-l-s {
  padding: 1.96875rem 0.984375rem !important;
}

.u-padding-s-l {
  padding: 0.984375rem 1.96875rem !important;
}

.u-padding-unset {
  padding: unset !important;
}

.u-margin-unset {
  margin: unset !important;
}

.u-vertical-margin-l {
  margin: 1.96875rem 0;
}

.u-margin-top-xxs {
  margin-top: 0.328125rem;
}

.u-margin-top-s {
  margin-top: 0.984375rem;
}

.u-margin-top-xs {
  margin-top: 0.65625rem;
}

.u-margin-top-l {
  margin-top: 1.96875rem;
}

.u-margin-bottom-s {
  margin-bottom: 0.984375rem;
}

.u-margin-bottom-xs {
  margin-bottom: 0.65625rem;
}

.u-margin-bottom-l {
  margin-bottom: 1.96875rem;
}

.u-margin-bottom-xl {
  margin-bottom: 2.625rem;
}

.u-margin-bottom-unset {
  margin-bottom: unset !important;
}

.u-margin-right-s {
  margin-right: 0.984375rem;
}

.u-margin-left-s {
  margin-left: 0.984375rem;
}

.u-margin-none {
  margin: 0;
}

.u-gap-s {
  gap: 0.65625rem;
}

.hidden {
  display: none !important;
}

.u-relative {
  position: relative;
}

.u-absolute {
  position: absolute;
}

.u-spacer {
  content: "";
}

.u-pointer {
  cursor: pointer;
}

.u-cursor-default {
  cursor: default !important;
}

.u-fixed {
  position: fixed;
}

.u-inset-x {
  left: 0px;
  right: 0px;
}

.u-half-left-bottom {
  right: 50%;
  top: 50%;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-overflow-y-scroll {
  overflow-y: scroll;
}

.u-top {
  top: 0;
  left: 0;
}

.u-modal-max-width {
  max-width: 80%;
  width: auto;
}

.u-max-h-screen {
  max-height: 100vh;
}

.min-w-150 {
  min-width: 150px;
}

.w-162 {
  width: 162px;
}

.w-300 {
  width: 300px;
}

.w-20 {
  width: 20px;
}

.w-100-24 {
  width: calc(100% - 24px) !important;
}

.u-w-clamp-300-50-700 {
  width: clamp(300px, 50%, 700px);
}

.u-max-content {
  width: max-content;
}

.u-horizontal-line {
  padding-bottom: 10px;
  border-bottom: 1px solid #a9a9a9;
  position: absolute;
  bottom: -18px;
  width: 73%;
}

.u-horizontal-line-full {
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 20px;
}

.u-z-low-top {
  z-index: 10;
}

.u-z-high-top {
  z-index: 100;
}

.u-z-highest-top {
  z-index: 1000;
}

.hover-color-gray:hover > span {
  color: #a9a9a9 !important;
}

.rotate-90 {
  transform: rotate(90deg);
}

.transition-easy {
  transition: ease-in-out all 0.1s;
}

.nav-chevron {
  margin-left: -5px;
}

.u-bold {
  font-weight: 500;
}

.u-bolder {
  font-weight: 600;
}

.u-small-text {
  font-size: 0.75rem;
}

.u-b-small-text {
  font-size: 0.875rem;
}

.u-date {
  color: #b6b3b0;
}

.u-red {
  color: #fe2713;
}

.u-gray {
  color: #a9a9a9;
}

.u-upcase {
  text-transform: uppercase;
}

.u-normalcase {
  text-transform: none;
}

.u-text-normal {
  font-weight: 400 !important;
}

.u-text-light {
  color: #a9a9a9;
}

.u-text-light {
  color: #a9a9a9;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: transparent;
  padding: 0.328125rem 0.984375rem;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  font: inherit;
  min-width: 7rem;
  text-align: center;
}
.btn .material-icons {
  transform: translate(-0.4rem, -1px);
}
.btn:focus-visible {
  outline: inherit;
}
.btn:hover, .btn:focus {
  cursor: pointer;
  text-decoration: none;
}
.btn * {
  vertical-align: middle;
}
.btn i {
  padding-left: 0.2rem;
  margin-right: -0.2rem;
}

.btn--link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0;
}
.btn--link:hover {
  color: #b6b3b0;
}
.btn--link[disabled] {
  cursor: default;
  text-decoration: none;
  pointer-events: none;
}

.btn:disabled,
.btn[disabled=disabled] {
  pointer-events: all;
  cursor: not-allowed !important;
  opacity: 0.5;
}

.btn--full-width {
  width: 100%;
}

.btn--inline {
  margin-left: 0.65625rem;
}

.btn--primary {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: transparent;
  padding: 0.328125rem 0.984375rem;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  font: inherit;
  min-width: 7rem;
  text-align: center;
  border-color: #009ce5;
  background-color: #009ce5;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 24px;
}
.btn--primary .material-icons {
  transform: translate(-0.4rem, -1px);
}
.btn--primary:focus-visible {
  outline: inherit;
}
.btn--primary:hover, .btn--primary:focus {
  cursor: pointer;
  text-decoration: none;
}
.btn--primary * {
  vertical-align: middle;
}
.btn--primary i {
  padding-left: 0.2rem;
  margin-right: -0.2rem;
}
.btn--primary:hover, .btn--primary:focus {
  border-color: #81D5FA !important;
  background-color: #81D5FA !important;
  color: #fff !important;
}
.btn--primary:disabled {
  border-color: #CCEBFA;
  background-color: #CCEBFA;
  color: #fff;
  cursor: not-allowed;
}

.btn--secondary {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: transparent;
  padding: 0.328125rem 0.984375rem;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  font: inherit;
  min-width: 7rem;
  text-align: center;
  border-color: #d3d3d3;
  background-color: #fff;
  color: #353331;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 24px;
}
.btn--secondary .material-icons {
  transform: translate(-0.4rem, -1px);
}
.btn--secondary:focus-visible {
  outline: inherit;
}
.btn--secondary:hover, .btn--secondary:focus {
  cursor: pointer;
  text-decoration: none;
}
.btn--secondary * {
  vertical-align: middle;
}
.btn--secondary i {
  padding-left: 0.2rem;
  margin-right: -0.2rem;
}
.btn--secondary:hover {
  border-color: #a1a1a1;
  color: #353331;
}

.btn--tertiary {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: transparent;
  padding: 0.328125rem 0.984375rem;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  font: inherit;
  min-width: 7rem;
  text-align: center;
  border-color: #009ce5;
  background-color: #fff 0;
  color: #009ce5;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 24px;
}
.btn--tertiary .material-icons {
  transform: translate(-0.4rem, -1px);
}
.btn--tertiary:focus-visible {
  outline: inherit;
}
.btn--tertiary:hover, .btn--tertiary:focus {
  cursor: pointer;
  text-decoration: none;
}
.btn--tertiary * {
  vertical-align: middle;
}
.btn--tertiary i {
  padding-left: 0.2rem;
  margin-right: -0.2rem;
}
.btn--tertiary:hover {
  border-color: #81D5FA !important;
  color: #81D5FA !important;
  opacity: 80%;
}

.btn--danger--primary {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: transparent;
  padding: 0.328125rem 0.984375rem;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  font: inherit;
  min-width: 7rem;
  text-align: center;
  border-color: #ffe9e7;
  background-color: #fe2713;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 24px;
}
.btn--danger--primary .material-icons {
  transform: translate(-0.4rem, -1px);
}
.btn--danger--primary:focus-visible {
  outline: inherit;
}
.btn--danger--primary:hover, .btn--danger--primary:focus {
  cursor: pointer;
  text-decoration: none;
}
.btn--danger--primary * {
  vertical-align: middle;
}
.btn--danger--primary i {
  padding-left: 0.2rem;
  margin-right: -0.2rem;
}
.btn--danger--primary:hover {
  background-color: #fe5546;
}

.btn--danger--secondary {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 20px;
  background-color: transparent;
  padding: 0.328125rem 0.984375rem;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  font: inherit;
  min-width: 7rem;
  text-align: center;
  border-color: #fe2713;
  background-color: #ffe9e7;
  color: #fe2713;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 24px;
}
.btn--danger--secondary .material-icons {
  transform: translate(-0.4rem, -1px);
}
.btn--danger--secondary:focus-visible {
  outline: inherit;
}
.btn--danger--secondary:hover, .btn--danger--secondary:focus {
  cursor: pointer;
  text-decoration: none;
}
.btn--danger--secondary * {
  vertical-align: middle;
}
.btn--danger--secondary i {
  padding-left: 0.2rem;
  margin-right: -0.2rem;
}
.btn--danger--secondary:hover {
  color: #fff;
  background-color: #fe5546;
}

.btn--icon {
  padding: 0.328125rem 0.984375rem 0.328125rem 0.65625rem;
}

.btn--blue {
  color: #009ce5;
}

.not-allowed-pointer {
  cursor: not-allowed !important;
}

.c-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  background-color: #fff;
  margin: 0.328125rem 0;
  padding: 1rem;
}
.c-card + .c-card {
  margin-left: 0.65625rem;
}
.c-card .heading-text {
  font-size: 1rem;
}
.c-card .gray-text {
  color: #a9a9a9;
}
.c-card .font-thin {
  font-weight: 300;
}
.c-card__transparent {
  padding: 0;
  box-shadow: none;
  background-color: transparent;
}
.c-card .c-card__title {
  text-decoration: underline;
  text-decoration-color: #b6b3b0;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.c-card--padded {
  padding: 1rem 3rem;
}

.c-card__padded-bottom {
  padding-bottom: 4rem;
}

.c-card__divider-text {
  margin: 1rem 0 0.8rem 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 500;
}
.c-info-item span {
  display: block;
  line-height: 1.5rem;
  margin: 0.1rem 0;
}
.c-info-item span:last-child {
  margin-bottom: 1rem;
  color: #b6b3b0;
}
.c-info-item span:empty:before {
  content: "–";
}
.c-info-item .c-info-item__nodetype:first-letter {
  text-transform: uppercase;
}

.c-info-item--emphasis span:last-child {
  color: #009ce5;
}

.c-inline-info-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.c-inline-info-item span {
  margin: 0.1rem 0;
}
.c-inline-info-item span:nth-child(2) {
  flex-grow: 1;
}
.c-inline-info-item span:empty:before {
  content: "–";
}

.c-card__hr {
  border: none;
  border-top: 1px solid #e2e2e2;
  margin: 1.4rem 0 1rem 0;
}

.c-node-table {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.c-node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-node-index {
  flex: 1;
  text-align: left;
}

.c-node-function {
  flex: 3;
  text-align: left;
}

.c-node-status {
  text-align: right;
}

.c-node-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.c-node-status.filled {
  background-color: green;
  border: 1px solid green;
}

.c-node-status.border-only {
  border: 1px solid green;
  background-color: transparent;
}

.state-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
}

.state-border-green {
  border: 2px solid #30c749;
}

.state-fill-green {
  background-color: #30c749;
}

.state-fill-red {
  background-color: #fe2713;
}

.state-circle:empty:before {
  content: "" !important;
}

.clickable {
  cursor: pointer;
}

.custom-gap {
  gap: 1rem;
}

.c-inline-metrics-item {
  display: flex;
  justify-content: space-between;
}
.c-inline-metrics-item span {
  margin: 0.1rem 0;
}
.c-inline-metrics-item span:last-child {
  margin-bottom: 0.5rem;
}
.c-inline-metrics-item span:empty:before {
  content: "–";
}

.c-dropdown {
  position: absolute;
  right: 0;
  z-index: 10;
  border-radius: 8px;
  border: 1px solid #00000040;
  background: #fff;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.c-dropdown li {
  white-space: nowrap;
  display: flex;
  height: 2.625rem;
  padding: 0 6px;
  align-items: center;
}
.c-dropdown li .c-dropdown__link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  font-size: inherit;
}
.c-dropdown li .c-dropdown__link:hover, .c-dropdown li .c-dropdown__link:focus {
  cursor: pointer;
  text-decoration: none;
  color: #b6b3b0;
}

.c-dropdown--dark {
  background-color: #f3f5f5;
  padding: 2px 16px;
  align-items: center;
  display: flex;
  width: 100%;
  min-height: 36px;
  box-sizing: border-box;
  justify-content: space-between;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #d3d3d3;
}
.c-dropdown--dark span {
  pointer-events: none !important;
}
.c-dropdown--dark .more-icon,
.c-dropdown--dark .less-icon {
  position: absolute;
  right: 10px;
  bottom: 0;
  margin-bottom: -1px;
}
.c-dropdown--dark.toggled {
  background-color: #fff;
  border: 1px solid #009ce5;
  box-shadow: #a8e3ff 0px 0px 3px 1px;
}
.c-dropdown--dark.toggled .less-icon {
  color: #009ce5;
}
.c-dropdown--dark.selected {
  background-color: #fff;
  border: 1px solid #009ce5;
  box-shadow: #a8e3ff 0px 0px 3px 1px;
}

.custom-dropdown-options {
  display: block;
  position: absolute;
  z-index: 10;
  width: 100%;
  margin-top: 15px;
  box-shadow: #d3d3d3 0px 4px 10px 0px;
  border-radius: 10px;
  max-height: 250px;
  overflow-y: auto;
  cursor: default;
}
.custom-dropdown-options .list-item {
  padding: 5px 16px;
  background-color: #fff;
}
.custom-dropdown-options .list-item:hover {
  background-color: #009ce5;
  color: #fff;
}
.custom-dropdown-options .list-item:last-child {
  border-radius: 0 0 5px 5px;
}

.kebab-dropdown {
  position: absolute;
  right: 0;
  z-index: 10;
  border-radius: 8px;
  border: 1px solid #00000040;
  background: #fff;
  margin-top: 0.5rem;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.kebab-dropdown li {
  height: 2.625rem;
  padding: 0 15px;
  background-color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
}
.kebab-dropdown li * {
  text-transform: capitalize !important;
}
.kebab-dropdown li:hover {
  background-color: #009ce5;
  color: #fff !important;
}
.kebab-dropdown li:hover a, .kebab-dropdown li:hover button, .kebab-dropdown li:hover span {
  color: #fff !important;
}
.kebab-dropdown li button {
  border: none;
  background-color: transparent !important;
  font-size: inherit;
}
.kebab-dropdown li .u-red {
  color: red !important;
}

.old-elevator-table li {
  padding: 0px;
}
.old-elevator-table li form {
  width: 100%;
  height: 100%;
}
.old-elevator-table li form button {
  width: 100%;
  height: 100%;
  margin: 0px 15px;
  text-align: left;
}

.c-flash {
  position: fixed;
  bottom: 10px;
  left: 50%;
  z-index: 1000;
}
.c-flash__content {
  display: inline-block;
  margin-left: -50%;
  margin-bottom: 0.984375rem;
  border-radius: 4px;
  border-width: 0 1px 1px 1px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.08);
  padding: 10px 40px;
  background-color: #353331;
  color: #fff;
  font-weight: 300;
  width: auto;
}
.c-flash__action {
  text-transform: uppercase;
  background: inherit;
  border: none;
  color: #a8e3ff;
  margin-left: 1rem;
}

.c-flash--opacity-0 {
  display: none;
}

.c-flash--alert .c-flash__content {
  background-color: #fe2713;
}

.c-flash--success .c-flash__content {
  background-color: #268936;
}

.c-flash--error .c-flash__content {
  background-color: #fe2713;
}

.c-flash--warning .c-flash__content {
  background-color: #fb9900;
}

.c-flash--information .c-flash__content {
  background-color: #009ce5;
}

.errors {
  background: #ffe9e7;
  color: #fe2713;
  border: 1px solid #fe2713;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0.65625rem 0.984375rem;
  margin-bottom: 1.96875rem;
  flex-direction: column;
  margin-bottom: 1.96875rem;
}
.errors .errors__details {
  font-size: 0.875rem;
  font-weight: 400;
}
.errors .material-icons {
  display: inline-block;
  padding-right: 0.984375rem;
}
.errors .errors__base {
  display: flex;
  align-items: center;
  padding: 0.65625rem 0.984375rem;
}
.errors .errors__base h2 {
  font-size: 0.875rem;
  font-weight: 400;
  display: inline-block;
  margin: 0;
}

.c-filters {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.c-filters--current {
  flex-grow: 1;
  padding: 0 20px;
}

.c-filters__filter[open] .more {
  display: none;
}
.c-filters__filter[open] .less {
  display: inline;
}

.c-filters__filter + .c-filters__filter {
  margin-left: 2.625rem;
}
.c-filters__filter .btn--link:focus {
  color: inherit;
}
.c-filters__filter .more {
  display: inline;
}
.c-filters__filter .less {
  display: none;
}

.c-filter-dropdown {
  position: absolute;
  right: 0;
  top: 2.625rem;
  z-index: 10;
  border-radius: 8px;
  background: #fff;
  padding: 1.5rem 1rem;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.04);
  min-height: 636px;
}
.c-filter-dropdown .c-select {
  width: 50%;
  min-width: 0;
}

.c-filter__tags {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  justify-content: end;
  gap: 10px 0;
}

.c-filter__current-filter {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 0.328125rem 0.328125rem 0.328125rem 0.984375rem;
  font-size: 0.875rem;
}
.c-filter__current-filter:hover {
  background: #a1a1a1;
  color: #fff;
}
.c-filter__current-filter:hover a {
  color: #fff;
}
.c-filter__current-filter + .c-filter__current-filter {
  margin-left: 0.984375rem;
}
.c-filter__current-filter .material-icons {
  padding-left: 0.65625rem;
  transform: scale(0.8);
}
.c-filter__current-filter .material-icons:hover {
  cursor: pointer;
}
.c-filter__current-filter a {
  display: flex;
}
.c-filter__current-filter a:hover {
  color: inherit;
}

.filter-tag-close-btn:hover {
  cursor: pointer;
}

.link {
  color: #009ce5;
  font-weight: inherit;
  cursor: pointer;
  border: none;
  background-color: inherit;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0;
  }
}
.animate-blink {
  animation: blink 0.5s step-start 0s infinite;
  -webkit-animation: blink 0.5s step-start 0s infinite;
}

.icon-link {
  color: inherit;
  font-weight: inherit;
  cursor: pointer;
  border: none;
  background-color: inherit;
}

.go-back {
  display: flex;
  align-content: center;
  justify-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.go-back a > span,
.go-back a {
  color: #009ce5;
  font-weight: inherit;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.selected-item {
  background-color: #f3f5f5;
}

.list-item {
  padding: 16px;
  color: #353331;
}

.item-line {
  margin: 0;
  border: none;
  border-top: 1px solid #d3d3d3;
}

.c-modal {
  position: fixed;
  display: flex;
  visibility: hidden;
  opacity: 0;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  z-index: 1010;
}

.c-modal-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1009;
}

.c-modal--open {
  visibility: visible;
  opacity: 1;
}

.c-modal__content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(53, 51, 49, 0.2);
  z-index: 1011;
}

.c-modal__header {
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-modal__divider-line {
  border: none;
  border-top: 1px solid #e2e2e2;
  margin: 1rem 0;
}

.modal-msg-box {
  width: 330px;
  min-height: 100px;
  text-align: center;
}

.horizontal-btn-set {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.c-nav {
  display: flex;
}

.c-nav__link {
  position: relative;
}
.c-nav__link + .c-nav__link {
  margin-left: 2.625rem;
}
.c-nav__link summary {
  list-style: none;
}

.c-navbar {
  z-index: 1000;
  height: 6rem;
  background-color: #fff;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.04);
}

.c-navbar__section--logo {
  display: flex;
  align-items: center;
}
.c-navbar__section--logo img {
  width: 200px;
}

.c-navbar__section--filler {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.c-online-indicator {
  line-height: 2.4rem;
  font-size: 0.875rem;
}

.c-pagination {
  display: flex;
  align-items: center;
}
.c-pagination a {
  font-weight: 400;
}

.c-pagination__link {
  line-height: 0.65625rem;
  padding: 0.65625rem;
}

.c-pagination__next,
.c-pagination__prev {
  display: flex;
}

.c-pagination__prev {
  padding-right: 0.65625rem;
}

.c-pagination__next {
  padding-left: 0.65625rem;
}

.c-pagination__link--current {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}

.c-safety-circuit {
  display: flex;
  justify-content: center;
  border-radius: 32px;
  line-height: 2rem;
  border: 1px solid #d3d3d3;
  flex-grow: 1;
  font-size: 0.875rem;
}
.c-safety-circuit + .c-safety-circuit {
  margin: 0 0.328125rem;
}

.c-safety-circuit--open {
  border-color: #d3d3d3;
  background: #fff;
}

.c-safety-circuit--closed {
  border-color: #30c749;
  background: #e4f8e7;
}

.c-safety-circuit--error {
  border-color: #fe2713;
  background: #ffe9e7;
}

.c-search {
  flex-grow: 1;
}
.c-search .material_icons {
  display: flex;
  align-items: center;
}
.c-search .material-icons:hover {
  cursor: pointer !important;
}

.c-search__input {
  width: 100%;
  background: inherit;
  border: none;
  font-size: 1.125rem;
  line-height: 2rem;
}
.c-search__input:focus, .c-search__input:focus-visible {
  outline: inherit;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.c-sidebar {
  margin-top: 0.328125rem;
  margin-right: 1.96875rem;
}

.c-sidebar__item span {
  cursor: pointer;
}
.c-sidebar__item span:hover, .c-sidebar__item span:focus {
  text-decoration: none;
  color: #b6b3b0;
}
.c-sidebar__item .c-sidebar__item {
  margin-left: 0.984375rem;
}

.sub-nav-item {
  margin-left: 0.984375rem;
}

.c-sidebar__item--collapsed > .c-sidebar__link > .more {
  display: inline;
}

.c-sidebar__item--collapsed > .c-sidebar__link > .less {
  display: none;
}

.c-sidebar__item--expanded > .c-sidebar__link > .more {
  display: none;
}

.c-sidebar__item--expanded > .c-sidebar__link > .less {
  display: inline;
}

.c-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-sidebar__item--current {
  color: #009ce5;
  cursor: default;
}

.sticky {
  position: fixed;
  top: 0;
  z-index: 100;
}

.c-table {
  width: 100%;
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
}

.c-table--bordered .c-table__body .c-table__row {
  display: table-row;
}
.c-table--bordered .c-table__body .c-table__row .c-table__cell {
  border-top: 1px solid #e2e2e2;
}
.c-table--bordered .c-table__body .c-table__row:last-child .c-table__cell {
  border-bottom: 1px solid #e2e2e2;
}

.c-table--striped .c-table__body .c-table__row:nth-child(2n) .c-table__cell {
  background: #fafafa;
}

.c-table--padded .c-table__cell {
  padding: 0.984375rem;
}

.c-table__body {
  display: table-row-group;
}

.c-table__row {
  display: table-row;
}

.c-table__header {
  display: table-header-group;
  padding: 0.328125rem 0;
}

.c-table__cell {
  display: table-cell;
  padding: 0.328125rem 0.65625rem;
}

.c-table__row--empty {
  border: none;
}

.c-card-table {
  display: flex;
  position: relative;
  flex-direction: column;
  text-align: center;
}

.c-card-table__header {
  display: grid;
  gap: 2.625rem;
  border-radius: 0.65625rem;
  padding: 0.984375rem;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  margin: 5px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0, rgba(0, 0, 0, 0.04) 0 1px 2px 0;
  z-index: 5;
}
.c-card-table__header span .material-icons {
  vertical-align: middle;
}

.c-table__card,
.c-table__card__small {
  display: grid;
  gap: 2.625rem;
  border-radius: 0.65625rem;
  background: #fff;
  border: 1px solid transparent;
  font-weight: 200;
  transition: box-shadow 0.2s;
}
.c-table__card span,
.c-table__card__small span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-table__card--clickable:hover, .c-table__card--clickable:focus,
.c-table__card__small--clickable:hover,
.c-table__card__small--clickable:focus {
  box-shadow: rgba(0, 0, 0, 0.5) 2px 0 5px;
  color: inherit;
}

.c-table__card {
  min-height: 5.25rem;
  padding: 0.984375rem;
  margin: 4px 0;
}

.c-table__card__small {
  min-height: 2.625rem;
  margin: 3px 0;
}
.c-table__card__small__shadow {
  padding-block: 10px;
  box-shadow: 1px 4px 2px 0px rgba(0, 0, 0, 0.04);
}

.c-card-table__subheader {
  border: 1px groove #353331;
  background: unset;
  margin: 5px 0 !important;
  z-index: 1;
}
.c-card-table__subheader .c-card__divider-text {
  margin: unset;
}

.c-card-table__card--not_connected {
  border-color: #b6b3b0;
  background: #e2e2e2;
}

.c-card-table__card--warning {
  border-color: #fb9900;
  background: #fff5e5;
}

.c-card-table__card--error {
  border-color: #fe2713;
  background: #ffe9e7;
}

.c-card-table__card--ok {
  border-color: #eeeeee;
  background: #fafafa;
}

.item-list .list-item {
  padding: 15px 15px;
  width: 600px;
  cursor: pointer;
}
.item-list .selected-item {
  background: #a8e3ff;
}

.progress-container {
  max-width: 550px;
  height: 20px;
  border-radius: 6px;
  overflow: hidden;
}

.custom-progress {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #fafafa;
}

.custom-progress::-webkit-progress-bar {
  background-color: #fafafa;
}

.red::-webkit-progress-value {
  background-color: #fe2713;
}

.red::-moz-progress-bar {
  background-color: #fe2713;
}

.green::-webkit-progress-value {
  background-color: #30c749;
}

.green::-moz-progress-bar {
  background-color: #30c749;
}

.blue::-webkit-progress-value {
  background-color: #009ce5;
}

.blue::-moz-progress-bar {
  background-color: #009ce5;
}

input[type=file]::-webkit-file-upload-button {
  background-color: #009ce5;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
}

input[type=file]:disabled {
  opacity: 0.5;
}

/* Toggle switch container */
.toggle-wrapper {
  display: flex;
  align-items: center;
}

/* Outer switch box */
.toggle-switch {
  width: 50px;
  height: 25px;
  background: #ddd;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

/* Inner circle (thumb) */
.toggle-thumb {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  transition: left 0.3s;
}

/* Active state (when switched ON) */
.toggle-switch.active {
  background: #009ee1;
}

.toggle-switch.active .toggle-thumb {
  left: 27px;
}

/* Color Picker Container */
.color-picker-container {
  display: flex;
  /* Arrange preview and RGB values horizontally */
  align-items: center;
  /* Vertically align items */
}

/* Label */
.label {
  display: block;
  /* Make label a block element */
  font-weight: bold;
  margin-bottom: 5px;
}

/* Preview Box */
.preview {
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

/* history color box */
.history-rgb-values {
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  display: inline-block;
}

/* history toggles */
.history-toggle-block {
  display: inline-block;
}

/* RGB Values */
.rgb-values {
  display: flex;
  /* Arrange RGB values horizontally */
  align-items: center;
  /* Vertically align */
}

.rgb-separator {
  margin: 0 5px;
  /* Add some spacing between values */
}

/* You can add more specific styles for the RGB values if needed */
.rgb-r, .rgb-g, .rgb-b, .alpha {
  /* Example: Make the RGB values monospace and a bit smaller */
  font-family: monospace;
  font-size: 0.9em;
}

.alpha::before {
  /* Add "A:" before the alpha value */
  content: "A:";
  margin-right: 5px;
}

.layout_default .picker_editor {
  width: 100% !important;
}

.is-invalid {
  border-color: red;
  /* Highlight the input with red border on error */
}

.text-danger {
  color: red;
  /* Make error message red */
}

.hidden-input {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.helper-text {
  display: block;
}

.flatpickr-clear-button {
  /* position: absolute; */
  /* right: 10px; */
  /* top: 5%; */
  /* transform: translateY(-50%); */
  /* background: none; */
  /* border: none; */
  font-size: 16px;
  cursor: pointer;
  /* color: #888; */
  width: 100%;
}

.flatpickr-clear-button:hover {
  color: #333;
}

.elevator-table .c-table__card {
  min-height: 80px;
}

.alarm_back_button {
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  text-transform: uppercase;
}

.alarm_back_icon {
  font-size: 18px;
}

.alarm_count {
  padding: 1rem 0 1rem 1rem;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #a9a9a9;
}

.data-logger {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.data-logger-start {
  margin-left: 1rem;
  color: #009ce5;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
}

.data-logger-start:hover {
  color: #81D5FA;
}

.data-logger-title {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.data-logger-text {
  font-size: 0.9rem;
  color: #a9a9a9;
}

.time-form {
  display: flex;
  align-items: center;
}

.time-picker {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.04);
}

.time-input {
  display: flex;
  align-items: center;
}

.time-field {
  width: 3rem;
  height: 2rem;
  border: 0;
  border-radius: 4px;
  text-align: center;
  outline: none;
}

.time-input span {
  font-size: 18px;
}

.units-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.gray-heading {
  padding-left: 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #a9a9a9;
}

.c-card .required_field {
  opacity: 0.5;
}

.select-config-template-field {
  width: 285px;
  text-align: right;
  display: flex;
  justify-content: space-between;
}
.select-config-template-field .selected-config-name {
  display: inline-block;
  max-width: 210px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.edit-config-template-value .u-padding {
  padding: 2rem !important;
}
.edit-config-template-value .u-flex-center {
  flex-direction: row;
}
.edit-config-template-value .number-field {
  width: -webkit-fill-available;
}
.edit-config-template-value .field-value {
  width: auto;
}

.event-table-row {
  display: flex;
}
.event-table-row .event-table-row__cell {
  flex: 1;
  text-align: left;
}
.event-table-row .message {
  flex: 1;
  display: flex;
  align-items: center;
}
.event-table-row .timestamp {
  flex: 1;
  display: flex;
  align-items: center;
}
.event-table-row .event-type {
  flex: 1;
  display: flex;
  align-items: center;
}
.event-table-row .center-content {
  justify-content: center;
}

.event-card {
  background-color: white;
  margin-bottom: 0.25rem;
  padding: 0.2rem;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.04);
  font-size: 14px;
}

.card-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.25rem;
  margin: 20px 0;
}

.card-table thead th {
  text-align: left;
  padding: 10px 15px;
  color: #333;
  font-weight: 500;
}

.card-row {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 14px;
}

.card-row td {
  padding: 15px;
  background-color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.card-row td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.card-row td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.elevator-edit-form .btns-container {
  display: flex;
  justify-content: flex-end;
  margin-top: -30px;
}
.elevator-edit-form ul > li {
  grid-template-columns: 170px 100px auto 30px !important;
  column-gap: 15px;
  row-gap: 1.5rem;
}
.elevator-edit-form ul > li .c-select {
  min-width: unset;
}
@media screen and (min-width: 996px) {
  .elevator-edit-form ul > li {
    grid-template-columns: 1fr 1fr 300px 1fr !important;
  }
}

.changes-confirmation-modal {
  width: clamp(600px, 80%, 1080px);
}

#changesContainer div {
  display: grid;
  grid-template-columns: 40% 60%;
}
@media screen and (min-width: 1080px) {
  #changesContainer div {
    grid-template-columns: 30% 70%;
  }
}
#changesContainer div p {
  width: 200px;
}
#changesContainer div div.change-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 1080px) {
  #changesContainer div div.change-container {
    grid-template-rows: 1fr;
    grid-template-columns: 45% 15% 45%;
    align-items: unset;
  }
}
#changesContainer div div.change-container p {
  margin: unset;
  width: unset;
  word-wrap: break-word;
}
@media screen and (min-width: 1080px) {
  #changesContainer div div.change-container p {
    max-width: 24ch;
  }
}

.form-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.all-time-link {
  margin: 0;
  color: #009ce5;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.all-time-link:hover {
  color: #81D5FA;
}

.date-field {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background-color: #f9f9f9;
  color: #333;
  width: 150px;
}

.date-field--end {
  margin-right: 10px;
}

.filter-btn {
  margin-left: 10px;
}

.c-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-bottom: 0;
}

.card-title {
  display: flex;
  flex-direction: column;
}

.c-card__divider-text {
  margin: 0;
}

.gray-text {
  color: gray;
}

.reset-button {
  margin: 0;
  color: #009ce5;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
}

.reset-button:hover {
  color: #81D5FA;
}

.item-row {
  overflow: hidden;
}

.item-text {
  float: left;
  font-weight: 500;
}

.item-value {
  float: right;
}

.custom-table {
  border-spacing: 0 15px;
}

.table-header {
  text-align: left;
  font-weight: 500;
}

.table-cell {
  padding: 8px 12px;
}

.table-cell--bold {
  font-weight: 500;
}

.statistic-card-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chart-container {
  padding-top: 16px;
}

.realtime-metrics {
  font-size: 0.75rem;
  font-weight: 500;
}

.metrics-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.328125rem;
}

.error-card {
  flex-direction: row;
  justify-content: space-evenly;
  border: 1px solid rgba(254, 39, 19, 0.5);
  border-radius: 8px;
  height: 100%;
  color: rgba(254, 39, 19, 0.5);
  padding: 0px 16px;
}

.error-message {
  font-size: 14px;
  color: #fe2713;
}

.error-card-message {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.node-table {
  border-spacing: 0px 10px;
  width: 100%;
}

.state-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
}

.node-card {
  overflow-x: auto;
  max-width: 100%;
}

.user-dot-menu {
  background-color: unset;
  border: none;
  width: 40px;
  cursor: context-menu;
}
.user-dot-menu img {
  height: 20ox;
  width: 20px;
  transform: rotate(90deg);
}

.edit-user-modal form .organisation-role-container {
  width: 100%;
}
.edit-user-modal form .organisation-role-container select {
  min-width: fit-content !important;
  margin-right: 1rem;
}
.edit-user-modal form .organisation-role-container select:nth-child(1) {
  max-width: 47%;
}
.edit-user-modal form .organisation-role-container select:nth-child(2) {
  max-width: 20%;
}
.edit-user-modal form .organisation-role-container .dlt-container {
  display: flex;
  justify-content: flex-start;
  max-width: 20%;
  background-color: unset;
  border: none;
}
.edit-user-modal form .organisation-role-container .dlt-container input {
  margin-left: 0 !important;
  margin-right: 5px !important;
}
.edit-user-modal form .organisation-role-container .dlt-container img {
  height: 20px;
  cursor: pointer;
}
.edit-user-modal form .add-new-btn {
  border: none;
  align-self: baseline;
  padding: 0;
  margin-top: 1rem;
}

.background-wrapper {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: white;
}
.background-wrapper .logo img {
  width: 200px;
}

.background-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.content {
  position: relative;
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-top: 20vh;
}
.content .flash-alert {
  display: none;
  position: relative;
  padding: 20px 30px;
  margin: auto auto 10px;
  text-align: center;
  background-color: #ffe9e7;
  border-radius: 10px;
  color: #fe2713;
  border: 1px solid #fe2713;
}
.content .flash-notice {
  display: none;
  align-items: center;
  position: relative;
  padding: 20px 30px;
  margin: auto auto 10px;
  text-align: center;
  background-color: #CCEBFA;
  border-radius: 10px;
  color: #009ce5;
  border: 1px solid #009ce5;
}
.content .l-login {
  min-height: auto;
}
.content .l-login .error-message {
  display: none;
  text-align: left;
  padding-left: 15px;
  margin-bottom: 20px;
  margin-top: -10px;
  color: #fe2713;
}
.content .l-login .forgot_password {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 7px;
  margin: auto auto 15px;
}

.unit-table .c-table__card {
  min-height: 65px;
}

.unit-form .from-wrapper {
  flex-wrap: nowrap;
  gap: 20px;
}
.unit-form .from-wrapper .c-card .c-form-group--inline .c-control,
.unit-form .from-wrapper .c-card .c-form-group--inline .c-select {
  min-width: 30rem;
}
.unit-form .from-wrapper .right-side .c-card--padded {
  padding: 1rem;
}
.unit-form .from-wrapper .right-side .comment-text-area {
  margin-top: 10px;
  width: 100%;
  height: 150px;
  padding: 10px;
  resize: none;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
}
.unit-form .from-wrapper .right-side .comment-text-area:focus {
  outline: 1px solid #a1a1a1;
  background: #fff;
}
.unit-form .from-wrapper .right-side .history-section {
  margin: 20px 0px 0px 0px;
}
.unit-form .from-wrapper .right-side .history-section .item-list {
  overflow-x: clip;
  overflow-y: auto;
}
.unit-form .from-wrapper .right-side .history-section .item-list .list-item {
  width: 100%;
  padding: 15px 0px;
}
.unit-form .from-wrapper .right-side .history-section .item-list .list-item .date-time {
  border-bottom: 2px dashed #b6b3b0;
}
.unit-form .from-wrapper .right-side .history-section .item-list .list-item .changes {
  background-color: #ededed;
  padding: 8px;
}
.unit-form .from-wrapper .right-side .history-section .item-list .list-item .changes .changed-item {
  display: flex;
  justify-content: space-between;
}
.unit-form .from-wrapper .right-side .history-section-can-node {
  height: 575px;
}
.unit-form .from-wrapper .right-side .history-section-equipment {
  height: 375px;
}

.tab {
  padding: 5px 0px;
  background-color: #d3d3d3;
  width: 100%;
  display: flex;
}
.tab .nav {
  margin: auto;
  display: flex;
  gap: 20px;
}
.tab .nav .btn-wrapper {
  border: 2px solid #009ce5;
  border-radius: 20px;
  background-color: #fff;
}
.tab .nav .btn-wrapper .btn--secondary {
  border: none;
}

.document-form .form-container {
  width: clamp(500px, 50%, 700px);
}
.document-form .c-form-group--inline {
  align-items: unset !important;
}
.document-form .document-input {
  padding: 0 0.75rem;
  height: 2.5rem;
  border-color: transparent;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-shadow: none;
  background: #f3f5f5;
  font-size: 0.875rem;
  outline: 1px solid #d3d3d3;
  background: #fff;
}
.document-form .document-input:focus {
  outline: 1px solid #a1a1a1;
  background: #fff;
}
.document-form .lift-type-selector {
  margin-bottom: 0.65625rem;
  display: flex;
  align-items: center;
  position: relative;
}
.document-form .lift-type-selector:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 10px;
  height: 6px;
  top: 1rem;
  right: 1rem;
  background: url(/assets/arrow-expand-9f856520bd513756f33bc8988b9bf94a24d869de6750d1dd875bcb8128a67ec2.svg) 0 0 no-repeat;
}
.document-form span.document-input {
  padding: 0 !important;
  display: flex;
  align-items: center;
}
.document-form span.document-input .lift-search {
  min-height: 2.5rem;
  outline: none;
  padding-right: 0;
  width: 100%;
}
.document-form span.document-input .lift-search:focus {
  outline: none;
}
.document-form span.document-input i {
  padding-right: 0.75rem;
  color: #a1a1a1;
}
.document-form .field_with_errors {
  display: none;
}

.organisation-dot-menu {
  background-color: unset;
  border: none;
  width: 40px;
  cursor: context-menu;
}
.organisation-dot-menu img {
  height: 20ox;
  width: 20px;
  transform: rotate(90deg);
}

.edit-organisation-modal .organisation-form-wrapper {
  min-width: 750px;
  padding: 0px 90px;
}
.edit-organisation-modal form .c-control, .edit-organisation-modal form .c-select {
  min-width: 20rem;
}
.edit-organisation-modal form .add-new-btn {
  border: none;
  align-self: baseline;
  padding: 0;
  margin-top: 1rem;
}

.info-message {
  align-items: center;
  position: relative;
  padding: 20px 30px;
  text-align: center;
  background-color: #CCEBFA;
  border-radius: 10px;
  color: #009ce5;
  border: 1px solid #009ce5;
}
