@font-face {
  font-family: 'Segoe UI';
  src: url(fonts/SegoeUI-Regular.ttf) format('truetype');
  font-style: normal;
}
@font-face {
  font-family: 'Segoe UI Semibold';
  src: url(fonts/SegoeUI-Semibold.ttf) format('truetype');
  font-style: normal;
}
@font-face {
  font-family: 'Segoe UI Bold';
  src: url(fonts/SegoeUI-Bold.ttf) format('truetype');
  font-style: normal;
}

body {
  --fluent2-background-color: #fff;
  --mixing-color-light: #fff;
  --mixing-color-dark: #000;
  --fluent2-brand-color: #0082dc;
  --fluent2-text-color: color-mix(in srgb, var(--mixing-color-dark) 87%, var(--mixing-color-light));
  --fluent2-title-color: var(--fluent2-text-color);
  --fluent2-text2-color: color-mix(in srgb, var(--mixing-color-dark) 74%, var(--mixing-color-light));
  --fluent2-divider-color: color-mix(in srgb, var(--mixing-color-light) 79%, var(--mixing-color-dark));
  --fluent2-brand-hover-color: color-mix(in srgb, var(--fluent2-brand-color) 90%, var(--mixing-color-dark));
  --fluent2-brand-hover-background-color: color-mix(in srgb, var(--fluent2-brand-color) 10%, var(--mixing-color-light));
  --fluent2-brand-pressed-background-color: color-mix(in srgb, var(--fluent2-brand-hover-background-color) 80%, var(--mixing-color-dark));
  --fluent2-neutral-hover-color: var(--fluent2-text-color);
  --fluent2-neutral-hover-background-color: color-mix(in srgb, var(--mixing-color-light) 96%, var(--mixing-color-dark));
  --fluent2-neutral-pressed-background-color: color-mix(in srgb, var(--fluent2-neutral-hover-background-color) 80%, var(--mixing-color-dark));
  --fluent2-neutral2-background-color: color-mix(in srgb, var(--mixing-color-light) 94%, var(--mixing-color-dark));
  --fluent2-neutral2-hover-color: var(--fluent2-text-color);
  --fluent2-neutral2-hover-background-color: color-mix(in srgb, var(--mixing-color-light) 90%, var(--mixing-color-dark));
  --fluent2-neutral2-pressed-background-color: color-mix(in srgb, var(--fluent2-neutral2-hover-background-color) 80%, var(--mixing-color-dark));
  --fluent2-card-padding: 16px;
  --fluent2-nav-bar-width: calc(200px + 2 * var(--fluent2-card-padding));
  --fluent2-nav-bar-vertical-spacing: 20px;
  --fluent2-font-weight-bold: 700;
  --fluent2-select-dropdown-padding: 4px;
  --fluent2-banner-height: 80px;
  --testit-online-menu-bar-height: 38px;
  --testit-online-menu-bar-margin-bottom: 16px;
  --fluent2-input-padding: 12px;
  --fluent2-input-addon-padding: calc(var(--fluent2-input-padding) / 2);
  --fluent2-form-vertical-spacing: 16px;
  --fluent2-form-horizontal-spacing: 32px;
  --fluent2-card-buttons-container-height: 48px;
  --fluent2-card-title-container-height: 34px;
}
*, *:before, *:after {
  box-sizing: border-box;
}
body.fluent_page {
  margin: 0px;
  padding: 0px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--fluent2-text-color);
}
body:has(.fluent_card.full_screen) #testit_banner {
  margin-bottom: 0px;
}
#testit_banner {
  width: 100%;
}

.fluent_card {
  box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.14);
  border-radius: 4px;
  padding: var(--fluent2-card-padding);
  background-color: var(--fluent2-background-color);
  line-height: 20px;
}
.fluent_card:has(> .fluent_sidebar_container) {
  display: flex;
  gap: 16px;
}
.fluent_card:has(> .fluent_sidebar_container) > div {
  flex-grow: 1;
}
.fluent_card:has(> .fluent_sidebar_container) > .fluent_sidebar_container {
  display: flex;
  flex-direction: column; 
  width: var(--fluent2-nav-bar-width);
  flex-grow: 0;
  border-right: 1px solid var(--fluent2-divider-color);
  gap: 16px;
}
.fluent_card:has(> .fluent_sidebar_container) > .fluent_sidebar_container > .fluent_sidebar {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: var(--fluent2-nav-bar-vertical-spacing);
  clip-path: polygon(calc(var(--fluent2-card-padding) * -1) 0, 100% 0, 100% 100%, calc(var(--fluent2-card-padding) * -1) 100%);
}
.fluent_sidebar_container:not(.fluent_init) > div {
  display: none !important;
}
.fluent_sidebar_container {
  backface-visibility: hidden;
  will-change: width;
  transform: translateZ(0);
}
.fluent_sidebar_container_panebar {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}
.fluent_sidebar_container_panebar > .fluent_sidebar {
  min-width: var(--fluent2-nav-bar-width);
  background-color: var(--fluent2-background-color);
  border-right: 1px solid var(--fluent2-divider-color);
  will-change: transform;
}
.fluent_sidebar_container_panebar > .fluent_sidebar.fluent_init:first-of-type {
  padding-top: calc(20px + var(--fluent2-card-padding));
}
.fluent_sidebar_container > .fluent_sidebar_container_togglebar {
  position: absolute;
  z-index: 1;
}
.fluent_sidebar > .fluent_sidebar_container_togglebar {
  padding-right: var(--fluent2-card-padding);
  justify-content: flex-end;
  padding-bottom: var(--fluent2-card-padding);
  padding-right: var(--fluent2-card-padding);
}
.fluent_sidebar_container_togglebar {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.fluent_sidebar_container_togglebar > div::before {
  content: " ";
  border-left: 1px solid var(--fluent2-divider-color);
  margin-right: 8px;
}
.fluent_sidebar_container_togglebar > div:first-child::before {
  content: "";
  border-left-width: 0px;
  margin-right: 0px;
}
.fluent_sidebar_toggle_icon {
  display: flex;
}
.fluent_sidebar_toggle_icon > svg {
  cursor: pointer;
}
.fluent_sidebar > .fluent_filter_bar {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: calc(var(--fluent2-nav-bar-width) - var(--fluent2-card-padding));
}
.fluent_sidebar > .fluent_nav_bar {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: calc(var(--fluent2-nav-bar-width) - var(--fluent2-card-padding));
}
.fluent_sidebar > .fluent_nav_bar > div {
  display: flex;
  padding: calc(var(--fluent2-nav-bar-vertical-spacing) / 2) 8px;
  border-radius: 4px;
  gap: 16px;
}
.fluent_sidebar > .fluent_nav_bar .fluent_nav_button svg {
  color: var(--fluent2-text-color);
}
.fluent_sidebar > .fluent_nav_bar .fluent_nav_button:not(.active) .fluent_nav_button_icon .icon_filled,
.fluent_sidebar > .fluent_nav_bar .fluent_nav_button.active .fluent_nav_button_icon .icon_outline {
  display: none;
}
.fluent_sidebar > .fluent_nav_bar .fluent_nav_button.active .fluent_nav_button_icon .icon_filled,
.fluent_sidebar > .fluent_nav_bar .fluent_nav_button:not(.active) .fluent_nav_button_icon .icon_outline {
  display: inline;
}
.fluent_sidebar > .fluent_nav_bar .fluent_nav_button.active .fluent_nav_button_icon .icon_filled {
  color: var(--fluent2-brand-color);
}
.fluent_sidebar:not(.inactive) > .fluent_nav_bar .fluent_nav_button.active::after {
  content: "";
  height: 20px;
  width: 4px;
  position: absolute;
  margin-inline-start: -16px;
  border-radius: 10000px;
  background-color: var(--fluent2-brand-color);
}
.fluent_sidebar > .fluent_nav_bar .fluent_nav_button.active .fluent_nav_button_text {
  font-family: 'Segoe UI Bold', sans-serif;
}
.fluent_sidebar > .fluent_nav_bar .fluent_nav_button,
.fluent_sidebar > .fluent_nav_bar .fluent_nav_menu {
  cursor: pointer;
}
.fluent_sidebar > .fluent_nav_bar .fluent_nav_button:hover,
.fluent_sidebar > .fluent_nav_bar .fluent_nav_menu:hover {
  background-color: var(--fluent2-brand-hover-background-color);
}
.fluent_sidebar_container + div {
    width: calc(100vw - var(--fluent2-nav-bar-width) - 16px - (2 * var(--fluent2-card-padding)));
}
.fluent_popup > .fluent_card {
  width: max-content;
  max-width: 100%;
  padding: 0px;
  box-shadow: none;
  border-radius: 0px;
}
.fluent_popup > .fluent_close_button {
  height: 0px;
  display: block;
  position: absolute;
  right: 0px;
  z-index: 2;
  padding-right: 14px;
}
.fluent_card_buttons {
  height: var(--fluent2-card-buttons-container-height);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
}
.fluent_close_button {
  color: var(--fluent2-text2-color);
  cursor: pointer;
}
.fluent_close_button::after {
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' fill='%23424242' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m4.09 4.22.06-.07a.5.5 0 0 1 .63-.06l.07.06L10 9.29l5.15-5.14a.5.5 0 0 1 .63-.06l.07.06c.18.17.2.44.06.63l-.06.07L10.71 10l5.14 5.15c.18.17.2.44.06.63l-.06.07a.5.5 0 0 1-.63.06l-.07-.06L10 10.71l-5.15 5.14a.5.5 0 0 1-.63.06l-.07-.06a.5.5 0 0 1-.06-.63l.06-.07L9.29 10 4.15 4.85a.5.5 0 0 1-.06-.63l.06-.07-.06.07Z' fill='%23424242'/%3E%3C/svg%3E");
}
.fluent_message_bar_container.full.center {
  margin-left: auto;
  margin-right: auto;
  width: 600px;
}
.fluent_element.width_large{
  width: 1200px;
}
.fluent_element.width_medium{
  width: 800px;
}
.fluent_element.width_small{
  width: 400px;
}
.fluent_element.height_full{
  height: calc(100vh - 120px);
}
.fluent_element.full_screen{
  width: 100vw;
  height: calc(100vh - var(--fluent2-banner-height));
}
.fluent_element.center{
  margin-left: auto;
  margin-right: auto;
}
.fluent_card.width_large{
  width: 1200px;
}
.fluent_card.width_medium{
  width: 800px;
}
.fluent_card.width_small{
  width: 400px;
}
.fluent_card.height_full{
  height: calc(100vh - 120px);
}
.fluent_card.full_screen{
  width: 100vw;
  height: calc(100vh - var(--fluent2-banner-height));
}
.fluent_card .fluent_card_body {
  height: 100%;
}
.fluent_card:has(.fluent_menu_bar) .fluent_card_body {
  height: calc(100% - var(--testit-online-menu-bar-height) - var(--testit-online-menu-bar-margin-bottom));
}
.fluent_card.center{
  margin-left: auto;
  margin-right: auto;
}
.fluent_card.sliding_content {
  overflow-x: hidden;
}
.fluent_card.sliding_content > div {
  display: none;
}
.fluent_card.sliding_content > div:first-of-type {
  display: block;
}
.fluent_card.sliding_content > div.sliding_container {
  width: calc(200% + 32px);
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  gap: 32px;
  position: relative;
  left: 0px;
}
.fluent_card.sliding_content > div.sliding_container.sliding_page0 {
  transition: left 200ms;
  transition-timing-function: ease-in-out;
  left: 0px;
}
.fluent_card.sliding_content > div.sliding_container.sliding_page1 {
  transition: left 200ms;
  transition-timing-function: ease-in-out;
  left: calc(-100% - 32px);
}
.fluent_card.sliding_content > div > div {
  flex-grow: 1;
  flex-basis: 100%;
}
h2.fluent_card_title {
  color: var(--fluent2-title-color);
  font-size: 20px;
  font-style: normal;
  font-family: 'Segoe UI Bold', sans-serif;
  line-height: calc(var(--fluent2-card-title-container-height) - 6px);
  margin: 0px;
  margin-bottom: 6px;
  padding-bottom: 6px;
  text-align: left;
  z-index: 1;
  position: relative;
  background-color: var(--fluent2-background-color);
}
.fluent_form_group:not(.columns) {
  flex-direction: column;
  display: flex;
  gap: var(--fluent2-form-vertical-spacing);
}
.fluent_form_group:not(.columns) > div {
  display: flex;
  gap: 2px;
  flex-direction: column;
}
.fluent_form_group:not(.columns) > label {
  line-height: 20px;
}
.fluent_form_group.columns {
  flex-direction: row;
  display: flex;
  gap: var(--fluent2-form-horizontal-spacing);
}
.fluent_form_group.columns > div {
  flex-direction: column;
  display: flex;
  gap: var(--fluent2-form-vertical-spacing);
  flex-grow: 1;
}
.fluent_form_group.columns > div > div {
  display: flex;
  gap: 2px;
  flex-direction: column;
}
.fluent_form_title {
  color: var(--fluent2-title-color);
/*  font-size: 16px; */
  font-style: normal;
  font-family: 'Segoe UI Bold', sans-serif;
  line-height: 20px;
  margin: 0px;
  margin-bottom: 6px;
  padding-bottom: 6px;
  text-align: left;
  z-index: 1;
  position: relative;
  background-color: var(--fluent2-background-color);
}
.fluent_form_title + .fluent_form_group {
  padding-left: 8px;
}
.fluent_form_group + .fluent_form_title {
  margin-top: 16px;
}
.fluent_form_group.columns > div > label {
  line-height: 20px;
}
.fluent_body > h2:first-of-type {
  margin-top: 0px;  
  font-family: 'Segoe UI Bold', sans-serif;
  font-size: 20px;
}
.fluent_list > div {
  border-bottom: 1px solid #ebebeb;
  display: flex;
}
.fluent_list > div:first-of-type {
  font-family: 'Segoe UI Bold', sans-serif;
}
.fluent_list > div > span {
  padding: 4px 12px;
  display: inline-block;
}
.no_fixed_height{
  height: auto;
}
.fluent_button_safety_timer{
  flex-direction: column;
}
.fluent_button_safety_timer_slider{
  border: 1px rgb(15, 108, 189) solid;
  height: 0px;
  margin-bottom: -2px;
  position: relative;
  top: 4px;
  width: 0px;
  transition: width 3s;
  transition-timing-function: linear;
}
.fluent_button_safety_timer_slider.start{
  width: calc(100% + 22px);
}
.fluent_body a {
  color: #115ea3;
  cursor: pointer;
  text-decoration-line: none;
}
.fluent_body a:hover {
  color: #0f548c;
  text-decoration-line: underline;
}
.fluent_slider {
  top: 0px;
  left: 0px;
  cursor: pointer;
  height: 100%;
  margin: 0px;
  opacity: 0;
  position: absolute;
  width: 56px;
}
.fluent_slider ~ .fluent_slider_indicator {
  border-radius: 10000px;
  border: 1px solid;
  line-height: 0;
  fill: currentcolor;
  flex-shrink: 0;
  font-size: 18px;
  height: 20px;
  margin: 8px;
  pointer-events: none;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.33,0,0.67,1);
  transition-property: background, border, color;
  width: 40px;
}
.fluent_slider ~ .fluent_slider_indicator > svg {
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.33,0,0.67,1);
  transition-property: transform;
}
.fluent_slider:not(:checked) ~ .fluent_slider_indicator {
  color: #616161;
  border-color: #616161;
}
.fluent_slider:checked ~ .fluent_slider_indicator {
  background-color: #0f6cbd;
  color: #ffffff;
  border-color: transparent;
}
.fluent_slider:checked ~ .fluent_slider_indicator > svg {
  transform: translateX(20px);
}
.fluent_slider_container {
  align-items: flex-start;
  display: flex;
  position: relative;
}
.fluent_checkbox {
  left: 0px;
  cursor: pointer;
  height: 100%;
  margin: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  width: 32px;
}
.fluent_checkbox + .fluent_checkbox_indicator {
  align-self: flex-start;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  margin: 8px;
  pointer-events: none;
  font-size: 12px;
  height: 16px;
  width: 16px;
}
.fluent_checkbox + .fluent_checkbox_indicator.circular {
  border-radius: 10000px;  
}

.fluent_checkbox + .fluent_checkbox_indicator > svg {
  display: block;
}

.fluent_checkbox + .fluent_checkbox_indicator > svg > .icon_indeterminate,
.fluent_checkbox + .fluent_checkbox_indicator > svg > .icon_checked {
  display: none;
}

.fluent_checkbox:checked + .fluent_checkbox_indicator > svg > .icon_checked {
  display: block;
  fill: #ffffff;
}
.fluent_checkbox:checked + .fluent_checkbox_indicator {
  background-color: #0f6cbd;
  border-color: transparent;
}
.fluent_checkbox:checked + .fluent_checkbox_indicator > svg > .icon_indeterminate {
  display: none;
}

.fluent_checkbox:indeterminate + .fluent_checkbox_indicator {
  border-color: #0f6cbd;
}
.fluent_checkbox:indeterminate + .fluent_checkbox_indicator > svg > .icon_indeterminate {
  display: block;
  fill: #0f6cbd;
}
.fluent_checkbox:indeterminate + .fluent_checkbox_indicator > svg > .icon_checked {
  display: none;
}

.fluent_checkbox + .fluent_checkbox_indicator + label{
  padding-bottom: 8px;
  padding-left: 4px;
  padding-right: 8px;
  padding-top: 8px;
  margin-bottom: -2px;
  margin-top: -2px;
  cursor: pointer;
  color: #616161;
}
.fluent_checkbox:hover + .fluent_checkbox_indicator + label{
  color: #485058;
}
.fluent_checkbox:checked + .fluent_checkbox_indicator + label{
  color: #485058;
}
.fluent_checkbox:disabled + .fluent_checkbox_indicator{
  cursor: inherit;
  color: #bdbdbd;
  border-color: #e0e0e0;
}
.fluent_checkbox:disabled + .fluent_checkbox_indicator + label{
  cursor: inherit;
  color: #bdbdbd;
}
.fluent_checkbox + .fluent_checkbox_indicator + .fluent_checkbox_partial_indicator {
  display: none;
}
.fluent_checkbox.partial + .fluent_checkbox_indicator {
  display: none;
}
.fluent_checkbox.partial + .fluent_checkbox_indicator + .fluent_checkbox_partial_indicator {
  display: flex;
  color: #0f6cbd;
  background-color: #ffffff;
  border-color: #0f6cbd;
  align-self: flex-start;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  margin: 8px;
  fill: currentcolor;
  pointer-events: none;
  font-size: 12px;
  height: 16px;
  width: 16px;
}
.fluent_checkbox + .fluent_checkbox_indicator + .fluent_checkbox_partial_indicator + label{
  padding-bottom: 8px;
  padding-left: 4px;
  padding-right: 8px;
  padding-top: 8px;
  margin-bottom: -2px;
  margin-top: -2px;
  cursor: pointer;
  color: #616161;
}
.fluent_checkbox:hover + .fluent_checkbox_indicator + .fluent_checkbox_partial_indicator + label{
  color: #485058;
}
.fluent_checkbox:checked + .fluent_checkbox_indicator + .fluent_checkbox_partial_indicator + label{
  color: #485058;
}
.fluent_checkbox.partial + .fluent_checkbox_indicator + .fluent_checkbox_partial_indicator + label{
  color: #485058;
}
label:has(.fluent_checkbox_container) {
  cursor: pointer;
}
label.fluent_checkbox_container {
  cursor: pointer;
  margin: 0px;
}
.fluent_checkbox_container {
  align-items: flex-start;
  display: flex;
  position: relative;
}
.fluent_warning_container {
  border: 1px #fdcfb4 solid;
  border-radius: 4px;
  background-color: #fff9f5;
  position: relative;
  padding: 8px 12px;
  margin-bottom: 14px;
  min-height: 36px;
  display: flex;
  align-items: flex-start;
}
.fluent_warning {
  flex-grow: 1;
}
.fluent_warning_indicator {
  flex: 0 0 28px;
  font-size: 20px;
  color: #bc4b09;
}
.fluent_progressbar{
  background-color: #e6e6e6;
  height: 2px;
}
.fluent_progressbar > div{
  background-color: #0f6cbd;
  height: 2px;
}
.fluent_modal{
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  background-color: var(--fluent2-background-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background-clip: padding-box;
  outline: 0;
  padding: 0px;
  height: 97%;
  display: flex;
  align-items: stretch;
}
#fluent_simulation_container{
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  flex: 1;
}
#fluent_simulation_navigation{
  width: 300px;
  margin-right: 20px;
  border-right: 1px #e5e5e5 solid;
  display: flex;
  flex-direction: column;
}
#fluent_simulation_navigation_title{
  font-size: 14px;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  color: var(--fluent2-text-color);
}
#fluent_simulation_navigation_body{
  flex: 1;
  overflow-y: auto;
  border: solid 1px #d1d1d1;
  border-radius: 4px;
  margin: 8px;
  margin-top: 8px;
  margin-top: 0px;
}
.fluent_nav_link{
  padding-bottom: 5px;
  padding-top: 5px;
  cursor: pointer;
  padding-left: 20px;
}
.fluent_nav_link:hover{
  background-color: var(--fluent2-brand-color);
  color: #fff;
}
.fluent_nav_link.active{
  background-color: #0f6cbd;
  color: #fff;
}
#fluent_simulation_body{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fluent_simulation_body{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fluent_button{
  font-family: 'Segoe UI Bold', sans-serif;
  font-size: inherit;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  min-width: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: inherit;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.6;
  border-radius: 4px;
  user-select: none;
  color: var(--fluent2-text-color);
  background-color: var(--fluent2-background-color);
  border-color: #d1d1d1;
}
.fluent_button:hover{
  color: var(--fluent2-text-color);
  background-color: #f5f5f5;
  border-color: #c7c7c7;
}
.fluent_button.blue{
  color: #fff;
  background-color: rgb(15, 108, 189);
  border-color: rgb(15, 108, 189);
  background-color: var(--fluent2-brand-color);
  border-color: var(--fluent2-brand-color);
  height: auto !important;
}
.fluent_button.blue:hover{
  color: #fff;
  background-color: #115ea3;
  background-color: #19a9e8;
  border-color: rgba(0, 0, 0, 0);
}
.fluent_button.active{
  border-bottom-color: #0f6cbd;
  border-bottom-width: 2px;
  padding-bottom: 4px;
}
.fluent_button:disabled{
  background-color: #f0f0f0;
  color: #bdbdbd;
  border-color: #d6d6d6;
}
.fluent_button:disabled:hover{
  background-color: #f0f0f0;
  color: #bdbdbd;
  border-color: #d6d6d6;
}
.fluent_title{
  padding: 15px 30px;
  font-size: 32px;
  line-height: 40px;
  font-family: 'Segoe UI Bold', sans-serif;
}
.fluent_actions{
  display: flex;
  gap: 8px;
  height: fit-content;
  justify-content: flex-end;
  border-top: 1px solid #e5e5e5;
  padding: 10px;
}
.fluent_body{
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}
.fluent_container {
  display: flex;
}
.fluent_container button {
  font-family: 'Segoe UI', sans-serif;
}
.fluent_tab_list {
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: row;
  display: flex;
  position: relative;
  flex-shrink: 0;
  margin: auto;
}
.fluent_tab_list_display {
  color: var(--fluent2-text2-color);
  font-family: 'Segoe UI', sans-serif;
  padding-bottom: 0;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 0;
  grid-row-start: 1;
  grid-column-start: 1;
  overflow-y: hidden;
  overflow-x: hidden;
  line-height: 20px;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}
.fluent_tab_list_button:disabled > .fluent_tab_list_display{
  color: #dedede;
}
.fluent_tab_list_button.active > .fluent_tab_list_display{
  color: var(--fluent2-text-color);
  font-family: 'Segoe UI Semibold', sans-serif;
  padding-bottom: 0;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 0;
  grid-row-start: 1;
  grid-column-start: 1;
  overflow-y: hidden;
  overflow-x: hidden;
  line-height: 20px;
  font-size: 14px;
  margin: 0;
}
.fluent_tab_list_button.active:hover > .fluent_tab_list_display::after {
  background-color: var(--fluent2-brand-color);
}
.fluent_tab_list_display:active::after{
  background-color: var(--fluent2-brand-hover-color);
}
.fluent_tab_list_button.active > .fluent_tab_list_display::after {
  transform: translateX(0px) scaleX(1);
  transform-origin: left center 0px;
  transition-timing-function: cubic-bezier(0,0,0,1);
  transition-duration: 300ms;
  transition-property: transform;
  right: 0;
  left: 0;
  height: 3px;
  bottom: 0px;
  background-color: #0f6cbd;
  z-index: 1;
  position: absolute;
  content: "";
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-bottom-right-radius: 1000px;
}
.fluent_tab_list_button:hover > .fluent_tab_list_display::before{
  position: absolute;
  content: "";
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-bottom-right-radius: 1000px;
  background-color: #c7c7c7;
  right: 0;
  left: 0;
  height: 3px;
  bottom: 0px;
}
.fluent_tab_list_button:disabled:hover > .fluent_tab_list_display::before{
  background-color: #f5f5f5;
}
.fluent_tab_list_button:active .fluent_tab_list_display::before{
  background-color: #b3b3b3;
}
.fluent_tab_list_button{
  background-color: transparent;
  border-width: 0px;
  padding-bottom: 11px;
  padding-top: 6px;
  overflow-y: hidden;
  overflow-x: hidden;
  outline-style: none;
  align-items: center;
  cursor: pointer;
  line-height: 20px;
  margin: 0;
  min-width: 110px;
  transform: translateY(1px);
}
.fluent{
  padding: 0 12px;
  border-color: rgb(209, 209, 209);
  border-bottom-color: rgb(97, 97, 97);
  border-radius: 4px;
  line-height: 20px;
  height: 32px !important;
  border-style: solid;
  border-width: 1px;
  width: calc(100% - 24px);
  box-shadow: none;
  background-color: transparent;
}
select.fluent{
  width: 100%;
  height: 35px !important;
}
textarea.fluent{
  padding-top: 5px;
}
.fluent.number{
  text-align: right;
}
.fluent_input_container{
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  line-height: 28px;
  min-height: 32px;
  border-radius: 4px;
  gap: 2px;
  border: solid 1px rgb(209, 209, 209);
  padding: 0px;
  align-items: stretch;
}
.fluent_input_container::after{
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  right: -1px;
  height: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: 2px solid var(--fluent2-brand-color);
  clip-path: inset(calc(100% - 2px) 0px 0px);  transform: scaleX(0);
  transition-property: transform;
  transition-duration: 50ms;
  transition-delay: cubic-bezier(1,0,1,1);
}
.fluent_input_container:focus-within::after {
  transform: scaleX(1);
  transition-property: transform;
  transition-duration: 200ms;
  transition-delay: cubic-bezier(0,0,0,1);
}
.fluent_input_container > .fluent{
  border-width: 0px;
  border-style: none;
  padding: 0px var(--fluent2-input-padding);
  width: 100%;
}
#email.fluent, #password.fluent{
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
.fluent_input_container > .fluent[type=password]{
  height: 30px !important;
  padding-bottom: 2px;
}
.fluent_input_container > .fluent:focus{
  border-bottom-color: rgb(209, 209, 209);
  border-bottom-width: 0px;
}
.fluent_input_container:has(> input.svg_code){
  padding-left: 8px;
}
.fluent_input_container:has(> input.svg_code)::before{
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.25 7a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z' fill='%23616161'/%3E%3Cpath d='M15.5 2.05A6.554 6.554 0 0 0 8.95 8.6c0 .387.05.76.11 1.104a.275.275 0 0 1-.07.244l-6.235 6.236a2.75 2.75 0 0 0-.806 1.944V20.3c0 .966.784 1.75 1.75 1.75h2.5a1.75 1.75 0 0 0 1.75-1.75v-1.25H9.7c.69 0 1.25-.56 1.25-1.25v-1.75h1.75a1.25 1.25 0 0 0 1.25-1.204c.496.128 1.02.204 1.55.204a6.554 6.554 0 0 0 6.55-6.55c0-3.631-2.953-6.45-6.55-6.45ZM10.45 8.6a5.054 5.054 0 0 1 5.05-5.05c2.802 0 5.05 2.181 5.05 4.95a5.054 5.054 0 0 1-5.05 5.05c-.68 0-1.38-.171-2.005-.44a.75.75 0 0 0-1.046.69v.75H10.7c-.69 0-1.25.56-1.25 1.25v1.75H7.7c-.69 0-1.25.56-1.25 1.25v1.5a.25.25 0 0 1-.25.25H3.7a.25.25 0 0 1-.25-.25v-2.172c0-.331.132-.65.366-.884l6.236-6.235a1.774 1.774 0 0 0 .486-1.564 4.917 4.917 0 0 1-.088-.845Z' fill='%23616161'/%3E%3C/svg%3E");
  padding-right: 4px;
  align-content: center;
}
.fluent_input_container:has(> input.svg_person){
  padding-left: 8px;
}
.fluent_input_container:has(> input.svg_person)::before{
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.754 14a2.249 2.249 0 0 1 2.25 2.249v.575c0 .894-.32 1.76-.902 2.438-1.57 1.834-3.957 2.739-7.102 2.739-3.146 0-5.532-.905-7.098-2.74a3.75 3.75 0 0 1-.898-2.435v-.577a2.249 2.249 0 0 1 2.249-2.25h11.501Zm0 1.5H6.253a.749.749 0 0 0-.75.749v.577c0 .536.192 1.054.54 1.461 1.253 1.468 3.219 2.214 5.957 2.214s4.706-.746 5.962-2.214a2.25 2.25 0 0 0 .541-1.463v-.575a.749.749 0 0 0-.749-.75ZM12 2.004a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 1.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Z' fill='%23616161'/%3E%3C/svg%3E");
  padding-right: 4px;
  align-content: center;
}
.fluent_input_container:has(> input.svg_password){
  padding-left: 8px;
}
.fluent_input_container:has(> input.svg_password)::before{
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.78 10.22a.75.75 0 0 0-1.06 1.06l.72.72-.72.72a.75.75 0 1 0 1.06 1.06l.72-.72.72.72a.75.75 0 0 0 1.06-1.062L13.561 12l.72-.72a.75.75 0 1 0-1.061-1.06l-.72.72-.72-.72ZM5.22 10.22a.75.75 0 0 1 1.06 0l.72.72.72-.72a.75.75 0 1 1 1.06 1.06l-.719.72.72.718A.75.75 0 1 1 7.72 13.78L7 13.06l-.72.72a.75.75 0 0 1-1.06-1.06l.72-.72-.72-.72a.75.75 0 0 1 0-1.06ZM16.5 13.5a.75.75 0 0 0 0 1.5h1.75a.75.75 0 0 0 0-1.5H16.5Z' fill='%23616161'/%3E%3Cpath d='M5.25 5A3.25 3.25 0 0 0 2 8.25v7.5A3.25 3.25 0 0 0 5.25 19h13.5A3.25 3.25 0 0 0 22 15.75v-7.5A3.25 3.25 0 0 0 18.75 5H5.25ZM3.5 8.25c0-.967.783-1.75 1.75-1.75h13.5c.967 0 1.75.783 1.75 1.75v7.5a1.75 1.75 0 0 1-1.75 1.75H5.25a1.75 1.75 0 0 1-1.75-1.75v-7.5Z' fill='%23616161'/%3E%3C/svg%3E");
  padding-right: 4px;
  padding-top: 1px;
  align-content: center;
}
.fluent_input_container:has(> input.svg_password) > .fluent,
.fluent_input_container:has(> input.svg_person) > .fluent,
.fluent_input_container:has(> input.svg_code) > .fluent {
  width: calc(100% - 24px);
  padding-left: 2px;
}
.fluent_divider_container{
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  text-align: center;
  line-height: 16px;
  width: 100%;
}
.fluent_divider_container::before{
  content: "";
  margin-right: 12px;
  min-width: 8px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e0e0e0;
  display: flex;
  flex-grow: 1;
}
.fluent_divider_container::after{
  content: "";
  margin-left: 12px;
  min-width: 8px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e0e0e0;
  display: flex;
  flex-grow: 1;
}
.fluent_divider_container > .fluent_divider{
  color: var(--fluent2-text2-color);
  text-align: center;
  line-height: 16px;
}
.popup-form.automatic_placement {
  position: fixed;
  margin: auto;
  inset: 0px;
}
.fluent_spinner_container{
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  gap: 8px;
  overflow: hidden;
}
.fluent_spinner_body{
  position: relative;
  flex-shrink: 0;
  mask-image: radial-gradient(closest-side, transparent calc(100% - 4px), white calc(100% - 3px) calc(100% - 1px), transparent 100%);
  background-color: #19a9e8;
  color: #ffffff;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: animation_spinner_body;
  width: 32px;
  height: 32px;
}
.fluent_button:disabled .fluent_spinner_body{
  color: #f0f0f0;
}
.fluent_message_bar_container{
  overflow: hidden;
}
.fluent_message_bar{
  white-space: nowrap;
  display: grid;
  grid-template: "icon body actions close" 1fr / auto 1fr auto auto;
  padding-top: 12px;
  padding-left: 12px;
  padding-bottom: 12px;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  align-items: start;
  min-height: 36px;
  background-color: #f5f5f5;
  color: var(--fluent2-text-color);
  margin-bottom: 10px;
}
.fluent_message_bar_container.float > .fluent_message_bar {
  position: fixed;
  box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.14);
  width: 292px;
  margin-bottom: 0px;
}
.fluent_message_bar_container.float.bottom > .fluent_message_bar {
  bottom: 16px;
}
.fluent_message_bar_container.float.top > .fluent_message_bar {
  top: 16px;
}
.fluent_message_bar_container.float.start > .fluent_message_bar {
  left: 20px;
}
.fluent_message_bar_container.float.end > .fluent_message_bar {
  right: 20px;
}
.fluent_message_bar_container.float:not(.start, .end) > .fluent_message_bar {
  right: 50%;
  transform: translateX(-50%);
}
.fluent_message_bar_icon{
  grid-area: icon;
  margin-right: 8px;
  color: #616161;
  display: flex;
  align-items: center;
  height: 16px;
  padding-top: 6px;
}
.fluent_message_bar_icon::after{
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='%23616161' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 10a8 8 0 1 0-16 0 8 8 0 0 0 16 0ZM9.5 8.91a.5.5 0 0 1 1 0V13.6a.5.5 0 0 1-1 0V8.9Zm-.25-2.16a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Z' fill='%23616161'/%3E%3C/svg%3E");
  height: 16px;
}
.fluent_message_bar_body{
  grid-area: body;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-right: 12px;
  white-space: wrap;
}
.fluent_message_bar_container.float > .fluent_message_bar {
  font-family: 'Segoe UI Bold', sans-serif;
}
.fluent_message_bar_container.float > .fluent_message_bar > .fluent_message_bar_body:has(> .fluent_message_bar_title) {
  font-family: 'Segoe UI', sans-serif;
}
.fluent_message_bar_title{
  font-family: 'Segoe UI Bold', sans-serif;
}
.fluent_message_bar_title::after{
  content: " ";
}
.fluent_message_bar_actions{
  
}
.fluent_message_bar_close{
  grid-area: close;
  padding-right: 13px;
  color: var(--fluent2-text2-color);
  cursor: pointer;
}
.fluent_message_bar_close::after{
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='%23424242' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m4.09 4.22.06-.07a.5.5 0 0 1 .63-.06l.07.06L10 9.29l5.15-5.14a.5.5 0 0 1 .63-.06l.07.06c.18.17.2.44.06.63l-.06.07L10.71 10l5.14 5.15c.18.17.2.44.06.63l-.06.07a.5.5 0 0 1-.63.06l-.07-.06L10 10.71l-5.15 5.14a.5.5 0 0 1-.63.06l-.07-.06a.5.5 0 0 1-.06-.63l.06-.07L9.29 10 4.15 4.85a.5.5 0 0 1-.06-.63l.06-.07-.06.07Z' fill='%23424242'/%3E%3C/svg%3E");
  height: 16px;
}
.fluent_message_bar.error{
  border-color: #eeacb2;
  background-color: #fdf3f4;
}
.fluent_message_bar_container.float > .fluent_message_bar.error {
  border-color: #fdf3f4;
}
.fluent_message_bar.error > .fluent_message_bar_icon::after{
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='%23b10e1c' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16ZM7.8 7.11a.5.5 0 0 0-.63.06l-.06.07a.5.5 0 0 0 .06.64L9.3 10l-2.12 2.12-.06.07a.5.5 0 0 0 .06.64l.07.06c.2.13.47.11.64-.06L10 10.7l2.12 2.12.07.06c.2.13.46.11.64-.06l.06-.07a.5.5 0 0 0-.06-.64L10.7 10l2.12-2.12.06-.07a.5.5 0 0 0-.06-.64l-.07-.06a.5.5 0 0 0-.64.06L10 9.3 7.88 7.17l-.07-.06Z' fill='%23b10e1c'/%3E%3C/svg%3E");
  height: 16px;
}
.fluent_message_bar.warning{
  border-color: #fdcfb4;
  background-color: #fff9f5;
}
.fluent_message_bar_container.float > .fluent_message_bar.warning {
  border-color: #fff9f5;
}
.fluent_message_bar.warning > .fluent_message_bar_icon::after{
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='%23bc4b09' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.68 2.79a1.5 1.5 0 0 1 2.64 0l6.5 12A1.5 1.5 0 0 1 16.5 17h-13a1.5 1.5 0 0 1-1.32-2.21l6.5-12ZM10.5 7.5a.5.5 0 0 0-1 0v4a.5.5 0 0 0 1 0v-4Zm.25 6.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z' fill='%23bc4b09'/%3E%3C/svg%3E");
  height: 16px;
}
.fluent_message_bar.success{
  border-color: #9fd89f;
  background-color: #f1faf1;
}
.fluent_message_bar_container.float > .fluent_message_bar.success {
  border-color: #f1faf1;
}
.fluent_message_bar.success > .fluent_message_bar_icon::after{
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='%230e700e' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm3.36 5.65a.5.5 0 0 0-.64-.06l-.07.06L9 11.3 7.35 9.65l-.07-.06a.5.5 0 0 0-.7.7l.07.07 2 2 .07.06c.17.11.4.11.56 0l.07-.06 4-4 .07-.08a.5.5 0 0 0-.06-.63Z' fill='%230e700e'/%3E%3C/svg%3E");
  height: 16px;
}
.fluent_spinner_tail{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  mask-image: conic-gradient(transparent 105deg, white 105deg);
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.33,0,0.67,1);
  animation-name: animation_spinner_tail;
}
.fluent_spinner_tail::before, .fluent_spinner_tail::after{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  animation: inherit;
  background-image: conic-gradient(currentcolor 135deg, transparent 135deg);
}
.fluent_spinner_tail::before{
  animation-name: animation_spinner_tail_before;
}
.fluent_spinner_tail::after{
  animation-name: animation_spinner_tail_after;
}
.fluent_informational a {
  text-decoration-line: none;
  color: var(--fluent2-brand-color);
}
.fluent_informational a:hover {
  text-decoration-line: underline;
  color: var(--fluent2-brand-hover-color);
}
.fluent_card a {
  text-decoration-line: none;
  color: var(--fluent2-brand-color);
}
.fluent_card a:hover {
  text-decoration-line: underline;
  color: var(--fluent2-brand-hover-color);
}
.fluent_popup {
  position: fixed;
  margin: auto;
  inset: 0px;
  background-color: var(--fluent2-background-color);
  border-radius: 8px;
  padding: var(--fluent2-card-padding);
  padding-right: 0px;
  height: max-content;
}
.fluent_popup.width_large {
  width: 1200px;
}
.fluent_popup.width_medium {
  width: 800px;
}
.fluent_popup.width_small {
  width: 400px;
}
.fluent_popup.show {
  animation: popup_show 0.2s linear;
}
.fluent_popup.hide {
  animation: popup_hide 0.4s linear;
}
.fluent_backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.fluent_backdrop.show {
  animation: backdrop_show 0.2s linear;
}
.fluent_backdrop.hide {
  animation: backdrop_hide 0.2s linear;
}
.fluent_popup .fluent_card_title {
  margin-right: var(--fluent2-card-padding);
}

.fluent_popup .fluent_title_bar {
  display: block;
  margin-bottom: 16px;
}
.fluent_popup .fluent_title_bar_text,
.fluent_popup .fluent_title_bar_subtext {
  font-family: 'Segoe UI Bold', sans-serif;
  font-size: 16px;
}
.fluent_popup .fluent_title_bar_subtext {
  margin-left: 5px;
}
.fluent_popup .fluent_card_buttons {
  margin-right: var(--fluent2-card-padding);
}
.fluent_popup .fluent_menu_bar {
  margin-right: var(--fluent2-card-padding);
}
.fluent_popup:has(.fluent_menu_bar){
  padding-top: 10px;
}
.fluent_popup .fluent_card_body {
  max-height: calc(100vh - var(--fluent2-card-title-container-height) - var(--fluent2-card-buttons-container-height) - 64px);
  overflow-y: auto;
  padding-right: var(--fluent2-card-padding);
}
.fluent_popup:has(.fluent_menu_bar) .fluent_card_body {
  max-height: calc(100vh - 46px - var(--fluent2-card-buttons-container-height) - 64px);
  overflow-y: auto;
  padding-right: var(--fluent2-card-padding);
}
.fluent_table td {
  display: table-cell;
  min-height: 44px;
  vertical-align: top;
  padding: 0px 8px;
  border-width: 0px;
  color: var(--fluent2-text-color);
}
.fluent_table.small td {
  min-height: 34px;
}
.fluent_table.full td {
  min-height: 34px;
}
.fluent_table td.action_buttons {
  padding: 0px 8px;
}
.fluent_table th {
  display: table-cell;
  min-height: 32px;
  vertical-align: middle;
  border-width: 0px;
  padding: 0px 8px;
  font-family: 'Segoe UI Semibold', sans-serif;
  font-size: 12px;
}
.fluent_table th:not(:first-child) {
  border-left: solid 1px #e0e0e0;
}
.fluent_table tr {
  border-bottom: 1px solid #e0e0e0;
}
.fluent_table:has(.group_level_0) td:first-child > span {
  padding-left: 20px;
}
.fluent_table tr.group_level_0 {
  font-family: 'Segoe UI Bold', sans-serif;
  font-size: 14.5px;
  border-bottom: solid 2px var(--fluent2-divider-color);
  padding-top: 15px;
}
.fluent_table tbody tr:hover {
  background-color: var(--fluent2-neutral-hover-background-color);
  color: rgba(0,0,0,.18);
}
.fluent_table tbody tr:active {
  background-color: var(--fluent2-neutral-pressed-background-color);
  color: rgba(0,0,0,.18);
}
.fluent_table tbody tr.strong:hover {
  background-color: var(--fluent2-neutral2-hover-background-color);
  color: rgba(0,0,0,.18);
}
.fluent_table tbody tr.strong:active {
  background-color: var(--fluent2-neutral2-pressed-background-color);
  color: rgba(0,0,0,.18);
}
.fluent_table_grid {
  display: grid;
  height: 100%;
  overflow-x: scroll;
  overflow-y: scroll;
}
.fluent_table_grid.dynatable{
  border-bottom: solid 1px #e0e0e0;
}
.fluent_table_grid tbody{
  grid-template-rows: repeat(100, min-content) max-content;
  height: 100%;
}
.fluent_table_grid thead {
  position: sticky;
  top: 0px;
  background-color: var(--fluent2-background-color);
}
.fluent_table_grid thead, .fluent_table_grid tbody, .fluent_table_grid tr  {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
}
.fluent_table_grid tr.group_level_0 > td {
  grid-column: 1/-1;
}
.fluent_table_grid tr.group_level_1 > td {
  grid-column: 1/-1;
}
.fluent_table_grid tr.group_level_2 > td {
  grid-column: 1/-1;
}
.fluent_table_grid tr:has(> td > label .fluent_table_selection_button:checked):not(.group_level_0, .group_level_1, .group_level_2){
  background-color: var(--fluent2-brand-hover-background-color)
}
.fluent_table_grid td, .fluent_table_grid th {
  display: flex;
  flex-direction: row;
  justify-content: left;
  text-align: left;
  gap: 8px;
  align-items: center;
}
.fluent_table_grid th.sortable {
  cursor: pointer;
}
.fluent_table_grid th.sortable:hover {
  background-color: var(--fluent2-neutral-hover-background-color);
}
.fluent_table_grid th.sortable:active {
  background-color: var(--fluent2-neutral-pressed-background-color);
}
.fluent_table_grid th > .svg_arrow_down, .fluent_table_grid th > .svg_arrow_up {
  display: none;
  width: 1em;
  height: 1em;
}
.fluent_table_grid th.sortable.ascending > .svg_arrow_down {
  display: block;
}
.fluent_table_grid th.sortable.descending > .svg_arrow_up {
  display: block;
}
.fluent_table_grid .dynatable-sort-header {
  color: #000;
  outline: none;
}
.fluent_table_grid .dynatable-sort-header:hover,
.fluent_table_grid .dynatable-sort-header:focus  {
  text-decoration: none;
}
.fluent_table_grid tbody tr:last-of-type {
  border-width: 0px;
  margin-bottom: 20px;
}
.fluent_table_grid .action_buttons a .fa {
  font-size: 1em !important;
}
.fluent_table_grid .action_buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 5px;
  height: 20px;
}
.fluent_table_grid .action_buttons a {
  padding: 0px 5px;
  display: flex;
  height: 100%;
  align-items: center;
}
.fluent_menu_bar {
  border-bottom: 1px solid var(--fluent2-divider-color);
  display: flex;
  column-gap: 0px;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: var(--testit-online-menu-bar-margin-bottom);
  height: var(--testit-online-menu-bar-height);
}
.fluent_menu_bar > div {
  display: flex;
  gap: 4px;
  padding: 0px 10px;
}
.fluent_menu_bar > div:first-of-type {
  padding-left: 0px;
}
.fluent_menu_bar > div > span {
  align-self: center;
}
.fluent_menu_bar > .alignment_right {
  margin-left: auto;
}
.fluent_menu_bar > .alignment_right ~ .alignment_right {
  margin-left: unset;
}
.fluent_menu_bar .fluent_menu_bar_text_text {
  font-family: 'Segoe UI Bold', sans-serif;
}
.fluent_menu_bar .fluent_menu_bar_divider {
  border-left: 1px solid var(--fluent2-divider-color);
  align-self: center;
  height: 23px;
  padding: 0px;
  margin: 0px 10px;
}
.fluent_menu_bar .fluent_menu_bar_button:not(.disabled),
.fluent_menu_bar .fluent_menu_bar_menu:not(.disabled) {
  cursor: pointer;
}
.fluent_menu_bar .fluent_menu_bar_button.disabled,
.fluent_menu_bar .fluent_menu_bar_menu.disabled {
  cursor: default;
}
.fluent_menu_bar .fluent_menu_bar_button:not(.disabled):hover,
.fluent_menu_bar .fluent_menu_bar_menu:not(.disabled):hover {
  background-color: var(--fluent2-brand-hover-background-color);
}
.fluent_menu_bar .fluent_menu_bar_button .fluent_menu_bar_button_icon .icon_filled,
.fluent_menu_bar .fluent_menu_bar_button:not(.disabled):hover .fluent_menu_bar_button_icon .icon_outline {
  display: none;
}
.fluent_menu_bar .fluent_menu_bar_button:not(.disabled):hover .fluent_menu_bar_button_icon .icon_filled,
.fluent_menu_bar .fluent_menu_bar_button .fluent_menu_bar_button_icon .icon_outline {
  display: inline;
}
.fluent_menu_bar .fluent_menu_bar_button:not(.disabled) .fluent_menu_bar_button_icon svg {
  color: var(--fluent2-brand-color);
}
.fluent_menu_bar .fluent_menu_bar_button.disabled .fluent_menu_bar_button_icon svg {
  color: #ccc;
}
.fluent_menu_bar .fluent_menu_bar_button .fluent_menu_bar_button_icon {
  display: flex;
}
.fluent_menu_bar .fluent_menu_bar_button.disabled .menu_bar_button_text {
  color: #ccc;
}
.fluent_menu_bar_menu_chevron_down {
  display: flex;
  padding-top: 2px;
}
.fluent_menu_bar .fluent_menu_bar_menu .fluent_menu_bar_menu_chevron_down svg {
  color: rgb(50, 49, 48);
  width: 16px;
  height: 16px;
}
.indent {
  padding-left: 16px;
}
tr.indent {
  padding-left: 0px;
}
tr.indent td:first-child {
  padding-left: 24px;
}
.fluent_table_selection_button{
  margin: 0px;
  padding: 0px;
  cursor: pointer;
}
.fluent_table.selection_visible tr.indent td:first-child {
  padding-left: 0px;
}
.fluent_table.selection_visible tr.indent td:first-child label:has(.fluent_table_selection_button) {
  padding-left: 8px;
  padding-right: 8px;
  width: 22px;
  cursor: pointer;
  height: 100%;
  align-content: center;
  flex: none;
}
.fluent_table.selection_visible_on_hover > tbody > tr > td:first-child > label:has(.fluent_table_selection_button) {
    visibility: hidden;
}
.fluent_table.selection_visible_on_hover > tbody > tr:hover > td:first-child > label:has(.fluent_table_selection_button) {
    visibility: visible;
}
.fluent_table.selection_visible_on_hover > tbody > tr > td:first-child > label:has(.fluent_table_selection_button:checked),
.fluent_table.selection_visible_on_hover > tbody > tr > td:first-child > label:has(.fluent_table_selection_button:indeterminate) {
    visibility: visible;
}
.fluent_avatar {
  display: flex;
  border-radius: 10000px;
  width: 32px;
  height: 32px;
  font-family: 'Segoe UI Bold', sans-serif;
  flex: 0 0 32px;
}
.fluent_avatar > span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.fluent_nav_html:has(.fluent_avatar) {
  transform: translateX(-6px);
}
.fluent_avatar + .fluent_title_group {
  display: flex;
  flex-direction: column;
  line-height: 15px;
}
.fluent_inline_menu {
  border-width: 0px;
  background-color: transparent;
  cursor: pointer;
}
button.fluent_inline_menu.fluent_init {
  line-height: 0;
}
td .fluent_inline_menu > svg {
  color: transparent;
}
tr:hover td .fluent_inline_menu > svg,
td .fluent_inline_menu.keep_visible > svg {
  color: var(--fluent2-text-color);
}
.fluent_inline_menu .icon_filled,
.fluent_inline_menu:hover .icon_outline {
  display: none;
}
.fluent_inline_menu:hover .icon_filled {
  color: var(--fluent2-brand-color);
}
.fluent_inline_menu:hover .icon_filled,
.fluent_inline_menu .icon_outline {
  display: inline;
}
td:has(.fluent_inline_menu) > a,
td:has(.fluent_inline_menu) > span {
  flex-grow: 1;
}
.fluent_table > tbody > tr > td {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.fluent_table.full > tbody > tr > td {
  white-space: wrap;
  text-overflow: none;
}
.fluent_table > tbody > tr > td > span > a {
  display: inline;
}
@supports (-webkit-line-clamp: 2) and (-webkit-box-orient: vertical) and (display: -webkit-box) {
  .fluent_table:not(.small, .full) > tbody > tr > td > a,
  .fluent_table:not(.small, .full) > tbody > tr > td > span {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }
  .fluent_table:not(.small, .full) > tbody > tr > td {
    white-space: wrap;
    text-overflow: none;
  }
}
.fluent_input_container > .fluent_input_addon{
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
.fluent_input_container > .fluent_input_addon > *{
  height: 100%;
  align-content: center;
  padding: 0px var(--fluent2-input-addon-padding);
}
.fluent_input_container > .fluent_input_addon.right > *:last-child{
  padding-right: var(--fluent2-input-padding)
}
.fluent_input_container > .fluent_input_addon.left > *:first-child{
  padding-left: var(--fluent2-input-padding)
}
.svg_chevron::after{
  content: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='%23424242' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.22 8.47a.75.75 0 0 1 1.06 0L12 15.19l6.72-6.72a.75.75 0 1 1 1.06 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L4.22 9.53a.75.75 0 0 1 0-1.06Z' fill='%23424242'/%3E%3C/svg%3E");
}
.fluent_select_multip, 
.fluent_select_single{
  box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.14);
  padding: var(--fluent2-select-dropdown-padding);
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: #ffffff;
  position: absolute;
  overflow-y: auto;
}
.fluent_select_multip.position_top,
.fluent_select_single.position_top{
  box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 -8px 16px rgba(0,0,0,0.14);
}
.fluent_select_multip > label, 
.fluent_select_single > label{
  border-radius: 4px;
  padding: 6px;
  align-items: start;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  user-select: none;
  gap: 4px;
  min-height: 32px;
}
.fluent_select_multip > label:hover, 
.fluent_select_single > label:hover{
  background-color: var(--fluent2-neutral-hover-background-color);
}
.fluent_select_single > label > input[type="radio"]{
  display: none;
}
.fluent_select_single > label::before{
  content: " ";
  width: 20px;
  height: 20px;
}
.fluent_select_single > label:has(input[type="radio"]:checked)::before{
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='%23424242' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m8.5 16.586-3.793-3.793a1 1 0 0 0-1.414 1.414l4.5 4.5a1 1 0 0 0 1.414 0l11-11a1 1 0 0 0-1.414-1.414L8.5 16.586Z' fill='%23424242'/%3E%3C/svg%3E");
}
.fluent_input_container > .fluent_select {
    padding-right: 0px;
}
.fluent_input_container > .fluent.fluent_select + .fluent_input_addon > .svg_chevron{
  cursor: pointer;
}
.fluent_inline_menu_popup {
  padding: 4px;
  background-color: var(--fluent2-background-color);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.14);
  max-width: 300px;
  width: max-content;
}
.fluent_inline_menu_popup > .fluent_inline_menu_button {
  border-radius: 4px;
  padding: 6px;
  max-width: 290px;
  min-height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: start;
  cursor: pointer;
  user-select: none;
  gap: 4px;
}
.fluent_inline_menu_popup > .fluent_inline_menu_button > .fluent_inline_menu_button_icon {
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fluent_inline_menu_popup > .fluent_inline_menu_button > .fluent_inline_menu_button_icon .icon_filled {
  display: none;
}
.fluent_inline_menu_popup > .fluent_inline_menu_button > .fluent_inline_menu_button_text {
  padding: 0px 2px;
  flex-grow: 1;
}
.fluent_inline_menu_popup > .fluent_inline_menu_button:hover {
  background-color: #f5f5f5;
}
.fluent_inline_menu_popup > .fluent_inline_menu_button:hover > .fluent_inline_menu_button_icon {
  color: var(--fluent2-brand-hover-color);
}
.fluent_inline_menu_popup > .fluent_inline_menu_button:hover > .fluent_inline_menu_button_icon .icon_outline {
  display: none;
}
.fluent_inline_menu_popup > .fluent_inline_menu_button:hover > .fluent_inline_menu_button_icon .icon_filled {
  display: inline;
}
.fluent_inline_menu_popup > .fluent_inline_menu_divider {
  width: auto;
  border-bottom: 1px solid var(--fluent2-divider-color);
  margin: 4px -5px;
}


.background_strong {
  background-color: var(--fluent2-neutral2-background-color);
}
b, .strong {
  font-family: 'Segoe UI Bold', sans-serif;
  font-weight: normal;
}
.weak {
  font-size: 12px;
}
.preventUserSelect{
  user-select: none;
}
.hidden {
  display: none !important;
}

/* Start icons */
.fluent_icon_house {
    content: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.55 2.532a2.25 2.25 0 0 1 2.9 0l6.75 5.692c.507.428.8 1.057.8 1.72v9.803a1.75 1.75 0 0 1-1.75 1.75h-3.5a1.75 1.75 0 0 1-1.75-1.75v-5.5a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25v5.5a1.75 1.75 0 0 1-1.75 1.75h-3.5A1.75 1.75 0 0 1 3 19.747V9.944c0-.663.293-1.292.8-1.72l6.75-5.692Zm1.933 1.147a.75.75 0 0 0-.966 0L4.767 9.37a.75.75 0 0 0-.267.573v9.803c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-5.5c0-.967.784-1.75 1.75-1.75h3.5c.966 0 1.75.783 1.75 1.75v5.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25V9.944a.75.75 0 0 0-.267-.573l-6.75-5.692Z' fill='%23616161'/%3E%3C/svg%3E");
}

/* Start keyframes */
@keyframes animation_spinner_body {
  0%   { transform: rotate(0deg);   }
  100% { transform: rotate(360deg); }
}
@keyframes animation_spinner_tail {
  0%   { transform: rotate(-135deg);}
  50%  { transform: rotate(0deg);   }
  100% { transform: rotate(225deg); }
}
@keyframes animation_spinner_tail_before {
  0%   { transform: rotate(0deg);   }
  50%  { transform: rotate(105deg); }
  100% { transform: rotate(0deg);   }
}
@keyframes animation_spinner_tail_after {
  0%   { transform: rotate(0deg);   }
  50%  { transform: rotate(105deg); }
  100% { transform: rotate(0deg);   }
}

@keyframes popup_show {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes popup_hide {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}
@keyframes backdrop_show {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes backdrop_hide {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Start Exceptions */
#mail-code.fluent, #app-code.fluent {
  text-align: center;
  padding-right: 28px;
  font-size: 16px;
  letter-spacing: 8px;
}

/* Overrides for nulm and niceforms */
body.fluent_page input[type="radio"] {
  margin-bottom: initial;
}

/* Deprecated */
.fluent_select_multiple > label {
  display: flex;
  cursor: pointer;
  align-items: center;
  position: relative;
  padding: 3px 8px;
  column-gap: 4px;
  cursor: pointer;
}
.fluent_select_multiple > label:hover {
  background-color: #f5f5f5;
}
.fluent_select_multiple{
  position: absolute;
  max-width: 1920px;
  max-height: 883px;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.14);
  row-gap: 2px;
  overflow-y: auto;
  min-width: 160px;
  flex-direction: column;
  display: flex;
  outline: 1px solid transparent;
  text-align: left;
  line-height: 14px;
  width: calc(100% - 38px);
  text-overflow: ellipsis;
  background-color: var(--fluent2-background-color);
  max-height: 310px;
  font-size: 12px;
  padding: 4px;
  z-index: 3;
}
.fluent_select_multiple > label > input[type=checkbox] {
  width: 13px;
  height: 13px;
  border: 1px solid #616161;
}
.fluent_select_multiple > span {
  color: rgb(136, 136, 136);
  padding: 4px 8px;
}
.fluent_chevron:after {
  content: "\f078";
  font-family: FontAwesome;
  width: 0px;
  float: right;
  top: 10px;
  position: relative;
  right: 20px;
  cursor: pointer;
  color: #000;
  font-size: 9px;
}
.fluent_select_placeholder {
  padding-right: 24px;
  width: calc(100% - 38px);
}
