.gui-tooltip {
  position: relative;
  display: block;
}
.gui-tooltip-tip {
  display: none;
  position: fixed;
  transform: translateX(-50%);
  background-color: black;
  color: white !important;
  font-size: 12px;
  text-align: center;
  padding: 6px 8px;
  border-radius: 4px;
  z-index: 2147483647;
}
.gui-tooltip-tip::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: black transparent transparent transparent;
}
.gui-tooltip-tip-bottom {
  bottom: unset;
  top: calc(100% + 6px);
}
.gui-tooltip-tip-bottom::before {
  bottom: 100%;
  top: unset;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent black transparent;
}
.gui-tooltip:hover .gui-tooltip-tip {
  display: block;
}
.gui * {
  box-sizing: border-box;
}
.gui-button-base {
  appearance: none;
  background: none;
  background-color: var(--primaryColor);
  color: var(--primaryText);
  font-weight: 400;
  font-size: 1rem;
  padding-left: calc(var(--spacer) * 1.25);
  padding-right: calc(var(--spacer) * 1.25);
  display: flex;
  height: 44px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: var(--buttonBorderRadius);
  border: 1px solid transparent;
  width: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: var(--buttonBoxShadow);
}
.gui-button-base span {
  color: inherit;
  flex: 0 0 auto;
}
.gui-button-base span + i {
  margin-left: calc(var(--spacer) * 0.5);
}
.gui-button-base span + svg {
  margin-left: calc(var(--spacer) * 0.5);
}
.gui-button-base-rows {
  flex-direction: column;
}
.gui-button-base i + span {
  margin-left: calc(var(--spacer) * 0.5);
}
.gui-button-base i svg {
  height: 16px;
  width: 16px;
}
.gui-button-base:disabled {
  background-color: #DDDDDD;
  color: #999999;
  box-shadow: none;
}
.gui-button-base-no-shadow {
  box-shadow: none;
}
.gui-button-badge {
  display: block;
  position: absolute;
  background-color: currentColor;
  width: 8px;
  height: 8px;
  top: 2px;
  right: 2px;
  border-radius: 100%;
}
.gui-button-badge-text {
  display: block;
  position: absolute;
  background-color: var(--primaryColor);
  color: var(--primaryText) !important;
  height: 14px;
  min-width: 14px;
  font-size: 9px;
  line-height: 14px;
  padding-left: 2px !important;
  padding-right: 2px !important;
  top: 0px;
  right: 3px;
  border-radius: 9999999px;
  font-weight: 400 !important;
  z-index: 10;
}
.gui-button-primary {
  background-color: var(--primaryColor);
  color: var(--primaryText);
}
.gui-button-secondary {
  background-color: var(--secondaryColor);
  color: var(--secondaryText);
}
.gui-button-red {
  background-color: var(--redColor, var(--colorRed));
  color: white !important;
}
.gui-button-green {
  background-color: var(--greenColor, var(--colorGreen));
  color: white !important;
}
.gui-button-white {
  background-color: white;
  color: var(--primaryColor);
}
.gui-button-gray-light {
  background-color: var(--lightGrayColor, var(--colorLightGray));
  color: var(--primaryColor);
}
.gui-button-gray-light-hover:hover {
  background-color: var(--lightGrayColor, var(--colorLightGray));
  color: black;
}
.gui-button-transparent {
  background-color: transparent;
  color: black;
}
.gui-button-nopad {
  padding-left: 0;
  padding-right: 0;
}
.gui-button-plain {
  background-color: transparent;
  color: black;
  font-weight: 400;
  height: auto;
  padding-left: 0;
  padding-right: 0;
}
.gui-button-plain svg {
  width: 24px;
}
.gui-button-none {
  background-color: transparent;
  color: inherit;
  font-weight: 400;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}
.gui-button-none svg {
  width: 24px;
}
.gui-button-icon {
  display: flex;
  width: 44px;
  height: 44px;
  padding: 0 0 0 0;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: black;
  box-shadow: none;
}
.gui-button-icon:disabled {
  background-color: transparent;
  color: #DDDDDD;
}
.gui-button-icon i {
  display: block !important;
  flex: 0 0 auto;
}
.gui-button-icon svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.gui-button-icon-dummy {
  opacity: 0;
}
.gui-button-icon-left-align {
  justify-content: flex-start;
}
.gui-button-icon-primary {
  background-color: var(--primaryColor);
  color: var(--primaryText);
}
.gui-button-icon-secondary {
  background-color: var(--secondaryColor);
  color: var(--secondaryText);
}
.gui-button-icon-red {
  color: var(--redColor, var(--redColor, var(--colorRed)));
}
.gui-button-icon-white {
  color: #FFFFFF;
}
.gui-button-icon-white svg {
  flex: 0 0 auto;
}
.gui-button-icon-small {
  width: 24px !important;
  height: 24px !important;
}
.gui-button-icon-small i svg {
  width: 18px !important;
  height: 18px !important;
}
.gui-button-icon-small svg {
  width: 18px !important;
  height: 18px !important;
}
.gui-button-icon-medium {
  width: auto;
  height: auto;
}
.gui-button-icon-medium i svg {
  width: 36px !important;
  height: 36px !important;
}
.gui-button-line {
  background-color: transparent;
  border-color: var(--primaryColor);
  color: var(--primaryColor);
  margin: 0 0 0 0;
  box-shadow: none;
}
.gui-button-line-secondary {
  background-color: transparent;
  border-color: var(--secondaryColor);
  color: var(--secondaryColor);
  margin: 0 0 0 0;
  box-shadow: none;
}
.gui-button-line-white {
  background-color: transparent;
  border-color: white;
  color: white;
  margin: 0 0 0 0;
  box-shadow: none;
}
.gui-button-line-red {
  background-color: transparent;
  border-color: var(--redColor, var(--colorRed));
  color: var(--redColor, var(--colorRed));
  margin: 0 0 0 0;
  box-shadow: none;
}
.gui-button-line-green {
  background-color: transparent;
  border-color: var(--greenColor, var(--colorGreen));
  color: var(--greenColor, var(--colorGreen));
  margin: 0 0 0 0;
  box-shadow: none;
}
.gui-button-inline {
  display: inline-block;
  width: auto;
  line-height: 42px;
}
.gui-button-inline-flex {
  width: auto;
  line-height: 42px;
}
.gui-button-primary-text {
  color: var(--primaryColor);
}
.gui-button-file {
  position: relative;
  padding: 0 0 0 0 !important;
}
.gui-button-file span {
  display: block;
  padding: 0 calc(var(--spacer) * 1);
}
.gui-button-file div {
  width: 100%;
  height: 100%;
  position: absolute;
}
.gui-button-processing {
  background-color: #DDDDDD !important;
  color: transparent !important;
  border-color: transparent !important;
}
.gui-button-processing > * {
  opacity: 0;
}
.gui-button-processing-ring {
  opacity: 1 !important;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  margin-top: -16px;
  left: 50%;
  margin-left: -16px;
}
.gui-button-processing-ring > div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 4px;
  border: 2px solid var(--primaryColor);
  border-radius: 50%;
  animation: processingRing 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--primaryColor) transparent transparent transparent;
}
.gui-button-processing-ring > div:nth-child(1) {
  animation-delay: -0.45s;
}
.gui-button-processing-ring > div:nth-child(2) {
  animation-delay: -0.3s;
}
.gui-button-processing-ring > div:nth-child(3) {
  animation-delay: -0.15s;
}
.gui-button-icon.processing {
  background-color: transparent !important;
  background-color: transparent !important;
}
.gui-button-icon.processing-ring {
  width: 32px !important;
  height: 32px !important;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
}
.gui-button-facebook {
  background-color: rgb(54, 121, 233);
  color: white;
  font-weight: 400;
  width: 100%;
}
.gui-button-facebook svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: #FFFFFF;
  stroke: #FFFFFF;
  margin-right: 8px;
}
.gui-button-google {
  background-color: white;
  border-color: #DDD;
  color: black;
  font-weight: 400;
  width: 100%;
}
.gui-button-google svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: #FFFFFF;
  stroke: #FFFFFF;
  margin-right: 8px;
}
.gui-button-toggle {
  flex: 0 0 auto;
  display: block;
  width: 40px;
  height: 24px;
  position: relative;
  border-radius: 999999px;
  background-color: #AAAAAA;
  transition: all 0.3s ease;
  position: relative;
}
.gui-button-toggle-thumb {
  background-color: white;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: calc(100% - 22px);
  top: 2px;
  transition: all 0.3s ease;
}
.gui-button-toggle-on {
  background-color: #339b33;
}
.gui-button-toggle-on .toggle-thumb {
  right: 2px;
  top: 2px;
}
.gui-button-toggle input {
  display: block;
  opacity: 0 !important;
  position: absolute;
  width: auto !important;
  height: auto !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.gui-button-toggle label {
  display: block;
  opacity: 1;
  position: absolute;
  width: auto !important;
  height: auto !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@keyframes processingRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gui-button-dummy {
  height: 0 !important;
}
.gui-seg-ctl {
  background-color: var(--primaryText) !important;
  padding: 1px !important;
  border: 1px solid var(--primaryColor) !important;
  gap: 1px;
}
.gui-seg-ctl-multi {
  border: 0 !important;
  padding: 0 !important;
}
.gui-seg-ctl-base {
  height: 40px !important;
  border-radius: calc(var(--buttonBorderRadius) - 1px);
  background-color: var(--primaryText) !important;
  color: var(--primaryColor) !important;
  line-height: 40px !important;
}
.gui-seg-ctl-base:has(svg) {
  width: 40px !important;
  padding: 0 0 0 0 !important;
}
.gui-seg-ctl-base svg {
  width: 24px !important;
  height: 40px !important;
  transition: all 0.5s ease;
}
.gui-seg-ctl-base.seg-ctl-active {
  background-color: var(--primaryColor) !important;
  color: var(--primaryText) !important;
}
.gui-seg-ctl-multi-base {
  height: 44px !important;
  line-height: 44px !important;
}
.gui-seg-ctl-multi-base:has(svg) {
  width: 44px !important;
  padding: 0 0 0 0 !important;
}
.gui-seg-ctl-multi-base svg {
  height: 44px !important;
}
.gui-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  /* Input Thumb */
  /* Input Track */
}
@media screen and (max-width: 440px) {
  .gui-form {
    max-width: 100vw;
  }
}
.gui-form input[type=text], .gui-form input[type=password], .gui-form input[type=number], .gui-form input[type=date], .gui-form input[type=time], .gui-form select, .gui-form textarea {
  display: block;
  appearance: none;
  background-color: var(--fieldBg);
  border: var(--fieldBorderWidth) solid var(--fieldBorderColor);
  color: var(--fieldText);
  box-shadow: none;
  outline: none;
  height: 44px;
  border-radius: var(--fieldBorderRadius);
  width: 100%;
  padding-left: calc(var(--spacer) * 1);
  transition: all 0.5s ease;
  font-size: 1rem;
}
.gui-form input[type=text]:focus, .gui-form input[type=password]:focus, .gui-form input[type=number]:focus, .gui-form input[type=date]:focus, .gui-form input[type=time]:focus, .gui-form select:focus, .gui-form textarea:focus {
  border-color: var(--fieldOutlineColor) !important;
}
.gui-form input[type=text]:focus svg, .gui-form input[type=password]:focus svg, .gui-form input[type=number]:focus svg, .gui-form input[type=date]:focus svg, .gui-form input[type=time]:focus svg, .gui-form select:focus svg, .gui-form textarea:focus svg {
  color: var(--secondaryText);
}
@media screen and (max-width: 440px) {
  .gui-form input[type=text], .gui-form input[type=password], .gui-form input[type=number], .gui-form input[type=date], .gui-form input[type=time], .gui-form select, .gui-form textarea {
    font-size: 16px;
  }
}
.gui-form input[type=text]:disabled, .gui-form input[type=password]:disabled, .gui-form input[type=number]:disabled, .gui-form input[type=date]:disabled, .gui-form input[type=time]:disabled, .gui-form select:disabled, .gui-form textarea:disabled {
  background-color: var(--fieldDisabledBg);
  opacity: 0.7;
}
.gui-form input::-webkit-outer-spin-button,
.gui-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.gui-form input[type=number] {
  -moz-appearance: textfield;
}
.gui-form input[type=date], .gui-form input[type=time] {
  padding-right: calc(var(--spacer) * 1);
  min-width: 150px;
}
.gui-form input[type=range] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 100%;
  height: 3px;
  background: #DDDDDD;
  border-radius: 3px;
  background-image: linear-gradient(var(--primaryColor), var(--primaryColor));
  background-size: 70% 100%;
  background-repeat: no-repeat;
}
.gui-form [dir=rtl] input[type=range] {
  background: var(--primaryColor);
  background-image: linear-gradient(#fff, #fff);
  background-size: 30% 100%;
  background-repeat: no-repeat;
}
.gui-form input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--primaryColor);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}
.gui-form input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--primaryColor);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}
.gui-form input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--primaryColor);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}
.gui-form input[type=range]::-webkit-slider-thumb:hover {
  background: var(--primaryColor);
}
.gui-form input[type=range]::-moz-range-thumb:hover {
  background: var(--primaryColor);
}
.gui-form input[type=range]::-ms-thumb:hover {
  background: var(--primaryColor);
}
.gui-form input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.gui-form input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.gui-form input[type=range]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.gui-form input:read-only {
  background-color: rgba(0, 0, 0, 0.05);
}
.gui-form select {
  background-image: var(--dropdownArrow);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 16px 16px;
}
.gui-form textarea {
  min-height: 72px;
  resize: none;
  padding-top: calc(var(--spacer) * 1);
  padding-bottom: calc(var(--spacer) * 1);
}
.gui-form input[type=checkbox] {
  width: 18px;
  height: 18px;
  appearance: none;
  opacity: 0;
  z-index: 2;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.gui-form input[type=checkbox] + svg {
  display: none;
}
.gui-form input[type=checkbox]:checked + svg {
  display: block;
}
.gui-input-grp {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  position: relative;
  border-radius: var(--fieldBorderRadius);
}
.gui-input-grp > div {
  width: 100%;
  height: 100%;
  position: relative;
}
.gui-input-grp input[type=file] {
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.gui-input-checkbox {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  position: relative;
  border: 2px solid #BBBBBB;
  border-radius: var(--fieldBorderRadius);
}
.gui-input-checkbox-checked {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}
.gui-input-checkbox svg {
  z-index: 1;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  color: var(--secondaryText);
}
.gui-input-checkbox:has(input:disabled) {
  border-color: #BBBBBB;
  background-color: #BBBBBB;
}
.gui-input-cells {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: calc(var(--spacer) * 2);
  align-items: center;
}
@media screen and (max-width: 440px) {
  .gui-input-cells {
    gap: calc(var(--spacer) * 1.5);
  }
}
.gui-input-cells > div {
  flex: 0 0 auto;
}
.gui-input-cells-base {
  gap: calc(var(--spacer) * 1);
}
.gui-input-label {
  display: block;
  color: var(--primaryColor);
  font-size: 0.875rem;
  padding-bottom: calc(var(--spacer) * 0.5);
}
.gui-input-cell {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gui-input-cell50 {
  width: calc(50% - var(--spacer) * 2 / 2);
}
@media screen and (max-width: 440px) {
  .gui-input-cell50 {
    width: 100%;
  }
}
.gui-input-celllabel {
  width: calc(40% - var(--spacer) * 2 / 2);
}
@media screen and (max-width: 440px) {
  .gui-input-celllabel {
    width: 100%;
  }
}
.gui-input-cellfield {
  width: calc(60% - var(--spacer) * 2 / 2);
}
@media screen and (max-width: 440px) {
  .gui-input-cellfield {
    width: 100%;
  }
}
.gui-input-cells-base {
  gap: calc(var(--spacer) * 1) !important;
}
.gui-input-cells-base .gui-input-cell {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gui-input-cells-base .gui-input-cell50 {
  width: calc(50% - var(--spacer) * 1 / 2) !important;
}
@media screen and (max-width: 440px) {
  .gui-input-cells-base .gui-input-cell50 {
    width: 100%;
  }
}
.gui-input-cells-base .gui-input-celllabel {
  width: calc(40% - var(--spacer) * 1 / 2) !important;
}
@media screen and (max-width: 440px) {
  .gui-input-cells-base .gui-input-celllabel {
    width: 100%;
  }
}
.gui-input-cells-base .gui-input-cellfield {
  width: calc(60% - var(--spacer) * 1 / 2) !important;
}
@media screen and (max-width: 440px) {
  .gui-input-cells-base .gui-input-cellfield {
    width: 100%;
  }
}
.gui-input-inline > label {
  flex: 0 0 auto;
  padding-right: calc(var(--spacer) * 1);
}
.gui-input-inline > div {
  flex: 1 1 auto;
}
.gui-input-trn input, .gui-input-trn select, .gui-input-trn textarea {
  border: none;
  background-color: transparent;
}
.gui-input-trn-line input, .gui-input-trn-line select, .gui-input-trn-line textarea {
  background-color: transparent !important;
  background: none !important;
  color: white !important;
}
.gui-input-centered {
  align-self: center;
  justify-self: center;
}
.gui-input-icon {
  position: absolute;
  height: 100%;
  width: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #999999;
}
.gui-input-icon-left {
  top: 0;
  left: 0;
}
.gui-input-icon-right {
  top: 0;
  right: 0;
}
.gui-input-icon svg {
  width: 16px;
  height: 16px;
}
.gui-input-label-right {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  height: 44px;
  font-size: 14px;
  color: #999999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-right: 12px;
}
.gui-input-with-left-icon input {
  padding-left: 44px !important;
}
.gui-input-with-left-icon select {
  padding-left: 44px !important;
}
.gui-input-with-right-icon input {
  padding-right: 44px !important;
}
.gui-input-with-right-icon select {
  padding-right: 44px !important;
}
.gui-input-inline-submit {
  width: 40px;
  height: 40px;
  border-radius: var(--fieldBorderRadius);
  top: 2px;
  right: 2px;
  opacity: 0;
  background-color: var(--primaryColor);
  color: var(--primaryText);
}
.gui-input-inline-submit svg {
  width: 20px;
  height: 20px;
}
.gui-input-active {
  opacity: 1;
}
.gui-avatar {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  height: 44px;
  width: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.gui-avatar-initials {
  background-color: var(--primaryColor);
  color: var(--primaryText);
}
.gui-avatar span {
  flex: 0 0 auto;
  color: var(--primaryText);
  font-size: 1rem;
}
.gui-tiles {
  display: flex;
  flex-direction: row;
  gap: var(--tileSpacing);
}
.gui-tile {
  flex: 0 0 auto;
  box-shadow: var(--tileBoxShadow);
  border-radius: var(--tileBorderRadius);
  background-color: white;
  overflow: hidden;
}
.gui-tile-hero {
  flex: 0 0 auto;
  width: 100%;
  padding: 37.5%;
  position: relative;
  overflow: hidden;
}
.gui-tile-info {
  flex: 1 1 auto;
  padding: calc(var(--spacer) * 2);
}
.gui-tile-info h3 {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  margin: 0;
}
.gui-tile-info span {
  display: block;
  font-size: 1rem;
}
.gui-tile-info h3 + span {
  padding-top: calc(var(--spacer) * 1);
}
.gui-tile-footer {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  padding: 0 calc(var(--spacer) * 2) calc(var(--spacer) * 2) calc(var(--spacer) * 2);
}
.gui-full {
  height: 100%;
  width: 100%;
}
.gui-sidebar {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}
.gui-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.gui-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}
.gui-flex-panel-header h2 {
  line-height: 44px;
  padding-left: calc(var(--spacer) * 2);
}
.gui-flex-body {
  overflow: hidden;
}
.gui-flex-row {
  display: flex;
  flex-direction: row;
}
.gui-flex-row-align-middle {
  align-items: center;
}
.gui-flex-row-align-center {
  justify-content: center;
}
.gui-flex-row-align-top {
  justify-content: flex-start;
}
.gui-flex-row-align-bottom {
  justify-content: flex-end;
}
.gui-flex-column {
  display: flex;
  flex-direction: column;
}
.gui-flex-column > .gui-flex-col {
  width: 100%;
}
.gui-flex-column-align-middle {
  justify-content: center;
}
.gui-flex-column-align-center {
  align-items: center;
}
.gui-flex-column-align-top {
  align-items: flex-start;
}
.gui-flex-column-align-bottom {
  align-items: flex-end;
}
.gui-flex-column > .flex-col {
  width: 100%;
}
.gui-flex-responsive {
  display: flex;
  flex-direction: row;
}
.gui-flex-responsive-align-middle {
  align-items: center;
}
.gui-flex-responsive-align-center {
  justify-content: center;
}
@media screen and (max-width: 440px) {
  .gui-flex-responsive {
    flex-direction: column;
  }
}
.gui-flex-col {
  flex: 0 0 auto;
}
.gui-flex-col iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.gui-flex-col-stretch {
  flex: 1 1 auto;
  overflow: hidden;
}
.gui-flex-col-stretch-noov {
  flex: 1 1 auto;
}
.gui-flex-col-half {
  width: 4.1666666667%;
}
.gui-flex-col-1 {
  width: 8.3333333333%;
}
.gui-flex-col-2 {
  width: 16.6666666667%;
}
.gui-flex-col-3 {
  width: 25%;
}
.gui-flex-col-4 {
  width: 33.3333333333%;
}
.gui-flex-col-5 {
  width: 41.6666666667%;
}
.gui-flex-col-6 {
  width: 50%;
}
.gui-flex-col-7 {
  width: 58.3333333333%;
}
.gui-flex-col-8 {
  width: 66.6666666667%;
}
.gui-flex-col-9 {
  width: 75%;
}
.gui-flex-col-10 {
  width: 83.3333333333%;
}
.gui-flex-col-11 {
  width: 91.6666666667%;
}
.gui-flex-col-12 {
  width: 100%;
}
.gui-flex-gap-base {
  gap: calc(var(--spacer) * 1);
}
.gui-flex-gap-base .gui-flex-col-1 {
  width: calc((100% - 0 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-2 {
  width: calc((200% - 1 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-3 {
  width: calc((300% - 2 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-4 {
  width: calc((400% - 3 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-5 {
  width: calc((500% - 4 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-6 {
  width: calc((600% - 5 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-7 {
  width: calc((700% - 6 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-8 {
  width: calc((800% - 7 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-9 {
  width: calc((900% - 8 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-10 {
  width: calc((1000% - 9 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-11 {
  width: calc((1100% - 10 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-base .gui-flex-col-12 {
  width: calc((1200% - 11 * var(--spacer) * 1) / 12);
}
.gui-flex-gap-lg {
  gap: calc(var(--spacer) * 1.5);
}
.gui-flex-gap-lg .gui-flex-col-1 {
  width: calc((100% - 0 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-2 {
  width: calc((200% - 1 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-3 {
  width: calc((300% - 2 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-4 {
  width: calc((400% - 3 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-5 {
  width: calc((500% - 4 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-6 {
  width: calc((600% - 5 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-7 {
  width: calc((700% - 6 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-8 {
  width: calc((800% - 7 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-9 {
  width: calc((900% - 8 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-10 {
  width: calc((1000% - 9 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-11 {
  width: calc((1100% - 10 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-lg .gui-flex-col-12 {
  width: calc((1200% - 11 * var(--spacer) * 1.5) / 12);
}
.gui-flex-gap-sm {
  gap: calc(var(--spacer) * 0.75);
}
.gui-flex-gap-sm .gui-flex-col-1 {
  width: calc((100% - 0 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-2 {
  width: calc((200% - 1 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-3 {
  width: calc((300% - 2 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-4 {
  width: calc((400% - 3 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-5 {
  width: calc((500% - 4 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-6 {
  width: calc((600% - 5 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-7 {
  width: calc((700% - 6 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-8 {
  width: calc((800% - 7 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-9 {
  width: calc((900% - 8 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-10 {
  width: calc((1000% - 9 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-11 {
  width: calc((1100% - 10 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-sm .gui-flex-col-12 {
  width: calc((1200% - 11 * var(--spacer) * 0.75) / 12);
}
.gui-flex-gap-xl {
  gap: calc(var(--spacer) * 2);
}
.gui-flex-gap-xl .gui-flex-col-1 {
  width: calc((100% - 0 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-2 {
  width: calc((200% - 1 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-3 {
  width: calc((300% - 2 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-4 {
  width: calc((400% - 3 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-5 {
  width: calc((500% - 4 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-6 {
  width: calc((600% - 5 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-7 {
  width: calc((700% - 6 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-8 {
  width: calc((800% - 7 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-9 {
  width: calc((900% - 8 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-10 {
  width: calc((1000% - 9 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-11 {
  width: calc((1100% - 10 * var(--spacer) * 2) / 12);
}
.gui-flex-gap-xl .gui-flex-col-12 {
  width: calc((1200% - 11 * var(--spacer) * 2) / 12);
}
.gui-flex-body-v {
  overflow-y: auto;
  padding: calc(var(--spacer) * 2);
  width: 100%;
}
.gui-flex-wrap {
  flex-wrap: wrap;
}
.gui-flex-height-full {
  height: 100%;
}
.gui-flex-width-full {
  width: 100%;
}
.gui-flex-height-fh {
  height: 100vh;
}
.gui-flex-width-fw {
  width: 100vw;
}
.gui-carousel-container {
  display: block;
  position: absolute !important;
  width: 100%;
  height: 100%;
  top: 0 !important;
  left: 0 !important;
}
.gui-carousel-photo {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  transition: all 0.5s ease;
}
.gui-carousel-hide-left {
  left: -100%;
  right: 100%;
}
.gui-carousel-hide-right {
  left: 100%;
  right: -100%;
}
.gui-carousel-arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, 0);
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}
.gui-carousel-arrow svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}
.gui-carousel-arrow-left {
  left: 24px;
}
.gui-carousel-arrow-right {
  left: calc(100% - 24px);
}
.gui-carousel-badge {
  display: block;
  position: absolute;
  bottom: calc(var(--spacer) * 1);
  right: calc(var(--spacer) * 1);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 0.675rem;
}
.gui-dd-dropdown {
  display: flex;
  flex-direction: column;
  position: absolute;
  max-width: 100vw;
  background-color: white;
  border-radius: var(--fieldBorderRadius);
  top: calc(100% + 1px);
  z-index: 1000;
  box-sizing: border-box;
  transition: all 0.3s ease;
  transform: scale3d(0, 0, 0);
  overflow: hidden;
  opacity: 0.5;
}
@media screen and (max-width: 440px) {
  .gui-dd-dropdown {
    max-width: 100vw;
  }
}
.gui-dd-right {
  right: 0;
  transform-origin: top right;
}
.gui-dd-left {
  left: 0;
  transform-origin: 0 0;
}
.gui-dd-ta {
  transform: scale(1, 0);
  transform-origin: top;
  left: 0;
  right: 0;
  top: calc(100% + 1px);
}
.gui-dd-show {
  transform: scale3d(1, 1, 1);
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
  opacity: 1;
}
.gui-dd-ta.show {
  transform: scale(1, 1);
}
.gui-dd-body {
  flex: 1 1 auto;
  overflow-y: auto;
}
.gui-dd-body form {
  height: 100%;
}
.gui-dd-typeahead {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gui-dd-typeahead > li {
  display: block;
  line-height: 36px;
  border-bottom: 1px solid #EEEEEE;
}
.gui-dd-typeahead > li:hover {
  background-color: #EEEEEE;
}
.gui-dd-typeahead > li * {
  line-height: 36px;
  padding-left: calc(var(--spacer) * 1);
  padding-right: calc(var(--spacer) * 1);
}
.gui-dd-padded {
  padding: 0;
}
.gui-lr-rows {
  display: flex;
  flex-direction: column;
}
.gui-lr-row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #DDD;
  text-align: left;
  width: 100%;
  position: relative;
}
.gui-lr-row > span {
  flex: 1 1 auto;
}
.gui-lr-row > div {
  flex: 0 0 auto;
}
.gui-lr-row_cell {
  flex: 0 0 auto;
  text-align: left;
}
.gui-lr-row_cell_stretch {
  flex: 1 1 auto;
}
.gui-lr-row > * {
  padding: calc(var(--spacer) * 1.25) calc(var(--spacer) * 1.25) calc(var(--spacer) * 1.25) 0;
}
.gui-lr-row > *:first-child {
  padding-left: calc(var(--spacer) * 1.25);
}
.gui-lr-row_img {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
}
.gui-lr-row-badge {
  position: absolute;
  display: block;
  border-bottom: 12px solid #DD0000;
  border-right: 12px solid #DD0000;
  border-top: 12px solid transparent;
  border-left: 12px solid transparent;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}
.gui-lr-row-tiles {
  gap: calc(var(--spacer) * 1.25);
}
.gui-lr-row-tiles .gui-lr-row {
  border-radius: var(--tileBorderRadius);
  overflow: hidden;
  border: 0;
  background-color: rgba(0, 0, 0, 0.05);
}
.gui-lr-row-section {
  background-color: #F5F5F5;
}
.gui-lr-row-section > div {
  font-size: 0.775rem;
  padding: calc(var(--spacer) * 1) calc(var(--spacer) * 1.25) calc(var(--spacer) * 1) calc(var(--spacer) * 1.25);
}
.gui-header-top {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  z-index: 10;
  gap: calc(var(--spacer) * 2);
  box-sizing: border-box;
}
.gui-header-top > div {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(var(--spacer) * 2);
}
.gui-header-top > div:first-of-type {
  padding-left: calc(var(--spacer) * 2);
  padding-right: calc(var(--spacer) * 1);
}
.gui-header-top > div:last-of-type {
  padding-right: calc(var(--spacer) * 2);
}
.gui-header-top > div > div {
  flex: 0 0 auto;
}
.gui-header-top > div svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.gui-header-top > span {
  flex: 1 1 auto;
}
.gui-header-top a, .gui-header-top button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  font-size: 14px;
  font-weight: 700;
  color: var(--headerText);
  line-height: 36px;
}
.gui-header-top a > span, .gui-header-top button > span {
  color: var(--headerText);
}
.gui-header-top a > span + svg, .gui-header-top button > span + svg {
  margin-left: 3px;
}
.gui-pill-c {
  display: inline-block;
  vertical-align: top;
}
.gui-pill {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  border-radius: calc(var(--tileBorderRadius) / 3);
  border: 1px solid #000000;
  color: white;
  gap: calc(var(--spacer) * 0.75);
  font-size: 12px !important;
  position: relative;
}
.gui-pill > div, .gui-pill span {
  flex: 0 0 auto;
  color: white;
  font-size: 12px !important;
}
.gui-pill > div:first-of-type, .gui-pill span:first-of-type {
  padding-left: calc(var(--spacer) * 0.75);
}
.gui-pill > div:last-of-type, .gui-pill span:last-of-type {
  padding-right: calc(var(--spacer) * 0.75);
}
.gui-pill-primary {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--primaryText);
}
.gui-pill-secondary {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  color: var(--secondaryText);
}
.gui-pill-yellow {
  background-color: var(--lightYellow, var(--colorYellow));
  border-color: var(--lightYellow, var(--colorYellow));
  color: #000000;
}
.gui-pill-green {
  background-color: var(--greenColor, var(--colorGreen));
  border-color: var(--greenColor, var(--colorGreen));
}
.gui-pill-red {
  background-color: var(--redColor, var(--colorRed));
  border-color: var(--redColor, var(--colorRed));
}
.gui-pill-orange {
  background-color: var(--orangeColor, var(--colorOrange));
  border-color: var(--orangeColor, var(--colorOrange));
}
.gui-pill-cyan {
  background-color: var(--colorCyan);
  border-color: var(--colorCyan);
}
.gui-pill-purple {
  background-color: var(--purpleColor, var(--colorPurple));
  border-color: var(--purpleColor, var(--colorPurple));
}
.gui-pill-white {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}
.gui-pill-black {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
.gui-pill-blue {
  background-color: var(--blueColor, var(--colorBlue));
  border-color: var(--blueColor, var(--colorBlue));
}
.gui-pill-gray {
  background-color: var(--grayColor, var(--colorGray));
  border-color: var(--grayColor, var(--colorGray));
}
.gui-pill-primary-line {
  color: var(--primaryColor);
  background-color: white;
  border-color: var(--primaryColor);
}
.gui-pill-primary-line > div, .gui-pill-primary-line span {
  color: var(--primaryColor);
}
.gui-pill-secondary-line {
  color: var(--secondaryColor);
  background-color: white;
  border-color: var(--secondaryColor);
}
.gui-pill-secondary-line > div, .gui-pill-secondary-line span {
  color: var(--secondaryColor);
}
.gui-pill-yellow-line {
  color: var(--lightYellow, var(--colorYellow));
  background-color: white;
  border-color: var(--lightYellow, var(--colorYellow));
}
.gui-pill-yellow-line > div, .gui-pill-yellow-line span {
  color: var(--lightYellow, var(--colorYellow));
}
.gui-pill-green-line {
  color: var(--greenColor, var(--colorGreen));
  background-color: white;
  border-color: var(--greenColor, var(--colorGreen));
}
.gui-pill-green-line > div, .gui-pill-green-line span {
  color: var(--greenColor, var(--colorGreen));
}
.gui-pill-red-line {
  color: var(--redColor, var(--colorRed));
  background-color: white;
  border-color: var(--redColor, var(--colorRed));
}
.gui-pill-red-line > div, .gui-pill-red-line span {
  color: var(--redColor, var(--colorRed));
}
.gui-pill-orange-line {
  color: var(--orangeColor, var(--colorOrange));
  background-color: white;
  border-color: var(--orangeColor, var(--colorOrange));
}
.gui-pill-orange-line > div, .gui-pill-orange-line span {
  color: var(--orangeColor, var(--colorOrange));
}
.gui-pill-cyan-line {
  color: var(--colorCyan);
  background-color: white;
  border-color: var(--colorCyan);
}
.gui-pill-cyan-line > div, .gui-pill-cyan-line span {
  color: var(--colorCyan);
}
.gui-pill-purple-line {
  color: var(--purpleColor, var(--colorPurple));
  border-color: var(--purpleColor, var(--colorPurple));
  background-color: white;
}
.gui-pill-purple-line > div, .gui-pill-purple-line span {
  color: var(--purpleColor, var(--colorPurple));
}
.gui-pill-white-line {
  color: #FFFFFF;
  border-color: #FFFFFF;
  background-color: transparent;
}
.gui-pill-white-line > div, .gui-pill-white-line span {
  color: #FFFFFF;
}
.gui-pill-black-line {
  color: #000000;
  border-color: #000000;
  background-color: white;
}
.gui-pill-black-line > div, .gui-pill-black-line span {
  color: #000000;
}
.gui-pill-blue-line {
  color: var(--blueColor, var(--colorBlue));
  border-color: var(--blueColor, var(--colorBlue));
  background-color: white;
}
.gui-pill-blue-line > div, .gui-pill-blue-line span {
  color: var(--blueColor, var(--colorBlue));
}
.gui-pill-gray-line {
  color: var(--grayColor, var(--colorGray));
  border-color: var(--grayColor, var(--colorGray));
  background-color: white;
}
.gui-pill-gray-line > div, .gui-pill-gray-line span {
  color: var(--grayColor, var(--colorGray));
}
.gui-pill-lg {
  min-height: 32px;
  font-size: 14px;
}
.gui-pill-lg > div, .gui-pill-lg span {
  font-size: 14px !important;
}
.gui-pill-lg > div:first-of-type, .gui-pill-lg span:first-of-type {
  padding-left: calc(var(--spacer) * 1);
}
.gui-pill-lg > div:last-of-type, .gui-pill-lg span:last-of-type {
  padding-right: calc(var(--spacer) * 1);
}
.gui-pill-xl {
  min-height: 44px;
}
.gui-pill-xl > div, .gui-pill-xl span {
  font-size: 16px !important;
}
.gui-pill-xl > div:first-of-type, .gui-pill-xl span:first-of-type {
  padding-left: calc(var(--spacer) * 1.5);
}
.gui-pill-xl > div:last-of-type, .gui-pill-xl span:last-of-type {
  padding-right: calc(var(--spacer) * 1.5);
}
.gui-pill svg {
  display: block;
  height: 16px;
  width: 16px;
}
.gui-popup-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease;
}
.gui-popup-container-show {
  z-index: 100;
  opacity: 1;
}
@media screen and (max-width: 440px) {
  .gui-popup-container {
    justify-content: flex-end !important;
  }
}
.gui-popup {
  flex: 0 0 auto;
  display: block;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-width: 420px;
  min-height: 100px;
  max-height: calc(100vh - 48px);
  max-width: calc(100vw - 48px);
  margin-bottom: -100%;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 100;
}
@media screen and (max-width: 440px) {
  .gui-popup {
    opacity: 1 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    height: calc(100vh - 48px) !important;
    top: unset;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
}
.gui-popup-show {
  margin-bottom: 0;
  opacity: 1;
}
.gui-popup-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.gui-popup-inner form {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}
.gui-popup-backdrop {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
.gui-popup-backdrop-show {
  display: block;
  opacity: 1;
  z-index: 98;
}
.gui-popup-close {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #999999;
  cursor: pointer;
  margin-right: calc(var(--spacer) * 1);
}
.gui-popup-close > span {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.gui-popup-close svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}
.gui-popup-close-float {
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  border-radius: 100%;
  margin-right: 0;
}
.gui-popup-header {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  height: 64px;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--borderColor);
}
.gui-popup-header h2 {
  flex: 1 1 auto;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0;
  margin: 0;
  padding-left: calc(var(--spacer) * 2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gui-popup:has(.gui-popup-header) .gui-popup-close-float {
  display: none;
}
.gui-popup-body {
  flex: 1 1 auto;
  display: block;
  padding: calc(var(--spacer) * 2);
  overflow-y: auto;
}
.gui-popup-footer {
  flex: 0 0 auto;
  display: block;
  padding: calc(var(--spacer) * 1) calc(var(--spacer) * 2);
  border-top: 1px solid var(--borderColor);
}
.gui-popup-slideout {
  position: fixed;
  display: block;
  height: 100vh;
  top: 0;
  bottom: 0;
  right: -100%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 100vw !important;
}
.gui-popup-slideout-show {
  z-index: 99;
  opacity: 1;
  right: 0;
}
.gui-popup-slideout-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.gui-popup-slideout-inner form {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}
.gui-pb {
  flex: 0 0 auto;
  display: block;
  position: relative;
  border-radius: var(--fieldBorderRadius, 9999999px);
  background-color: #DDDDDD;
}
.gui-pb-b {
  display: block;
  height: 100%;
  transition: all 0.5s ease;
  border-radius: var(--fieldBorderRadius, 9999999px);
}
.gui-pb-primary {
  background-color: var(--primaryColor);
  color: var(--primaryText);
}
.gui-pb-secondary {
  background-color: var(--secondaryColor);
  color: var(--secondaryText);
}
.gui-pb-yellow {
  background-color: var(--lightYellow, var(--colorYellow));
  color: #000000;
}
.gui-pb-green {
  background-color: var(--greenColor, var(--colorGreen));
}
.gui-pb-red {
  background-color: var(--redColor, var(--colorRed));
}
.gui-pb-orange {
  background-color: var(--orangeColor, var(--colorOrange));
}
.gui-pb-cyan {
  background-color: var(--colorCyan);
}
.gui-pb-purple {
  background-color: var(--purpleColor, var(--colorPurple));
}
.gui-pb-white {
  background-color: #FFFFFF;
  color: #000000;
}
.gui-pb-black {
  background-color: #000000;
  color: #FFFFFF;
}
.gui-pb-blue {
  background-color: var(--blueColor, var(--colorBlue));
}
.gui-pb-gray {
  background-color: var(--grayColor, var(--colorGray));
}
.gui-pb svg {
  display: block;
  height: 16px;
  width: 16px;
}
.gui-table {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-x: auto;
  width: 100%;
  position: relative;
}
.gui-table .gui-table_row:hover {
  background-color: var(--tableRowHoverColor, #F5F5F5) !important;
  color: var(--tableRowHoverText, #000000) !important;
}
.gui-table_header {
  flex: 0 0 auto;
}
.gui-table_header h3 {
  font-size: 14px;
  padding: 0;
  margin: 0;
}
.gui-table_header .gui-table_row:hover {
  background-color: white !important;
  color: #000000 !important;
}
.gui-table_filters {
  flex: 0 0 auto;
  height: auto;
}
.gui-table_filters .gui-table_row:hover {
  background-color: white !important;
  color: #000000 !important;
}
.gui-table_body {
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.gui-table_body_padded {
  padding: calc(var(--spacer) * 2);
}
.gui-table_main {
  flex: 1 1 auto;
  position: relative;
  width: auto;
  overflow: auto;
}
.gui-table_cont {
  display: flex;
  flex-direction: column;
  width: auto;
  height: 100%;
}
.gui-table_cont .gui-table_header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1;
}
.gui-table_cont .gui-table_body {
  display: block;
  position: relative;
  overflow-y: initial;
  overflow-x: initial;
}
.gui-table_row_wrapper {
  display: block;
  border-bottom: 1px solid #DDD;
  min-width: 100%;
  position: relative;
}
.gui-table_row_wrapper .gui-table_cell:first-child {
  padding-left: calc(var(--spacer) * 1.5);
}
.gui-table_row {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: flex-start;
  text-align: left;
  position: relative;
}
.gui-table_align_middle {
  align-items: center;
}
.gui-table_section {
  background-color: #F5F5F5;
  font-size: 0.675rem;
}
.gui-table_cell {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--spacer) * 1.25);
  padding-bottom: calc(var(--spacer) * 1.25);
  padding-right: calc(var(--spacer) * 1.5);
  text-align: left;
  font-size: 1rem;
  background-color: transparent !important;
}
.gui-table_cell button:has(svg) {
  appearance: none;
  border: 0;
}
.gui-table_footer {
  flex: 0 0 auto;
  border-top: 1px solid #DDDDDD;
  padding-top: calc(var(--spacer) * 1.25);
  padding-bottom: calc(var(--spacer) * 1.25);
  padding-left: calc(var(--spacer) * 1.5);
  padding-right: calc(var(--spacer) * 1.5);
}
.gui-table_footer:has(.gui-table_row) {
  padding: 0 0 0 0;
}
.gui-table_footer .gui-table_row {
  border-bottom: 0;
}
.gui-table-cell_stretch {
  flex: 1 1 auto;
}
.guitable-cell_half {
  width: 4.1666666667%;
}
.gui-table-cell_1 {
  width: 8.3333333333%;
}
.gui-table-cell_2 {
  width: 16.6666666667%;
}
.gui-table-cell_3 {
  width: 25%;
}
.gui-table-cell_4 {
  width: 33.3333333333%;
}
.gui-table-cell_5 {
  width: 41.6666666667%;
}
.gui-table-cell_6 {
  width: 50%;
}
.gui-table-cell_7 {
  width: 58.3333333333%;
}
.gui-table-cell_8 {
  width: 66.6666666667%;
}
.gui-table-cell_9 {
  width: 75%;
}
.gui-table-cell_10 {
  width: 83.3333333333%;
}
.gui-table-cell_11 {
  width: 91.6666666667%;
}
.gui-table-cell_12 {
  width: 100%;
}
.gui-table-icon {
  flex: 0 0 auto;
  height: 24px !important;
  width: 24px !important;
  color: #777777 !important;
}
.gui-table-icon svg {
  height: 16px !important;
  width: 16px !important;
}
.gui-simple-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.gui-simple-item {
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  padding-left: calc(var(--spacer) * 1.5);
  padding-right: calc(var(--spacer) * 1.5);
  padding-top: calc(var(--spacer) * 1);
  padding-bottom: calc(var(--spacer) * 1.5);
  position: relative;
}
.gui-simple-item label {
  display: block;
  color: var(--primaryText);
}
.gui-simple-bar {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 5px;
  background-color: var(--primaryColor);
  transition: all 0.5s ease;
}
.gui-simple-selected {
  left: 0;
  width: 100%;
}
.gui-toast-container {
  display: block;
  position: fixed;
  z-index: 2147483640;
}
.gui-toast-top {
  top: 44px;
}
.gui-toast-bottom {
  bottom: 44px;
}
.gui-toast-right {
  right: 44px;
}
.gui-toast-left {
  left: 44px;
}
.gui-toast {
  display: block;
  position: absolute;
  transition: all 0.5s ease;
}
.gui-toast > div {
  display: block;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--tileBorderRadius);
}
.gui-toast:nth-child(2) {
  top: calc(1 * 4px);
}
.gui-toast:nth-child(3) {
  top: calc(2 * 4px);
}
.gui-toast:nth-child(4) {
  top: calc(3 * 4px);
}
.gui-toast:nth-child(5) {
  top: calc(4 * 4px);
}
.gui-toast:nth-child(6) {
  top: calc(5 * 4px);
}
.gui-toast:nth-child(7) {
  top: calc(6 * 4px);
}
.gui-toast:nth-child(8) {
  top: calc(7 * 4px);
}
.gui-toast:nth-child(9) {
  top: calc(8 * 4px);
}
.gui-toast:nth-child(10) {
  top: calc(9 * 4px);
}
.gui-toast:nth-child(11) {
  top: calc(10 * 4px);
}
.gui-toast:nth-child(12) {
  top: calc(11 * 4px);
}
.gui-toast:nth-child(13) {
  top: calc(12 * 4px);
}
.gui-toast:nth-child(14) {
  top: calc(13 * 4px);
}
.gui-toast:nth-child(15) {
  top: calc(14 * 4px);
}
.gui-toast:nth-child(16) {
  top: calc(15 * 4px);
}
.gui-toast:nth-child(17) {
  top: calc(16 * 4px);
}
.gui-toast:nth-child(18) {
  top: calc(17 * 4px);
}
.gui-toast:nth-child(19) {
  top: calc(18 * 4px);
}
.gui-toast:nth-child(20) {
  top: calc(19 * 4px);
}
.gui-toast:nth-child(21) {
  top: calc(20 * 4px);
}
.gui-toast:nth-child(22) {
  top: calc(21 * 4px);
}
.gui-toast:nth-child(23) {
  top: calc(22 * 4px);
}
.gui-toast:nth-child(24) {
  top: calc(23 * 4px);
}
.gui-toast:nth-child(25) {
  top: calc(24 * 4px);
}
.gui-toast:nth-child(26) {
  top: calc(25 * 4px);
}
.gui-toast:nth-child(27) {
  top: calc(26 * 4px);
}
.gui-toast:nth-child(28) {
  top: calc(27 * 4px);
}
.gui-toast:nth-child(29) {
  top: calc(28 * 4px);
}
.gui-toast:nth-child(30) {
  top: calc(29 * 4px);
}
.gui-toast:nth-child(31) {
  top: calc(30 * 4px);
}
.gui-toast:nth-child(32) {
  top: calc(31 * 4px);
}
.gui-toast:nth-child(33) {
  top: calc(32 * 4px);
}
.gui-toast:nth-child(34) {
  top: calc(33 * 4px);
}
.gui-toast:nth-child(35) {
  top: calc(34 * 4px);
}
.gui-toast:nth-child(36) {
  top: calc(35 * 4px);
}
.gui-toast:nth-child(37) {
  top: calc(36 * 4px);
}
.gui-toast:nth-child(38) {
  top: calc(37 * 4px);
}
.gui-toast:nth-child(39) {
  top: calc(38 * 4px);
}
.gui-toast:nth-child(40) {
  top: calc(39 * 4px);
}
.gui-toast:nth-child(41) {
  top: calc(40 * 4px);
}
.gui-toast:nth-child(42) {
  top: calc(41 * 4px);
}
.gui-toast:nth-child(43) {
  top: calc(42 * 4px);
}
.gui-toast:nth-child(44) {
  top: calc(43 * 4px);
}
.gui-toast:nth-child(45) {
  top: calc(44 * 4px);
}
.gui-toast:nth-child(46) {
  top: calc(45 * 4px);
}
.gui-toast:nth-child(47) {
  top: calc(46 * 4px);
}
.gui-toast:nth-child(48) {
  top: calc(47 * 4px);
}
.gui-toast:nth-child(49) {
  top: calc(48 * 4px);
}
.gui-toast:nth-child(50) {
  top: calc(49 * 4px);
}
.gui-toast:nth-child(51) {
  top: calc(50 * 4px);
}
.gui-toast-placeholder {
  position: relative;
  height: 0;
  overflow: hidden;
}
.gui-right-toast {
  animation: toastInRight 0.5s both;
  right: 0;
}
.gui-right-toast-hide {
  animation: toastOutRight 0.5s both;
  right: -140%;
}
@keyframes toastInRight {
  0% {
    right: -140%;
  }
  100% {
    right: 0;
  }
}
@keyframes toastOutRight {
  0% {
    right: 0;
  }
  100% {
    right: -140%;
  }
}
.gui-banner {
  flex: 0 0 auto;
  display: block;
  padding: calc(var(--spacer) * 2);
  border-radius: var(--fieldBorderRadius);
  overflow: hidden;
}
.gui-banner-rows {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacer) * 1);
}
.gui-banner-inner {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  gap: calc(var(--spacer) * 1);
}
.gui-banner-inner > div {
  flex: 0 0 auto;
}
.gui-banner-inner > span {
  flex: 1 1 auto;
}
.gui-banner-icon {
  width: 24px;
  height: 24px;
}
.gui-banner-icon svg {
  width: 100%;
  height: 100%;
}
.gui-banner-primary {
  background-color: var(--primaryColor);
  color: var(--primaryText);
}
.gui-banner-secondary {
  background-color: var(--secondaryColor);
  color: var(--secondaryText);
}
.gui-banner-yellow {
  background-color: var(--lightYellow, var(--colorYellow));
  color: #000000;
}
.gui-banner-green {
  background-color: var(--greenColor, var(--colorGreen));
}
.gui-banner-red {
  background-color: var(--redColor, var(--colorRed));
}
.gui-banner-orange {
  background-color: var(--orangeColor, var(--colorOrange));
}
.gui-banner-cyan {
  background-color: var(--colorCyan);
}
.gui-banner-purple {
  background-color: var(--orangeColor, var(--colorOrange));
}
.gui-banner-white {
  background-color: #FFFFFF;
  color: #000000;
}
.gui-banner-black {
  background-color: #000000;
  color: #FFFFFF;
}
.gui-banner-blue {
  background-color: var(--blueColor, var(--colorBlue));
}
.gui-banner-gray {
  background-color: var(--grayColor, var(--colorGray));
}
.gui-tooltip {
  position: relative;
  display: block;
}
.gui-tooltip-tip {
  display: none;
  position: fixed;
  transform: translateX(-50%);
  background-color: black;
  color: white !important;
  font-size: 12px;
  text-align: center;
  padding: 6px 8px;
  border-radius: 4px;
  z-index: 2147483647;
}
.gui-tooltip-tip::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: black transparent transparent transparent;
}
.gui-tooltip-tip-bottom {
  bottom: unset;
  top: calc(100% + 6px);
}
.gui-tooltip-tip-bottom::before {
  bottom: 100%;
  top: unset;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent black transparent;
}
.gui-tooltip:hover .gui-tooltip-tip {
  display: block;
}

/*# sourceMappingURL=styles.css.map */
