@charset "UTF-8";.sidebar {
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.sidebarClosed {
  transform: translateX(-300px);
}

.sidebar .sidebarPaper {
  background-color: var(--white-color);
  background-image: none;
  width: 246px;
  padding: 0%;
  color: var(--secondary);
  box-shadow: 5px 0 10px rgb(0 0 0 / 30%);
  border-radius: 0 8px 8px 0;
  border-right: none;
}

.sidebar .sidebarPaper .MuiSelect-select {
  color: var(--secondary);
}

.sidebar .sidebarPaper:has(div[style*="transform: none"]) {
  border-radius: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.toggleButton {
  color: var(--primary);
  margin-left: 10px;
}

.logo {
  font-weight: bold;
  letter-spacing: 3px;
  color: #FF4500;
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.logoCircle {
  border: 2px solid #FF4500;
  border-radius: 50%;
  padding: 3px 6px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebarContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding-top: 20px;
  overflow: auto;
}

.sidebarContent .sidebarMenu {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.menuItem {
  margin-bottom: 12px;
}

.menuList {
  flex-grow: 1;
  overflow-y: auto;
  max-height: calc(100vh - 180px);
}

.subMenu .menuButton,
.menuItem .menuButton {
  border-radius: 40px;
  cursor: pointer;
  margin: 0 8px 0 14px;
  padding: 0 8px;
  gap: 12px;
}

.subMenu .menuButton:hover,
.menuItem .menuButton:hover {
  background-color: var(--rowHover);
}

.menuItemSelected .menuButton,
.menuItemSelected .menuButton:hover {
  background-color: var(--ActiveMenu);
}

.menuItem .menuIcon {
  color: var(--primary2);
  font-size: 24px;
  min-width: 24px;
}

.subMenu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submenuWrapper>div {
  margin-bottom: 12px;
}

.subMenuItem .menuButton {
  padding-left: 40px;
}

.menuButton .menuText {
  color: var(--primary2);
}

.menuButton .menuText span {
  font-size: 14px;
}

.menuItem~.submenuWrapper:has(.menuItemSelected) {
  height: auto !important;
  visibility: visible;
}

.menuItem~.submenuWrapper:has(.menuItemSelected) .MuiCollapse-wrapper {
  visibility: visible;
}


.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .menuItem {
  margin-bottom: 0;
}

.footer .openCollapseIcon {
  width: auto;
  align-self: flex-start;
}

.sliding-panel {
  position: fixed;
  top: 0;
  height: 100%;
  background-color: var(--panelBG);
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  transition: all 225ms cubic-bezier(0, 0, 0.2, 1) !important;
  transform: translateX(0px) !important;
  border-radius: 0 8px 8px 0;
}

.sidebarPaper .Waiting {
  bottom: initial;
  top: 24px;
  position: fixed;
  left: 50%;
  width: 40px;
  z-index: 99999;
  transform: translate(-50%, 0px);
}

.slidepanel {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slidepanel-header {
  padding: calc(2.35 * 8px) calc(3 * 8px);
  border-bottom: 1px solid var(--border);
}

.slidepanel-header h5 {
  color: var(--secondary);
}

.slidepanel-body {
  padding: calc(3 * 8px);
  padding-bottom: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--secondary);
}

.helppanel-search-results {
  flex-grow: 1;
  overflow: auto;
  margin-left: -24px;
  margin-right: -24px;
  padding: 16px 12px 0 24px;
  scrollbar-gutter: stable;
}

.helppanel-search-results .text {
  font-weight: 500;
  margin-bottom: 16px;
}

.helppanel-search-results .textLine2 {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 8px;
}

.helppanel-search-results .listWrapper {
  margin-top: 8px;
  padding-left: 16px;
}

.helppanel-search-results .list {
  padding-left: 16px;
  margin: 0px;
}

.helppanel-search-results .list li {
  font-weight: 300;
  font-size: 0.688rem;
}

.slidepanel-bodyscroll {
  height: 100%;
  overflow: auto;
  margin-left: -24px;
  margin-right: -24px;
  padding: 0 12px 0 24px;
  scrollbar-gutter: stable;
}

.shortcuts-section .categoryHeader {
  font-weight: 500;
}

.shortcuts-section .shortcuts-listWrap {
  margin-top: 12px;
}

.shortcuts-listItem {
  margin: 8px 0;
}

.shortcuts-listItem .shortcuts-label {
  width: 65%;
}

.shortcuts-listItem .shortcuts-key {
  width: 35%;
}

.help-footer {
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 12px;
}

.help-footer-logo {
  width: 120px;
  filter: saturate(0);
  opacity: .3;
}

.help-footer .help-footer-releaseNo {
  font-size: 10px;
}

.switch-user .switchDD {
  margin-top: 4px;
}

.searchIcon {
  font-size: 20px;
  color: var(--primary2);
}

.switchuserFooter {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 12px;
}

.switchuserFooter .switchBackButton {
  background-color: transparent !important;
  border: 1px solid var(--border) !important;
  color: var(--primary) !important;
  text-transform: none !important;
  flex: 1;
  opacity: 1 !important;
}

.switchuserFooter .switchBackButton:hover {
  background-color: var(--rowHover) !important;
  border: 1px solid var(--border) !important;
}

.switchuserFooter .switchBackButtonDisabled {
  background-color: transparent !important;
  border: 1px solid var(--border) !important;
  color: var(--primary) !important;
  text-transform: none !important;
  flex: 1;
  opacity: .8;
}

.switchuserFooter .switchBackButtonDisabled:hover {
  background-color: transparent !important;
  opacity: 0.5 !important;
}

.switchuserFooter .proceedButton {
  background-color: var(--light-blue) !important;
  border: 1px solid var(--light-blue) !important;
  color: var(--white-color) !important;
  text-transform: none !important;
  flex: 1;
  opacity: 1 !important;
}

.switchuserFooter .proceedButton:hover {
  background-color: var(--light-blue) !important;
  opacity: 0.9 !important;
}

.switchuserFooter .proceedButtonDisabled {
  background-color: var(--light-blue) !important;
  border: 1px solid var(--light-blue) !important;
  color: var(--white-color) !important;
  opacity: 0.6 !important;
  text-transform: none !important;
  flex: 1;
}

.switchuserFooter .proceedButtonDisabled:hover {
  background-color: var(--disabledColor) !important;
  opacity: 0.5 !important;
}
@font-face {
    font-family: 'Albert Sans';
    src: url('/assets/AlbertSans-Regular.1761736823161.eot');
    src: url('/assets/AlbertSans-Regular.1761736823161.eot?#iefix') format('embedded-opentype'),
        url('/assets/AlbertSans-Regular.1761736823161.woff2') format('woff2'),
        url('/assets/AlbertSans-Regular.1761736823161.woff') format('woff'),
        url('/assets/AlbertSans-Regular.1761736823161.ttf') format('truetype'),
        url('/assets/AlbertSans-Regular.1761736823161.svg#AlbertSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albert Sans';
    src: url('/assets/AlbertSans-Medium.1761736823161.eot');
    src: url('/assets/AlbertSans-Medium.1761736823161.eot?#iefix') format('embedded-opentype'),
        url('/assets/AlbertSans-Medium.1761736823161.woff2') format('woff2'),
        url('/assets/AlbertSans-Medium.1761736823161.woff') format('woff'),
        url('/assets/AlbertSans-Medium.1761736823161.ttf') format('truetype'),
        url('/assets/AlbertSans-Medium.1761736823161.svg#AlbertSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albert Sans';
    src: url('/assets/AlbertSans-SemiBold.1761736823161.eot');
    src: url('/assets/AlbertSans-SemiBold.1761736823161.eot?#iefix') format('embedded-opentype'),
        url('/assets/AlbertSans-SemiBold.1761736823161.woff2') format('woff2'),
        url('/assets/AlbertSans-SemiBold.1761736823161.woff') format('woff'),
        url('/assets/AlbertSans-SemiBold.1761736823161.ttf') format('truetype'),
        url('/assets/AlbertSans-SemiBold.1761736823161.svg#AlbertSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albert Sans';
    src: url('/assets/AlbertSans-Bold.1761736823161.eot');
    src: url('/assets/AlbertSans-Bold.1761736823161.eot?#iefix') format('embedded-opentype'),
        url('/assets/AlbertSans-Bold.1761736823161.woff2') format('woff2'),
        url('/assets/AlbertSans-Bold.1761736823161.woff') format('woff'),
        url('/assets/AlbertSans-Bold.1761736823161.ttf') format('truetype'),
        url('/assets/AlbertSans-Bold.1761736823161.svg#AlbertSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



@font-face {
  font-family: 'atlas';
  src:  url('/assets/atlas.1761736823161.eot?3tn7u0');
  src:  url('/assets/atlas.1761736823161.eot?3tn7u0#iefix') format('embedded-opentype'),
    url('/assets/atlas.1761736823161.ttf?3tn7u0') format('truetype'),
    url('/assets/atlas.1761736823161.woff?3tn7u0') format('woff'),
    url('/assets/atlas.1761736823161.svg?3tn7u0#atlas') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="af-"], [class*=" af-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'atlas' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.af-atlas:before {
  content: "\e900";
}
.af-clear:before {
  content: "\e901";
}
.af-clear-logo:before {
  content: "\e902";
}
.af-pft:before {
  content: "\e903";
}
.af-xstudio:before {
  content: "\e9aa";
}
.af-hamburger:before {
  content: "\e904";
}
.af-converse:before {
  content: "\e905";
}
.af-my-tasks:before {
  content: "\e906";
}
.af-show-tasks:before {
  content: "\e907";
}
.af-asset-shots:before {
  content: "\e908";
}
.af-my-versions:before {
  content: "\e909";
}
.af-shortcuts:before {
  content: "\e90a";
}
.af-help:before {
  content: "\e90b";
}
.af-notifications:before {
  content: "\e90c";
}
.af-shots:before {
  content: "\e90d";
}
.af-tickets:before {
  content: "\e90e";
}
.af-arrow-left:before {
  content: "\e90f";
}
.af-arrow-right:before {
  content: "\e910";
}
.af-arrow-up:before {
  content: "\e911";
}
.af-arrow-down:before {
  content: "\e912";
}
.af-chevron-left:before {
  content: "\e913";
}
.af-chevron-right:before {
  content: "\e914";
}
.af-chevron-up:before {
  content: "\e915";
}
.af-chevron-down:before {
  content: "\e916";
}
.af-angle-double-down:before {
  content: "\e917";
}
.af-angle-double-up:before {
  content: "\e918";
}
.af-angle-double-right:before {
  content: "\e919";
}
.af-angle-double-left:before {
  content: "\e91a";
}
.af-drag:before {
  content: "\e91b";
}
.af-dragger:before {
  content: "\e91c";
}
.af-calendar:before {
  content: "\e91d";
}
.af-search:before {
  content: "\e91e";
}
.af-sort:before {
  content: "\e91f";
}
.af-filter:before {
  content: "\e920";
}
.af-delete:before {
  content: "\e921";
}
.af-edit:before {
  content: "\e922";
}
.af-more:before {
  content: "\e923";
}
.af-copy:before {
  content: "\e924";
}
.af-paste:before {
  content: "\e925";
}
.af-cut:before {
  content: "\e926";
}
.af-upload:before {
  content: "\e927";
}
.af-download:before {
  content: "\e928";
}
.af-offline:before {
  content: "\e929";
}
.af-forward:before {
  content: "\e92a";
}
.af-reply:before {
  content: "\e92b";
}
.af-reply-all:before {
  content: "\e92c";
}
.af-open-in:before {
  content: "\e92d";
}
.af-export:before {
  content: "\e92e";
}
.af-equailize:before {
  content: "\e92f";
}
.af-camera:before {
  content: "\e930";
}
.af-info:before {
  content: "\e931";
}
.af-client:before {
  content: "\e932";
}
.af-flag:before {
  content: "\e933";
}
.af-alert:before {
  content: "\e934";
}
.af-collapse:before {
  content: "\e935";
}
.af-expand:before {
  content: "\e936";
}
.af-group-columns:before {
  content: "\e937";
}
.af-wrap-text:before {
  content: "\e938";
}
.af-History:before {
  content: "\e939";
}
.af-settings:before {
  content: "\e93a";
}
.af-zoom-in:before {
  content: "\e93b";
}
.af-zoom-out1:before {
  content: "\e93c";
}
.af-unfavorite:before {
  content: "\e93d";
}
.af-favorite:before {
  content: "\e93e";
}
.af-star:before {
  content: "\e93f";
}
.af-star-half:before {
  content: "\e940";
}
.af-star-filled:before {
  content: "\e941";
}
.af-radio:before {
  content: "\e942";
}
.af-radio-checked:before {
  content: "\e943";
}
.af-box:before {
  content: "\e944";
}
.af-box-checked:before {
  content: "\e945";
}
.af-zoom-plus:before {
  content: "\e946";
}
.af-zoom-minus:before {
  content: "\e947";
}
.af-show:before {
  content: "\e948";
}
.af-view:before {
  content: "\e949";
}
.af-plus:before {
  content: "\e94a";
}
.af-minus:before {
  content: "\e94b";
}
.af-close:before {
  content: "\e94c";
}
.af-tick:before {
  content: "\e94d";
}
.af-comments:before {
  content: "\e94e";
}
.af-comment-blank:before {
  content: "\e94f";
}
.af-details:before {
  content: "\e950";
}
.af-warning:before {
  content: "\e951";
}
.af-image:before {
  content: "\e952";
}
.af-segment:before {
  content: "\e953";
}
.af-playlist:before {
  content: "\e954";
}
.af-audio:before {
  content: "\e955";
}
.af-video:before {
  content: "\e956";
}
.af-cube:before {
  content: "\e957";
}
.af-attach:before {
  content: "\e958";
}
.af-document:before {
  content: "\e95a";
}
.af-attach-file:before {
  content: "\e959";
}
.af-attach-doc:before {
  content: "\e95b";
}
.af-attach-image:before {
  content: "\e95c";
}
.af-attach-ppt:before {
  content: "\e95d";
}
.af-attach-word:before {
  content: "\e95e";
}
.af-attach-pdf:before {
  content: "\e95f";
}
.af-attach-excel:before {
  content: "\e960";
}
.af-attach-audio:before {
  content: "\e961";
}
.af-attach-video:before {
  content: "\e962";
}
.af-version:before {
  content: "\e963";
}
.af-play:before {
  content: "\e964";
}
.af-pause:before {
  content: "\e965";
}
.af-mark-in:before {
  content: "\e966";
}
.af-mark-out:before {
  content: "\e967";
}
.af-play-slower:before {
  content: "\e968";
}
.af-fast-forward:before {
  content: "\e969";
}
.af-previous-segment:before {
  content: "\e96a";
}
.af-next-segment:before {
  content: "\e96b";
}
.af-previous-second:before {
  content: "\e96c";
}
.af-next-second:before {
  content: "\e96d";
}
.af-previous-frame:before {
  content: "\e96e";
}
.af-next-frame:before {
  content: "\e96f";
}
.af-stop:before {
  content: "\e970";
}
.af-next10s:before {
  content: "\e971";
}
.af-previous10s:before {
  content: "\e972";
}
.af-zoom-out:before {
  content: "\e973";
}
.af-zoom-in1:before {
  content: "\e974";
}
.af-volume-mute:before {
  content: "\e975";
}
.af-volume-half:before {
  content: "\e976";
}
.af-volume-full:before {
  content: "\e977";
}
.af-fullscreen_exit:before {
  content: "\e978";
}
.af-fullscreen:before {
  content: "\e979";
}
.af-turned-over:before {
  content: "\e97a";
}
.af-not-applicable:before {
  content: "\e97b";
}
.af-omit:before {
  content: "\e97c";
}
.af-pending:before {
  content: "\e97d";
}
.af-assign-me:before {
  content: "\e97e";
}
.af-assigned:before {
  content: "\e97f";
}
.af-scheduled:before {
  content: "\e980";
}
.af-ready-to-start:before {
  content: "\e981";
}
.af-work-in-progress-partial:before {
  content: "\e982";
}
.af-on-farm:before {
  content: "\e983";
}
.af-work-in-progress:before {
  content: "\e984";
}
.af-on-hold:before {
  content: "\e985";
}
.af-re-assigned:before {
  content: "\e986";
}
.af-awaiting-feedback:before {
  content: "\e987";
}
.af-kickback:before {
  content: "\e988";
}
.af-awaiting-vfx-review:before {
  content: "\e989";
}
.af-awaiting-dfx-review:before {
  content: "\e98a";
}
.af-awaiting-qc:before {
  content: "\e98b";
}
.af-contingency:before {
  content: "\e98c";
}
.af-complete:before {
  content: "\e98d";
}
.af-banked:before {
  content: "\e98e";
}
.af-awaiting-vendor-feedback:before {
  content: "\e98f";
}
.af-awaiting-client-review:before {
  content: "\e990";
}
.af-projected:before {
  content: "\e991";
}
.af-awarded:before {
  content: "\e992";
}
.af-bidding:before {
  content: "\e993";
}
.af-awarded-partial:before {
  content: "\e994";
}
.af-pending1:before {
  content: "\e995";
}
.af-proposed:before {
  content: "\e996";
}
.af-cbb:before {
  content: "\e997";
}
.af-final:before {
  content: "\e998";
}
.af-temp:before {
  content: "\e999";
}
.af-deleted:before {
  content: "\e99a";
}
.af-ready-to-start1:before {
  content: "\e99b";
}
.af-waiting-to-start:before {
  content: "\e99c";
}
.af-declined:before {
  content: "\e99d";
}
.af-element-in-pipe:before {
  content: "\e99e";
}
.af-element-approved:before {
  content: "\e99f";
}
.af-for-director-review:before {
  content: "\e9a0";
}
.af-internally-approved:before {
  content: "\e9a1";
}
.af-client-approved:before {
  content: "\e9a2";
}
.af-client-work-in-progress:before {
  content: "\e9a3";
}
.af-trailer:before {
  content: "\e9a4";
}
.af-editorial-approved:before {
  content: "\e9a5";
}
.af-requested:before {
  content: "\e9a6";
}
.af-blocked:before {
  content: "\e9a7";
}
.af-closed:before {
  content: "\e9a8";
}
.af-tech-issue:before {
  content: "\e9a9";
}
.af-p-blocked:before {
  content: "\e9ab";
}
.af-p-critical:before {
  content: "\e9ac";
}
.af-p-normal:before {
  content: "\e9ad";
}
.af-p-low:before {
  content: "\e9ae";
}
.af-p-trivial:before {
  content: "\e9af";
}
.af-equalizer:before {
  content: "\e9b0";
}
.af-shift:before {
  content: "\e9b1";
}
.af-command:before {
  content: "\e9b2";
}
.af-profile-pic:before {
  content: "\e9b3";
}
.af-sort-column:before {
  content: "\e9b4";
}
.af-sort-asc:before {
  content: "\e9b5";
}
.af-soft-desc:before {
  content: "\e9b6";
}
.af-box-checked-filled:before {
  content: "\e9b7";
}
.af-radio-checked-filled:before {
  content: "\e9b8";
}
.af-my-assets-shots:before {
  content: "\e9b9";
}
.af-my-notes:before {
  content: "\e9ba";
}
.af-folder-open:before {
  content: "\e9bb";
}
.af-folder-close:before {
  content: "\e9bc";
}
.af-logout:before {
  content: "\e9bd";
}
.af-construction:before {
  content: "\e9be";
}
.af-swithuser:before {
  content: "\e9bf";
}
.af-client-update:before {
  content: "\e9c0";
}
.af-link:before {
  content: "\e9c1";
}
.af-available:before {
  content: "\e9c2";
}
.af-registered:before {
  content: "\e9c3";
}
.af-empty-circle:before {
  content: "\e9c4";
}
.af-help2:before {
  content: "\e9c5";
}
.af-dark:before {
  content: "\e9c6";
}
.af-light:before {
  content: "\e9c7";
}
.task-table-grid .ag-theme-alpine,
.task-table-grid .ag-header,
.task-table-grid .ag-row,
.task-table-grid .ag-spanned-row {
  --ag-font-family: "Albert Sans", sans-serif;
  --ag-font-size: 1rem;
  --ag-header-font-size: 1rem;
  --ag-data-font-size: 1rem;
  --ag-border-radius: 8px;
  --ag-grid-size: 6px;
  --ag-line-height: 51px;
}

.ag-cell-wrapper.ag-row-group {
  --ag-row-group-indent-size: 56px;
}

.task-table-grid .ag-row-level-2.ag-row .task-cell {
  padding-left: 28px;
}

.task-table-grid .ag-row-level-2.ag-row .ag-cell:nth-child(2) .body-col {
  padding-left: 28px;
}

.task-table-grid .ag-row-level-3.ag-row .ag-cell:nth-child(2) .task-cell {
  padding-left: 86px;
}

.task-table-grid .ag-row {
  border-bottom: none;
}

.task-table-grid .ag-row:after {
  content: '';
  border-bottom: 1px solid var(--border);
  position: absolute;
  left: 0;
  width: 100%;
}

.task-table-grid .ag-row.ag-row-last:before {
  content: '';
  border-bottom: 1px solid var(--border);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.task-table-grid .ag-row .ag-cell {
  line-height: 51px !important;
  color: var(--secondary);
  font-family: var(--ag-font-family);
  font-weight: 400;
}

.atlasDashboard [class*=ag-theme-] {
  --ag-wrapper-border-radius: var(--ag-border-radius);
}

.task-table-container {
  width: 100%;
  height: 100%;
  color: var(--ag-foreground-color);
  background-color: var(--ag-background-color);
  transition: background-color 0.2s ease;
  /* Add smooth transition */
}

.task-table-grid {
  height: 100%;
  overflow: auto;
  width: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: var(--ag-background-color);
  color: var(--ag-foreground-color);
  transition: background-color 0.2s ease;
  /* Add smooth transition */
}

.task-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.cell-content {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 400;
}

.taskschedule {
  cursor: pointer;
}

.task-cell {
  font-family: Albert Sans;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.task-thumbnail {
  width: 61px;
  height: 34px;
  border-radius: 4px;
  object-fit: cover;
}

.task-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: calc(100% - 85px);
  line-height: initial;
}

.task-content .task-name {
  color: var(--secondary);
  width: 100%;
  font-size: 12px;
}

.task-meta {
  display: flex;
  gap: 4px;
  align-items: center;
}

.project-code {
  color: var(--orange);
  font-size: 12px;
  white-space: initial;
}

.dot {
  color: var(--secondary);
  font-size: 12px;
}

.asset-id {
  color: var(--secondary);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.grey-text {
  color: var(--secondary);
}

.link-text {
  color: var(--primary);
  font-weight: 500;
}

.thumbnail-wrapper {
  position: relative;
  display: inline-block;
}

.cursorDefault {
  cursor: default !important;
}

.unitColumn {
  text-overflow: ellipsis;
  line-height: 1.2em;
  -webkit-box-orient: vertical;
  width: 100%;
  color: var(--secondary);
  margin: 8px 0;
}

.clientVersion {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--white-color);
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  min-width: 14px;
  text-align: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

/* Badge style */
.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #EC470E;
  color: var(--white-color);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  min-width: 14px;
  text-align: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.approved {
  color: #38B573 !important;
}

.failed {
  color: #ff2222 !important;
}

.closed {
  color: #ff2222 !important;
}

.in-progress {
  color: #fd9303 !important;
}

.pending {
  color: #fd9303 !important;
}

.cbb {
  color: #b94ffc !important;
}

.color {
  color: var(--white-color) !important;
}

.black {
  color: var(--black-color);
}

.notStarted {
  color: #2583f0;
}

.ag-header-cell-right {
  justify-content: space-between !important;
}

.ag-header-cell-right .ag-header-cell-label {
  justify-content: space-between !important;
}

/* Hide loading states */
.ag-loading {
  display: none !important;
}

.ag-loading-cell {
  display: none !important;
}

.ag-loading-overlay {
  display: none !important;
}

.ag-loading-row {
  display: none !important;
}

/* Center the loading spinner */
.loading-spinner-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.2s ease;
  /* Add smooth transition */
}

/* Add dark mode styles */
html[data-theme="dark"] .task-table-container,
html[data-theme="dark"] .task-table-grid {
  background-color: var(--iconBG);
  border-radius: 0 0 8px 8px;
}

html[data-theme="dark"] .loading-spinner-container {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Task Dashboard Paper styles */
.task-dashboard-paper {
  padding: 16px;
  border-radius: 10px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.atlasDashboard .ag-root-wrapper {
  border: none;
  border-radius: 8px;
}

.atlasDashboard.ag-theme-alpine .ag-row,
.atlasDashboard.ag-theme-alpine-dark .ag-row,
.atlasDashboard.ag-theme-alpine-auto-dark .ag-row {
  font-size: calc(var(--ag-font-size) - 4px);
}

.atlasDashboard .ag-row-hover:not(.ag-full-width-row)::before,
.atlasDashboard .ag-row-hover.ag-full-width-row.ag-row-group::before {
  background-color: var(--rowHover);
}

.atlasDashboard .ag-header,
.atlasDashboard .ag-advanced-filter-header {
  background-color: var(--tableHeader);
  border-bottom: none;
  border-radius: 0%;
}

.atlasDashboard .ag-header-cell,
.atlasDashboard .ag-header-group-cell,
.atlasDashboard .ag-cell {
  padding-left: calc(var(--ag-cell-horizontal-padding) - 2px);
  padding-right: calc(var(--ag-cell-horizontal-padding) - 2px);
  border: 0 !important;
}

.atlasDashboard .ag-header-cell.firstColumnSpacing {
  padding-left: 101px;
}

.atlasDashboard:has(.ag-row-level-2) .ag-header-cell.firstColumnSpacing {
  padding-left: 128px;
}

.atlasDashboard:has(.ag-row-level-3) .ag-header-cell.firstColumnSpacing {
  padding-left: 190px;
}

.atlasDashboard .ag-ltr .ag-header-cell-resize {
  right: -4px;
}

.atlasDashboard .ag-header-cell-resize::after {
  border-left: 2px solid var(--primary);
  visibility: hidden;
  opacity: .5;
  height: 40%;
  top: calc(50% - 40% * 0.5);
  width: 2px;
  left: 1px !important;
}

.atlasDashboard .ag-header-cell:hover .ag-header-cell-resize::after {
  visibility: visible;
}

.atlasDashboard .ag-header-cell.ag-column-resizing {
  background: #eaeffa !important;
}

.atlasDashboard:not(.ScheduleDashboard) .ag-column-first .ag-header-cell-resize {
  cursor: default;
}

.atlasDashboard:not(.ScheduleDashboard) .ag-column-first .ag-header-cell-resize::after {
  display: none;
}

.atlasDashboard .ag-header-cell-text {
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  color: var(--tableHeaderText);
  font-family: var(--ag-font-family);
}

.atlasDashboard .ag-header-cell-sortable .ag-cell-label-container {
  justify-content: flex-end;
}

.atlasDashboard .ag-header-cell-sortable .ag-header-cell-label {
  flex: unset;
}

.grid-cell-centered .ag-header-cell-label {
  text-align: center;
}

.atlasDashboard .ag-header-cell-sortable.grid-cell-centered .ag-header-cell-label {
  flex: 1;
}

.atlasDashboard .ag-row-group-expanded,
.atlasDashboard .ag-row-group-contracted {
  background: var(--rowHover);
}

.trimtext,
.TrimText {
  text-overflow: ellipsis;
  overflow: hidden;
}

.atlasDashboard .FirstColumn .ag-header-cell-text {
  padding-left: 70px;
}

.atlasDashboard .ag-cell-wrapper {
  width: 100%;
}

.atlasDashboard .ag-cell-expandable .ag-icon {
  visibility: visible;
  margin-top: 12px;

}

.atlasDashboard .ag-icon {
  font-size: 18px;
  color: var(--secondary);
  margin-top: -2px;
  visibility: hidden;
}

.atlasDashboard .ag-header-cell-comp-wrapper:hover .ag-icon {
  visibility: visible;
}

.atlasDashboard .ag-header-cell-comp-wrapper .ag-icon.ag-icon-asc,
.atlasDashboard .ag-header-cell-comp-wrapper .ag-icon.ag-icon-desc {
  visibility: visible;
}

.atlasDashboard .ag-icon-none::before {
  content: '\e9b4';
  font-family: 'atlas';
}

.atlasDashboard .ag-icon-asc::before {
  content: '\e9b5';
  font-family: 'atlas';
}

.atlasDashboard .ag-icon-desc::before {
  content: '\e9b6';
  font-family: 'atlas';
}

.priorityIcon {
  font-size: 24px;
  vertical-align: middle;
  color: var(--disabled);
}

.priorityLow {
  border: .115em solid var(--primary2);
}

.priorityHigh {
  background: var(--primary2);
}

.priorityHigh:before {
  content: '\e94d';
  font-family: 'atlas';
  color: var(--white-color);
  font-size: 13px;
  font-weight: 600;
}

.atlasDashboard .ag-cell-value .studioX {
  color: var(--primary2);
}

.colorOrange {
  color: var(--orange);
}

.VersionsDetailsWrap {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  max-width: 100%;
  margin: 8px 0;
}

.VersionsLine1 {
  color: var(--primary);
  font-weight: 500;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}

.versionsDateTime {
  color: var(--secondary);
  font-weight: 400;
}

.versionsDateTime .time {
  color: #7F8390;
}

.atlasDashboard .ag-pinned-left-header,
.atlasDashboard .ag-pinned-left-cols-container {
  border-right: 1px solid var(--border);
  box-shadow: 4px 0px 6px rgb(0 0 0 / 8%);
  z-index: 1;
}

.priorityColumn {
  width: 100%;
  text-align: center;
}

.TicketsID {
  width: 100%;
  text-align: center;
}

.TicketsID .TicketsIDLink {
  color: var(--primary);
  font-weight: 600;
}

.Tickets-task-content {
  width: 100%;
}

.alignCentered {
  width: 100%;
  text-align: center;
}

.alignCenteredColumn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.verticalMiddle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.To-CC-Column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.usericonsWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.personIcon {
  height: 16px !important;
  width: 16px;
  line-height: 16px;
  font-size: 24px;
  color: var(--primary2);
  cursor: default;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.personIcon::before {
  display: block;
  left: -4px;
  width: 16px;
  height: 16px;
  position: absolute;
}

.personIcon:after {
  content: '';
  background: var(--white-color);
  border-radius: 100%;
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: -1;
}

.personIcon~.personIcon {
  margin-left: -3px;
  z-index: 1;
}

.personIcon:nth-of-type(n+3) {
  z-index: 1;
}

.personIcon:nth-of-type(n+4) {
  display: none;
}

.moreUser {
  width: 16px;
  height: 16px !important;
  line-height: 16px;
  border-radius: 100%;
  text-align: center;
  font-family: 'Albert Sans' !important;
  font-size: 9px;
  font-weight: 600;
  color: var(--primary2);
  background-color: var(--white-color);
  margin-left: -3px;
  z-index: 1;
  margin-top: 1px;
  position: relative;
}

.moreUser:before {
  font-family: 'atlas' !important;
  font-size: 24px;
  font-weight: 200;
  display: block;
  left: -5px;
  width: 16px;
  height: 16px;
  position: absolute;
}

.moreUser em {
  font-style: normal;
  display: block;
  width: 13px;
  text-align: center;
}

.statusIconStyle {
  font-size: 24px;
  vertical-align: middle;
  cursor: default;
}

.statusIconStyle.af-version,
.statusIconStyle.af-show {
  cursor: pointer;
}

.NOstatusIconStyle {
  font-size: 12px;
  vertical-align: middle;
}

.highlighted-row .task-name {
  background-color: var(--ActiveMenu);
  padding: 4px 8px;
  border-radius: 100px;
  width: fit-content;
}

.highlighted-row .highlightName {
  background-color: var(--ActiveMenu);
  padding: 0 8px;
  border-radius: 100px;
}

.blackIconColor {
  color: var(--black-color) !important;
}

.dark .blackIconColor {
  color: var(--white-color) !important;
}

.DBfolderIcon {
  font-size: 24px;
  color: var(--buttonBG);
  margin-right: 6px;
}

/* Generic Dashboard Container Styles - Consolidated */
.dashboard-container,
.shots-dashboard-container,
.versions-dashboard-container,
.scans-dashboard-container {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.dashboard-project-name,
.shots-project-name,
.versions-project-name,
.scans-project-name {
  color: var(--orange);
  padding-right: 4px;
  font-weight: 600;
  font-size: 14px;
}

.dashboard-count,
.shots-count,
.versions-count,
.scans-count {
  font-weight: 400;
  font-size: 14px;
  color: var(--primary);
}

.dashboard-sequence-container,
.shots-sequence-container,
.scans-sequence-container {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
}

.dashboard-sequence-count,
.shots-sequence-count,
.scans-sequence-count {
  font-weight: 600;
}

.dashboard-link-container,
.versions-link-container {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
}

.dashboard-link-count,
.versions-link-count {
  font-weight: 600;
}

.body-col {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.body-col .body-col-Value {
  flex: 1 0 0%;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.body-col .body-col-Value.fullContentShown {
  padding: 8px 0;
  line-height: 1.3;
  text-overflow: initial;
  overflow: initial;
  white-space: pre-wrap;
}

.body-col .attachIcon {
  padding: 0;
  color: var(--primary);
}

.playlist-item {
  display: block;
  width: 100%;
  line-height: 1.5;
}

.playlist-parent {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.linkWrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
}

.linkItem {
  line-height: 1.7;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.body-col.linkItem .body-col-Value {
  cursor: default;
  padding: 0;
}

.linkItem .linkIcon {
  font-size: 20px;
}

.ag-row-group {
  cursor: pointer;
}

.notegrid {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  align-items: center;
  height: 100%;
}

.task-table-grid .TicketsDashboard .ag-row-group {
  line-height: 51px !important;
}

.task-table-grid .TicketsDashboard .ag-row .ag-cell {
  line-height: initial !important;
  padding-top: 8px;
  padding-bottom: 8px;
}

.MuiTooltip-popper .MuiTooltip-tooltip {
  max-width: 500px;
}

.verAlignMiddle .ag-cell-wrapper,
.verAlignMiddle .date-col {
  height: 100%;
  display: flex;
  align-items: center;
}

.bodyAttachment.verMiddle {
  display: flex !important;
  flex-direction: column;
}

.verMiddle .ag-cell-wrapper {
  flex: 1;
  vertical-align: middle;
  display: inline-flex;
}

.link-text .ag-cell-wrapper {
  height: auto;
  display: flex;
  align-items: center;
}

.type-col {
  height: 100%;
  display: flex;
  align-items: center;
}

.task-table-grid .NotesDashboard .ag-row-group {
  line-height: 51px !important;
}

.task-table-grid .NotesDashboard .ag-row .ag-cell {
  line-height: initial !important;
  padding-top: 8px;
  padding-bottom: 8px;
}

.dashboard-header-rightControls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-header-rightControls .MyTaskSwitch {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-right: 0;
  padding: 0 8px 0 0px;
  font-size: 12px;
}

.dashboard-header-rightControls .MyTaskSwitch .MuiFormControlLabel-label {
  font-size: 12px;
  color: var(--secondary);
}

.dashboard-header-rightControls .MyTaskSwitch .MyTaskSwitchLabel {
  padding: 0.5px;
  font-size: 24px;
}

.dashboard-header-rightControls .MyTaskSwitch .MyTaskSwitchLabel.Mui-checked {
  color: #4B5563;
}

.dashboard-header-rightControls .MyTaskSwitch .MyTaskSwitchLabel.Mui-checked:before {
  content: "\e9b7";
}

.dashboard-header-rightControls .MyTaskSwitch .MyTaskSwitchLabel svg {
  display: none;
}

.dashboard-header-rightControls .modeSwitch {
  border-radius: 8px;
}

.dashboard-header-rightControls .icons {
  padding: 2px;
  color: var(--shot-link-color);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.dashboard-header-rightControls .icons:hover {
  background-color: var(--rowHover);
}

.dashboard-header-rightControls .icons.active {
  background-color: var(--iconBG);
}


.dashboard-header-rightControls .icons.Mui-disabled {
  opacity: 0.5;
  color: var(--shot-link-color);
  border: 1px solid var(--border);
}

.dashboard-header-rightControls .seprator {
  border-left: 1px solid var(--border);
  height: 24px;
  margin-left: 8px;
  margin-right: 8px;
}

.dashboard-header-rightControls:has(.groupBy-popper) .columnsIcon,
.columnsIcon.has-checked {
  background-color: var(--iconBG);
}


.priorityColumn .noValue {
  color: var(--primary);
  font-size: 13px;
}.glow-text {
  color: #ff6f61;
  font-weight: bold;
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #ff6f61, 0 0 20px #ff6f61;
  }

  to {
    text-shadow: 0 0 20px #ff3d00, 0 0 30px #ff3d00;
  }
}

.floating-icon {
  animation: float 3s ease-in-out infinite;
}

.floating-icon .constructionIcon {
  font-size: 100px;
  color: var(--orange);
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-10px);
  }

  100% {
    transform: translatey(0px);
  }
}.MuiInputBase-input.MuiOutlinedInput-input:-webkit-autofill,
.css-i5v8s4-MuiInputBase-input-MuiOutlinedInput-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 100px rgb(26 25 25) inset !important;
    -webkit-text-fill-color: rgb(255, 255, 255);
    caret-color: rgb(255, 255, 255);
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

.loginContainer {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    background-image: url(/Images/BEACON_Artist_Tool_Cover_Screen_Design_Opt-3.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.loginContainer:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: color(srgb 0 0 0 / 0.4);
}

.LeftPanel {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, rgba(52, 52, 52, 0.5) 30%, rgba(136, 131, 131, 0) 100%);
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

.LoginWrapper {
    width: 83%;
    padding-top: 12vh;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
}

.clearlogo {
    width: 100%;
    height: 90px;
    margin-bottom: 7vh;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: rgb(255, 255, 255);
}

.clearlogo .beacon-logo {
    font-size: 22vw;
    background-image: url(/Images/logo_Light.svg);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    height: 88px;
    width: 100%;
}

.loginForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.loginForm .loginField label {
    font-size: 14px;
    line-height: 1.4375em;
    padding-right: 8px;
    padding-left: 8px;
    transform: translate(14px, -9px) scale(1);
}

.loginForm .loginField .MuiInputBase-root {
    border-radius: unset;
}

.loginForm .loginField input {
    color: #fff;
    font-size: 14px;
}


.loginForm .loginField label.Mui-focused {
    color: #959eb1;
}

.loginForm .loginField fieldset {
    border-color: #3d424b;
    border-width: 1px;
    padding: 12px;
    border-radius: 8px;
}

.loginForm .loginField fieldset legend {
    font-size: 14px;
    padding-right: 8px;
    padding-left: 8px;
    max-width: initial;
}

.loginField .MuiOutlinedInput-root:hover fieldset {
    border-color: #646b79;
}

.loginField .MuiOutlinedInput-root.Mui-focused fieldset {
    border-color: #959eb1;
    border-width: 1px;
}

.loginForm .loginButton {
    background-color: #ee6225;
    padding: 16px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    width: 100%;
    color: #000000;
}

.loginForm .loginButton:hover {
    background-color: hsl(18, 92%, 46%);
    color: rgb(0, 0, 0);
}

.loginForm .errorText {
    font-size: 14px;
    line-height: 1.3;
}

.BottomPanel {
    /* background: rgba(31, 30, 30, 0.8); */
    width: 90%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 4px;
    border-radius: 8px;
}

.BottomPanel .CopyrightText {
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0em;
    color: #b1bac9;
    text-align: center;
}

.bottomlinks {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.bottomlinks button {
    min-width: initial;
    text-transform: initial;
    color: rgb(144, 157, 175);
    background: none;
    padding: 0px;
    font-size: 13px;
}

.bottomlinks button:hover {
    color: #fff;
}

.RightPanel {
    width: 55%;
}

@media (max-width: 1024px) {
    .loginContainer {
        /* background-image: url(/Images/login_bg-Mobile.jpg); */
        background-image: url(/Images/BEACON_Artist_Tool_Cover_Screen_Design_Opt-3.jpg);
        display: flex;
        align-items: center;
        justify-content: center;
        background-position: 100% 50%;
        background-color: #000000;
    }

    /* .clearlogo span {
        font-size: 45vw;
    } */

    .loginContainer .RightPanel {
        display: none;
    }

    .loginContainer .LeftPanel {
        width: 45vw;
        background: rgb(0 0 0 / 67%);
        height: 80%;
        border-radius: 20px;
        border: 1px solid var(--orange);
        padding: 20px;
        box-shadow: 0 0 30px #000;
    }

    /* .loginContainer .clearlogo .cf-clear-logo {
        font-size: 9vw;
    } */

    .loginContainer .LoginWrapper {
        width: 100%;
        padding-top: 0;
    }

    .loginContainer .BottomPanel {
        margin-bottom: 0;
        position: initial;
        width: 100%;
        background: none;
    }

    .loginContainer .bottomlinks {
        gap: 24px;
    }

    .loginContainer .bottomlinks button {
        min-width: initial;
    }

    .Help_Popup .MuiDialog-paper,
    .Termsofuse_Popup .MuiDialog-paper,
    .PrivacyPolicy_Popup .MuiDialog-paper {
        width: 80%;
        min-width: 300px;
    }
}

@media (max-width: 840px) {
    .loginContainer .LeftPanel {
        width: 60vw;
    }

    /* .loginContainer .clearlogo .cf-clear-logo {
        font-size: 10vw;
    } */

    .loginContainer .BottomPanel {
        width: 60vw;
    }

    .Termsofuse_Popup .MuiDialog-paper,
    .PrivacyPolicy_Popup .MuiDialog-paper {
        width: 94%;
    }
}

@media (max-width: 640px) {
    .loginContainer .LeftPanel {
        width: 90vw;
    }

    /* .loginContainer .clearlogo .cf-clear-logo {
        font-size: 12vw;
    } */

    .loginContainer .BottomPanel {
        width: 90vw;
    }
}

@media (min-width: 1600px) {
    .loginContainer .LeftPanel {
        width: 28%;
    }

    .loginContainer .RightPanel {
        width: 72%;
    }
}body {
  --ag-legacy-styles-loaded: "true";
}

.ag-icon {
  font-family: var(--ag-icon-font-family);
  font-weight: var(--ag-icon-font-weight);
  color: var(--ag-icon-font-color);
  font-size: var(--ag-icon-size);
  line-height: var(--ag-icon-size);
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: var(--ag-icon-size);
  height: var(--ag-icon-size);
  position: relative;
}
.ag-icon::before {
  content: "";
  font-family: inherit;
}
.ag-icon::after {
  background: transparent var(--ag-icon-image, none) center/contain no-repeat;
  display: var(--ag-icon-image-display);
  opacity: var(--ag-icon-image-opacity, 0.9);
  position: absolute;
  inset: 0;
  content: "";
}

.ag-icon-aggregation {
  font-family: var(--ag-icon-font-family-aggregation, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-aggregation, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-aggregation, var(--ag-icon-font-color));
}

.ag-icon-aggregation::before {
  content: var(--ag-icon-font-code-aggregation, "\f101");
  display: var(--ag-icon-font-display-aggregation, var(--ag-icon-font-display));
}

.ag-icon-aggregation::after {
  background-image: var(--ag-icon-image-aggregation, var(--ag-icon-image));
  display: var(--ag-icon-image-display-aggregation, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-aggregation, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-arrows {
  font-family: var(--ag-icon-font-family-arrows, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-arrows, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-arrows, var(--ag-icon-font-color));
}

.ag-icon-arrows::before {
  content: var(--ag-icon-font-code-arrows, "\f102");
  display: var(--ag-icon-font-display-arrows, var(--ag-icon-font-display));
}

.ag-icon-arrows::after {
  background-image: var(--ag-icon-image-arrows, var(--ag-icon-image));
  display: var(--ag-icon-image-display-arrows, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-arrows, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-asc {
  font-family: var(--ag-icon-font-family-asc, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-asc, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-asc, var(--ag-icon-font-color));
}

.ag-icon-asc::before {
  content: var(--ag-icon-font-code-asc, "\f103");
  display: var(--ag-icon-font-display-asc, var(--ag-icon-font-display));
}

.ag-icon-asc::after {
  background-image: var(--ag-icon-image-asc, var(--ag-icon-image));
  display: var(--ag-icon-image-display-asc, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-asc, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-cancel {
  font-family: var(--ag-icon-font-family-cancel, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-cancel, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-cancel, var(--ag-icon-font-color));
}

.ag-icon-cancel::before {
  content: var(--ag-icon-font-code-cancel, "\f104");
  display: var(--ag-icon-font-display-cancel, var(--ag-icon-font-display));
}

.ag-icon-cancel::after {
  background-image: var(--ag-icon-image-cancel, var(--ag-icon-image));
  display: var(--ag-icon-image-display-cancel, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-cancel, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-chart {
  font-family: var(--ag-icon-font-family-chart, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-chart, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-chart, var(--ag-icon-font-color));
}

.ag-icon-chart::before {
  content: var(--ag-icon-font-code-chart, "\f105");
  display: var(--ag-icon-font-display-chart, var(--ag-icon-font-display));
}

.ag-icon-chart::after {
  background-image: var(--ag-icon-image-chart, var(--ag-icon-image));
  display: var(--ag-icon-image-display-chart, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-chart, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-checkbox-checked {
  font-family: var(--ag-icon-font-family-checkbox-checked, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-checkbox-checked, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-checkbox-checked, var(--ag-icon-font-color));
}

.ag-icon-checkbox-checked::before {
  content: var(--ag-icon-font-code-checkbox-checked, "\f106");
  display: var(--ag-icon-font-display-checkbox-checked, var(--ag-icon-font-display));
}

.ag-icon-checkbox-checked::after {
  background-image: var(--ag-icon-image-checkbox-checked, var(--ag-icon-image));
  display: var(--ag-icon-image-display-checkbox-checked, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-checkbox-checked, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-checkbox-indeterminate {
  font-family: var(--ag-icon-font-family-checkbox-indeterminate, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-checkbox-indeterminate, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-checkbox-indeterminate, var(--ag-icon-font-color));
}

.ag-icon-checkbox-indeterminate::before {
  content: var(--ag-icon-font-code-checkbox-indeterminate, "\f107");
  display: var(--ag-icon-font-display-checkbox-indeterminate, var(--ag-icon-font-display));
}

.ag-icon-checkbox-indeterminate::after {
  background-image: var(--ag-icon-image-checkbox-indeterminate, var(--ag-icon-image));
  display: var(--ag-icon-image-display-checkbox-indeterminate, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-checkbox-indeterminate, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-checkbox-unchecked {
  font-family: var(--ag-icon-font-family-checkbox-unchecked, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-checkbox-unchecked, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-checkbox-unchecked, var(--ag-icon-font-color));
}

.ag-icon-checkbox-unchecked::before {
  content: var(--ag-icon-font-code-checkbox-unchecked, "\f108");
  display: var(--ag-icon-font-display-checkbox-unchecked, var(--ag-icon-font-display));
}

.ag-icon-checkbox-unchecked::after {
  background-image: var(--ag-icon-image-checkbox-unchecked, var(--ag-icon-image));
  display: var(--ag-icon-image-display-checkbox-unchecked, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-checkbox-unchecked, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-color-picker {
  font-family: var(--ag-icon-font-family-color-picker, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-color-picker, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-color-picker, var(--ag-icon-font-color));
}

.ag-icon-color-picker::before {
  content: var(--ag-icon-font-code-color-picker, "\f109");
  display: var(--ag-icon-font-display-color-picker, var(--ag-icon-font-display));
}

.ag-icon-color-picker::after {
  background-image: var(--ag-icon-image-color-picker, var(--ag-icon-image));
  display: var(--ag-icon-image-display-color-picker, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-color-picker, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-columns {
  font-family: var(--ag-icon-font-family-columns, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-columns, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-columns, var(--ag-icon-font-color));
}

.ag-icon-columns::before {
  content: var(--ag-icon-font-code-columns, "\f10a");
  display: var(--ag-icon-font-display-columns, var(--ag-icon-font-display));
}

.ag-icon-columns::after {
  background-image: var(--ag-icon-image-columns, var(--ag-icon-image));
  display: var(--ag-icon-image-display-columns, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-columns, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-contracted {
  font-family: var(--ag-icon-font-family-contracted, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-contracted, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-contracted, var(--ag-icon-font-color));
}

.ag-icon-contracted::before {
  content: var(--ag-icon-font-code-contracted, "\f10b");
  display: var(--ag-icon-font-display-contracted, var(--ag-icon-font-display));
}

.ag-icon-contracted::after {
  background-image: var(--ag-icon-image-contracted, var(--ag-icon-image));
  display: var(--ag-icon-image-display-contracted, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-contracted, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-copy {
  font-family: var(--ag-icon-font-family-copy, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-copy, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-copy, var(--ag-icon-font-color));
}

.ag-icon-copy::before {
  content: var(--ag-icon-font-code-copy, "\f10c");
  display: var(--ag-icon-font-display-copy, var(--ag-icon-font-display));
}

.ag-icon-copy::after {
  background-image: var(--ag-icon-image-copy, var(--ag-icon-image));
  display: var(--ag-icon-image-display-copy, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-copy, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-cross {
  font-family: var(--ag-icon-font-family-cross, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-cross, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-cross, var(--ag-icon-font-color));
}

.ag-icon-cross::before {
  content: var(--ag-icon-font-code-cross, "\f10d");
  display: var(--ag-icon-font-display-cross, var(--ag-icon-font-display));
}

.ag-icon-cross::after {
  background-image: var(--ag-icon-image-cross, var(--ag-icon-image));
  display: var(--ag-icon-image-display-cross, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-cross, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-csv {
  font-family: var(--ag-icon-font-family-csv, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-csv, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-csv, var(--ag-icon-font-color));
}

.ag-icon-csv::before {
  content: var(--ag-icon-font-code-csv, "\f10e");
  display: var(--ag-icon-font-display-csv, var(--ag-icon-font-display));
}

.ag-icon-csv::after {
  background-image: var(--ag-icon-image-csv, var(--ag-icon-image));
  display: var(--ag-icon-image-display-csv, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-csv, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-cut {
  font-family: var(--ag-icon-font-family-cut, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-cut, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-cut, var(--ag-icon-font-color));
}

.ag-icon-cut::before {
  content: var(--ag-icon-font-code-cut, "\f10f");
  display: var(--ag-icon-font-display-cut, var(--ag-icon-font-display));
}

.ag-icon-cut::after {
  background-image: var(--ag-icon-image-cut, var(--ag-icon-image));
  display: var(--ag-icon-image-display-cut, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-cut, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-desc {
  font-family: var(--ag-icon-font-family-desc, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-desc, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-desc, var(--ag-icon-font-color));
}

.ag-icon-desc::before {
  content: var(--ag-icon-font-code-desc, "\f110");
  display: var(--ag-icon-font-display-desc, var(--ag-icon-font-display));
}

.ag-icon-desc::after {
  background-image: var(--ag-icon-image-desc, var(--ag-icon-image));
  display: var(--ag-icon-image-display-desc, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-desc, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-excel {
  font-family: var(--ag-icon-font-family-excel, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-excel, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-excel, var(--ag-icon-font-color));
}

.ag-icon-excel::before {
  content: var(--ag-icon-font-code-excel, "\f111");
  display: var(--ag-icon-font-display-excel, var(--ag-icon-font-display));
}

.ag-icon-excel::after {
  background-image: var(--ag-icon-image-excel, var(--ag-icon-image));
  display: var(--ag-icon-image-display-excel, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-excel, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-expanded {
  font-family: var(--ag-icon-font-family-expanded, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-expanded, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-expanded, var(--ag-icon-font-color));
}

.ag-icon-expanded::before {
  content: var(--ag-icon-font-code-expanded, "\f112");
  display: var(--ag-icon-font-display-expanded, var(--ag-icon-font-display));
}

.ag-icon-expanded::after {
  background-image: var(--ag-icon-image-expanded, var(--ag-icon-image));
  display: var(--ag-icon-image-display-expanded, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-expanded, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-eye-slash {
  font-family: var(--ag-icon-font-family-eye-slash, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-eye-slash, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-eye-slash, var(--ag-icon-font-color));
}

.ag-icon-eye-slash::before {
  content: var(--ag-icon-font-code-eye-slash, "\f113");
  display: var(--ag-icon-font-display-eye-slash, var(--ag-icon-font-display));
}

.ag-icon-eye-slash::after {
  background-image: var(--ag-icon-image-eye-slash, var(--ag-icon-image));
  display: var(--ag-icon-image-display-eye-slash, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-eye-slash, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-eye {
  font-family: var(--ag-icon-font-family-eye, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-eye, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-eye, var(--ag-icon-font-color));
}

.ag-icon-eye::before {
  content: var(--ag-icon-font-code-eye, "\f114");
  display: var(--ag-icon-font-display-eye, var(--ag-icon-font-display));
}

.ag-icon-eye::after {
  background-image: var(--ag-icon-image-eye, var(--ag-icon-image));
  display: var(--ag-icon-image-display-eye, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-eye, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-filter {
  font-family: var(--ag-icon-font-family-filter, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-filter, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-filter, var(--ag-icon-font-color));
}

.ag-icon-filter::before {
  content: var(--ag-icon-font-code-filter, "\f115");
  display: var(--ag-icon-font-display-filter, var(--ag-icon-font-display));
}

.ag-icon-filter::after {
  background-image: var(--ag-icon-image-filter, var(--ag-icon-image));
  display: var(--ag-icon-image-display-filter, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-filter, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-first {
  font-family: var(--ag-icon-font-family-first, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-first, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-first, var(--ag-icon-font-color));
}

.ag-icon-first::before {
  content: var(--ag-icon-font-code-first, "\f116");
  display: var(--ag-icon-font-display-first, var(--ag-icon-font-display));
}

.ag-icon-first::after {
  background-image: var(--ag-icon-image-first, var(--ag-icon-image));
  display: var(--ag-icon-image-display-first, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-first, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-grip {
  font-family: var(--ag-icon-font-family-grip, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-grip, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-grip, var(--ag-icon-font-color));
}

.ag-icon-grip::before {
  content: var(--ag-icon-font-code-grip, "\f117");
  display: var(--ag-icon-font-display-grip, var(--ag-icon-font-display));
}

.ag-icon-grip::after {
  background-image: var(--ag-icon-image-grip, var(--ag-icon-image));
  display: var(--ag-icon-image-display-grip, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-grip, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-group {
  font-family: var(--ag-icon-font-family-group, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-group, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-group, var(--ag-icon-font-color));
}

.ag-icon-group::before {
  content: var(--ag-icon-font-code-group, "\f118");
  display: var(--ag-icon-font-display-group, var(--ag-icon-font-display));
}

.ag-icon-group::after {
  background-image: var(--ag-icon-image-group, var(--ag-icon-image));
  display: var(--ag-icon-image-display-group, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-group, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-last {
  font-family: var(--ag-icon-font-family-last, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-last, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-last, var(--ag-icon-font-color));
}

.ag-icon-last::before {
  content: var(--ag-icon-font-code-last, "\f119");
  display: var(--ag-icon-font-display-last, var(--ag-icon-font-display));
}

.ag-icon-last::after {
  background-image: var(--ag-icon-image-last, var(--ag-icon-image));
  display: var(--ag-icon-image-display-last, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-last, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-left {
  font-family: var(--ag-icon-font-family-left, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-left, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-left, var(--ag-icon-font-color));
}

.ag-icon-left::before {
  content: var(--ag-icon-font-code-left, "\f11a");
  display: var(--ag-icon-font-display-left, var(--ag-icon-font-display));
}

.ag-icon-left::after {
  background-image: var(--ag-icon-image-left, var(--ag-icon-image));
  display: var(--ag-icon-image-display-left, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-left, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-linked {
  font-family: var(--ag-icon-font-family-linked, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-linked, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-linked, var(--ag-icon-font-color));
}

.ag-icon-linked::before {
  content: var(--ag-icon-font-code-linked, "\f11b");
  display: var(--ag-icon-font-display-linked, var(--ag-icon-font-display));
}

.ag-icon-linked::after {
  background-image: var(--ag-icon-image-linked, var(--ag-icon-image));
  display: var(--ag-icon-image-display-linked, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-linked, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-loading {
  font-family: var(--ag-icon-font-family-loading, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-loading, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-loading, var(--ag-icon-font-color));
}

.ag-icon-loading::before {
  content: var(--ag-icon-font-code-loading, "\f11c");
  display: var(--ag-icon-font-display-loading, var(--ag-icon-font-display));
}

.ag-icon-loading::after {
  background-image: var(--ag-icon-image-loading, var(--ag-icon-image));
  display: var(--ag-icon-image-display-loading, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-loading, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-maximize {
  font-family: var(--ag-icon-font-family-maximize, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-maximize, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-maximize, var(--ag-icon-font-color));
}

.ag-icon-maximize::before {
  content: var(--ag-icon-font-code-maximize, "\f11d");
  display: var(--ag-icon-font-display-maximize, var(--ag-icon-font-display));
}

.ag-icon-maximize::after {
  background-image: var(--ag-icon-image-maximize, var(--ag-icon-image));
  display: var(--ag-icon-image-display-maximize, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-maximize, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-menu {
  font-family: var(--ag-icon-font-family-menu, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-menu, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-menu, var(--ag-icon-font-color));
}

.ag-icon-menu::before {
  content: var(--ag-icon-font-code-menu, "\f11e");
  display: var(--ag-icon-font-display-menu, var(--ag-icon-font-display));
}

.ag-icon-menu::after {
  background-image: var(--ag-icon-image-menu, var(--ag-icon-image));
  display: var(--ag-icon-image-display-menu, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-menu, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-minimize {
  font-family: var(--ag-icon-font-family-minimize, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-minimize, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-minimize, var(--ag-icon-font-color));
}

.ag-icon-minimize::before {
  content: var(--ag-icon-font-code-minimize, "\f11f");
  display: var(--ag-icon-font-display-minimize, var(--ag-icon-font-display));
}

.ag-icon-minimize::after {
  background-image: var(--ag-icon-image-minimize, var(--ag-icon-image));
  display: var(--ag-icon-image-display-minimize, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-minimize, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-next {
  font-family: var(--ag-icon-font-family-next, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-next, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-next, var(--ag-icon-font-color));
}

.ag-icon-next::before {
  content: var(--ag-icon-font-code-next, "\f120");
  display: var(--ag-icon-font-display-next, var(--ag-icon-font-display));
}

.ag-icon-next::after {
  background-image: var(--ag-icon-image-next, var(--ag-icon-image));
  display: var(--ag-icon-image-display-next, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-next, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-none {
  font-family: var(--ag-icon-font-family-none, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-none, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-none, var(--ag-icon-font-color));
}

.ag-icon-none::before {
  content: var(--ag-icon-font-code-none, "\f121");
  display: var(--ag-icon-font-display-none, var(--ag-icon-font-display));
}

.ag-icon-none::after {
  background-image: var(--ag-icon-image-none, var(--ag-icon-image));
  display: var(--ag-icon-image-display-none, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-none, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-not-allowed {
  font-family: var(--ag-icon-font-family-not-allowed, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-not-allowed, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-not-allowed, var(--ag-icon-font-color));
}

.ag-icon-not-allowed::before {
  content: var(--ag-icon-font-code-not-allowed, "\f122");
  display: var(--ag-icon-font-display-not-allowed, var(--ag-icon-font-display));
}

.ag-icon-not-allowed::after {
  background-image: var(--ag-icon-image-not-allowed, var(--ag-icon-image));
  display: var(--ag-icon-image-display-not-allowed, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-not-allowed, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-paste {
  font-family: var(--ag-icon-font-family-paste, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-paste, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-paste, var(--ag-icon-font-color));
}

.ag-icon-paste::before {
  content: var(--ag-icon-font-code-paste, "\f123");
  display: var(--ag-icon-font-display-paste, var(--ag-icon-font-display));
}

.ag-icon-paste::after {
  background-image: var(--ag-icon-image-paste, var(--ag-icon-image));
  display: var(--ag-icon-image-display-paste, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-paste, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-pin {
  font-family: var(--ag-icon-font-family-pin, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-pin, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-pin, var(--ag-icon-font-color));
}

.ag-icon-pin::before {
  content: var(--ag-icon-font-code-pin, "\f124");
  display: var(--ag-icon-font-display-pin, var(--ag-icon-font-display));
}

.ag-icon-pin::after {
  background-image: var(--ag-icon-image-pin, var(--ag-icon-image));
  display: var(--ag-icon-image-display-pin, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-pin, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-pivot {
  font-family: var(--ag-icon-font-family-pivot, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-pivot, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-pivot, var(--ag-icon-font-color));
}

.ag-icon-pivot::before {
  content: var(--ag-icon-font-code-pivot, "\f125");
  display: var(--ag-icon-font-display-pivot, var(--ag-icon-font-display));
}

.ag-icon-pivot::after {
  background-image: var(--ag-icon-image-pivot, var(--ag-icon-image));
  display: var(--ag-icon-image-display-pivot, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-pivot, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-previous {
  font-family: var(--ag-icon-font-family-previous, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-previous, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-previous, var(--ag-icon-font-color));
}

.ag-icon-previous::before {
  content: var(--ag-icon-font-code-previous, "\f126");
  display: var(--ag-icon-font-display-previous, var(--ag-icon-font-display));
}

.ag-icon-previous::after {
  background-image: var(--ag-icon-image-previous, var(--ag-icon-image));
  display: var(--ag-icon-image-display-previous, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-previous, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-radio-button-off {
  font-family: var(--ag-icon-font-family-radio-button-off, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-radio-button-off, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-radio-button-off, var(--ag-icon-font-color));
}

.ag-icon-radio-button-off::before {
  content: var(--ag-icon-font-code-radio-button-off, "\f127");
  display: var(--ag-icon-font-display-radio-button-off, var(--ag-icon-font-display));
}

.ag-icon-radio-button-off::after {
  background-image: var(--ag-icon-image-radio-button-off, var(--ag-icon-image));
  display: var(--ag-icon-image-display-radio-button-off, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-radio-button-off, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-radio-button-on {
  font-family: var(--ag-icon-font-family-radio-button-on, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-radio-button-on, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-radio-button-on, var(--ag-icon-font-color));
}

.ag-icon-radio-button-on::before {
  content: var(--ag-icon-font-code-radio-button-on, "\f128");
  display: var(--ag-icon-font-display-radio-button-on, var(--ag-icon-font-display));
}

.ag-icon-radio-button-on::after {
  background-image: var(--ag-icon-image-radio-button-on, var(--ag-icon-image));
  display: var(--ag-icon-image-display-radio-button-on, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-radio-button-on, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-right {
  font-family: var(--ag-icon-font-family-right, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-right, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-right, var(--ag-icon-font-color));
}

.ag-icon-right::before {
  content: var(--ag-icon-font-code-right, "\f129");
  display: var(--ag-icon-font-display-right, var(--ag-icon-font-display));
}

.ag-icon-right::after {
  background-image: var(--ag-icon-image-right, var(--ag-icon-image));
  display: var(--ag-icon-image-display-right, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-right, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-save {
  font-family: var(--ag-icon-font-family-save, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-save, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-save, var(--ag-icon-font-color));
}

.ag-icon-save::before {
  content: var(--ag-icon-font-code-save, "\f12a");
  display: var(--ag-icon-font-display-save, var(--ag-icon-font-display));
}

.ag-icon-save::after {
  background-image: var(--ag-icon-image-save, var(--ag-icon-image));
  display: var(--ag-icon-image-display-save, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-save, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-small-down {
  font-family: var(--ag-icon-font-family-small-down, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-small-down, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-small-down, var(--ag-icon-font-color));
}

.ag-icon-small-down::before {
  content: var(--ag-icon-font-code-small-down, "\f12b");
  display: var(--ag-icon-font-display-small-down, var(--ag-icon-font-display));
}

.ag-icon-small-down::after {
  background-image: var(--ag-icon-image-small-down, var(--ag-icon-image));
  display: var(--ag-icon-image-display-small-down, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-small-down, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-small-left {
  font-family: var(--ag-icon-font-family-small-left, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-small-left, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-small-left, var(--ag-icon-font-color));
}

.ag-icon-small-left::before {
  content: var(--ag-icon-font-code-small-left, "\f12c");
  display: var(--ag-icon-font-display-small-left, var(--ag-icon-font-display));
}

.ag-icon-small-left::after {
  background-image: var(--ag-icon-image-small-left, var(--ag-icon-image));
  display: var(--ag-icon-image-display-small-left, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-small-left, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-small-right {
  font-family: var(--ag-icon-font-family-small-right, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-small-right, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-small-right, var(--ag-icon-font-color));
}

.ag-icon-small-right::before {
  content: var(--ag-icon-font-code-small-right, "\f12d");
  display: var(--ag-icon-font-display-small-right, var(--ag-icon-font-display));
}

.ag-icon-small-right::after {
  background-image: var(--ag-icon-image-small-right, var(--ag-icon-image));
  display: var(--ag-icon-image-display-small-right, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-small-right, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-small-up {
  font-family: var(--ag-icon-font-family-small-up, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-small-up, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-small-up, var(--ag-icon-font-color));
}

.ag-icon-small-up::before {
  content: var(--ag-icon-font-code-small-up, "\f12e");
  display: var(--ag-icon-font-display-small-up, var(--ag-icon-font-display));
}

.ag-icon-small-up::after {
  background-image: var(--ag-icon-image-small-up, var(--ag-icon-image));
  display: var(--ag-icon-image-display-small-up, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-small-up, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-tick {
  font-family: var(--ag-icon-font-family-tick, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-tick, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-tick, var(--ag-icon-font-color));
}

.ag-icon-tick::before {
  content: var(--ag-icon-font-code-tick, "\f12f");
  display: var(--ag-icon-font-display-tick, var(--ag-icon-font-display));
}

.ag-icon-tick::after {
  background-image: var(--ag-icon-image-tick, var(--ag-icon-image));
  display: var(--ag-icon-image-display-tick, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-tick, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-tree-closed {
  font-family: var(--ag-icon-font-family-tree-closed, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-tree-closed, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-tree-closed, var(--ag-icon-font-color));
}

.ag-icon-tree-closed::before {
  content: var(--ag-icon-font-code-tree-closed, "\f130");
  display: var(--ag-icon-font-display-tree-closed, var(--ag-icon-font-display));
}

.ag-icon-tree-closed::after {
  background-image: var(--ag-icon-image-tree-closed, var(--ag-icon-image));
  display: var(--ag-icon-image-display-tree-closed, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-tree-closed, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-tree-indeterminate {
  font-family: var(--ag-icon-font-family-tree-indeterminate, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-tree-indeterminate, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-tree-indeterminate, var(--ag-icon-font-color));
}

.ag-icon-tree-indeterminate::before {
  content: var(--ag-icon-font-code-tree-indeterminate, "\f131");
  display: var(--ag-icon-font-display-tree-indeterminate, var(--ag-icon-font-display));
}

.ag-icon-tree-indeterminate::after {
  background-image: var(--ag-icon-image-tree-indeterminate, var(--ag-icon-image));
  display: var(--ag-icon-image-display-tree-indeterminate, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-tree-indeterminate, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-tree-open {
  font-family: var(--ag-icon-font-family-tree-open, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-tree-open, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-tree-open, var(--ag-icon-font-color));
}

.ag-icon-tree-open::before {
  content: var(--ag-icon-font-code-tree-open, "\f132");
  display: var(--ag-icon-font-display-tree-open, var(--ag-icon-font-display));
}

.ag-icon-tree-open::after {
  background-image: var(--ag-icon-image-tree-open, var(--ag-icon-image));
  display: var(--ag-icon-image-display-tree-open, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-tree-open, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-unlinked {
  font-family: var(--ag-icon-font-family-unlinked, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-unlinked, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-unlinked, var(--ag-icon-font-color));
}

.ag-icon-unlinked::before {
  content: var(--ag-icon-font-code-unlinked, "\f133");
  display: var(--ag-icon-font-display-unlinked, var(--ag-icon-font-display));
}

.ag-icon-unlinked::after {
  background-image: var(--ag-icon-image-unlinked, var(--ag-icon-image));
  display: var(--ag-icon-image-display-unlinked, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-unlinked, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-up {
  font-family: var(--ag-icon-font-family-up, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-up, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-up, var(--ag-icon-font-color));
}

.ag-icon-up::before {
  content: var(--ag-icon-font-code-up, "\f134");
  display: var(--ag-icon-font-display-up, var(--ag-icon-font-display));
}

.ag-icon-up::after {
  background-image: var(--ag-icon-image-up, var(--ag-icon-image));
  display: var(--ag-icon-image-display-up, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-up, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-down {
  font-family: var(--ag-icon-font-family-down, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-down, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-down, var(--ag-icon-font-color));
}

.ag-icon-down::before {
  content: var(--ag-icon-font-code-down, "\f135");
  display: var(--ag-icon-font-display-down, var(--ag-icon-font-display));
}

.ag-icon-down::after {
  background-image: var(--ag-icon-image-down, var(--ag-icon-image));
  display: var(--ag-icon-image-display-down, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-down, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-plus {
  font-family: var(--ag-icon-font-family-plus, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-plus, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-plus, var(--ag-icon-font-color));
}

.ag-icon-plus::before {
  content: var(--ag-icon-font-code-plus, "\f136");
  display: var(--ag-icon-font-display-plus, var(--ag-icon-font-display));
}

.ag-icon-plus::after {
  background-image: var(--ag-icon-image-plus, var(--ag-icon-image));
  display: var(--ag-icon-image-display-plus, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-plus, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-minus {
  font-family: var(--ag-icon-font-family-minus, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-minus, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-minus, var(--ag-icon-font-color));
}

.ag-icon-minus::before {
  content: var(--ag-icon-font-code-minus, "\f137");
  display: var(--ag-icon-font-display-minus, var(--ag-icon-font-display));
}

.ag-icon-minus::after {
  background-image: var(--ag-icon-image-minus, var(--ag-icon-image));
  display: var(--ag-icon-image-display-minus, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-minus, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-menu-alt {
  font-family: var(--ag-icon-font-family-menu-alt, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-menu-alt, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-menu-alt, var(--ag-icon-font-color));
}

.ag-icon-menu-alt::before {
  content: var(--ag-icon-font-code-menu-alt, "\f138");
  display: var(--ag-icon-font-display-menu-alt, var(--ag-icon-font-display));
}

.ag-icon-menu-alt::after {
  background-image: var(--ag-icon-image-menu-alt, var(--ag-icon-image));
  display: var(--ag-icon-image-display-menu-alt, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-menu-alt, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-settings {
  font-family: var(--ag-icon-font-family-settings, var(--ag-icon-font-family));
  font-weight: var(--ag-icon-font-weight-settings, var(--ag-icon-font-weight));
  color: var(--ag-icon-font-color-settings, var(--ag-icon-font-color));
}

.ag-icon-settings::before {
  content: var(--ag-icon-font-code-settings, "\f139");
  display: var(--ag-icon-font-display-settings, var(--ag-icon-font-display));
}

.ag-icon-settings::after {
  background-image: var(--ag-icon-image-settings, var(--ag-icon-image));
  display: var(--ag-icon-image-display-settings, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-settings, var(--ag-icon-image-opacity, 0.9));
}

.ag-icon-row-drag::before {
  content: var(--ag-icon-font-code-grip);
}

.ag-left-arrow::before {
  content: var(--ag-icon-font-code-left);
}

.ag-right-arrow::before {
  content: var(--ag-icon-font-code-right);
}

[class*=ag-theme-] {
  --ag-foreground-color: #000;
  --ag-data-color: var(--ag-foreground-color);
  --ag-secondary-foreground-color: var(--ag-foreground-color);
  --ag-header-foreground-color: var(--ag-secondary-foreground-color);
  --ag-disabled-foreground-color: rgba(0, 0, 0, 0.5);
  --ag-background-color: #fff;
  --ag-header-background-color: transparent;
  --ag-tooltip-background-color: transparent;
  --ag-subheader-background-color: transparent;
  --ag-subheader-toolbar-background-color: transparent;
  --ag-control-panel-background-color: transparent;
  --ag-side-button-selected-background-color: var(--ag-control-panel-background-color);
  --ag-selected-row-background-color: #bbb;
  --ag-odd-row-background-color: var(--ag-background-color);
  --ag-modal-overlay-background-color: rgba(255, 255, 255, 0.66);
  --ag-menu-background-color: var(--ag-background-color);
  --ag-menu-border-color: var(--ag-border-color);
  --ag-panel-background-color: var(--ag-background-color);
  --ag-panel-border-color: var(--ag-border-color);
  --ag-row-hover-color: transparent;
  --ag-column-hover-color: transparent;
  --ag-range-selection-border-color: var(--ag-foreground-color);
  --ag-range-selection-border-style: solid;
  --ag-range-selection-background-color: rgba(0, 0, 0, 0.2);
  --ag-range-selection-background-color-2: var(--ag-range-selection-background-color);
  --ag-range-selection-background-color-3: var(--ag-range-selection-background-color);
  --ag-range-selection-background-color-4: var(--ag-range-selection-background-color);
  --ag-range-selection-highlight-color: var(--ag-range-selection-border-color);
  --ag-selected-tab-underline-color: var(--ag-range-selection-border-color);
  --ag-selected-tab-underline-width: 0;
  --ag-selected-tab-underline-transition-speed: 0s;
  --ag-range-selection-chart-category-background-color: rgba(0, 255, 132, 0.1);
  --ag-range-selection-chart-background-color: rgba(0, 88, 255, 0.1);
  --ag-header-cell-hover-background-color: transparent;
  --ag-header-cell-moving-background-color: var(--ag-background-color);
  --ag-value-change-value-highlight-background-color: rgba(22, 160, 133, 0.5);
  --ag-value-change-delta-up-color: #43a047;
  --ag-value-change-delta-down-color: #e53935;
  --ag-row-loading-skeleton-effect-color: rgba(66, 66, 66, 0.2);
  --ag-chip-background-color: transparent;
  --ag-chip-border-color: var(--ag-chip-background-color);
  --ag-borders: solid 1px;
  --ag-border-color: rgba(0, 0, 0, 0.25);
  --ag-borders-critical: var(--ag-borders);
  --ag-borders-secondary: var(--ag-borders);
  --ag-secondary-border-color: var(--ag-border-color);
  --ag-row-border-style: solid;
  --ag-row-border-color: var(--ag-secondary-border-color);
  --ag-row-border-width: 1px;
  --ag-cell-horizontal-border: solid transparent;
  --ag-borders-input: var(--ag-borders-secondary);
  --ag-input-border-color: var(--ag-secondary-border-color);
  --ag-borders-input-invalid: solid 2px;
  --ag-input-border-color-invalid: var(--ag-invalid-color);
  --ag-borders-side-button: var(--ag-borders);
  --ag-border-radius: 0px;
  --ag-wrapper-border-radius: var(--ag-border-radius);
  --ag-row-border-color: var(--ag-secondary-border-color);
  --ag-header-column-separator-display: none;
  --ag-header-column-separator-height: 100%;
  --ag-header-column-separator-width: 1px;
  --ag-header-column-separator-color: var(--ag-secondary-border-color);
  --ag-header-column-resize-handle-display: none;
  --ag-header-column-resize-handle-height: 50%;
  --ag-header-column-resize-handle-width: 1px;
  --ag-header-column-resize-handle-color: var(--ag-secondary-border-color);
  --ag-invalid-color: red;
  --ag-input-disabled-border-color: var(--ag-input-border-color);
  --ag-input-disabled-background-color: transparent;
  --ag-checkbox-background-color: transparent;
  --ag-checkbox-border-radius: var(--ag-border-radius);
  --ag-checkbox-checked-color: var(--ag-foreground-color);
  --ag-checkbox-unchecked-color: var(--ag-foreground-color);
  --ag-checkbox-indeterminate-color: var(--ag-checkbox-unchecked-color);
  --ag-toggle-button-off-border-color: var(--ag-checkbox-unchecked-color);
  --ag-toggle-button-off-background-color: var(--ag-checkbox-unchecked-color);
  --ag-toggle-button-on-border-color: var(--ag-checkbox-checked-color);
  --ag-toggle-button-on-background-color: var(--ag-checkbox-checked-color);
  --ag-toggle-button-switch-background-color: var(--ag-background-color);
  --ag-toggle-button-switch-border-color: var(--ag-toggle-button-off-border-color);
  --ag-toggle-button-border-width: 1px;
  --ag-toggle-button-height: var(--ag-icon-size);
  --ag-toggle-button-width: calc(var(--ag-toggle-button-height) * 2);
  --ag-input-focus-box-shadow: none;
  --ag-input-focus-border-color: none;
  --ag-minichart-selected-chart-color: var(--ag-checkbox-checked-color);
  --ag-minichart-selected-page-color: var(--ag-checkbox-checked-color);
  --ag-grid-size: 4px;
  --ag-icon-size: 12px;
  --ag-icon-font-weight: normal;
  --ag-icon-font-color: var(--ag-foreground-color);
  --ag-icon-image-display: block;
  --ag-widget-container-horizontal-padding: calc(var(--ag-grid-size) * 1.5);
  --ag-widget-container-vertical-padding: calc(var(--ag-grid-size) * 1.5);
  --ag-widget-horizontal-spacing: calc(var(--ag-grid-size) * 2);
  --ag-widget-vertical-spacing: var(--ag-grid-size);
  --ag-cell-horizontal-padding: calc(var(--ag-grid-size) * 3);
  --ag-cell-widget-spacing: var(--ag-cell-horizontal-padding);
  --ag-row-height: calc(var(--ag-grid-size) * 6 + 1px);
  --ag-header-height: var(--ag-row-height);
  --ag-list-item-height: calc(var(--ag-grid-size) * 5);
  --ag-column-select-indent-size: calc(var(--ag-grid-size) + var(--ag-icon-size));
  --ag-set-filter-indent-size: calc(var(--ag-grid-size) + var(--ag-icon-size));
  --ag-advanced-filter-builder-indent-size: calc(var(--ag-grid-size) * 2 + var(--ag-icon-size));
  --ag-row-group-indent-size: calc(var(--ag-cell-widget-spacing) + var(--ag-icon-size));
  --ag-filter-tool-panel-group-indent: 16px;
  --ag-tab-min-width: 220px;
  --ag-chart-menu-panel-width: var(--ag-tab-min-width);
  --ag-menu-min-width: 181px;
  --ag-side-bar-panel-width: 200px;
  --ag-font-family: "Helvetica Neue", sans-serif;
  --ag-font-size: 14px;
  --ag-card-radius: var(--ag-border-radius);
  --ag-card-shadow: none;
  --ag-popup-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  --ag-advanced-filter-join-pill-color: #f08e8d;
  --ag-advanced-filter-column-pill-color: #a6e194;
  --ag-advanced-filter-option-pill-color: #f3c08b;
  --ag-advanced-filter-value-pill-color: #85c0e4;
}

.ag-root-wrapper,
.ag-sticky-top,
.ag-sticky-bottom,
.ag-dnd-ghost {
  background-color: var(--ag-background-color);
}

.ag-sticky-bottom {
  border-top: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
}

.ag-root-wrapper,
.ag-popup {
  --ag-indentation-level: 0;
}

[class*=ag-theme-] {
  -webkit-font-smoothing: antialiased;
  font-family: var(--ag-font-family);
  font-size: var(--ag-font-size);
  line-height: normal;
  color: var(--ag-foreground-color);
}

ag-grid,
ag-grid-angular,
ag-grid-ng2,
ag-grid-polymer,
ag-grid-aurelia {
  display: block;
}

.ag-aria-description-container {
  z-index: 9999;
  border: 0px;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
  padding: 0px;
  white-space: nowrap;
}

.ag-hidden {
  display: none !important;
}

.ag-invisible {
  visibility: hidden !important;
}

.ag-drag-handle {
  cursor: grab;
}

.ag-column-drop-wrapper {
  display: flex;
}

.ag-column-drop-horizontal-half-width {
  display: inline-block;
  width: 50% !important;
}

.ag-unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ag-selectable {
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.ag-tab {
  position: relative;
}

.ag-tab-guard {
  position: absolute;
  width: 0;
  height: 0;
  display: block;
}

.ag-virtual-list-viewport .ag-tab-guard {
  position: sticky;
}

.ag-tab-guard-top {
  top: 1px;
}

.ag-tab-guard-bottom {
  bottom: 1px;
}

.ag-select-agg-func-popup {
  position: absolute;
}

.ag-input-wrapper,
.ag-picker-field-wrapper {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  line-height: normal;
  position: relative;
}

.ag-shake-left-to-right {
  animation-direction: alternate;
  animation-duration: 0.2s;
  animation-iteration-count: infinite;
  animation-name: ag-shake-left-to-right;
}

@keyframes ag-shake-left-to-right {
  from {
    padding-left: 6px;
    padding-right: 2px;
  }
  to {
    padding-left: 2px;
    padding-right: 6px;
  }
}
.ag-root-wrapper {
  cursor: default;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  white-space: normal;
}
.ag-root-wrapper.ag-layout-normal {
  height: 100%;
}

.ag-watermark {
  position: absolute;
  bottom: 20px;
  right: 25px;
  opacity: 0.7;
  transition: opacity 1s ease-out 3s;
  color: #9b9b9b;
}
.ag-watermark::before {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjA5IiBoZWlnaHQ9IjM2IiB2aWV3Qm94PSIwIDAgMjA5IDM2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMTkyLjk5MyAyMy42NTgyVjE1LjcxMTdIMTc5LjQ1MkwxNzEuNTA1IDIzLjY1ODJIMTkyLjk5M1oiIGZpbGw9IiM5QjlCOUIiLz4KPHBhdGggZD0iTTIwOC4yNSAzLjk1MDgxSDE5MS4yNzZMMTgzLjI2NiAxMS44OTczSDIwOC4yNVYzLjk1MDgxWiIgZmlsbD0iIzlCOUI5QiIvPgo8cGF0aCBkPSJNMTYzLjYyMiAzMS42MDQ4TDE2Ny42OTEgMjcuNTM2MUgxODEuNDIzVjM1LjQ4MjdIMTYzLjYyMlYzMS42MDQ4WiIgZmlsbD0iIzlCOUI5QiIvPgo8cGF0aCBkPSJNMTY2LjYxIDE5Ljc4MDNIMTc1LjM4M0wxODMuMzkzIDExLjgzMzdIMTY2LjYxVjE5Ljc4MDNaIiBmaWxsPSIjOUI5QjlCIi8+CjxwYXRoIGQ9Ik0xNTcuMDExIDMxLjYwNDdIMTYzLjYyMkwxNzEuNTA1IDIzLjY1ODJIMTU3LjAxMVYzMS42MDQ3WiIgZmlsbD0iIzlCOUI5QiIvPgo8cGF0aCBkPSJNMTkxLjI3NiAzLjk1MDgxTDE4Ny4yMDggOC4wMTk0MUgxNjEuMjdWMC4wNzI4NzZIMTkxLjI3NlYzLjk1MDgxWiIgZmlsbD0iIzlCOUI5QiIvPgo8cGF0aCBkPSJNMjAuODM5MSAzMC4yMDYxSDguMzc4OTJMNi4yMTc0NSAzNS41NDYySDAuNzUwMjQ0TDEyLjI1NjggOC41OTE1NUgxNy4wMjQ3TDI4LjUzMTMgMzUuNTQ2MkgyMy4wMDA1TDIwLjgzOTEgMzAuMjA2MVpNMTkuMTIyNyAyNS45NDY4TDE0LjYwOSAxNC45NDg4TDEwLjA5NTQgMjUuOTQ2OEgxOS4xMjI3WiIgZmlsbD0iIzlCOUI5QiIvPgo8cGF0aCBkPSJNMTA0LjQzNyAxOC41MDg5QzEwNi4wMjYgMTYuMTU2NyAxMTAuMDMxIDE1LjkwMjQgMTExLjY4NCAxNS45MDI0VjIwLjQ3OTZDMTA5LjY1IDIwLjQ3OTYgMTA3LjYxNSAyMC41NDMyIDEwNi40MDcgMjEuNDMzMkMxMDUuMiAyMi4zMjMyIDEwNC41NjQgMjMuNTMxMSAxMDQuNTY0IDI0Ljk5MzJWMzUuNTQ2Mkg5OS42MDUxVjE1LjkwMjRIMTA0LjM3M0wxMDQuNDM3IDE4LjUwODlaIiBmaWxsPSIjOUI5QjlCIi8+CjxwYXRoIGQ9Ik0xMTkuMzc2IDE1LjkwMjRIMTE0LjQxOFYzNS41NDYySDExOS4zNzZWMTUuOTAyNFoiIGZpbGw9IiM5QjlCOUIiLz4KPHBhdGggZD0iTTExOS4zNzYgNy4xMjkzOUgxMTQuNDE4VjEyLjk3OEgxMTkuMzc2VjcuMTI5MzlaIiBmaWxsPSIjOUI5QjlCIi8+CjxwYXRoIGQ9Ik0xNDMuOTc5IDcuMTI5MzlWMzUuNTQ2MkgxMzkuMjExTDEzOS4wODQgMzIuNTU4M0MxMzguMzg0IDMzLjU3NTUgMTM3LjQ5NCAzNC40MDE5IDEzNi40MTQgMzUuMDM3NkMxMzUuMzMzIDM1LjYwOTggMTMzLjk5OCAzNS45Mjc2IDEzMi40NzIgMzUuOTI3NkMxMzEuMTM3IDM1LjkyNzYgMTI5Ljg2NiAzNS42NzMzIDEyOC43ODUgMzUuMjI4M0MxMjcuNjQxIDM0LjcxOTcgMTI2LjYyMyAzNC4wODQgMTI1Ljc5NyAzMy4xOTRDMTI0Ljk3MSAzMi4zMDQgMTI0LjI3MSAzMS4yMjMzIDEyMy44MjYgMzAuMDE1NEMxMjMuMzE4IDI4LjgwNzUgMTIzLjEyNyAyNy40MDkgMTIzLjEyNyAyNS44ODMyQzEyMy4xMjcgMjQuMzU3NSAxMjMuMzgxIDIyLjk1ODkgMTIzLjgyNiAyMS42ODc0QzEyNC4zMzUgMjAuNDE2IDEyNC45NzEgMTkuMzM1MyAxMjUuNzk3IDE4LjQ0NTNDMTI2LjYyMyAxNy41NTUyIDEyNy42NDEgMTYuODU2IDEyOC43ODUgMTYuMzQ3NEMxMjkuOTI5IDE1LjgzODggMTMxLjEzNyAxNS41ODQ1IDEzMi40NzIgMTUuNTg0NUMxMzMuOTk4IDE1LjU4NDUgMTM1LjI2OSAxNS44Mzg4IDEzNi4zNSAxNi40MTA5QzEzNy40MzEgMTYuOTgzMSAxMzguMzIxIDE3Ljc0NTkgMTM5LjAyIDE4LjgyNjdWNy4xOTI5NUgxNDMuOTc5VjcuMTI5MzlaTTEzMy41NTMgMzEuNjY4M0MxMzUuMjA2IDMxLjY2ODMgMTM2LjQ3NyAzMS4wOTYyIDEzNy40OTQgMzAuMDE1NEMxMzguNTExIDI4LjkzNDcgMTM5LjAyIDI3LjQ3MjUgMTM5LjAyIDI1LjY5MjVDMTM5LjAyIDIzLjkxMjUgMTM4LjUxMSAyMi41MTM5IDEzNy40OTQgMjEuMzY5NkMxMzYuNDc3IDIwLjI4ODggMTM1LjIwNiAxOS43MTY3IDEzMy41NTMgMTkuNzE2N0MxMzEuOTYzIDE5LjcxNjcgMTMwLjYyOCAyMC4yODg4IDEyOS42NzUgMjEuMzY5NkMxMjguNjU4IDIyLjQ1MDMgMTI4LjE0OSAyMy45MTI1IDEyOC4xNDkgMjUuNjkyNUMxMjguMTQ5IDI3LjQ3MjUgMTI4LjY1OCAyOC44NzExIDEyOS42NzUgMjkuOTUxOEMxMzAuNjkyIDMxLjA5NjEgMTMxLjk2MyAzMS42NjgzIDEzMy41NTMgMzEuNjY4M1oiIGZpbGw9IiM5QjlCOUIiLz4KPHBhdGggZD0iTTU3LjIwMjQgMjAuMzUyNUg0NC45MzNWMjQuNjExOEg1MS45MjU5QzUxLjczNTIgMjYuNzczMyA1MC45MDg4IDI4LjQyNjEgNDkuNTEwMiAyOS43NjExQzQ4LjExMTYgMzEuMDMyNiA0Ni4zMzE1IDMxLjY2ODMgNDQuMDQyOSAzMS42NjgzQzQyLjc3MTUgMzEuNjY4MyA0MS41NjM2IDMxLjQxNCA0MC41NDY1IDMwLjk2OUMzOS40NjU3IDMwLjUyNCAzOC41NzU3IDI5Ljg4ODMgMzcuODEyOSAyOC45OTgzQzM3LjA1IDI4LjE3MTggMzYuNDc3OCAyNy4xNTQ3IDM2LjAzMjggMjUuOTQ2OEMzNS41ODc4IDI0LjczODkgMzUuMzk3MSAyMy40Njc1IDM1LjM5NzEgMjIuMDA1M0MzNS4zOTcxIDIwLjU0MzIgMzUuNTg3OCAxOS4yNzE3IDM2LjAzMjggMTguMDYzOEMzNi40MTQzIDE2Ljg1NiAzNy4wNSAxNS45MDI0IDM3LjgxMjkgMTUuMDEyNEMzOC41NzU3IDE0LjE4NTkgMzkuNDY1NyAxMy41NTAyIDQwLjU0NjUgMTMuMDQxNkM0MS42MjcyIDEyLjU5NjYgNDIuNzcxNSAxMi4zNDIzIDQ0LjEwNjUgMTIuMzQyM0M0Ni43NzY2IDEyLjM0MjMgNDguODEwOSAxMi45NzggNTAuMjA5NSAxNC4yNDk1TDUzLjUxNTIgMTAuOTQzOEM1MS4wMzU5IDkuMDM2NTkgNDcuODU3MyA4LjAxOTQxIDQ0LjEwNjUgOC4wMTk0MUM0Mi4wMDg2IDguMDE5NDEgNDAuMTAxNSA4LjMzNzI5IDM4LjM4NSA5LjAzNjU5QzM2LjY2ODYgOS43MzU4OCAzNS4yMDY0IDEwLjYyNTkgMzMuOTk4NSAxMS44MzM3QzMyLjc5MDYgMTMuMDQxNiAzMS44MzcxIDE0LjUwMzggMzEuMjAxNCAxNi4yMjAzQzMwLjU2NTYgMTcuOTM2NyAzMC4yNDc4IDE5Ljg0MzggMzAuMjQ3OCAyMS44NzgyQzMwLjI0NzggMjMuOTEyNSAzMC41NjU2IDI1LjgxOTcgMzEuMjY0OSAyNy41MzYxQzMxLjk2NDIgMjkuMjUyNiAzMi44NTQyIDMwLjcxNDcgMzQuMDYyMSAzMS45MjI2QzM1LjI3IDMzLjEzMDUgMzYuNzMyMSAzNC4wODQxIDM4LjQ0ODYgMzQuNzE5OEM0MC4xNjUgMzUuNDE5MSA0Mi4wNzIyIDM1LjczNyA0NC4xMDY1IDM1LjczN0M0Ni4xNDA4IDM1LjczNyA0Ny45ODQ0IDM1LjQxOTEgNDkuNjM3MyAzNC43MTk4QzUxLjI5MDIgMzQuMDIwNSA1Mi42ODg4IDMzLjEzMDUgNTMuODMzMSAzMS45MjI2QzU0Ljk3NzQgMzAuNzE0NyA1NS44Njc0IDI5LjI1MjYgNTYuNTAzMSAyNy41MzYxQzU3LjEzODggMjUuODE5NyA1Ny40NTY3IDIzLjkxMjUgNTcuNDU2NyAyMS44NzgyVjIxLjA1MTdDNTcuMjY2IDIwLjkyNDYgNTcuMjAyNCAyMC42MDY3IDU3LjIwMjQgMjAuMzUyNVoiIGZpbGw9IiM5QjlCOUIiLz4KPHBhdGggZD0iTTk1Ljk4MTUgMjAuMzUyNUg4My43MTIxVjI0LjYxMThIOTAuNzA1QzkwLjUxNDMgMjYuNzczMyA4OS42ODc5IDI4LjQyNjEgODguMjg5MyAyOS43NjExQzg2Ljg5MDcgMzEuMDMyNiA4NS4xMTA2IDMxLjY2ODMgODIuODIyIDMxLjY2ODNDODEuNTUwNiAzMS42NjgzIDgwLjM0MjcgMzEuNDE0IDc5LjMyNTYgMzAuOTY5Qzc4LjI0NDggMzAuNTI0IDc3LjM1NDggMjkuODg4MyA3Ni41OTIgMjguOTk4M0M3NS44MjkxIDI4LjE3MTggNzUuMjU3IDI3LjE1NDcgNzQuODExOSAyNS45NDY4Qzc0LjM2NjkgMjQuNzM4OSA3NC4xNzYyIDIzLjQ2NzUgNzQuMTc2MiAyMi4wMDUzQzc0LjE3NjIgMjAuNTQzMiA3NC4zNjY5IDE5LjI3MTcgNzQuODExOSAxOC4wNjM4Qzc1LjE5MzQgMTYuODU2IDc1LjgyOTEgMTUuOTAyNCA3Ni41OTIgMTUuMDEyNEM3Ny4zNTQ4IDE0LjE4NTkgNzguMjQ0OCAxMy41NTAyIDc5LjMyNTYgMTMuMDQxNkM4MC40MDYzIDEyLjU5NjYgODEuNTUwNiAxMi4zNDIzIDgyLjg4NTYgMTIuMzQyM0M4NS41NTU3IDEyLjM0MjMgODcuNTkgMTIuOTc4IDg4Ljk4ODYgMTQuMjQ5NUw5Mi4yOTQzIDEwLjk0MzhDODkuODE1IDkuMDM2NTkgODYuNjM2NCA4LjAxOTQxIDgyLjg4NTYgOC4wMTk0MUM4MC43ODc4IDguMDE5NDEgNzguODgwNiA4LjMzNzI5IDc3LjE2NDEgOS4wMzY1OUM3NS40NDc3IDkuNzM1ODggNzMuOTg1NSAxMC42MjU5IDcyLjc3NzYgMTEuODMzN0M3MS41Njk4IDEzLjA0MTYgNzAuNjE2MiAxNC41MDM4IDY5Ljk4MDUgMTYuMjIwM0M2OS4zNDQ3IDE3LjkzNjcgNjkuMDI2OSAxOS44NDM4IDY5LjAyNjkgMjEuODc4MkM2OS4wMjY5IDIzLjkxMjUgNjkuMzQ0NyAyNS44MTk3IDcwLjA0NCAyNy41MzYxQzcwLjc0MzMgMjkuMjUyNiA3MS42MzM0IDMwLjcxNDcgNzIuODQxMiAzMS45MjI2Qzc0LjA0OTEgMzMuMTMwNSA3NS41MTEyIDM0LjA4NDEgNzcuMjI3NyAzNC43MTk4Qzc4Ljk0NDEgMzUuNDE5MSA4MC44NTEzIDM1LjczNyA4Mi44ODU2IDM1LjczN0M4NC45MiAzNS43MzcgODYuNzYzNiAzNS40MTkxIDg4LjQxNjQgMzQuNzE5OEM5MC4wNjkzIDM0LjAyMDUgOTEuNDY3OSAzMy4xMzA1IDkyLjYxMjIgMzEuOTIyNkM5My43NTY1IDMwLjcxNDcgOTQuNjQ2NSAyOS4yNTI2IDk1LjI4MjIgMjcuNTM2MUM5NS45MTggMjUuODE5NyA5Ni4yMzU4IDIzLjkxMjUgOTYuMjM1OCAyMS44NzgyVjIxLjA1MTdDOTYuMDQ1MSAyMC45MjQ2IDk1Ljk4MTUgMjAuNjA2NyA5NS45ODE1IDIwLjM1MjVaIiBmaWxsPSIjOUI5QjlCIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-size: 170px 40px;
  display: block;
  height: 40px;
  width: 170px;
}

.ag-watermark-text {
  opacity: 0.5;
  font-weight: bold;
  font-family: Impact, sans-serif;
  font-size: 19px;
  padding-left: 0.7rem;
}

.ag-root-wrapper-body {
  display: flex;
  flex-direction: row;
}
.ag-root-wrapper-body.ag-layout-normal {
  flex: 1 1 auto;
  height: 0;
  min-height: 0;
}

.ag-root {
  position: relative;
  display: flex;
  flex-direction: column;
}
.ag-root.ag-layout-normal, .ag-root.ag-layout-auto-height {
  overflow: hidden;
  flex: 1 1 auto;
  width: 0;
}
.ag-root.ag-layout-normal {
  height: 100%;
}

.ag-header-viewport,
.ag-floating-top-viewport,
.ag-body-viewport,
.ag-center-cols-viewport,
.ag-floating-bottom-viewport,
.ag-body-horizontal-scroll-viewport,
.ag-body-vertical-scroll-viewport,
.ag-virtual-list-viewport,
.ag-sticky-top-viewport,
.ag-sticky-bottom-viewport {
  position: relative;
  height: 100%;
  min-width: 0px;
  overflow: hidden;
  flex: 1 1 auto;
}

.ag-body-viewport,
.ag-center-cols-viewport,
.ag-header-viewport,
.ag-floating-top-viewport,
.ag-floating-bottom-viewport,
.ag-sticky-top-viewport,
.ag-sticky-bottom-viewport {
  overflow-x: auto;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
.ag-body-viewport::-webkit-scrollbar,
.ag-center-cols-viewport::-webkit-scrollbar,
.ag-header-viewport::-webkit-scrollbar,
.ag-floating-top-viewport::-webkit-scrollbar,
.ag-floating-bottom-viewport::-webkit-scrollbar,
.ag-sticky-top-viewport::-webkit-scrollbar,
.ag-sticky-bottom-viewport::-webkit-scrollbar {
  display: none !important;
}

.ag-body-viewport {
  display: flex;
  overflow-x: hidden;
}
.ag-body-viewport.ag-layout-normal {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ag-sticky-top-container,
.ag-sticky-bottom-container {
  min-height: 1px;
}

.ag-center-cols-viewport {
  min-height: 100%;
  width: 100%;
}

.ag-body-horizontal-scroll-viewport {
  overflow-x: scroll;
}

.ag-body-vertical-scroll-viewport {
  overflow-y: scroll;
}

.ag-virtual-list-viewport {
  overflow: auto;
  width: 100%;
}

.ag-header-container,
.ag-floating-top-container,
.ag-body-container,
.ag-pinned-right-cols-container,
.ag-center-cols-container,
.ag-pinned-left-cols-container,
.ag-floating-bottom-container,
.ag-body-horizontal-scroll-container,
.ag-body-vertical-scroll-container,
.ag-full-width-container,
.ag-floating-bottom-full-width-container,
.ag-virtual-list-container,
.ag-sticky-top-container,
.ag-sticky-bottom-container {
  position: relative;
}

.ag-header-container,
.ag-floating-top-container,
.ag-floating-bottom-container,
.ag-sticky-top-container,
.ag-sticky-bottom-container {
  height: 100%;
  white-space: nowrap;
}

.ag-center-cols-container {
  display: block;
}

.ag-pinned-right-cols-container {
  display: block;
}

.ag-body-horizontal-scroll-container {
  height: 100%;
}

.ag-body-vertical-scroll-container {
  width: 100%;
}

.ag-full-width-container,
.ag-floating-top-full-width-container,
.ag-floating-bottom-full-width-container,
.ag-sticky-top-full-width-container,
.ag-sticky-bottom-full-width-container {
  position: absolute;
  top: 0px;
  pointer-events: none;
}
.ag-ltr .ag-full-width-container,
.ag-ltr .ag-floating-top-full-width-container,
.ag-ltr .ag-floating-bottom-full-width-container,
.ag-ltr .ag-sticky-top-full-width-container,
.ag-ltr .ag-sticky-bottom-full-width-container {
  left: 0;
}
.ag-rtl .ag-full-width-container,
.ag-rtl .ag-floating-top-full-width-container,
.ag-rtl .ag-floating-bottom-full-width-container,
.ag-rtl .ag-sticky-top-full-width-container,
.ag-rtl .ag-sticky-bottom-full-width-container {
  right: 0;
}

.ag-full-width-container {
  width: 100%;
}

.ag-floating-bottom-full-width-container,
.ag-floating-top-full-width-container {
  display: inline-block;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.ag-virtual-list-container {
  overflow: hidden;
}

.ag-body {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: row !important;
  min-height: 0;
}

.ag-body-horizontal-scroll,
.ag-body-vertical-scroll {
  min-height: 0;
  min-width: 0;
  display: flex;
  position: relative;
}
.ag-body-horizontal-scroll.ag-scrollbar-invisible,
.ag-body-vertical-scroll.ag-scrollbar-invisible {
  position: absolute;
  bottom: 0;
}
.ag-body-horizontal-scroll.ag-scrollbar-invisible.ag-apple-scrollbar,
.ag-body-vertical-scroll.ag-scrollbar-invisible.ag-apple-scrollbar {
  opacity: 0;
  transition: opacity 400ms;
  visibility: hidden;
}
.ag-body-horizontal-scroll.ag-scrollbar-invisible.ag-apple-scrollbar.ag-scrollbar-scrolling, .ag-body-horizontal-scroll.ag-scrollbar-invisible.ag-apple-scrollbar.ag-scrollbar-active,
.ag-body-vertical-scroll.ag-scrollbar-invisible.ag-apple-scrollbar.ag-scrollbar-scrolling,
.ag-body-vertical-scroll.ag-scrollbar-invisible.ag-apple-scrollbar.ag-scrollbar-active {
  visibility: visible;
  opacity: 1;
}

.ag-body-horizontal-scroll {
  width: 100%;
}
.ag-body-horizontal-scroll.ag-scrollbar-invisible {
  left: 0;
  right: 0;
}

.ag-body-vertical-scroll {
  height: 100%;
}
.ag-body-vertical-scroll.ag-scrollbar-invisible {
  top: 0;
  z-index: 10;
}
.ag-ltr .ag-body-vertical-scroll.ag-scrollbar-invisible {
  right: 0;
}
.ag-rtl .ag-body-vertical-scroll.ag-scrollbar-invisible {
  left: 0;
}

.ag-force-vertical-scroll {
  overflow-y: scroll !important;
}

.ag-horizontal-left-spacer,
.ag-horizontal-right-spacer {
  height: 100%;
  min-width: 0;
  overflow-x: scroll;
}
.ag-horizontal-left-spacer.ag-scroller-corner,
.ag-horizontal-right-spacer.ag-scroller-corner {
  overflow-x: hidden;
}

.ag-header,
.ag-pinned-left-header,
.ag-pinned-right-header {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.ag-header-cell-sortable .ag-header-cell-label {
  cursor: pointer;
}

.ag-header {
  display: flex;
  width: 100%;
  white-space: nowrap;
}

.ag-pinned-left-header {
  height: 100%;
}

.ag-pinned-right-header {
  height: 100%;
}

.ag-header-row {
  position: absolute;
}

.ag-header-row:not(.ag-header-row-column-group) {
  overflow: hidden;
}

.ag-header.ag-header-allow-overflow .ag-header-row {
  overflow: visible;
}

.ag-header-cell {
  display: inline-flex;
  align-items: center;
  position: absolute;
  height: 100%;
  overflow: hidden;
}

.ag-header-cell.ag-header-active .ag-header-cell-menu-button,
.ag-header-cell-filter-button {
  opacity: 1;
}

.ag-header-cell-menu-button:not(.ag-header-menu-always-show) {
  transition: opacity 0.2s;
  opacity: 0;
}

.ag-header-group-cell-label,
.ag-header-cell-label {
  display: flex;
  flex: 1 1 auto;
  align-self: stretch;
  align-items: center;
  overflow: hidden;
}

.ag-header-cell-label {
  text-overflow: ellipsis;
}

.ag-header-group-cell-label.ag-sticky-label {
  position: sticky;
  flex: none;
  max-width: 100%;
  overflow: visible;
}

.ag-header-group-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ag-header-cell-text {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.ag-header-group-cell .ag-header-cell-comp-wrapper {
  display: flex;
}

.ag-header-cell:not(.ag-header-cell-auto-height) .ag-header-cell-comp-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}

.ag-header-cell-comp-wrapper {
  width: 100%;
}

.ag-header-cell-wrap-text .ag-header-cell-comp-wrapper {
  white-space: normal;
}

.ag-header-cell-comp-wrapper-limited-height > div {
  overflow: hidden;
}

.ag-right-aligned-header .ag-header-cell-label {
  flex-direction: row-reverse;
}

.ag-header-cell-resize {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 8px;
  top: 0;
  cursor: ew-resize;
}
.ag-ltr .ag-header-cell-resize {
  right: -3px;
}
.ag-rtl .ag-header-cell-resize {
  left: -3px;
}

.ag-pinned-left-header .ag-header-cell-resize {
  right: -3px;
}

.ag-pinned-right-header .ag-header-cell-resize {
  left: -3px;
}

.ag-header-select-all {
  display: flex;
}

.ag-header-cell-menu-button,
.ag-header-cell-filter-button,
.ag-side-button-button,
.ag-panel-title-bar-button,
.ag-floating-filter-button-button {
  cursor: pointer;
}

.ag-column-moving .ag-cell {
  transition: left 0.2s;
}
.ag-column-moving .ag-header-cell {
  transition: left 0.2s;
}
.ag-column-moving .ag-header-group-cell {
  transition: left 0.2s, width 0.2s;
}

.ag-column-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 1 auto;
}

.ag-column-select {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 3 1 0px;
}

.ag-column-select-header {
  position: relative;
  display: flex;
  flex: none;
}

.ag-column-select-header-icon {
  position: relative;
}

.ag-column-select-header-filter-wrapper {
  flex: 1 1 auto;
}

.ag-column-select-header-filter {
  width: 100%;
}

.ag-column-select-list {
  flex: 1 1 0px;
  overflow: hidden;
}

.ag-column-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: auto;
  width: 100%;
}

.ag-column-drop-list {
  display: flex;
  align-items: center;
}

.ag-column-drop-cell {
  position: relative;
  display: flex;
  align-items: center;
}

.ag-column-drop-cell-text {
  overflow: hidden;
  flex: 1 1 auto;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ag-column-drop-vertical {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  flex: 1 1 0px;
}

.ag-column-drop-vertical-title-bar {
  display: flex;
  align-items: center;
  flex: none;
}

.ag-column-drop-vertical-list {
  position: relative;
  align-items: stretch;
  flex-grow: 1;
  flex-direction: column;
  overflow-x: auto;
}
.ag-column-drop-vertical-list > * {
  flex: none;
}

.ag-column-drop-empty .ag-column-drop-vertical-list {
  overflow: hidden;
}

.ag-column-drop-vertical-empty-message {
  display: block;
}

.ag-column-drop.ag-column-drop-horizontal {
  white-space: nowrap;
  overflow: hidden;
}

.ag-column-drop-cell-button {
  cursor: pointer;
}

.ag-filter-toolpanel {
  flex: 1 1 0px;
  min-width: 0;
}

.ag-filter-toolpanel-header {
  position: relative;
}

.ag-filter-toolpanel-header,
.ag-filter-toolpanel-search {
  display: flex;
  align-items: center;
}
.ag-filter-toolpanel-header > *,
.ag-filter-toolpanel-search > * {
  display: flex;
  align-items: center;
}

.ag-filter-apply-panel {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}

.ag-row-animation .ag-row {
  transition: transform 0.4s, top 0.4s, opacity 0.2s;
}

.ag-row-animation .ag-row.ag-after-created {
  transition: transform 0.4s, top 0.4s, height 0.4s, opacity 0.2s;
}

.ag-row-no-animation .ag-row {
  transition: none;
}

.ag-row {
  white-space: nowrap;
  width: 100%;
}

.ag-row-loading {
  display: flex;
  align-items: center;
}

.ag-row-position-absolute {
  position: absolute;
}

.ag-row-position-relative {
  position: relative;
}

.ag-full-width-row {
  overflow: hidden;
  pointer-events: all;
}

.ag-row-inline-editing {
  z-index: 1;
}

.ag-row-dragging {
  z-index: 2;
}

.ag-stub-cell {
  display: flex;
  align-items: center;
}

.ag-cell {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  height: 100%;
}

.ag-cell-value {
  flex: 1 1 auto;
}

.ag-cell-value,
.ag-group-value {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ag-cell-wrap-text {
  white-space: normal;
  word-break: break-word;
}

.ag-cell-wrapper {
  display: flex;
  align-items: center;
}
.ag-cell-wrapper.ag-row-group {
  align-items: flex-start;
}

.ag-sparkline-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.ag-full-width-row .ag-cell-wrapper.ag-row-group {
  height: 100%;
  align-items: center;
}

.ag-cell-inline-editing {
  z-index: 1;
}
.ag-cell-inline-editing .ag-cell-wrapper,
.ag-cell-inline-editing .ag-cell-edit-wrapper,
.ag-cell-inline-editing .ag-cell-editor,
.ag-cell-inline-editing .ag-cell-editor .ag-wrapper,
.ag-cell-inline-editing .ag-cell-editor input {
  height: 100%;
  width: 100%;
  line-height: normal;
}

.ag-cell .ag-icon {
  display: inline-block;
  vertical-align: middle;
}

.ag-set-filter-item {
  display: flex;
  align-items: center;
  height: 100%;
}

.ag-set-filter-item-checkbox {
  display: flex;
  width: 100%;
  height: 100%;
}

.ag-set-filter-group-icons {
  display: block;
}
.ag-set-filter-group-icons > * {
  cursor: pointer;
}

.ag-filter-body-wrapper {
  display: flex;
  flex-direction: column;
}

.ag-filter-filter {
  flex: 1 1 0px;
}

.ag-filter-condition {
  display: flex;
  justify-content: center;
}

.ag-floating-filter-body {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  height: 100%;
}

.ag-floating-filter-full-body {
  display: flex;
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
  align-items: center;
  overflow: hidden;
}

.ag-floating-filter-full-body > div {
  flex: 1 1 auto;
}

.ag-floating-filter-input {
  align-items: center;
  display: flex;
  width: 100%;
}
.ag-floating-filter-input > * {
  flex: 1 1 auto;
}

.ag-floating-filter-button {
  display: flex;
  flex: none;
}

.ag-set-floating-filter-input input[disabled] {
  pointer-events: none;
}

.ag-dnd-ghost {
  display: inline-flex;
  align-items: center;
  cursor: move;
  white-space: nowrap;
}

.ag-overlay {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.ag-overlay-panel {
  display: flex;
  height: 100%;
  width: 100%;
}

.ag-overlay-wrapper {
  display: flex;
  flex: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ag-overlay-loading-wrapper {
  pointer-events: all;
}

.ag-popup-child {
  z-index: 5;
  top: 0;
}

.ag-popup-editor {
  position: absolute;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ag-large-text-input {
  display: block;
}

.ag-virtual-list-item {
  position: absolute;
  width: 100%;
}

.ag-floating-top {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  display: flex;
}

.ag-pinned-left-floating-top {
  display: inline-block;
  overflow: hidden;
  position: relative;
  min-width: 0px;
}

.ag-pinned-right-floating-top {
  display: inline-block;
  overflow: hidden;
  position: relative;
  min-width: 0px;
}

.ag-floating-bottom {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  display: flex;
}

.ag-pinned-left-floating-bottom {
  display: inline-block;
  overflow: hidden;
  position: relative;
  min-width: 0px;
}

.ag-pinned-right-floating-bottom {
  display: inline-block;
  overflow: hidden;
  position: relative;
  min-width: 0px;
}

.ag-sticky-top,
.ag-sticky-bottom {
  position: absolute;
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 0px;
}

.ag-sticky-bottom {
  box-sizing: content-box !important;
}

.ag-pinned-left-sticky-top,
.ag-pinned-right-sticky-top {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.ag-sticky-top-full-width-container,
.ag-sticky-bottom-full-width-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.ag-dialog,
.ag-panel {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ag-panel-title-bar {
  display: flex;
  flex: none;
  align-items: center;
  cursor: default;
}

.ag-panel-title-bar-title {
  flex: 1 1 auto;
}

.ag-panel-title-bar-buttons {
  display: flex;
}

.ag-panel-title-bar-button {
  cursor: pointer;
}

.ag-panel-content-wrapper {
  display: flex;
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
}

.ag-dialog {
  position: absolute;
}

.ag-resizer {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ag-resizer.ag-resizer-topLeft {
  top: 0;
  left: 0;
  height: 5px;
  width: 5px;
  cursor: nwse-resize;
}
.ag-resizer.ag-resizer-top {
  top: 0;
  left: 5px;
  right: 5px;
  height: 5px;
  cursor: ns-resize;
}
.ag-resizer.ag-resizer-topRight {
  top: 0;
  right: 0;
  height: 5px;
  width: 5px;
  cursor: nesw-resize;
}
.ag-resizer.ag-resizer-right {
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 5px;
  cursor: ew-resize;
}
.ag-resizer.ag-resizer-bottomRight {
  bottom: 0;
  right: 0;
  height: 5px;
  width: 5px;
  cursor: nwse-resize;
}
.ag-resizer.ag-resizer-bottom {
  bottom: 0;
  left: 5px;
  right: 5px;
  height: 5px;
  cursor: ns-resize;
}
.ag-resizer.ag-resizer-bottomLeft {
  bottom: 0;
  left: 0;
  height: 5px;
  width: 5px;
  cursor: nesw-resize;
}
.ag-resizer.ag-resizer-left {
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 5px;
  cursor: ew-resize;
}

.ag-tooltip {
  position: absolute;
  z-index: 99999;
}

.ag-tooltip-custom {
  position: absolute;
  z-index: 99999;
}

.ag-tooltip:not(.ag-tooltip-interactive),
.ag-tooltip-custom:not(.ag-tooltip-interactive) {
  pointer-events: none;
}

.ag-value-slide-out {
  margin-right: 5px;
  opacity: 1;
  transition: opacity 3s, margin-right 3s;
  transition-timing-function: linear;
}

.ag-value-slide-out-end {
  margin-right: 10px;
  opacity: 0;
}

.ag-opacity-zero {
  opacity: 0 !important;
}

.ag-menu {
  max-height: 100%;
  overflow-y: auto;
  position: absolute;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ag-menu-column-select-wrapper {
  height: 265px;
  overflow: auto;
}
.ag-menu-column-select-wrapper .ag-column-select {
  height: 100%;
}

.ag-dialog .ag-panel-content-wrapper .ag-column-select {
  user-select: none;
}

.ag-menu-list {
  display: table;
  width: 100%;
}

.ag-menu-option,
.ag-menu-separator {
  display: table-row;
}

.ag-menu-option-part,
.ag-menu-separator-part {
  display: table-cell;
  vertical-align: middle;
}

.ag-menu-option-text {
  white-space: nowrap;
}

.ag-menu-option-custom {
  display: contents;
}

.ag-compact-menu-option {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}

.ag-compact-menu-option-text {
  white-space: nowrap;
  flex: 1 1 auto;
}

.ag-pill-container {
  display: flex;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.ag-pill {
  display: flex;
  white-space: nowrap;
  padding: 0 0.25rem;
  align-items: center;
}

.ag-pill .ag-pill-button {
  border: none;
  padding: 0;
}

.ag-rich-select {
  cursor: default;
  outline: none;
  height: 100%;
}

.ag-rich-select-value {
  display: flex;
  align-items: center;
  height: 100%;
}
.ag-rich-select-value .ag-picker-field-display {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-rich-select-value .ag-picker-field-display.ag-display-as-placeholder {
  opacity: 0.5;
}

.ag-rich-select-list {
  position: relative;
}
.ag-rich-select-list .ag-loading-text {
  min-height: 2rem;
}

.ag-rich-select-row {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  height: 100%;
}

.ag-rich-select-field-input {
  flex: 1 1 auto;
}
.ag-rich-select-field-input .ag-input-field-input {
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  text-overflow: ellipsis;
}
.ag-rich-select-field-input .ag-input-field-input::placeholder {
  opacity: 0.8;
}

.ag-autocomplete {
  align-items: center;
  display: flex;
}
.ag-autocomplete > * {
  flex: 1 1 auto;
}

.ag-autocomplete-list-popup {
  position: absolute;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ag-autocomplete-list {
  position: relative;
}

.ag-autocomplete-virtual-list-item {
  display: flex;
}

.ag-autocomplete-row {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  overflow: hidden;
}

.ag-autocomplete-row-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ag-paging-panel {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.ag-paging-page-summary-panel {
  display: flex;
  align-items: center;
}

.ag-paging-button {
  position: relative;
}

.ag-disabled .ag-paging-page-summary-panel {
  pointer-events: none;
}

.ag-tool-panel-wrapper {
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  cursor: default;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ag-column-select-column,
.ag-column-select-column-group,
.ag-select-agg-func-item {
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
.ag-column-select-column > *,
.ag-column-select-column-group > *,
.ag-select-agg-func-item > * {
  flex: none;
}

.ag-select-agg-func-item,
.ag-column-select-column-label {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ag-column-select-checkbox {
  display: flex;
}

.ag-tool-panel-horizontal-resize {
  cursor: ew-resize;
  height: 100%;
  position: absolute;
  top: 0;
  width: 5px;
  z-index: 1;
}

.ag-ltr .ag-side-bar-left .ag-tool-panel-horizontal-resize {
  right: -3px;
}
.ag-rtl .ag-side-bar-left .ag-tool-panel-horizontal-resize {
  left: -3px;
}

.ag-ltr .ag-side-bar-right .ag-tool-panel-horizontal-resize {
  left: -3px;
}
.ag-rtl .ag-side-bar-right .ag-tool-panel-horizontal-resize {
  right: -3px;
}

.ag-details-row {
  width: 100%;
}

.ag-details-row-fixed-height {
  height: 100%;
}

.ag-details-grid {
  width: 100%;
}

.ag-details-grid-fixed-height {
  height: 100%;
}

.ag-header-group-cell {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
}

.ag-header-group-cell-no-group.ag-header-span-height {
  display: none;
}

.ag-cell-label-container {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  height: 100%;
  width: 100%;
}

.ag-header-group-cell-label,
.ag-cell-label-container {
  padding: 5px 0px;
}

.ag-right-aligned-header .ag-cell-label-container {
  flex-direction: row;
}
.ag-right-aligned-header .ag-header-cell-text {
  text-align: end;
}

.ag-side-bar {
  display: flex;
  flex-direction: row-reverse;
}

.ag-side-bar-left {
  order: -1;
  flex-direction: row;
}

.ag-side-button-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}

.ag-side-button-label {
  writing-mode: vertical-lr;
}

.ag-status-bar {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.ag-status-panel {
  display: inline-flex;
}

.ag-status-name-value {
  white-space: nowrap;
}

.ag-status-bar-left {
  display: inline-flex;
}

.ag-status-bar-center {
  display: inline-flex;
}

.ag-status-bar-right {
  display: inline-flex;
}

.ag-icon {
  display: block;
  speak: none;
}

.ag-group {
  position: relative;
  width: 100%;
}

.ag-group-title-bar {
  display: flex;
  align-items: center;
}

.ag-group-title {
  display: inline;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ag-group-title-bar .ag-group-title {
  cursor: default;
}

.ag-group-toolbar {
  display: flex;
  align-items: center;
}

.ag-group-container {
  display: flex;
}

.ag-disabled .ag-group-container {
  pointer-events: none;
}

.ag-group-container-horizontal {
  flex-direction: row;
  flex-wrap: wrap;
}

.ag-group-container-vertical {
  flex-direction: column;
}

.ag-column-group-icons {
  display: block;
}
.ag-column-group-icons > * {
  cursor: pointer;
}

.ag-group-item-alignment-stretch .ag-group-item {
  align-items: stretch;
}

.ag-group-item-alignment-start .ag-group-item {
  align-items: flex-start;
}

.ag-group-item-alignment-end .ag-group-item {
  align-items: flex-end;
}

.ag-toggle-button-icon {
  transition: right 0.3s;
  position: absolute;
  top: -1px;
}

.ag-input-field,
.ag-select {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.ag-input-field-input {
  flex: 1 1 auto;
}

.ag-floating-filter-input .ag-input-field-input[type=date] {
  width: 1px;
}

.ag-range-field {
  display: flex;
  align-items: center;
}

.ag-angle-select {
  display: flex;
  align-items: center;
}

.ag-angle-select-wrapper {
  display: flex;
}

.ag-angle-select-parent-circle {
  display: block;
  position: relative;
}

.ag-angle-select-child-circle {
  position: absolute;
}

.ag-slider-wrapper {
  display: flex;
}
.ag-slider-wrapper .ag-input-field {
  flex: 1 1 auto;
}

.ag-picker-field-display {
  flex: 1 1 auto;
}

.ag-picker-field {
  display: flex;
  align-items: center;
}

.ag-picker-field-icon {
  display: flex;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.ag-picker-field-wrapper {
  overflow: hidden;
}

.ag-label-align-right .ag-label {
  order: 1;
}
.ag-label-align-right > * {
  flex: none;
}

.ag-label-align-top {
  flex-direction: column;
  align-items: flex-start;
}
.ag-label-align-top > * {
  align-self: stretch;
}

.ag-label-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.ag-color-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.ag-spectrum-color {
  flex: 1 1 auto;
  position: relative;
  overflow: visible;
  cursor: default;
}

.ag-spectrum-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ag-spectrum-val {
  cursor: pointer;
}

.ag-spectrum-dragger {
  position: absolute;
  pointer-events: none;
  cursor: pointer;
}

.ag-spectrum-hue,
.ag-spectrum-alpha {
  cursor: default;
}

.ag-spectrum-hue-background {
  background: linear-gradient(to left, #ff0000 3%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  width: 100%;
  height: 100%;
}

.ag-spectrum-alpha {
  --ag-spectrum-alpha-background-checked: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><rect x="0" y="0" width="4" height="4" fill="%23fff"/><path d="M0 0H2V4H4V2H0Z" fill="%23b2b2b2"/></svg>');
}

.ag-spectrum-alpha-background {
  background: linear-gradient(to right, var(--ag-internal-spectrum-alpha-color-from), var(--ag-internal-spectrum-alpha-color-to)), var(--ag-spectrum-alpha-background-checked) top left/4px 4px;
  width: 100%;
  height: 100%;
}

.ag-spectrum-tool {
  cursor: pointer;
  position: relative;
}

.ag-spectrum-slider {
  position: absolute;
  pointer-events: none;
}

.ag-spectrum-alpha .ag-spectrum-slider {
  background: linear-gradient(to bottom, var(--ag-internal-spectrum-alpha-color), var(--ag-internal-spectrum-alpha-color)) white;
}

.ag-recent-colors {
  display: flex;
}

.ag-recent-color {
  cursor: pointer;
}

.ag-pill-select {
  display: flex;
  flex-direction: column;
}
.ag-pill-select .ag-column-drop {
  flex: unset;
}

.ag-ltr {
  direction: ltr;
}
.ag-ltr .ag-body,
.ag-ltr .ag-floating-top,
.ag-ltr .ag-floating-bottom,
.ag-ltr .ag-header,
.ag-ltr .ag-sticky-top,
.ag-ltr .ag-sticky-bottom,
.ag-ltr .ag-body-viewport,
.ag-ltr .ag-body-horizontal-scroll {
  flex-direction: row;
}

.ag-rtl {
  direction: rtl;
}
.ag-rtl .ag-body,
.ag-rtl .ag-floating-top,
.ag-rtl .ag-floating-bottom,
.ag-rtl .ag-header,
.ag-rtl .ag-sticky-top,
.ag-rtl .ag-sticky-bottom,
.ag-rtl .ag-body-viewport,
.ag-rtl .ag-body-horizontal-scroll {
  flex-direction: row-reverse;
}
.ag-rtl .ag-icon-contracted,
.ag-rtl .ag-icon-expanded,
.ag-rtl .ag-icon-tree-closed {
  display: block;
  transform: rotate(180deg);
}

.ag-body .ag-body-viewport {
  -webkit-overflow-scrolling: touch;
}

.ag-measurement-container {
  width: 0;
  overflow: hidden;
  visibility: hidden;
}
.ag-measurement-container div {
  position: absolute;
}

.ag-layout-print.ag-body {
  display: block;
  height: unset;
}
.ag-layout-print.ag-root-wrapper {
  display: inline-block;
}
.ag-layout-print .ag-body-vertical-scroll {
  display: none;
}
.ag-layout-print .ag-body-horizontal-scroll {
  display: none;
}
.ag-layout-print.ag-force-vertical-scroll {
  overflow-y: visible !important;
}

@media print {
  .ag-root-wrapper.ag-layout-print {
    display: table;
  }
  .ag-root-wrapper.ag-layout-print .ag-root-wrapper-body,
  .ag-root-wrapper.ag-layout-print .ag-root,
  .ag-root-wrapper.ag-layout-print .ag-body-viewport,
  .ag-root-wrapper.ag-layout-print .ag-center-cols-container,
  .ag-root-wrapper.ag-layout-print .ag-center-cols-viewport,
  .ag-root-wrapper.ag-layout-print .ag-body-horizontal-scroll-viewport,
  .ag-root-wrapper.ag-layout-print .ag-virtual-list-viewport {
    height: auto !important;
    overflow: hidden !important;
    display: block !important;
  }
  .ag-root-wrapper.ag-layout-print .ag-row,
  .ag-root-wrapper.ag-layout-print .ag-cell {
    break-inside: avoid;
  }
}
[class^=ag-],
[class^=ag-]:focus,
[class^=ag-]:after,
[class^=ag-]:before {
  box-sizing: border-box;
  outline: none;
}

[class^=ag-]::-ms-clear {
  display: none;
}

.ag-checkbox .ag-input-wrapper,
.ag-radio-button .ag-input-wrapper {
  overflow: visible;
}

.ag-range-field .ag-input-wrapper {
  height: 100%;
}

.ag-toggle-button {
  flex: none;
  width: unset;
  min-width: unset;
}

.ag-button {
  border-radius: 0px;
  color: var(--ag-foreground-color);
}

.ag-button:hover {
  background-color: transparent;
}

.ag-ltr .ag-label-align-right .ag-label {
  margin-left: var(--ag-grid-size);
}
.ag-rtl .ag-label-align-right .ag-label {
  margin-right: var(--ag-grid-size);
}

input[class^=ag-] {
  margin: 0;
  background-color: var(--ag-background-color);
}

textarea[class^=ag-],
select[class^=ag-] {
  background-color: var(--ag-background-color);
}

input[class^=ag-]:not([type]),
input[class^=ag-][type=text],
input[class^=ag-][type=number],
input[class^=ag-][type=tel],
input[class^=ag-][type=date],
input[class^=ag-][type=datetime-local],
textarea[class^=ag-] {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  border: var(--ag-borders-input) var(--ag-input-border-color);
}
input[class^=ag-]:not([type]):disabled,
input[class^=ag-][type=text]:disabled,
input[class^=ag-][type=number]:disabled,
input[class^=ag-][type=tel]:disabled,
input[class^=ag-][type=date]:disabled,
input[class^=ag-][type=datetime-local]:disabled,
textarea[class^=ag-]:disabled {
  color: var(--ag-disabled-foreground-color);
  background-color: var(--ag-input-disabled-background-color);
  border-color: var(--ag-input-disabled-border-color);
}
input[class^=ag-]:not([type]):focus,
input[class^=ag-][type=text]:focus,
input[class^=ag-][type=number]:focus,
input[class^=ag-][type=tel]:focus,
input[class^=ag-][type=date]:focus,
input[class^=ag-][type=datetime-local]:focus,
textarea[class^=ag-]:focus {
  outline: none;
  box-shadow: var(--ag-input-focus-box-shadow);
  border-color: var(--ag-input-focus-border-color);
}
input[class^=ag-]:not([type]):invalid,
input[class^=ag-][type=text]:invalid,
input[class^=ag-][type=number]:invalid,
input[class^=ag-][type=tel]:invalid,
input[class^=ag-][type=date]:invalid,
input[class^=ag-][type=datetime-local]:invalid,
textarea[class^=ag-]:invalid {
  border: var(--ag-borders-input-invalid) var(--ag-input-border-color-invalid);
}

input[class^=ag-][type=number]:not(.ag-number-field-input-stepper) {
  -moz-appearance: textfield;
}
input[class^=ag-][type=number]:not(.ag-number-field-input-stepper)::-webkit-outer-spin-button, input[class^=ag-][type=number]:not(.ag-number-field-input-stepper)::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[class^=ag-][type=range] {
  padding: 0;
}

input[class^=ag-][type=button]:focus,
button[class^=ag-]:focus {
  box-shadow: var(--ag-input-focus-box-shadow);
}

.ag-drag-handle {
  color: var(--ag-secondary-foreground-color);
}

.ag-list-item,
.ag-virtual-list-item {
  height: var(--ag-list-item-height);
}

.ag-virtual-list-item:focus-visible {
  outline: none;
}
.ag-virtual-list-item:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-select-list {
  background-color: var(--ag-background-color);
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: var(--ag-border-radius);
  border: var(--ag-borders) var(--ag-border-color);
}

.ag-list-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-list-item.ag-active-item {
  background-color: var(--ag-row-hover-color);
}

.ag-select-list-item {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.ag-ltr .ag-select-list-item {
  padding-left: calc(var(--ag-cell-horizontal-padding) / 2);
}
.ag-rtl .ag-select-list-item {
  padding-right: calc(var(--ag-cell-horizontal-padding) / 2);
}
.ag-select-list-item span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ag-row-drag,
.ag-selection-checkbox,
.ag-group-expanded,
.ag-group-contracted {
  color: var(--ag-secondary-foreground-color);
}
.ag-ltr .ag-row-drag,
.ag-ltr .ag-selection-checkbox,
.ag-ltr .ag-group-expanded,
.ag-ltr .ag-group-contracted {
  margin-right: var(--ag-cell-widget-spacing);
}
.ag-rtl .ag-row-drag,
.ag-rtl .ag-selection-checkbox,
.ag-rtl .ag-group-expanded,
.ag-rtl .ag-group-contracted {
  margin-left: var(--ag-cell-widget-spacing);
}

.ag-cell-wrapper > *:not(.ag-cell-value):not(.ag-group-value) {
  --ag-internal-calculated-line-height: var(
      --ag-line-height,
      calc(var(--ag-row-height) - var(--ag-row-border-width))
  );
  --ag-internal-padded-row-height: calc(var(--ag-row-height) - var(--ag-row-border-width));
  height: min(var(--ag-internal-calculated-line-height), var(--ag-internal-padded-row-height));
  display: flex;
  align-items: center;
  flex: none;
}

.ag-group-expanded,
.ag-group-contracted {
  cursor: pointer;
}

.ag-group-title-bar-icon {
  cursor: pointer;
  flex: none;
  color: var(--ag-secondary-foreground-color);
}

.ag-ltr .ag-group-child-count {
  margin-left: 2px;
}
.ag-rtl .ag-group-child-count {
  margin-right: 2px;
}

.ag-group-title-bar {
  background-color: var(--ag-subheader-background-color);
  padding: var(--ag-grid-size);
}

.ag-group-toolbar {
  padding: var(--ag-grid-size);
  background-color: var(--ag-subheader-toolbar-background-color);
}

.ag-disabled-group-title-bar,
.ag-disabled-group-container {
  opacity: 0.5;
}

.group-item {
  margin: calc(var(--ag-grid-size) * 0.5) 0;
}

.ag-label {
  white-space: nowrap;
}
.ag-ltr .ag-label {
  margin-right: var(--ag-grid-size);
}
.ag-rtl .ag-label {
  margin-left: var(--ag-grid-size);
}

.ag-label-align-top .ag-label {
  margin-bottom: calc(var(--ag-grid-size) * 0.5);
}

.ag-angle-select[disabled] {
  color: var(--ag-disabled-foreground-color);
  pointer-events: none;
}
.ag-angle-select[disabled] .ag-angle-select-field {
  opacity: 0.4;
}

.ag-ltr .ag-slider-field,
.ag-ltr .ag-angle-select-field {
  margin-right: calc(var(--ag-grid-size) * 2);
}
.ag-rtl .ag-slider-field,
.ag-rtl .ag-angle-select-field {
  margin-left: calc(var(--ag-grid-size) * 2);
}

.ag-angle-select-parent-circle {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  border: solid 1px;
  border-color: var(--ag-border-color);
  background-color: var(--ag-background-color);
}

.ag-angle-select-child-circle {
  top: 4px;
  left: 12px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -4px;
  border-radius: 3px;
  background-color: var(--ag-secondary-foreground-color);
}

.ag-picker-field-wrapper {
  border: var(--ag-borders);
  border-color: var(--ag-border-color);
  border-radius: 5px;
  background-color: var(--ag-background-color);
}
.ag-picker-field-wrapper:disabled {
  color: var(--ag-disabled-foreground-color);
  background-color: var(--ag-input-disabled-background-color);
  border-color: var(--ag-input-disabled-border-color);
}
.ag-picker-field-wrapper.ag-picker-has-focus, .ag-picker-field-wrapper:focus-within {
  outline: none;
  box-shadow: var(--ag-input-focus-box-shadow);
  border-color: var(--ag-input-focus-border-color);
}

.ag-picker-field-button {
  background-color: var(--ag-background-color);
  color: var(--ag-secondary-foreground-color);
}

.ag-dialog.ag-color-dialog {
  border-radius: 5px;
}

.ag-color-picker .ag-picker-field-wrapper {
  padding-left: var(--ag-grid-size);
  padding-right: var(--ag-grid-size);
}
.ag-color-picker .ag-picker-field-display {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: var(--ag-list-item-height);
}

.ag-ltr .ag-color-picker-color,
.ag-ltr .ag-color-picker-value {
  margin-right: var(--ag-grid-size);
}
.ag-rtl .ag-color-picker-color,
.ag-rtl .ag-color-picker-value {
  margin-left: var(--ag-grid-size);
}

.ag-color-panel {
  padding: var(--ag-grid-size);
}

.ag-spectrum-color {
  background-color: rgb(255, 0, 0);
  border-radius: 2px;
}

.ag-spectrum-tools {
  padding: 10px;
}

.ag-spectrum-sat {
  background-image: linear-gradient(to right, white, rgba(204, 154, 129, 0));
}

.ag-spectrum-val {
  background-image: linear-gradient(to top, black, rgba(204, 154, 129, 0));
}

.ag-spectrum-dragger {
  border-radius: 12px;
  height: 12px;
  width: 12px;
  border: 2px solid white;
  background: black;
  box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.24);
}

.ag-spectrum-hue-background {
  border-radius: 2px;
}

.ag-spectrum-alpha-background {
  border-radius: 2px;
}

.ag-spectrum-tool {
  margin-bottom: 10px;
  height: 11px;
  border-radius: 2px;
}

.ag-spectrum-slider {
  margin-top: -12px;
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 2px solid white;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
}

.ag-recent-colors {
  margin-top: 10px;
}

.ag-recent-color {
  margin: 0 3px;
}
.ag-recent-color:first-child {
  margin-left: 0;
}
.ag-recent-color:last-child {
  margin-right: 0;
}

.ag-spectrum-color:focus-visible:not(:disabled):not([readonly]),
.ag-spectrum-slider:focus-visible:not(:disabled):not([readonly]),
.ag-recent-color:focus-visible:not(:disabled):not([readonly]) {
  box-shadow: var(--ag-input-focus-box-shadow);
}

.ag-ltr .ag-color-input input[class^=ag-][type=text].ag-input-field-input {
  padding-left: calc(var(--ag-icon-size) + var(--ag-grid-size) * 2);
}
.ag-rtl .ag-color-input input[class^=ag-][type=text].ag-input-field-input {
  padding-right: calc(var(--ag-icon-size) + var(--ag-grid-size) * 2);
}
.ag-color-input .ag-color-input-color {
  position: absolute;
}
.ag-ltr .ag-color-input .ag-color-input-color {
  margin-left: var(--ag-grid-size);
}
.ag-rtl .ag-color-input .ag-color-input-color {
  margin-right: var(--ag-grid-size);
}

.ag-color-picker-color,
.ag-color-input-color {
  width: var(--ag-icon-size);
  height: var(--ag-icon-size);
  border: var(--ag-borders-secondary) var(--ag-secondary-border-color);
  border-radius: 2px;
}

.ag-dnd-ghost {
  border: var(--ag-borders) var(--ag-border-color);
  background: var(--ag-background-color);
  border-radius: var(--ag-card-radius);
  box-shadow: var(--ag-card-shadow);
  padding: var(--ag-grid-size);
  overflow: hidden;
  text-overflow: ellipsis;
  border: var(--ag-borders-secondary) var(--ag-secondary-border-color);
  color: var(--ag-secondary-foreground-color);
  height: var(--ag-header-height);
  line-height: var(--ag-header-height);
  margin: 0;
  padding: 0 calc(var(--ag-grid-size) * 2);
  transform: translateY(calc(var(--ag-grid-size) * 2));
}

.ag-dnd-ghost-icon {
  margin-right: var(--ag-grid-size);
  color: var(--ag-foreground-color);
}

.ag-popup-child:not(.ag-tooltip-custom) {
  box-shadow: var(--ag-popup-shadow);
}

.ag-select .ag-picker-field-wrapper {
  min-height: var(--ag-list-item-height);
  cursor: default;
}
.ag-ltr .ag-select .ag-picker-field-wrapper {
  padding-left: calc(var(--ag-cell-horizontal-padding) / 2);
}
.ag-rtl .ag-select .ag-picker-field-wrapper {
  padding-right: calc(var(--ag-cell-horizontal-padding) / 2);
}
.ag-ltr .ag-select .ag-picker-field-wrapper {
  padding-right: var(--ag-grid-size);
}
.ag-rtl .ag-select .ag-picker-field-wrapper {
  padding-left: var(--ag-grid-size);
}
.ag-select.ag-disabled .ag-picker-field-wrapper:focus {
  box-shadow: none;
}
.ag-select:not(.ag-cell-editor, .ag-label-align-top) {
  min-height: var(--ag-list-item-height);
}
.ag-select .ag-picker-field-display {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ag-select .ag-picker-field-icon {
  display: flex;
  align-items: center;
}
.ag-select.ag-disabled {
  opacity: 0.5;
}

.ag-rich-select-value,
.ag-rich-select-list {
  background-color: var(--ag-background-color);
}

.ag-rich-select-list {
  width: 100%;
  height: auto;
  border-radius: var(--ag-border-radius);
  border: var(--ag-borders) var(--ag-border-color);
}
.ag-rich-select-list .ag-loading-text {
  padding: var(--ag-widget-vertical-spacing) var(--ag-widget-horizontal-spacing);
}

.ag-rich-select-value {
  border-bottom: var(--ag-borders-secondary) var(--ag-secondary-border-color);
  padding-top: 0;
  padding-bottom: 0;
}
.ag-ltr .ag-rich-select-value {
  padding-left: calc(var(--ag-cell-horizontal-padding) / 2);
}
.ag-rtl .ag-rich-select-value {
  padding-right: calc(var(--ag-cell-horizontal-padding) / 2);
}
.ag-ltr .ag-rich-select-value {
  padding-right: var(--ag-grid-size);
}
.ag-rtl .ag-rich-select-value {
  padding-left: var(--ag-grid-size);
}

.ag-ltr .ag-rich-select-field-input {
  left: calc(var(--ag-cell-horizontal-padding));
}
.ag-rtl .ag-rich-select-field-input {
  right: calc(var(--ag-cell-horizontal-padding));
}

.ag-popup-editor .ag-rich-select-value {
  height: var(--ag-row-height);
  min-width: 200px;
}

.ag-rich-select-virtual-list-item {
  cursor: default;
  height: var(--ag-list-item-height);
}
.ag-rich-select-virtual-list-item:focus-visible::after {
  content: none;
}

.ag-ltr .ag-rich-select-row {
  padding-left: calc(var(--ag-cell-horizontal-padding) / 2);
}
.ag-rtl .ag-rich-select-row {
  padding-right: calc(var(--ag-cell-horizontal-padding) / 2);
}

.ag-rich-select-row-selected {
  background-color: var(--ag-selected-row-background-color);
}

.ag-rich-select-row:hover,
.ag-rich-select-row-highlighted {
  background-image: linear-gradient(var(--ag-row-hover-color), var(--ag-row-hover-color));
}

.ag-rich-select-row-text-highlight {
  font-weight: bold;
}

.ag-autocomplete {
  width: 100%;
}

.ag-autocomplete-list {
  width: 100%;
  min-width: 200px;
  height: calc(var(--ag-row-height) * 6.5);
}

.ag-autocomplete-virtual-list-item {
  cursor: default;
  height: var(--ag-list-item-height);
}
.ag-autocomplete-virtual-list-item:focus-visible::after {
  content: none;
}
.ag-autocomplete-virtual-list-item:hover {
  background-color: var(--ag-row-hover-color);
}

.ag-autocomplete-row-label {
  margin: 0px var(--ag-widget-container-horizontal-padding);
}

.ag-autocomplete-row-selected {
  background-color: var(--ag-selected-row-background-color);
}

.ag-pill {
  border: 1px solid var(--ag-chip-border-color);
  border-radius: var(--ag-border-radius);
  background-color: var(--ag-chip-background-color);
}

.ag-ltr .ag-pill .ag-pill-button {
  margin-left: var(--ag-grid-size);
}
.ag-rtl .ag-pill .ag-pill-button {
  margin-right: var(--ag-grid-size);
}

.ag-pill:focus-visible {
  border-color: var(--ag-input-focus-border-color);
}

.ag-pill .ag-pill-button:hover {
  cursor: pointer;
}

.ag-dragging-range-handle .ag-dialog,
.ag-dragging-fill-handle .ag-dialog {
  opacity: 0.7;
  pointer-events: none;
}

.ag-dialog {
  border-radius: var(--ag-border-radius);
  border: var(--ag-borders) var(--ag-border-color);
  box-shadow: var(--ag-popup-shadow);
}

.ag-panel {
  background-color: var(--ag-panel-background-color);
  border-color: var(--ag-panel-border-color);
}

.ag-panel-title-bar {
  color: var(--ag-header-foreground-color);
  height: var(--ag-header-height);
  padding: var(--ag-grid-size) var(--ag-cell-horizontal-padding);
  border-bottom: var(--ag-borders) var(--ag-border-color);
}

.ag-ltr .ag-panel-title-bar-button {
  margin-left: var(--ag-grid-size);
}
.ag-rtl .ag-panel-title-bar-button {
  margin-right: var(--ag-grid-size);
}

.ag-tooltip {
  background-color: var(--ag-tooltip-background-color);
  color: var(--ag-foreground-color);
  padding: var(--ag-grid-size);
  border: var(--ag-borders) var(--ag-border-color);
  border-radius: var(--ag-card-radius);
  white-space: normal;
}

.ag-tooltip.ag-tooltip-animate,
.ag-tooltip-custom.ag-tooltip-animate {
  transition: opacity 1s;
}
.ag-tooltip.ag-tooltip-animate.ag-tooltip-hiding,
.ag-tooltip-custom.ag-tooltip-animate.ag-tooltip-hiding {
  opacity: 0;
}

.ag-ltr .ag-column-select-column,
.ag-ltr .ag-column-select-column-group {
  padding-left: calc(var(--ag-indentation-level) * var(--ag-column-select-indent-size));
}
.ag-rtl .ag-column-select-column,
.ag-rtl .ag-column-select-column-group {
  padding-right: calc(var(--ag-indentation-level) * var(--ag-column-select-indent-size));
}

.ag-column-select-header-icon {
  cursor: pointer;
}

.ag-column-select-header-icon:focus-visible {
  outline: none;
}
.ag-column-select-header-icon:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 0px;
  left: 0px;
  display: block;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-ltr .ag-column-group-icons:not(:last-child),
.ag-ltr .ag-column-select-header-icon:not(:last-child),
.ag-ltr .ag-column-select-header-checkbox:not(:last-child),
.ag-ltr .ag-column-select-header-filter-wrapper:not(:last-child),
.ag-ltr .ag-column-select-checkbox:not(:last-child),
.ag-ltr .ag-column-select-column-drag-handle:not(:last-child),
.ag-ltr .ag-column-select-column-group-drag-handle:not(:last-child),
.ag-ltr .ag-column-select-column-label:not(:last-child) {
  margin-right: var(--ag-widget-horizontal-spacing);
}
.ag-rtl .ag-column-group-icons:not(:last-child),
.ag-rtl .ag-column-select-header-icon:not(:last-child),
.ag-rtl .ag-column-select-header-checkbox:not(:last-child),
.ag-rtl .ag-column-select-header-filter-wrapper:not(:last-child),
.ag-rtl .ag-column-select-checkbox:not(:last-child),
.ag-rtl .ag-column-select-column-drag-handle:not(:last-child),
.ag-rtl .ag-column-select-column-group-drag-handle:not(:last-child),
.ag-rtl .ag-column-select-column-label:not(:last-child) {
  margin-left: var(--ag-widget-horizontal-spacing);
}

.ag-column-select-virtual-list-item:focus-visible {
  outline: none;
}
.ag-column-select-virtual-list-item:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 1px;
  left: 1px;
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-column-select-column-group:not(:last-child),
.ag-column-select-column:not(:last-child) {
  margin-bottom: var(--ag-widget-vertical-spacing);
}

.ag-column-select-column-readonly,
.ag-column-select-column-group-readonly {
  color: var(--ag-disabled-foreground-color);
  pointer-events: none;
}

.ag-ltr .ag-column-select-add-group-indent {
  margin-left: calc(var(--ag-icon-size) + var(--ag-grid-size) * 2);
}
.ag-rtl .ag-column-select-add-group-indent {
  margin-right: calc(var(--ag-icon-size) + var(--ag-grid-size) * 2);
}

.ag-column-select-virtual-list-viewport {
  padding: calc(var(--ag-widget-container-vertical-padding) * 0.5) 0px;
}

.ag-column-select-virtual-list-item {
  padding: 0 var(--ag-widget-container-horizontal-padding);
}

.ag-checkbox-edit {
  padding-left: var(--ag-cell-horizontal-padding);
  padding-right: var(--ag-cell-horizontal-padding);
}

.ag-pill-select .ag-column-drop {
  border-bottom: 0;
  min-height: unset;
}
.ag-pill-select .ag-column-drop-list {
  padding: 0;
}
.ag-pill-select .ag-select {
  padding-top: var(--ag-grid-size);
}
.ag-pill-select .ag-picker-field-wrapper {
  background-color: transparent;
  border: 0;
}
.ag-pill-select .ag-picker-field-display {
  cursor: pointer;
}

.ag-rtl {
  text-align: right;
}

.ag-root-wrapper {
  border-radius: var(--ag-wrapper-border-radius);
  border: var(--ag-borders) var(--ag-border-color);
}

.ag-row > .ag-cell-wrapper.ag-row-group {
  padding-left: calc(var(--ag-cell-horizontal-padding) + var(--ag-row-group-indent-size) * var(--ag-indentation-level));
}

.ag-cell-wrapper.ag-row-group,
.ag-cell-wrapper.ag-row-group-leaf-indent,
.ag-cell-wrapper.ag-pivot-leaf-group {
  padding-left: calc(var(--ag-indentation-level) * var(--ag-row-group-indent-size));
}

.ag-ltr .ag-row-group-leaf-indent {
  margin-left: var(--ag-row-group-indent-size);
}
.ag-rtl .ag-row-group-leaf-indent {
  margin-right: var(--ag-row-group-indent-size);
}

.ag-row:not(.ag-row-level-0) .ag-pivot-leaf-group {
  margin-left: var(--ag-row-group-indent-size);
}

.ag-value-change-delta {
  padding-right: 2px;
}

.ag-value-change-delta-up {
  color: var(--ag-value-change-delta-up-color);
}

.ag-value-change-delta-down {
  color: var(--ag-value-change-delta-down-color);
}

.ag-value-change-value {
  background-color: transparent;
  border-radius: 1px;
  padding-left: 1px;
  padding-right: 1px;
  transition: background-color 1s;
}

.ag-value-change-value-highlight {
  background-color: var(--ag-value-change-value-highlight-background-color);
  transition: background-color 0.1s;
}

.ag-cell-data-changed {
  background-color: var(--ag-value-change-value-highlight-background-color) !important;
}

.ag-cell-data-changed-animation {
  background-color: transparent;
}

.ag-cell-highlight {
  background-color: var(--ag-range-selection-highlight-color) !important;
}

.ag-row {
  height: var(--ag-row-height);
  background-color: var(--ag-background-color);
  color: var(--ag-data-color);
  border-bottom: var(--ag-row-border-style) var(--ag-row-border-color) var(--ag-row-border-width);
}

.ag-row-highlight-above::after,
.ag-row-highlight-below::after {
  content: "";
  position: absolute;
  width: calc(100% - 1px);
  height: 1px;
  background-color: var(--ag-range-selection-border-color);
  left: 1px;
}

.ag-row-highlight-above::after {
  top: 0px;
}

.ag-row-highlight-below::after {
  bottom: 0px;
}

.ag-row-odd {
  background-color: var(--ag-odd-row-background-color);
}

.ag-body-horizontal-scroll:not(.ag-scrollbar-invisible) .ag-horizontal-left-spacer:not(.ag-scroller-corner) {
  border-right: var(--ag-borders-critical) var(--ag-border-color);
}
.ag-body-horizontal-scroll:not(.ag-scrollbar-invisible) .ag-horizontal-right-spacer:not(.ag-scroller-corner) {
  border-left: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-row-selected::before {
  content: "";
  background-color: var(--ag-selected-row-background-color);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ag-row-hover:not(.ag-full-width-row)::before,
.ag-row-hover.ag-full-width-row.ag-row-group::before {
  content: "";
  background-color: var(--ag-row-hover-color);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.ag-row-hover.ag-full-width-row.ag-row-group > * {
  position: relative;
}

.ag-row-hover.ag-row-selected::before {
  background-color: var(--ag-row-hover-color);
  background-image: linear-gradient(var(--ag-selected-row-background-color), var(--ag-selected-row-background-color));
}

.ag-column-hover {
  background-color: var(--ag-column-hover-color);
}

.ag-ltr .ag-right-aligned-cell {
  text-align: right;
}
.ag-rtl .ag-right-aligned-cell {
  text-align: left;
}

.ag-ltr .ag-right-aligned-cell .ag-cell-value,
.ag-ltr .ag-right-aligned-cell .ag-group-value {
  margin-left: auto;
}
.ag-rtl .ag-right-aligned-cell .ag-cell-value,
.ag-rtl .ag-right-aligned-cell .ag-group-value {
  margin-right: auto;
}

.ag-ltr .ag-right-aligned-cell .ag-skeleton-effect {
  margin-left: auto;
}
.ag-rtl .ag-right-aligned-cell .ag-skeleton-effect {
  margin-right: auto;
}

.ag-cell,
.ag-full-width-row .ag-cell-wrapper.ag-row-group {
  --ag-internal-calculated-line-height: var(
      --ag-line-height,
      calc(var(--ag-row-height) - var(--ag-row-border-width))
  );
  --ag-internal-padded-row-height: calc(var(--ag-row-height) - var(--ag-row-border-width));
  border: 1px solid transparent;
  line-height: min(var(--ag-internal-calculated-line-height), var(--ag-internal-padded-row-height));
  padding-left: calc(var(--ag-cell-horizontal-padding) - 1px + var(--ag-row-group-indent-size) * var(--ag-indentation-level));
  padding-right: calc(var(--ag-cell-horizontal-padding) - 1px);
  -webkit-font-smoothing: subpixel-antialiased;
}

.ag-row > .ag-cell-wrapper {
  padding-left: calc(var(--ag-cell-horizontal-padding) - 1px);
  padding-right: calc(var(--ag-cell-horizontal-padding) - 1px);
}

.ag-row-dragging {
  cursor: move;
  opacity: 0.5;
}

.ag-cell-inline-editing {
  border: 1px solid var(--ag-border-color);
  border-radius: var(--ag-card-radius);
  box-shadow: var(--ag-card-shadow);
  padding: 0;
  background-color: var(--ag-control-panel-background-color);
}

.ag-popup-editor .ag-large-text,
.ag-autocomplete-list-popup {
  border: var(--ag-borders) var(--ag-border-color);
  background: var(--ag-background-color);
  border-radius: var(--ag-card-radius);
  box-shadow: var(--ag-card-shadow);
  padding: var(--ag-grid-size);
  background-color: var(--ag-control-panel-background-color);
  padding: 0;
}

.ag-large-text-input {
  height: auto;
  padding: var(--ag-cell-horizontal-padding);
}

.ag-rtl .ag-large-text-input textarea {
  resize: none;
}

.ag-details-row {
  padding: calc(var(--ag-grid-size) * 5);
  background-color: var(--ag-background-color);
}

.ag-layout-auto-height .ag-center-cols-viewport,
.ag-layout-auto-height .ag-center-cols-container,
.ag-layout-print .ag-center-cols-viewport,
.ag-layout-print .ag-center-cols-container {
  min-height: 50px;
}

.ag-overlay-loading-wrapper {
  background-color: var(--ag-modal-overlay-background-color);
}

.ag-overlay-loading-center {
  border: var(--ag-borders) var(--ag-border-color);
  background: var(--ag-background-color);
  border-radius: var(--ag-card-radius);
  box-shadow: var(--ag-card-shadow);
  padding: var(--ag-grid-size);
}

.ag-skeleton-container {
  width: 100%;
  height: 100%;
  align-content: center;
}

.ag-skeleton-effect {
  background-color: var(--ag-row-loading-skeleton-effect-color);
  width: 100%;
  height: 1em;
  border-radius: 0.25rem;
  animation: ag-skeleton-loading 1.5s ease-in-out 0.5s infinite;
}

@keyframes ag-skeleton-loading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.ag-loading {
  display: flex;
  height: 100%;
  align-items: center;
}
.ag-ltr .ag-loading {
  padding-left: var(--ag-cell-horizontal-padding);
}
.ag-rtl .ag-loading {
  padding-right: var(--ag-cell-horizontal-padding);
}

.ag-ltr .ag-loading-icon {
  padding-right: var(--ag-cell-widget-spacing);
}
.ag-rtl .ag-loading-icon {
  padding-left: var(--ag-cell-widget-spacing);
}

.ag-icon-loading {
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.ag-floating-top {
  border-bottom: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-floating-bottom {
  border-top: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-ltr .ag-cell {
  border-right: var(--ag-cell-horizontal-border);
}
.ag-rtl .ag-cell {
  border-left: var(--ag-cell-horizontal-border);
}
.ag-ltr .ag-cell {
  border-right-width: 1px;
}
.ag-rtl .ag-cell {
  border-left-width: 1px;
}

.ag-cell.ag-cell-first-right-pinned:not(.ag-cell-range-left):not(.ag-cell-range-single-cell) {
  border-left: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-cell.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell) {
  border-right: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-cell-range-selected:not(.ag-cell-focus),
.ag-body-viewport:not(.ag-has-focus) .ag-cell-range-single-cell:not(.ag-cell-inline-editing) {
  background-color: var(--ag-range-selection-background-color);
}
.ag-cell-range-selected:not(.ag-cell-focus).ag-cell-range-chart,
.ag-body-viewport:not(.ag-has-focus) .ag-cell-range-single-cell:not(.ag-cell-inline-editing).ag-cell-range-chart {
  background-color: var(--ag-range-selection-chart-background-color) !important;
}
.ag-cell-range-selected:not(.ag-cell-focus).ag-cell-range-chart.ag-cell-range-chart-category,
.ag-body-viewport:not(.ag-has-focus) .ag-cell-range-single-cell:not(.ag-cell-inline-editing).ag-cell-range-chart.ag-cell-range-chart-category {
  background-color: var(--ag-range-selection-chart-category-background-color) !important;
}

.ag-cell-range-selected-1:not(.ag-cell-focus),
.ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing) {
  background-color: var(--ag-range-selection-background-color);
}

.ag-cell-range-selected-2:not(.ag-cell-focus),
.ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-2 {
  background-color: var(--ag-range-selection-background-color-2);
}

.ag-cell-range-selected-3:not(.ag-cell-focus),
.ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-3 {
  background-color: var(--ag-range-selection-background-color-3);
}

.ag-cell-range-selected-4:not(.ag-cell-focus),
.ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-4 {
  background-color: var(--ag-range-selection-background-color-4);
}

.ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top {
  border-top-color: var(--ag-range-selection-border-color);
  border-top-style: var(--ag-range-selection-border-style);
}
.ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right {
  border-right-color: var(--ag-range-selection-border-color);
  border-right-style: var(--ag-range-selection-border-style);
}
.ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom {
  border-bottom-color: var(--ag-range-selection-border-color);
  border-bottom-style: var(--ag-range-selection-border-style);
}
.ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left {
  border-left-color: var(--ag-range-selection-border-color);
  border-left-style: var(--ag-range-selection-border-style);
}

.ag-ltr .ag-cell-focus:not(.ag-cell-range-selected):focus-within,
.ag-ltr .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),
.ag-ltr .ag-full-width-row.ag-row-focus:focus .ag-cell-wrapper.ag-row-group,
.ag-ltr .ag-cell-range-single-cell,
.ag-ltr .ag-cell-range-single-cell.ag-cell-range-handle,
.ag-rtl .ag-cell-focus:not(.ag-cell-range-selected):focus-within,
.ag-rtl .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),
.ag-rtl .ag-full-width-row.ag-row-focus:focus .ag-cell-wrapper.ag-row-group,
.ag-rtl .ag-cell-range-single-cell,
.ag-rtl .ag-cell-range-single-cell.ag-cell-range-handle {
  border: 1px solid;
  border-color: var(--ag-range-selection-border-color);
  border-style: var(--ag-range-selection-border-style);
  outline: initial;
}

.ag-cell.ag-selection-fill-top,
.ag-cell.ag-selection-fill-top.ag-cell-range-selected {
  border-top: 1px dashed;
  border-top-color: var(--ag-range-selection-border-color);
}

.ag-ltr .ag-cell.ag-selection-fill-right,
.ag-ltr .ag-cell.ag-selection-fill-right.ag-cell-range-selected {
  border-right: 1px dashed var(--ag-range-selection-border-color) !important;
}
.ag-rtl .ag-cell.ag-selection-fill-right,
.ag-rtl .ag-cell.ag-selection-fill-right.ag-cell-range-selected {
  border-left: 1px dashed var(--ag-range-selection-border-color) !important;
}

.ag-cell.ag-selection-fill-bottom,
.ag-cell.ag-selection-fill-bottom.ag-cell-range-selected {
  border-bottom: 1px dashed;
  border-bottom-color: var(--ag-range-selection-border-color);
}

.ag-ltr .ag-cell.ag-selection-fill-left,
.ag-ltr .ag-cell.ag-selection-fill-left.ag-cell-range-selected {
  border-left: 1px dashed var(--ag-range-selection-border-color) !important;
}
.ag-rtl .ag-cell.ag-selection-fill-left,
.ag-rtl .ag-cell.ag-selection-fill-left.ag-cell-range-selected {
  border-right: 1px dashed var(--ag-range-selection-border-color) !important;
}

.ag-fill-handle,
.ag-range-handle {
  position: absolute;
  width: 6px;
  height: 6px;
  bottom: -1px;
  background-color: var(--ag-range-selection-border-color);
}
.ag-ltr .ag-fill-handle,
.ag-ltr .ag-range-handle {
  right: -1px;
}
.ag-rtl .ag-fill-handle,
.ag-rtl .ag-range-handle {
  left: -1px;
}

.ag-fill-handle {
  cursor: cell;
}

.ag-range-handle {
  cursor: nwse-resize;
}

.ag-cell-inline-editing {
  border-color: var(--ag-input-focus-border-color) !important;
}

.ag-menu {
  border: var(--ag-borders) var(--ag-border-color);
  background: var(--ag-background-color);
  border-radius: var(--ag-card-radius);
  box-shadow: var(--ag-card-shadow);
  padding: var(--ag-grid-size);
  background-color: var(--ag-menu-background-color);
  border-color: var(--ag-menu-border-color);
  padding: 0;
}

.ag-menu.ag-tabs {
  min-width: var(--ag-tab-min-width);
}

.ag-menu-list {
  cursor: default;
  padding: var(--ag-grid-size) 0;
}

.ag-menu-separator {
  height: calc(var(--ag-grid-size) * 2 + 1px);
}

.ag-menu-separator-part::after {
  content: "";
  display: block;
  border-top: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-menu-option-active,
.ag-compact-menu-option-active {
  background-color: var(--ag-row-hover-color);
}

.ag-menu-option-part,
.ag-compact-menu-option-part {
  line-height: var(--ag-icon-size);
  padding: calc(var(--ag-grid-size) + 2px) 0;
}

.ag-menu-option-disabled,
.ag-compact-menu-option-disabled {
  opacity: 0.5;
}

.ag-menu-option-icon,
.ag-compact-menu-option-icon {
  width: var(--ag-icon-size);
}
.ag-ltr .ag-menu-option-icon,
.ag-ltr .ag-compact-menu-option-icon {
  padding-left: calc(var(--ag-grid-size) * 2);
}
.ag-rtl .ag-menu-option-icon,
.ag-rtl .ag-compact-menu-option-icon {
  padding-right: calc(var(--ag-grid-size) * 2);
}

.ag-menu-option-text,
.ag-compact-menu-option-text {
  padding-left: calc(var(--ag-grid-size) * 2);
  padding-right: calc(var(--ag-grid-size) * 2);
}

.ag-ltr .ag-menu-option-shortcut,
.ag-ltr .ag-compact-menu-option-shortcut {
  padding-right: var(--ag-grid-size);
}
.ag-rtl .ag-menu-option-shortcut,
.ag-rtl .ag-compact-menu-option-shortcut {
  padding-left: var(--ag-grid-size);
}

.ag-ltr .ag-menu-option-popup-pointer,
.ag-ltr .ag-compact-menu-option-popup-pointer {
  padding-right: var(--ag-grid-size);
}
.ag-rtl .ag-menu-option-popup-pointer,
.ag-rtl .ag-compact-menu-option-popup-pointer {
  padding-left: var(--ag-grid-size);
}

.ag-tabs-header {
  display: flex;
}

.ag-tabs-header-wrapper {
  display: flex;
}
.ag-tabs-header-wrapper .ag-tabs-header {
  flex: 1;
}

.ag-tabs-close-button-wrapper {
  border: 0;
  border-right: var(--ag-borders) var(--ag-border-color);
  padding: var(--ag-grid-size);
}

.ag-tabs-close-button {
  border: 0;
  background-color: unset;
  cursor: pointer;
  padding: 0;
}

.ag-tab {
  border-bottom: var(--ag-selected-tab-underline-width) solid transparent;
  transition: border-bottom var(--ag-selected-tab-underline-transition-speed);
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ag-tab:focus-visible {
  outline: none;
}
.ag-tab:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-tab-selected {
  border-bottom-color: var(--ag-selected-tab-underline-color);
}

.ag-menu-header {
  color: var(--ag-secondary-foreground-color);
}

.ag-filter-separator {
  border-top: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-filter-select .ag-picker-field-wrapper {
  width: 0;
}

.ag-filter-condition-operator {
  height: 17px;
}

.ag-ltr .ag-filter-condition-operator-or {
  margin-left: calc(var(--ag-grid-size) * 2);
}
.ag-rtl .ag-filter-condition-operator-or {
  margin-right: calc(var(--ag-grid-size) * 2);
}

.ag-set-filter-select-all {
  padding-top: var(--ag-widget-container-vertical-padding);
}

.ag-set-filter-list,
.ag-filter-no-matches {
  height: calc(var(--ag-list-item-height) * 6);
}

.ag-set-filter-tree-list {
  height: calc(var(--ag-list-item-height) * 10);
}

.ag-set-filter-filter {
  margin-top: var(--ag-widget-container-vertical-padding);
  margin-left: var(--ag-widget-container-horizontal-padding);
  margin-right: var(--ag-widget-container-horizontal-padding);
}

.ag-filter-to {
  margin-top: var(--ag-widget-vertical-spacing);
}

.ag-mini-filter {
  margin: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
}

.ag-set-filter {
  --ag-indentation-level: 0;
}

.ag-ltr .ag-set-filter-item {
  padding-left: calc(var(--ag-widget-container-horizontal-padding) + var(--ag-indentation-level) * var(--ag-set-filter-indent-size));
}
.ag-rtl .ag-set-filter-item {
  padding-right: calc(var(--ag-widget-container-horizontal-padding) + var(--ag-indentation-level) * var(--ag-set-filter-indent-size));
}

.ag-ltr .ag-set-filter-add-group-indent {
  margin-left: calc(var(--ag-icon-size) + var(--ag-widget-container-horizontal-padding));
}
.ag-rtl .ag-set-filter-add-group-indent {
  margin-right: calc(var(--ag-icon-size) + var(--ag-widget-container-horizontal-padding));
}

.ag-ltr .ag-set-filter-group-icons {
  margin-right: var(--ag-widget-container-horizontal-padding);
}
.ag-rtl .ag-set-filter-group-icons {
  margin-left: var(--ag-widget-container-horizontal-padding);
}

.ag-filter-menu .ag-set-filter-list {
  min-width: 200px;
}

.ag-filter-virtual-list-item:focus-visible {
  outline: none;
}
.ag-filter-virtual-list-item:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 1px;
  left: 1px;
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-filter-apply-panel {
  padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
  border-top: var(--ag-borders-secondary) var(--ag-secondary-border-color);
}

.ag-filter-apply-panel-button {
  line-height: 1.5;
}
.ag-ltr .ag-filter-apply-panel-button {
  margin-left: calc(var(--ag-grid-size) * 2);
}
.ag-rtl .ag-filter-apply-panel-button {
  margin-right: calc(var(--ag-grid-size) * 2);
}

.ag-simple-filter-body-wrapper {
  padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
  padding-bottom: calc(var(--ag-widget-container-vertical-padding) - var(--ag-widget-vertical-spacing));
  overflow-y: auto;
  min-height: calc(var(--ag-list-item-height) + var(--ag-widget-container-vertical-padding) + var(--ag-widget-vertical-spacing));
}
.ag-simple-filter-body-wrapper > * {
  margin-bottom: var(--ag-widget-vertical-spacing);
}
.ag-simple-filter-body-wrapper .ag-resizer-wrapper {
  margin: 0;
}

.ag-menu:not(.ag-tabs) .ag-filter .ag-filter-body-wrapper,
.ag-menu:not(.ag-tabs) .ag-filter > *:not(.ag-filter-wrapper) {
  min-width: calc(var(--ag-menu-min-width) - 2px);
}

.ag-filter-no-matches {
  padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
}

.ag-multi-filter-menu-item {
  margin: var(--ag-grid-size) 0;
}

.ag-multi-filter-group-title-bar {
  padding: calc(var(--ag-grid-size) * 2) var(--ag-grid-size);
  background-color: transparent;
}

.ag-group-filter-field-select-wrapper {
  padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
  padding-bottom: calc(var(--ag-widget-container-vertical-padding) - var(--ag-widget-vertical-spacing));
}
.ag-group-filter-field-select-wrapper > * {
  margin-bottom: var(--ag-widget-vertical-spacing);
}

.ag-multi-filter-group-title-bar:focus-visible {
  outline: none;
}
.ag-multi-filter-group-title-bar:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-side-bar {
  position: relative;
}

.ag-tool-panel-wrapper {
  width: var(--ag-side-bar-panel-width);
  background-color: var(--ag-control-panel-background-color);
}

.ag-side-buttons {
  padding-top: calc(var(--ag-grid-size) * 4);
  width: calc(var(--ag-icon-size) + 4px);
  position: relative;
  overflow: hidden;
}

button.ag-side-button-button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  background: transparent;
  padding: calc(var(--ag-grid-size) * 2) 0 calc(var(--ag-grid-size) * 2) 0;
  width: 100%;
  margin: 0;
  min-height: calc(var(--ag-grid-size) * 18);
  background-position-y: center;
  background-position-x: center;
  background-repeat: no-repeat;
  border: none;
  border-top: var(--ag-borders-side-button) var(--ag-border-color);
  border-bottom: var(--ag-borders-side-button) var(--ag-border-color);
}
button.ag-side-button-button:focus {
  box-shadow: none;
}

.ag-side-button-button:focus-visible {
  outline: none;
}
.ag-side-button-button:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-selected button.ag-side-button-button {
  background-color: var(--ag-side-button-selected-background-color);
}

.ag-side-button-icon-wrapper {
  margin-bottom: 3px;
}

.ag-ltr .ag-side-bar-left,
.ag-rtl .ag-side-bar-right {
  border-right: var(--ag-borders) var(--ag-border-color);
}
.ag-ltr .ag-side-bar-left .ag-tool-panel-wrapper,
.ag-rtl .ag-side-bar-right .ag-tool-panel-wrapper {
  border-left: var(--ag-borders) var(--ag-border-color);
}
.ag-ltr .ag-side-bar-left .ag-side-button-button,
.ag-rtl .ag-side-bar-right .ag-side-button-button {
  border-right: var(--ag-selected-tab-underline-width) solid transparent;
  transition: border-right var(--ag-selected-tab-underline-transition-speed);
}
.ag-ltr .ag-side-bar-left .ag-selected .ag-side-button-button,
.ag-rtl .ag-side-bar-right .ag-selected .ag-side-button-button {
  border-right-color: var(--ag-selected-tab-underline-color);
}

.ag-rtl .ag-side-bar-left,
.ag-ltr .ag-side-bar-right {
  border-left: var(--ag-borders) var(--ag-border-color);
}
.ag-rtl .ag-side-bar-left .ag-tool-panel-wrapper,
.ag-ltr .ag-side-bar-right .ag-tool-panel-wrapper {
  border-right: var(--ag-borders) var(--ag-border-color);
}
.ag-rtl .ag-side-bar-left .ag-side-button-button,
.ag-ltr .ag-side-bar-right .ag-side-button-button {
  border-left: var(--ag-selected-tab-underline-width) solid transparent;
  transition: border-left var(--ag-selected-tab-underline-transition-speed);
}
.ag-rtl .ag-side-bar-left .ag-selected .ag-side-button-button,
.ag-ltr .ag-side-bar-right .ag-selected .ag-side-button-button {
  border-left-color: var(--ag-selected-tab-underline-color);
}

.ag-filter-toolpanel-header {
  height: calc(var(--ag-grid-size) * 6);
}

.ag-filter-toolpanel-header,
.ag-filter-toolpanel-search {
  padding: 0 var(--ag-grid-size);
}

.ag-filter-toolpanel-header:focus-visible {
  outline: none;
}
.ag-filter-toolpanel-header:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-filter-toolpanel-group:not(.ag-has-filter) > .ag-group-title-bar .ag-filter-toolpanel-group-instance-header-icon {
  display: none;
}

.ag-filter-toolpanel-group-level-0-header {
  height: calc(var(--ag-grid-size) * 8);
}

.ag-filter-toolpanel-group-item {
  margin-top: calc(var(--ag-grid-size) * 0.5);
  margin-bottom: calc(var(--ag-grid-size) * 0.5);
}

.ag-filter-toolpanel-search {
  height: var(--ag-header-height);
}

.ag-filter-toolpanel-search-input {
  flex-grow: 1;
  height: calc(var(--ag-grid-size) * 4);
}
.ag-ltr .ag-filter-toolpanel-search-input {
  margin-right: var(--ag-grid-size);
}
.ag-rtl .ag-filter-toolpanel-search-input {
  margin-left: var(--ag-grid-size);
}

.ag-filter-toolpanel-group-level-0 {
  border-top: var(--ag-borders-secondary) var(--ag-secondary-border-color);
}

.ag-ltr .ag-filter-toolpanel-expand,
.ag-ltr .ag-filter-toolpanel-group-title-bar-icon {
  margin-right: var(--ag-grid-size);
}
.ag-rtl .ag-filter-toolpanel-expand,
.ag-rtl .ag-filter-toolpanel-group-title-bar-icon {
  margin-left: var(--ag-grid-size);
}

.ag-filter-toolpanel-group-title-bar {
  background-color: transparent;
}

.ag-ltr .ag-filter-toolpanel-header {
  padding-left: calc(var(--ag-filter-tool-panel-group-indent) * var(--ag-indentation-level, 0) + var(--ag-grid-size));
}
.ag-rtl .ag-filter-toolpanel-header {
  padding-right: calc(var(--ag-filter-tool-panel-group-indent) * var(--ag-indentation-level, 0) + var(--ag-grid-size));
}

.ag-filter-toolpanel-instance-filter {
  border-bottom: var(--ag-borders) var(--ag-border-color);
  border-top: var(--ag-borders) var(--ag-border-color);
  margin-top: var(--ag-grid-size);
}

.ag-ltr .ag-filter-toolpanel-group-instance-header-icon,
.ag-ltr .ag-filter-toolpanel-instance-header-icon {
  margin-left: var(--ag-grid-size);
}
.ag-rtl .ag-filter-toolpanel-group-instance-header-icon,
.ag-rtl .ag-filter-toolpanel-instance-header-icon {
  margin-right: var(--ag-grid-size);
}

.ag-set-filter-group-icons {
  color: var(--ag-secondary-foreground-color);
}

.ag-pivot-mode-panel {
  min-height: var(--ag-header-height);
  height: var(--ag-header-height);
  display: flex;
}

.ag-pivot-mode-select {
  display: flex;
  align-items: center;
}
.ag-ltr .ag-pivot-mode-select {
  margin-left: var(--ag-widget-container-horizontal-padding);
}
.ag-rtl .ag-pivot-mode-select {
  margin-right: var(--ag-widget-container-horizontal-padding);
}

.ag-column-select-header:focus-visible {
  outline: none;
}
.ag-column-select-header:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-column-select-header {
  height: var(--ag-header-height);
  align-items: center;
  padding: 0 var(--ag-widget-container-horizontal-padding);
  border-bottom: var(--ag-borders-secondary) var(--ag-secondary-border-color);
}

.ag-column-panel-column-select {
  border-bottom: var(--ag-borders-secondary) var(--ag-secondary-border-color);
  border-top: var(--ag-borders-secondary) var(--ag-secondary-border-color);
}

.ag-column-group-icons,
.ag-column-select-header-icon {
  color: var(--ag-secondary-foreground-color);
}

.ag-column-select-list .ag-list-item-hovered::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
}
.ag-column-select-list .ag-item-highlight-top::after {
  top: 0;
}
.ag-column-select-list .ag-item-highlight-bottom::after {
  bottom: 0;
}

.ag-header,
.ag-advanced-filter-header {
  background-color: var(--ag-header-background-color);
  border-bottom: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-header-row {
  color: var(--ag-header-foreground-color);
  height: var(--ag-header-height);
}

.ag-pinned-right-header {
  border-left: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-pinned-left-header {
  border-right: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-ltr .ag-header-cell:not(.ag-right-aligned-header) .ag-header-label-icon,
.ag-ltr .ag-header-cell:not(.ag-right-aligned-header) .ag-header-menu-icon {
  margin-left: var(--ag-grid-size);
}
.ag-rtl .ag-header-cell:not(.ag-right-aligned-header) .ag-header-label-icon,
.ag-rtl .ag-header-cell:not(.ag-right-aligned-header) .ag-header-menu-icon {
  margin-right: var(--ag-grid-size);
}

.ag-ltr .ag-header-cell.ag-right-aligned-header .ag-header-label-icon,
.ag-ltr .ag-header-cell.ag-right-aligned-header .ag-header-menu-icon {
  margin-right: var(--ag-grid-size);
}
.ag-rtl .ag-header-cell.ag-right-aligned-header .ag-header-label-icon,
.ag-rtl .ag-header-cell.ag-right-aligned-header .ag-header-menu-icon {
  margin-left: var(--ag-grid-size);
}

.ag-header-cell,
.ag-header-group-cell {
  padding-left: var(--ag-cell-horizontal-padding);
  padding-right: var(--ag-cell-horizontal-padding);
}
.ag-header-cell.ag-header-cell-moving,
.ag-header-group-cell.ag-header-cell-moving {
  background-color: var(--ag-header-cell-moving-background-color);
}

.ag-ltr .ag-header-group-cell-label.ag-sticky-label {
  left: var(--ag-cell-horizontal-padding);
}
.ag-rtl .ag-header-group-cell-label.ag-sticky-label {
  right: var(--ag-cell-horizontal-padding);
}

.ag-header-cell:focus-visible {
  outline: none;
}
.ag-header-cell:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-header-group-cell:focus-visible {
  outline: none;
}
.ag-header-group-cell:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-advanced-filter-header-cell:focus-visible {
  outline: none;
}
.ag-advanced-filter-header-cell:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-header-icon {
  color: var(--ag-secondary-foreground-color);
}

.ag-header-expand-icon {
  cursor: pointer;
}
.ag-ltr .ag-header-expand-icon {
  margin-left: 4px;
}
.ag-rtl .ag-header-expand-icon {
  margin-right: 4px;
}

.ag-header-row:not(:first-child) .ag-header-cell:not(.ag-header-span-height.ag-header-span-total, .ag-header-parent-hidden),
.ag-header-row:not(:first-child) .ag-header-group-cell.ag-header-group-cell-with-group {
  border-top: var(--ag-borders-critical) var(--ag-border-color);
}

.ag-header-group-cell:not(.ag-column-resizing) + .ag-header-group-cell:not(.ag-column-hover):not(.ag-header-cell-moving):hover, .ag-header-group-cell:not(.ag-column-resizing) + .ag-header-group-cell:not(.ag-column-hover).ag-column-resizing,
.ag-header-cell:not(.ag-column-resizing) + .ag-header-cell:not(.ag-column-hover):not(.ag-header-cell-moving):hover,
.ag-header-cell:not(.ag-column-resizing) + .ag-header-cell:not(.ag-column-hover).ag-column-resizing,
.ag-header-group-cell:first-of-type:not(.ag-header-cell-moving):hover,
.ag-header-group-cell:first-of-type.ag-column-resizing,
.ag-header-cell:not(.ag-column-hover):first-of-type:not(.ag-header-cell-moving):hover,
.ag-header-cell:not(.ag-column-hover):first-of-type.ag-column-resizing {
  background-color: var(--ag-header-cell-hover-background-color);
}

.ag-header-cell::before,
.ag-header-group-cell:not(.ag-header-span-height.ag-header-group-cell-no-group)::before {
  content: "";
  position: absolute;
  z-index: 1;
  display: var(--ag-header-column-separator-display);
  width: var(--ag-header-column-separator-width);
  height: var(--ag-header-column-separator-height);
  top: calc(50% - var(--ag-header-column-separator-height) * 0.5);
  background-color: var(--ag-header-column-separator-color);
}
.ag-ltr .ag-header-cell::before,
.ag-ltr .ag-header-group-cell:not(.ag-header-span-height.ag-header-group-cell-no-group)::before {
  right: 0;
}
.ag-rtl .ag-header-cell::before,
.ag-rtl .ag-header-group-cell:not(.ag-header-span-height.ag-header-group-cell-no-group)::before {
  left: 0;
}

.ag-header-highlight-before::after,
.ag-header-highlight-after::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
}

.ag-header-highlight-before::after {
  left: 0px;
}

.ag-header-highlight-after::after {
  right: 0px;
}

.ag-pinned-left-header .ag-header-highlight-after::after {
  right: 1px;
}

.ag-header-cell-resize {
  display: flex;
  align-items: center;
}

.ag-header-cell-resize::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: var(--ag-header-column-resize-handle-display);
  width: var(--ag-header-column-resize-handle-width);
  height: var(--ag-header-column-resize-handle-height);
  top: calc(50% - var(--ag-header-column-resize-handle-height) * 0.5);
  background-color: var(--ag-header-column-resize-handle-color);
}
.ag-header-cell.ag-header-span-height .ag-header-cell-resize::after {
  height: calc(100% - var(--ag-grid-size) * 4);
  top: calc(var(--ag-grid-size) * 2);
}

.ag-ltr .ag-header-viewport .ag-header-cell-resize::after {
  left: calc(50% - var(--ag-header-column-resize-handle-width));
}
.ag-rtl .ag-header-viewport .ag-header-cell-resize::after {
  right: calc(50% - var(--ag-header-column-resize-handle-width));
}

.ag-pinned-left-header .ag-header-cell-resize::after {
  left: calc(50% - var(--ag-header-column-resize-handle-width));
}

.ag-pinned-right-header .ag-header-cell-resize::after {
  left: 50%;
}

.ag-ltr .ag-header-select-all {
  margin-right: var(--ag-cell-horizontal-padding);
}
.ag-rtl .ag-header-select-all {
  margin-left: var(--ag-cell-horizontal-padding);
}

.ag-ltr .ag-floating-filter-button {
  margin-left: var(--ag-cell-widget-spacing);
}
.ag-rtl .ag-floating-filter-button {
  margin-right: var(--ag-cell-widget-spacing);
}

.ag-floating-filter-button-button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  appearance: none;
  background: transparent;
  border: none;
  height: var(--ag-icon-size);
  padding: 0;
  width: var(--ag-icon-size);
}

.ag-filter-loading {
  background-color: var(--ag-control-panel-background-color);
  height: 100%;
  padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
  position: absolute;
  width: 100%;
  z-index: 1;
}

.ag-paging-panel {
  border-top: 1px solid;
  border-top-color: var(--ag-border-color);
  color: var(--ag-secondary-foreground-color);
  height: var(--ag-header-height);
}
.ag-paging-panel > * {
  margin: 0 var(--ag-cell-horizontal-padding);
}
.ag-paging-panel > .ag-paging-page-size .ag-wrapper {
  min-width: calc(var(--ag-grid-size) * 10);
}

.ag-paging-button {
  cursor: pointer;
}

.ag-paging-button.ag-disabled {
  cursor: default;
  color: var(--ag-disabled-foreground-color);
}

.ag-paging-button:focus-visible {
  outline: none;
}
.ag-paging-button:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 0px;
  left: 0px;
  display: block;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-paging-button,
.ag-paging-description {
  margin: 0 var(--ag-grid-size);
}

.ag-status-bar {
  border-top: var(--ag-borders) var(--ag-border-color);
  color: var(--ag-disabled-foreground-color);
  padding-right: calc(var(--ag-grid-size) * 4);
  padding-left: calc(var(--ag-grid-size) * 4);
  line-height: 1.5;
}

.ag-status-name-value-value {
  color: var(--ag-foreground-color);
}

.ag-status-bar-center {
  text-align: center;
}

.ag-status-name-value {
  margin-left: var(--ag-grid-size);
  margin-right: var(--ag-grid-size);
  padding-top: calc(var(--ag-grid-size) * 2);
  padding-bottom: calc(var(--ag-grid-size) * 2);
}

.ag-column-drop-cell {
  background: var(--ag-chip-background-color);
  border-radius: calc(var(--ag-grid-size) * 4);
  height: calc(var(--ag-grid-size) * 4);
  padding: 0 calc(var(--ag-grid-size) * 0.5);
  border: 1px solid var(--ag-chip-border-color);
}

.ag-column-drop-cell:focus-visible {
  outline: none;
}
.ag-column-drop-cell:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 2px;
  left: 2px;
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-column-drop-cell-text {
  margin: 0 var(--ag-grid-size);
}

.ag-column-drop-cell-button {
  min-width: calc(var(--ag-grid-size) * 4);
  margin: 0 calc(var(--ag-grid-size) * 0.5);
  color: var(--ag-secondary-foreground-color);
}

.ag-column-drop-cell-drag-handle {
  margin-left: calc(var(--ag-grid-size) * 2);
}

.ag-column-drop-cell-ghost {
  opacity: 0.5;
}

.ag-column-drop-horizontal {
  background-color: var(--ag-header-background-color);
  color: var(--ag-secondary-foreground-color);
  height: var(--ag-header-height);
  border-bottom: var(--ag-borders) var(--ag-border-color);
}
.ag-ltr .ag-column-drop-horizontal {
  padding-left: var(--ag-cell-horizontal-padding);
}
.ag-rtl .ag-column-drop-horizontal {
  padding-right: var(--ag-cell-horizontal-padding);
}

.ag-ltr .ag-column-drop-horizontal-half-width:not(:last-child) {
  border-right: var(--ag-borders) var(--ag-border-color);
}
.ag-rtl .ag-column-drop-horizontal-half-width:not(:last-child) {
  border-left: var(--ag-borders) var(--ag-border-color);
}

.ag-column-drop-horizontal-cell-separator {
  margin: 0 var(--ag-grid-size);
  color: var(--ag-secondary-foreground-color);
}

.ag-column-drop-horizontal-empty-message {
  color: var(--ag-disabled-foreground-color);
}

.ag-ltr .ag-column-drop-horizontal-icon {
  margin-right: var(--ag-cell-horizontal-padding);
}
.ag-rtl .ag-column-drop-horizontal-icon {
  margin-left: var(--ag-cell-horizontal-padding);
}

.ag-column-drop-vertical-list {
  padding-bottom: var(--ag-grid-size);
  padding-right: var(--ag-grid-size);
  padding-left: var(--ag-grid-size);
}

.ag-column-drop-vertical-cell {
  margin-top: var(--ag-grid-size);
}

.ag-column-drop-vertical {
  min-height: 50px;
  border-bottom: var(--ag-borders-secondary) var(--ag-secondary-border-color);
}
.ag-column-drop-vertical.ag-last-column-drop {
  border-bottom: none;
}

.ag-column-drop-vertical-icon {
  margin-left: var(--ag-grid-size);
  margin-right: var(--ag-grid-size);
}

.ag-column-drop-vertical-empty-message {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  color: var(--ag-disabled-foreground-color);
  margin-top: var(--ag-grid-size);
}

.ag-select-agg-func-popup {
  border: var(--ag-borders) var(--ag-border-color);
  background: var(--ag-background-color);
  border-radius: var(--ag-card-radius);
  box-shadow: var(--ag-card-shadow);
  padding: var(--ag-grid-size);
  background: var(--ag-background-color);
  height: calc(var(--ag-grid-size) * 5 * 3.5);
  padding: 0;
}

.ag-select-agg-func-virtual-list-item {
  cursor: default;
}
.ag-ltr .ag-select-agg-func-virtual-list-item {
  padding-left: calc(var(--ag-grid-size) * 2);
}
.ag-rtl .ag-select-agg-func-virtual-list-item {
  padding-right: calc(var(--ag-grid-size) * 2);
}
.ag-select-agg-func-virtual-list-item:hover {
  background-color: var(--ag-selected-row-background-color);
}

.ag-select-agg-func-virtual-list-item:focus-visible {
  outline: none;
}
.ag-select-agg-func-virtual-list-item:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 1px;
  left: 1px;
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-sort-indicator-container {
  display: flex;
}

.ag-ltr .ag-sort-indicator-icon {
  padding-left: var(--ag-grid-size);
}
.ag-rtl .ag-sort-indicator-icon {
  padding-right: var(--ag-grid-size);
}

.ag-chart {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.ag-chart-components-wrapper {
  position: relative;
  display: flex;
  flex: 1 1 auto;
}

.ag-chart-canvas-wrapper {
  position: relative;
  flex: 1 1 auto;
}

.ag-chart-menu {
  position: absolute;
  top: 16px;
  display: flex;
  flex-direction: column;
}
.ag-ltr .ag-chart-menu {
  right: 20px;
}
.ag-rtl .ag-chart-menu {
  left: 20px;
}

.ag-chart-docked-container {
  position: relative;
  min-width: var(--ag-chart-menu-panel-width);
}

.ag-chart-menu-hidden ~ .ag-chart-docked-container {
  display: none;
}

.ag-chart-tabbed-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ag-chart-tabbed-menu-header {
  flex: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}

.ag-chart-tabbed-menu-body {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  overflow: hidden;
}

.ag-chart-tab {
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.ag-chart-settings {
  overflow-x: hidden;
}

.ag-chart-settings-wrapper {
  position: relative;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.ag-chart-settings-nav-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  padding: 0 10px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ag-chart-settings-card-selector {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1 1 auto;
  height: 100%;
  padding: 0 10px;
}

.ag-chart-settings-card-item {
  cursor: pointer;
  width: 10px;
  height: 10px;
  background-color: #000;
  position: relative;
}
.ag-chart-settings-card-item.ag-not-selected {
  opacity: 0.2;
}
.ag-chart-settings-card-item::before {
  content: " ";
  display: block;
  position: absolute;
  background-color: transparent;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
}

.ag-chart-settings-prev,
.ag-chart-settings-next {
  position: relative;
  flex: none;
}
.ag-chart-settings-prev:focus-within,
.ag-chart-settings-next:focus-within {
  box-shadow: var(--ag-input-focus-box-shadow);
  border-radius: 1px;
}

.ag-chart-settings-prev-button,
.ag-chart-settings-next-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.ag-chart-settings-mini-charts-container {
  position: relative;
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
}

.ag-chart-settings-mini-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}
.ag-chart-settings-mini-wrapper.ag-animating {
  transition: left 0.3s;
  transition-timing-function: ease-in-out;
}

.ag-chart-mini-thumbnail {
  cursor: pointer;
}

.ag-chart-mini-thumbnail-canvas {
  display: block;
}

.ag-chart-data-wrapper,
.ag-chart-format-wrapper,
.ag-chart-advanced-settings-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-bottom: 16px;
}

.ag-chart-data-wrapper,
.ag-chart-advanced-settings-wrapper {
  height: 100%;
  overflow-y: auto;
}

.ag-chart-advanced-settings {
  background-color: var(--ag-control-panel-background-color);
}

.ag-chart-advanced-settings-wrapper,
.ag-chart-advanced-settings {
  width: 100%;
}

.ag-chart-advanced-settings-wrapper {
  padding-bottom: 0;
}

.ag-chart-data-section,
.ag-chart-format-section,
.ag-chart-advanced-settings-section {
  display: flex;
  margin: 0;
}

.ag-chart-advanced-settings-section {
  padding-top: var(--ag-grid-size);
  padding-bottom: var(--ag-grid-size);
}
.ag-chart-advanced-settings-section:not(:last-child) {
  border-bottom: 1px solid var(--ag-secondary-border-color);
}

.ag-chart-empty-text {
  display: flex;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--ag-background-color);
}

.ag-chart .ag-chart-menu {
  display: none;
}

.ag-chart-menu-hidden:hover .ag-chart-menu {
  display: block;
}

.ag-chart .ag-chart-menu-wrapper .ag-chart-menu {
  display: flex;
  flex-direction: row;
  top: 8px;
  gap: 20px;
  width: auto;
}
.ag-ltr .ag-chart .ag-chart-menu-wrapper .ag-chart-menu {
  right: calc(var(--ag-cell-horizontal-padding) + var(--ag-grid-size) - 4px);
  justify-content: right;
}
.ag-rtl .ag-chart .ag-chart-menu-wrapper .ag-chart-menu {
  left: calc(var(--ag-cell-horizontal-padding) + var(--ag-grid-size) - 4px);
  justify-content: left;
}

.ag-charts-font-size-color {
  display: flex;
  align-self: stretch;
  justify-content: space-between;
}

.ag-charts-data-group-item {
  position: relative;
}

.ag-charts-data-group-item:not(:last-child) {
  margin-bottom: var(--ag-grid-size);
}

.ag-chart-menu {
  border-radius: var(--ag-card-radius);
  background: var(--ag-background-color);
}

.ag-chart-menu-icon {
  opacity: 0.5;
  margin: 2px 0;
  cursor: pointer;
  border-radius: var(--ag-card-radius);
  color: var(--ag-secondary-foreground-color);
}
.ag-chart-menu-icon:hover {
  opacity: 1;
}

.ag-chart-menu-toolbar-button {
  border: 0;
  background-color: unset;
  padding: 0 2px;
  border-radius: 1px;
}

.ag-chart-mini-thumbnail {
  border: 1px solid var(--ag-secondary-border-color);
  border-radius: 5px;
}
.ag-chart-mini-thumbnail.ag-selected {
  border-color: var(--ag-minichart-selected-chart-color);
  border-width: 2px;
}
.ag-chart-mini-thumbnail:focus-visible {
  outline: none;
  border-color: var(--ag-minichart-selected-chart-color);
  box-shadow: var(--ag-input-focus-box-shadow);
}

.ag-chart-settings-card-item {
  background: var(--ag-foreground-color);
  width: 8px;
  height: 8px;
  border-radius: 4px;
}
.ag-chart-settings-card-item.ag-selected {
  background-color: var(--ag-minichart-selected-page-color);
}

.ag-chart-data-column-drag-handle {
  margin-left: var(--ag-grid-size);
}

.ag-charts-settings-group-title-bar,
.ag-charts-data-group-title-bar,
.ag-charts-format-top-level-group-title-bar {
  border-top: var(--ag-borders-secondary) var(--ag-secondary-border-color);
  position: relative;
}

.ag-charts-advanced-settings-top-level-group-title-bar {
  position: relative;
  background-color: unset;
}

.ag-charts-data-group-title-bar:focus-visible {
  outline: none;
}
.ag-charts-data-group-title-bar:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-charts-format-top-level-group-title-bar:focus-visible {
  outline: none;
}
.ag-charts-format-top-level-group-title-bar:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: 4px;
  left: 4px;
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-charts-data-group-title-bar .ag-charts-data-group-title,
.ag-charts-format-top-level-group-title-bar .ag-charts-format-top-level-group-title {
  cursor: pointer;
}

.ag-charts-data-group-container {
  padding: calc(var(--ag-widget-container-vertical-padding) * 0.5) var(--ag-widget-container-horizontal-padding);
}
.ag-charts-data-group-container .ag-charts-data-group-item:not(.ag-charts-format-sub-level-group):not(.ag-pill-select):not(.ag-select) {
  height: var(--ag-list-item-height);
}
.ag-charts-data-group-container .ag-charts-data-group-item.ag-picker-field {
  margin-top: var(--ag-grid-size);
}
.ag-charts-data-group-container .ag-list-item-hovered::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
}
.ag-charts-data-group-container .ag-item-highlight-top::after {
  top: 0;
}
.ag-charts-data-group-container .ag-item-highlight-bottom::after {
  bottom: 0;
}

.ag-charts-format-top-level-group-container,
.ag-charts-advanced-settings-top-level-group-container {
  padding: var(--ag-grid-size);
}
.ag-ltr .ag-charts-format-top-level-group-container,
.ag-ltr .ag-charts-advanced-settings-top-level-group-container {
  margin-left: calc(var(--ag-grid-size) * 2);
}
.ag-rtl .ag-charts-format-top-level-group-container,
.ag-rtl .ag-charts-advanced-settings-top-level-group-container {
  margin-right: calc(var(--ag-grid-size) * 2);
}

.ag-charts-format-top-level-group-item,
.ag-charts-advanced-settings-top-level-group-item {
  margin: var(--ag-grid-size) 0;
}

.ag-charts-format-sub-level-group-container {
  padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
  padding-bottom: calc(var(--ag-widget-container-vertical-padding) - var(--ag-widget-vertical-spacing));
}
.ag-charts-format-sub-level-group-container > * {
  margin-bottom: var(--ag-widget-vertical-spacing);
}

.ag-charts-format-sub-level-no-header-group-container > * {
  margin-bottom: var(--ag-widget-vertical-spacing);
}

.ag-charts-format-sub-level-group-container .ag-charts-format-sub-level-group-item.ag-font-panel-no-header {
  margin: 0;
}

.ag-charts-settings-group-container {
  padding: var(--ag-grid-size);
  row-gap: 8px;
  display: grid;
  grid-template-columns: 60px 1fr 60px 1fr 60px;
}
.ag-charts-settings-group-container .ag-chart-mini-thumbnail:nth-child(3n+1) {
  grid-column: 1;
}
.ag-charts-settings-group-container .ag-chart-mini-thumbnail:nth-child(3n+2) {
  grid-column: 3;
}
.ag-charts-settings-group-container .ag-chart-mini-thumbnail:nth-child(3n+3) {
  grid-column: 5;
}

.ag-chart-menu-panel {
  background-color: var(--ag-control-panel-background-color);
}
.ag-ltr .ag-chart-menu-panel {
  border-left: solid 1px var(--ag-border-color);
}
.ag-rtl .ag-chart-menu-panel {
  border-right: solid 1px var(--ag-border-color);
}

.ag-charts-theme-default {
  --ag-charts-align: none !important;
  --ag-charts-justify: none !important;
}

.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus {
  box-shadow: none;
}

.ag-charts-wrapper .ag-charts-proxy-legend-toolbar button:focus-visible {
  box-shadow: var(--ag-input-focus-box-shadow);
}

.ag-date-time-list-page-title-bar {
  display: flex;
}

.ag-date-time-list-page-title {
  flex-grow: 1;
  text-align: center;
}

.ag-date-time-list-page-column-labels-row,
.ag-date-time-list-page-entries-row {
  display: flex;
}

.ag-date-time-list-page-column-label,
.ag-date-time-list-page-entry {
  flex-basis: 0;
  flex-grow: 1;
}

.ag-date-time-list-page-entry {
  cursor: pointer;
  text-align: center;
}

.ag-date-time-list-page-column-label {
  text-align: center;
}

.ag-advanced-filter-header {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: var(--ag-cell-horizontal-padding);
  padding-right: var(--ag-cell-horizontal-padding);
}

.ag-advanced-filter {
  display: flex;
  align-items: center;
  width: 100%;
}

.ag-advanced-filter-apply-button,
.ag-advanced-filter-builder-button {
  line-height: normal;
  white-space: nowrap;
}
.ag-ltr .ag-advanced-filter-apply-button,
.ag-ltr .ag-advanced-filter-builder-button {
  margin-left: calc(var(--ag-grid-size) * 2);
}
.ag-rtl .ag-advanced-filter-apply-button,
.ag-rtl .ag-advanced-filter-builder-button {
  margin-right: calc(var(--ag-grid-size) * 2);
}

.ag-advanced-filter-builder-button {
  display: flex;
  align-items: center;
  border: 0;
  background-color: unset;
  color: var(--ag-foreground-color);
  font-size: var(--ag-font-size);
  font-weight: 600;
}
.ag-advanced-filter-builder-button:hover:not(:disabled) {
  background-color: var(--ag-row-hover-color);
}
.ag-advanced-filter-builder-button:not(:disabled) {
  cursor: pointer;
}

.ag-advanced-filter-builder-button-label {
  margin-left: var(--ag-grid-size);
}

.ag-advanced-filter-builder {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  background-color: var(--ag-control-panel-background-color);
  display: flex;
  flex-direction: column;
}

.ag-advanced-filter-builder-list {
  flex: 1;
  overflow: auto;
}
.ag-advanced-filter-builder-list .ag-list-item-hovered::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
}
.ag-advanced-filter-builder-list .ag-item-highlight-top::after {
  top: 0;
}
.ag-advanced-filter-builder-list .ag-item-highlight-bottom::after {
  bottom: 0;
}

.ag-advanced-filter-builder-button-panel {
  display: flex;
  justify-content: flex-end;
  padding: var(--ag-widget-container-vertical-padding) var(--ag-widget-container-horizontal-padding);
  border-top: var(--ag-borders-secondary) var(--ag-secondary-border-color);
}

.ag-advanced-filter-builder .ag-advanced-filter-builder-button-panel .ag-advanced-filter-builder-apply-button,
.ag-advanced-filter-builder .ag-advanced-filter-builder-button-panel .ag-advanced-filter-builder-cancel-button {
  margin-left: calc(var(--ag-grid-size) * 2);
}

.ag-advanced-filter-builder-item-wrapper {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-left: calc(var(--ag-icon-size) / 2);
  padding-right: var(--ag-icon-size);
}

.ag-virtual-list-viewport .ag-advanced-filter-builder-item-wrapper .ag-tab-guard {
  position: absolute;
}

.ag-advanced-filter-builder-item-tree-lines > * {
  width: var(--ag-advanced-filter-builder-indent-size);
}

.ag-advanced-filter-builder-item-tree-lines .ag-advanced-filter-builder-item-tree-line-root {
  width: var(--ag-icon-size);
}
.ag-advanced-filter-builder-item-tree-lines .ag-advanced-filter-builder-item-tree-line-root::before {
  top: 50%;
  height: 50%;
}

.ag-advanced-filter-builder-item-tree-line-horizontal,
.ag-advanced-filter-builder-item-tree-line-vertical,
.ag-advanced-filter-builder-item-tree-line-vertical-top,
.ag-advanced-filter-builder-item-tree-line-vertical-bottom {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.ag-advanced-filter-builder-item-tree-line-horizontal::before, .ag-advanced-filter-builder-item-tree-line-horizontal::after,
.ag-advanced-filter-builder-item-tree-line-vertical::before,
.ag-advanced-filter-builder-item-tree-line-vertical::after,
.ag-advanced-filter-builder-item-tree-line-vertical-top::before,
.ag-advanced-filter-builder-item-tree-line-vertical-top::after,
.ag-advanced-filter-builder-item-tree-line-vertical-bottom::before,
.ag-advanced-filter-builder-item-tree-line-vertical-bottom::after {
  content: "";
  position: absolute;
  height: 100%;
}

.ag-advanced-filter-builder-item-tree-line-horizontal::after {
  height: 50%;
  width: calc(var(--ag-advanced-filter-builder-indent-size) - var(--ag-icon-size));
  top: 0;
  left: calc(var(--ag-icon-size) / 2);
  border-bottom: 1px solid;
  border-color: var(--ag-border-color);
}

.ag-advanced-filter-builder-item-tree-line-vertical::before {
  width: calc(var(--ag-advanced-filter-builder-indent-size) - var(--ag-icon-size) / 2);
  top: 0;
  left: calc(var(--ag-icon-size) / 2);
  border-left: 1px solid;
  border-color: var(--ag-border-color);
}

.ag-advanced-filter-builder-item-tree-line-vertical-top::before {
  height: 50%;
  width: calc(var(--ag-advanced-filter-builder-indent-size) - var(--ag-icon-size) / 2);
  top: 0;
  left: calc(var(--ag-icon-size) / 2);
  border-left: 1px solid;
  border-color: var(--ag-border-color);
}

.ag-advanced-filter-builder-item-tree-line-vertical-bottom::before {
  height: calc((100% - 1.5 * var(--ag-icon-size)) / 2);
  width: calc(var(--ag-icon-size) / 2);
  top: calc((100% + 1.5 * var(--ag-icon-size)) / 2);
  left: calc(var(--ag-icon-size) / 2);
  border-left: 1px solid;
  border-color: var(--ag-border-color);
}

.ag-advanced-filter-builder-item-condition {
  padding-top: var(--ag-grid-size);
  padding-bottom: var(--ag-grid-size);
}

.ag-advanced-filter-builder-item,
.ag-advanced-filter-builder-item-condition,
.ag-advanced-filter-builder-pill-wrapper,
.ag-advanced-filter-builder-pill,
.ag-advanced-filter-builder-item-buttons,
.ag-advanced-filter-builder-item-tree-lines {
  display: flex;
  align-items: center;
  height: 100%;
}

.ag-advanced-filter-builder-pill-wrapper {
  margin: 0px var(--ag-grid-size);
}

.ag-advanced-filter-builder-pill {
  position: relative;
  border-radius: var(--ag-border-radius);
  padding: var(--ag-grid-size) calc(var(--ag-grid-size) * 2);
  min-height: calc(100% - var(--ag-grid-size) * 3);
  min-width: calc(var(--ag-grid-size) * 2);
}
.ag-advanced-filter-builder-pill .ag-picker-field-display {
  margin-right: var(--ag-grid-size);
}
.ag-advanced-filter-builder-pill .ag-advanced-filter-builder-value-number {
  font-family: monospace;
  font-weight: 700;
}
.ag-advanced-filter-builder-pill .ag-advanced-filter-builder-value-empty {
  color: var(--ag-disabled-foreground-color);
}

.ag-advanced-filter-builder-pill:focus-visible {
  outline: none;
}
.ag-advanced-filter-builder-pill:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: -4px;
  left: -4px;
  display: block;
  width: calc(100% - -8px);
  height: calc(100% - -8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-advanced-filter-builder-item-button:focus-visible {
  outline: none;
}
.ag-advanced-filter-builder-item-button:focus-visible::after {
  content: "";
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  top: -4px;
  left: -4px;
  display: block;
  width: calc(100% - -8px);
  height: calc(100% - -8px);
  border: 1px solid;
  border-color: var(--ag-input-focus-border-color);
}

.ag-advanced-filter-builder-pill-display {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.ag-advanced-filter-builder-join-pill {
  color: var(--ag-foreground-color);
  background-color: var(--ag-advanced-filter-join-pill-color);
  cursor: pointer;
}

.ag-advanced-filter-builder-column-pill {
  color: var(--ag-foreground-color);
  background-color: var(--ag-advanced-filter-column-pill-color);
  cursor: pointer;
}

.ag-advanced-filter-builder-option-pill {
  color: var(--ag-foreground-color);
  background-color: var(--ag-advanced-filter-option-pill-color);
  cursor: pointer;
}

.ag-advanced-filter-builder-value-pill {
  color: var(--ag-foreground-color);
  background-color: var(--ag-advanced-filter-value-pill-color);
  cursor: text;
  max-width: 140px;
}
.ag-advanced-filter-builder-value-pill .ag-advanced-filter-builder-pill-display {
  display: block;
}

.ag-advanced-filter-builder-item-buttons > * {
  margin: 0 calc(var(--ag-grid-size) * 0.5);
}

.ag-advanced-filter-builder-item-button {
  position: relative;
  cursor: pointer;
  color: var(--ag-secondary-foreground-color);
  opacity: 50%;
}

.ag-advanced-filter-builder-item-button-disabled {
  color: var(--ag-disabled-foreground-color);
  cursor: default;
}

.ag-advanced-filter-builder-virtual-list-container {
  top: var(--ag-grid-size);
}

.ag-advanced-filter-builder-virtual-list-item {
  display: flex;
  cursor: default;
  height: var(--ag-list-item-height);
}
.ag-advanced-filter-builder-virtual-list-item:hover {
  background-color: var(--ag-row-hover-color);
}
.ag-advanced-filter-builder-virtual-list-item:hover .ag-advanced-filter-builder-item-button {
  opacity: 100%;
}

.ag-advanced-filter-builder-virtual-list-item-highlight .ag-advanced-filter-builder-item-button:focus-visible,
.ag-advanced-filter-builder-validation .ag-advanced-filter-builder-invalid {
  opacity: 100%;
}

.ag-advanced-filter-builder-invalid {
  margin: 0 var(--ag-grid-size);
  color: var(--ag-invalid-color);
  cursor: default;
}

.ag-input-field-input {
  width: 100%;
  min-width: 0;
}

.ag-checkbox-input-wrapper {
  font-family: var(--ag-icon-font-family);
  font-weight: var(--ag-icon-font-weight);
  color: var(--ag-icon-font-color);
  font-size: var(--ag-icon-size);
  line-height: var(--ag-icon-size);
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: var(--ag-icon-size);
  height: var(--ag-icon-size);
  background-color: var(--ag-checkbox-background-color);
  border-radius: var(--ag-checkbox-border-radius);
  display: inline-block;
  vertical-align: middle;
  flex: none;
}
.ag-checkbox-input-wrapper input,
.ag-checkbox-input-wrapper input {
  -webkit-appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.ag-checkbox-input-wrapper:focus-within, .ag-checkbox-input-wrapper:active {
  outline: none;
  box-shadow: var(--ag-input-focus-box-shadow);
}
.ag-checkbox-input-wrapper.ag-disabled {
  opacity: 0.5;
}
.ag-checkbox-input-wrapper::after {
  content: var(--ag-icon-font-code-checkbox-unchecked, "\f108");
  font-family: inherit;
  color: var(--ag-checkbox-unchecked-color);
  display: var(--ag-icon-font-display-checkbox-unchecked, var(--ag-icon-font-display));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.ag-checkbox-input-wrapper.ag-checked::after {
  content: var(--ag-icon-font-code-checkbox-checked, "\f106");
  color: var(--ag-checkbox-checked-color);
  display: var(--ag-icon-font-display-checkbox-checked, var(--ag-icon-font-display));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.ag-checkbox-input-wrapper.ag-indeterminate::after {
  content: var(--ag-icon-font-code-checkbox-indeterminate, "\f107");
  color: var(--ag-checkbox-indeterminate-color);
  display: var(--ag-icon-font-display-checkbox-indeterminate, var(--ag-icon-font-display));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.ag-checkbox-input-wrapper::before {
  content: "";
  background: transparent center/contain no-repeat;
  position: absolute;
  inset: 0;
  background-image: var(--ag-icon-image-checkbox-unchecked, var(--ag-icon-image));
  display: var(--ag-icon-image-display-checkbox-unchecked, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-checkbox-unchecked, var(--ag-icon-image-opacity, 0.9));
}
.ag-checkbox-input-wrapper.ag-checked::before {
  background-image: var(--ag-icon-image-checkbox-checked, var(--ag-icon-image));
  display: var(--ag-icon-image-display-checkbox-checked, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-checkbox-checked, var(--ag-icon-image-opacity, 0.9));
}
.ag-checkbox-input-wrapper.ag-indeterminate::before {
  background-image: var(--ag-icon-image-checkbox-indeterminate, var(--ag-icon-image));
  display: var(--ag-icon-image-display-checkbox-indeterminate, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-checkbox-indeterminate, var(--ag-icon-image-opacity, 0.9));
}

.ag-toggle-button-input-wrapper {
  box-sizing: border-box;
  width: var(--ag-toggle-button-width);
  min-width: var(--ag-toggle-button-width);
  max-width: var(--ag-toggle-button-width);
  height: var(--ag-toggle-button-height);
  background-color: var(--ag-toggle-button-off-background-color);
  border-radius: calc(var(--ag-toggle-button-height) * 0.5);
  position: relative;
  flex: none;
  border: var(--ag-toggle-button-border-width) solid;
  border-color: var(--ag-toggle-button-off-border-color);
}
.ag-toggle-button-input-wrapper input {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.ag-toggle-button-input-wrapper:focus-within {
  outline: none;
  box-shadow: var(--ag-input-focus-box-shadow);
}
.ag-toggle-button-input-wrapper.ag-disabled {
  opacity: 0.5;
}
.ag-toggle-button-input-wrapper.ag-checked {
  background-color: var(--ag-toggle-button-on-background-color);
  border-color: var(--ag-toggle-button-on-border-color);
}
.ag-toggle-button-input-wrapper::before {
  content: " ";
  position: absolute;
  top: calc(0px - var(--ag-toggle-button-border-width));
  left: calc(0px - var(--ag-toggle-button-border-width));
  display: block;
  box-sizing: border-box;
  height: var(--ag-toggle-button-height);
  width: var(--ag-toggle-button-height);
  background-color: var(--ag-toggle-button-switch-background-color);
  border-radius: 100%;
  transition: left 100ms;
  border: var(--ag-toggle-button-border-width) solid;
  border-color: var(--ag-toggle-button-switch-border-color);
}
.ag-toggle-button-input-wrapper.ag-checked::before {
  left: calc(100% - var(--ag-toggle-button-height) + var(--ag-toggle-button-border-width));
  border-color: var(--ag-toggle-button-on-border-color);
}

.ag-radio-button-input-wrapper {
  font-family: var(--ag-icon-font-family);
  font-weight: var(--ag-icon-font-weight);
  color: var(--ag-icon-font-color);
  font-size: var(--ag-icon-size);
  line-height: var(--ag-icon-size);
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: var(--ag-icon-size);
  height: var(--ag-icon-size);
  background-color: var(--ag-checkbox-background-color);
  border-radius: var(--ag-checkbox-border-radius);
  display: inline-block;
  vertical-align: middle;
  flex: none;
  border-radius: var(--ag-icon-size);
}
.ag-radio-button-input-wrapper input,
.ag-radio-button-input-wrapper input {
  -webkit-appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.ag-radio-button-input-wrapper:focus-within, .ag-radio-button-input-wrapper:active {
  outline: none;
  box-shadow: var(--ag-input-focus-box-shadow);
}
.ag-radio-button-input-wrapper.ag-disabled {
  opacity: 0.5;
}
.ag-radio-button-input-wrapper::after {
  content: var(--ag-icon-font-code-radio-button-off, "\f127");
  color: var(--ag-checkbox-unchecked-color);
  display: var(--ag-icon-font-display-radio-button-off, var(--ag-icon-font-display));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.ag-radio-button-input-wrapper.ag-checked::after {
  content: var(--ag-icon-font-code-radio-button-on, "\f128");
  color: var(--ag-checkbox-checked-color);
  display: var(--ag-icon-font-display-radio-button-on, var(--ag-icon-font-display));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.ag-radio-button-input-wrapper::before {
  content: "";
  background: transparent center/contain no-repeat;
  position: absolute;
  inset: 0;
  background-image: var(--ag-icon-image-radio-button-off, var(--ag-icon-image));
  display: var(--ag-icon-image-display-radio-button-off, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-radio-button-off, var(--ag-icon-image-opacity, 0.9));
}
.ag-radio-button-input-wrapper.ag-checked::before {
  background-image: var(--ag-icon-image-radio-button-on, var(--ag-icon-image));
  display: var(--ag-icon-image-display-radio-button-on, var(--ag-icon-image-display));
  opacity: var(--ag-icon-image-opacity-radio-button-on, var(--ag-icon-image-opacity, 0.9));
}

input[class^=ag-][type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  background: none;
  overflow: visible;
}
input[class^=ag-][type=range]::-webkit-slider-runnable-track {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 3px;
  background-color: var(--ag-border-color);
  border-radius: var(--ag-border-radius);
  border-radius: var(--ag-checkbox-border-radius);
}
input[class^=ag-][type=range]::-moz-range-track {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 3px;
  background-color: var(--ag-border-color);
  border-radius: var(--ag-border-radius);
  border-radius: var(--ag-checkbox-border-radius);
}
input[class^=ag-][type=range]::-ms-track {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 3px;
  background-color: var(--ag-border-color);
  border-radius: var(--ag-border-radius);
  border-radius: var(--ag-checkbox-border-radius);
  color: transparent;
  width: calc(100% - 2px);
}
input[class^=ag-][type=range]::-webkit-slider-thumb {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  width: var(--ag-icon-size);
  height: var(--ag-icon-size);
  background-color: var(--ag-background-color);
  border: 1px solid;
  border-color: var(--ag-checkbox-unchecked-color);
  border-radius: var(--ag-icon-size);
  transform: translateY(calc(var(--ag-icon-size) * -0.5 + 1.5px));
}
input[class^=ag-][type=range]::-ms-thumb {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  width: var(--ag-icon-size);
  height: var(--ag-icon-size);
  background-color: var(--ag-background-color);
  border: 1px solid;
  border-color: var(--ag-checkbox-unchecked-color);
  border-radius: var(--ag-icon-size);
}
input[class^=ag-][type=range]::-moz-ag-range-thumb {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  width: var(--ag-icon-size);
  height: var(--ag-icon-size);
  background-color: var(--ag-background-color);
  border: 1px solid;
  border-color: var(--ag-checkbox-unchecked-color);
  border-radius: var(--ag-icon-size);
}
input[class^=ag-][type=range]:focus {
  outline: none;
}
input[class^=ag-][type=range]:focus::-webkit-slider-thumb {
  box-shadow: var(--ag-input-focus-box-shadow);
  border-color: var(--ag-checkbox-checked-color);
}
input[class^=ag-][type=range]:focus::-ms-thumb {
  box-shadow: var(--ag-input-focus-box-shadow);
  border-color: var(--ag-checkbox-checked-color);
}
input[class^=ag-][type=range]:focus::-moz-ag-range-thumb {
  box-shadow: var(--ag-input-focus-box-shadow);
  border-color: var(--ag-checkbox-checked-color);
}
input[class^=ag-][type=range]:active::-webkit-slider-runnable-track {
  background-color: var(--ag-input-focus-border-color);
}
input[class^=ag-][type=range]:active::-moz-ag-range-track {
  background-color: var(--ag-input-focus-border-color);
}
input[class^=ag-][type=range]:active::-ms-track {
  background-color: var(--ag-input-focus-border-color);
}
input[class^=ag-][type=range]:disabled {
  opacity: 0.5;
}
@font-face {
  font-family: "agGridAlpine";
  src: url(data:font/woff2;charset=utf-8;base64,d09GMgABAAAAABMUAAsAAAAAKMwAABLCAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHIlWBmAAi34KqmyjKwE2AiQDgkALgSIABCAFhEYHhUEbnyMzg/aatGqziOpJNvu/JGhLhnjjdVVKiQVRRpQIMYb+arBrcnXzpDWxiZ/03+6d7uYA0kgNGvfxjeHHsZxySFI0efhYa+/v7iGeriQ0iXmiiXjIROjWyEwnREJiiNL8r7ned9lNjoj/UviIZqqAwagvZXWN7vQH2uY/PCuxGixE3Zco9c7GTcI4jGiM5Ixl6zZYJOu4deqq/4JF6qJ74B9A4MjcdjWnBf6vzeoX1p0qiEwH0j3ielqTJCVtAmTUucAVrqMqJHm7J9HDZROQwmB/an6zL7XMHhb7kozZWv+/7xgEJkGCJ4SvEGy5v2EaHaSESvAJKgL+b+1f7X9BlMATAqHj4/Ts7Pz/9965+zA0mU+02dBmQ5sfphJYIEX8Xjanfa8cAFStrQKWdRW+vpqEqbN1cToVOJ6CtsfmMoLfUD/X9o81JEiwSx5ix9/Y/D1YFRZgNHb89HY+AigxopP6BiQ4BLYXmusgA7t/bICvlWN7o7wQXGc5eKRfcJ1eti2g4qav/kYgjmNd0tLkOJ2Z/s9UagziUjLg4EUfjozhKEJQaXQSBRvG1xhMyJishB+RIifj9w6SMEZ1KBbXsdcUQmxLtN9Y2RPEjbehOT882Zbg6JXTtclU1IKAeRSMqKLcjrgNk40wT889wmXtgNBtcVthsjULZ4tB2WK6N7J190VFqlzEbaj5YYFjdj8VOa0t8WaELTaNWbZ2zJ36dM0BpxvCVJZlmP07Ku01wgZhT+xoxJdg3JpQhms8MU4R0KC64anv+rx2E9QmUFl/ortRSm2LPVbXu/6mNu5MGHAN4b2DK64KlaiuEGXqwIjTcKY+GVvvXXv07MWrT/8ARxGnhMUgqnrxK5p1WI/vEslM7FNW4qVzW4pQxmZGfTcfLa5FzMYh1DDHeHmEBYawVuhveThz4/Z2dCZM6QPZepCtu0Awgr9fxzGZfEA7NUeBnvZPglAHxmEeGS0TuaKyQz0dlSU+5CaqdHjGJPZMGbqSalOhn8ZkfcgmGZmvf+NtZ3kuxJoanXfBFT1apf/pNpfg7r5/jDDbG8TMmArFxZdY2RunTLjo7A1bhEgOKxy/44qp4TPcaX8TBaqr5I03XL2wOnWsmcJR+qYaVC4sUcTEa3fttqtEtmJTFzkEkKOHEg0IW2xbu847njOcPMS1HEguk4O4evv+401DJCAhp+5PaGo1rgT+qPli3jGfRZOPcxsxeZA4fApUAxlI8uONUTX04VdDPKlrg/1DGRcJ1vfKR7+/mgs1Hnnj81f8qLjXwfcQzmm4Aq0wK9YeoM575jiqJZvSu0mGAXtHYlg7unCQIJhMGY7Vxc3Dy8cvICgkLCIabTAhKSXtT4BZOXkFRSVlFVU1dQ1NLW0dXT19A0MlI2MTSMjUzNwViAL3M3lQqcZ+K0F0pgsVlj2jUW27//+7xP6ErY9y4JcBemZdmAFqntggsMAagUXWDyyxbmCZDQErrAVYZRPAGmsC1lkvsMHagC3WB2yzHmCHDQO7rAPYY+3APhsFDlkzcMS6gGPWCpywEeCUjQNnrBM4ZwPABRsDLkdPgi8AvREIIQhCMIQQCKEQwiCEQ4iAEAkhCkI0hBgIsRDiIMRDSICQCCEJQjKEFAipENIgpEPIgJAJIQtCNoQcCLkQ8iDkQyiAUAihCEIxhBIIpRDKIJRDqIBQCaEKQjWEGgi1EOog1LM3nQboL40QmiA0m0QKvha7bbRCebRBaIfQAWjE1KT6Mbe4oaAEFD15V8c1Npu8CiuJ+AgmZ+ibQWlcWmSAxALcWmEZSyAXGzLeJkSCSHP7vut0TVNSh01dwfysllW0nFagpJbIKHpGxmNm9hthJGqxHh2r9a1LpXoZteJbRCtpSsJSTEsukVAcjaubhmElaof2qUe+BlVN1Giq1mAaAZwEyNjKPVCn9M/ombCZRJqctqcDmwMD6YIbHZTN5WLZAkbni25GeSMT81p3zBduRVryQiIyK7q2F9KY/XxW7heJar+AV/4A237mtCB4kYk89YiCOQFcIhL20uGLC5C//SXJRK8vo5pgx6uNrmAl9nqbrUmU8rR0zekKrHF/ZrbTLBjbkj1RfwZ8jD6jIGTXaC+ppjqxRFrkNJGP9hy7FDGeHl4FhagGY/X+NWKIFlCDQdymq8aSUjqFqWvzkiu8bbxidd5BC5FI3fF2jDbWGGyHuZOQtm5/x4kTONSe2rVrHwpWnb9Nov1nwZZwm7XrFA63gb0no9N9tm+PtjL/zA0c+m27WJbiO3duJdFGFKiPWcdOnQvOn15mzcmdkfJv2xWeAFu3msOOmlv/ywgmtudQ7OBWH57bsiXY22Zxy0oiunOJu23/6avmojw/8UbZj+OwUkFBDKcnL4LlKINqlUTcrvDGGf/szej2+eDcraXhh5YpEnwqsZbt+05dyXoFKq+nwn92ShXNCF6yaHCcROsbmMjVyCpwAIykbGupvSPhMYsX7aOP4HADCurdUp6yJYUFrFqsL8zM7IV47ry5hRjHlQq3cper7EY8sVz1JEovtIkocwPG87er0DaWVUVFTeGaqMp0HFOhdHeVMhkVV0tzq8tXBfsy//f1KNCUo9RSBsUQa7goUOYSCQuMCJP3Zbl1eg901ANJ1JRAwAFWOYEiMGh9B6P5mSBGbmFdFGynyI2W4PF7ElIWwub1lx8hNmUO1YOBRJcelh+8wWAXdQFOYZnMheiyn3mxR0fGUhmEAcuc0OnNoWUCwy9APEPC6JLB3qh3kZxqcakMAz8X5/svbeB0nmCM8gVMTMCsHehWTxx6nn2v4oSV+aW7ZfBDrePhfZfDN33xNOiUOjI9Wu+fCE8FpxclVQIGIiWe206+Due/uv6F2Dfh9JzjOWfkmZE3plNza8PBsWdmDuV0/pIj2R1mA3029clIJ3d6wO7BvYW5lWx1PN6He1fL5X6/NO6J46m/dV+rVPr/2rK/Wp3xZ1dSKYvrnwdUl/rm3o/ThqFSdj1Ba/Tqqdhcb67xvOzTGc/HnB6w3B9EEI8HEiTC8ENfShDpAdJ/36fp3UfwVDATzzCQDf0hai8P8iAP1iG7MWwHe49R29iVpyW9Jvtm//FoVsNrHYxLzl1zj65MQXIJUXDHTCplOz0lt6XklEpsrSs6PLMb6BSjDSNiDdgbT82/rqLjG1PMyGr2IobBMyLY+X4EAyY1FNd7H4onDuKwRiWMHcCARyf3nsBnvo5KE1xM9KRgXZq0hw+FgIGlhoMR4oeQzvBT8Dn66H9YSWzWsLV9s7jHRfgE/EbI/8Ej2I93AzqCDlA9AK8XIc7u5PFcBFOLkAMDS9PTM9JhLmbk04cZURi0w2qd7hf+66VugwSKgGdMv7JAkMfj5QkKnobP8+fxCgRPHXzPW9Q/37AIkv38NMC12IJgEeQP4ifR2kq0EcCfpzP1CB70OLWDwR7ww/Gmm9rbS6VnTq9ZI5UFe9OZQQ1B3ukO03qi/5bXB+aH18eWL1cXFenpRYSf8ZmdOX1ma8SmTTNeK5xpEAc0Z/zNDGBd/alkK3erypElW5WytjZwbAoWVH/+gx9HCEzk8AgdaGJcPKJKuUADupgGNFpHE9PBedUXxBdgmJuRGR2dKetggTA4nAwcEfAGX5aXttT3xW6n+Jf7h/qX+fPke2vc5J1XXf9vbZ9CuW4cEGl9l1K//Kb5TPdBO+vy0J/LYu1pJ1sQW8cwP6rJUouO8Ga2leNOlteBUq/0dOduyyXbLJ2d7B3cLc+PUM1mWHZWNLwxt0mjWi53/MJbCSF2Tx2oKv02+2UWlSLZEw+qhUnWumgHh9WnqYvDZgQeYJBOgWDfYdYqMTVw4gw51S2w2pfrxLoUYmy6jKqEzebc7sO8W6mXh6IiGWxFKEtRln4KVtmHhyrYaGRhe26Tf7YX2+mU4QwUoWw/9+WJLucWczXnuPs13MX7EYp/m7xNhgMG5WFjfnJSewnFh4FjMzKGtkvD3L7BMxntY6pm1IxxwKxsaN/CMrHMpdfwk8ZWo8xtJNKa1PbD86kznOycuOndaR3cSQbGVl5WVGgg+ZUTvO++r47jqoukWKwIyE/TxDR1uskZgbyYnOOXyNIcVnUaaGKbOlzlImGitKTA+GJMSqhzZEFRLy8hOYG+fimXmcBgxDO5pkb5bexUo6AYZ4vFUhE9yymyUKBtBiBO4uEPv+XJmZWmgiLnyPjrip65yps6NTGb8zyI4WYOucqFEzWBqfHwSSm4Bt6OItctPkBmdBu2NRm9W6u/W3znLnzlHDls3FCbwPlhfASHOb0+gZIqjMAOqPgDsVDnDCKsDIooUQHKJzEWptpNYETVo8QPFQtuacUEmOqHGXb71sLHHTli235ZDtXjl063vvdgfVcWhZXDdJcddK1cK8zn8/MawweElsPRd7jQ1zNkuKx1za4W4gLD9MxX5gEXCUcy2ffr1zJhoDJdWWY4R8LZmZjNabLmXvN8MuyroYrDbrStLeMBhRIVRaE8MBqy/fTKvF/oPrCuCZWoklBi8rNRJaC78aN5225GCoBjavCGP+/x1wv48Mz9Y3fy5FzmBH27rG6nemh5dpCEmZjIlARlC8vpKwYHXejlEltICf1KQei46i3X/yT9ObmVBjSNTAk0EG8ziT6JBl9+zrsEDU4sJ3BIIubMMXYRyaadUeuqigpmrwtHPW67uyfufhofX15ioO/kI5Kfrurv//9/8tnMUbN2EF80mtxGqqmzc0uxg1GTzfz+pnlmj286fhoaglDb9Q2xDEasEeJmx4j8hQa2B8R5BTt+CfnvDd4Ze7Opxu++XbSxorK9P3btt1xI4ngqTk5uCGDExwUqmyeT5iuEk4s+chzm3jDhuccbqbo7D8FofaIH/c5JbNGHvE4MO9il6qTE/mh3vW3C2aqew6oGcXcPbP60YUXV6//8adz8urIcvwzfqVN9M/xyLoZPeurU+4lz/C565DcsHl+bw8vkcDJ5OXfF9fyZnBzeXcfqMPwutjE6unEyOVOT+X8u5kc+jZ4xUeuXsvKJUAvPdIOnmFvGNmyb4B3KQuGZ2lLqemDsRLRBliB5lnsm8Ti6Spdv36KjRUIPj6goIKOUeUr4tHlcZtT8VqqGEycmUYwZL1Z9UYQWhgvnzK8JWJOTmmosru7rXSCuiBROt9PwvhU9rFB44o15uQkJWi17334wH3JVYwu1Gd7cvBDT8tnEsljHw4eG0DaKtfuJw3C/f5mMzPX7wbsMnxaIVr7vW6OIb8Djd+9D9+3B4xoUcdo+ZzQgLglliur21l6/uv3Y/t3DEY1f0+sUEaBIwvEHKEDV86+/PX/hvdTfI8H/fqEb8m4cgE20TZ1+lAcpS6tpR0rACZbtRdvoIL3IEWc22wH0G6lD3qJHLUPupbURVMZxp6VZQd1qGPjt791g2KxXZdkyeqdw1T/kYxszbYM3jeNchQ3ulriPeY5Y12m2mjIbFdIFzhZvIlqZh5Eg1TAA0dPwvg+C0AqvZmsQ27zdGORuyWvX6jzLUXOUVJC/L7O75APlycErPsjuSM39f5PI/wGg5sSf93y0cf9U14K0beNCvem/gM1t/pdv/YhgcZT0X4L81ycKtSDt2zC32xwwPgjgI0h12mmkkIA0tAQ1Jwkgc7cOEkrnAUwFAmOYBjpMB+zhRsOnE6hTSwakJABBvd4dkyAJO0B+dNaCAp0PMxUsN0GDzm8ZBh7Kb0ZgeDQva7gn9uYmJE/wG1wJiu2boG/zHzj7SM1ld+F2ek9AwErANP2iyaO7ErGN5YjNY6R1QiHEJnH8Ai3dIJKup1OLz7jTEVcU5wnzjBtB4hHwG5xeuSJQWGCrkP4PjpDhhxaRxqXOhWDiSVCRBwgEjUZvoUazkXNFiLYa2WMRcvWYqhCEQCDeVfL2vgCNTWeI4SXXpmR3VtR0dCpyLiujaovvj5+KtUgji1wURGEURfHfW2t7xN78uHdWCaIkK6qmG6ZlO67nB2EUJ2mWF2VVN23XD+M0L+u2H+d1P+/3c+PWnXsPHj159uLVm3cfPv3w06+1E4djcEp8pIkajrO8rrae6CANodanYjnsMOjvPs5bVgvm3PY5ngwIMHpSAsduswsJRXd1h8ht8qbuvHEFC1Le1k3CSguYSnda1Hpizut6j+v6lcpk1jV8WTubnUkq9YJmC35oc1B5WOf1E1shw7y1Lc5SufGpPvWxpMrXEQTTyiQU5XykG6GV8eQ2MeYe/RIqTCqbJZWWI6WcS0VNsEMtrQohzsDUKYUjhPVUVKcao2ymgdHHkg85oe8mtn0RidRGaw9spajmcoNUOUbYzvdjUWvijHRRJNoBOwxt3qwSgzTM8xwLA7Sk2rIvHxPQZnnqEqjSVXLtxxs3a2EV10pDp0j97k5eVRwGhBeRmUwLBt96c+0fKpKFkbVcKwAA);
  font-weight: normal;
  font-style: normal;
}
.ag-theme-alpine,
.ag-theme-alpine-dark,
.ag-theme-alpine-auto-dark {
  --ag-alpine-active-color: #2196f3;
  --ag-selected-row-background-color: rgba(33, 150, 243, 0.3);
  --ag-row-hover-color: rgba(33, 150, 243, 0.1);
  --ag-column-hover-color: rgba(33, 150, 243, 0.1);
  --ag-input-focus-border-color: rgba(33, 150, 243, 0.4);
  --ag-range-selection-background-color: rgba(33, 150, 243, 0.2);
  --ag-range-selection-background-color-2: rgba(33, 150, 243, 0.36);
  --ag-range-selection-background-color-3: rgba(33, 150, 243, 0.49);
  --ag-range-selection-background-color-4: rgba(33, 150, 243, 0.59);
  --ag-background-color: #fff;
  --ag-foreground-color: #181d1f;
  --ag-border-color: #babfc7;
  --ag-secondary-border-color: #dde2eb;
  --ag-header-background-color: #f8f8f8;
  --ag-tooltip-background-color: #f8f8f8;
  --ag-odd-row-background-color: #fcfcfc;
  --ag-control-panel-background-color: #f8f8f8;
  --ag-subheader-background-color: #fff;
  --ag-invalid-color: #e02525;
  --ag-checkbox-unchecked-color: #999;
  --ag-advanced-filter-join-pill-color: #f08e8d;
  --ag-advanced-filter-column-pill-color: #a6e194;
  --ag-advanced-filter-option-pill-color: #f3c08b;
  --ag-advanced-filter-value-pill-color: #85c0e4;
  --ag-checkbox-background-color: var(--ag-background-color);
  --ag-checkbox-checked-color: var(--ag-alpine-active-color);
  --ag-range-selection-border-color: var(--ag-alpine-active-color);
  --ag-secondary-foreground-color: var(--ag-foreground-color);
  --ag-input-border-color: var(--ag-border-color);
  --ag-input-border-color-invalid: var(--ag-invalid-color);
  --ag-input-focus-box-shadow: 0 0 2px 0.1rem var(--ag-input-focus-border-color);
  --ag-panel-background-color: var(--ag-header-background-color);
  --ag-menu-background-color: var(--ag-header-background-color);
  --ag-disabled-foreground-color: rgba(24, 29, 31, 0.5);
  --ag-chip-background-color: rgba(24, 29, 31, 0.07);
  --ag-input-disabled-border-color: rgba(186, 191, 199, 0.3);
  --ag-input-disabled-background-color: rgba(186, 191, 199, 0.15);
  --ag-borders: solid 1px;
  --ag-border-radius: 3px;
  --ag-borders-side-button: none;
  --ag-side-button-selected-background-color: transparent;
  --ag-header-column-resize-handle-display: block;
  --ag-header-column-resize-handle-width: 2px;
  --ag-header-column-resize-handle-height: 30%;
  --ag-grid-size: 6px;
  --ag-icon-size: 16px;
  --ag-row-height: calc(var(--ag-grid-size) * 7);
  --ag-header-height: calc(var(--ag-grid-size) * 8);
  --ag-list-item-height: calc(var(--ag-grid-size) * 4);
  --ag-column-select-indent-size: var(--ag-icon-size);
  --ag-set-filter-indent-size: var(--ag-icon-size);
  --ag-advanced-filter-builder-indent-size: calc(var(--ag-icon-size) + var(--ag-grid-size) * 2);
  --ag-cell-horizontal-padding: calc(var(--ag-grid-size) * 3);
  --ag-cell-widget-spacing: calc(var(--ag-grid-size) * 2);
  --ag-widget-container-vertical-padding: calc(var(--ag-grid-size) * 2);
  --ag-widget-container-horizontal-padding: calc(var(--ag-grid-size) * 2);
  --ag-widget-vertical-spacing: calc(var(--ag-grid-size) * 1.5);
  --ag-toggle-button-height: 18px;
  --ag-toggle-button-width: 28px;
  --ag-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
      "Helvetica Neue", sans-serif;
  --ag-font-size: 13px;
  --ag-icon-font-family: agGridAlpine;
  --ag-selected-tab-underline-color: var(--ag-alpine-active-color);
  --ag-selected-tab-underline-width: 2px;
  --ag-selected-tab-underline-transition-speed: 0.3s;
  --ag-tab-min-width: 240px;
  --ag-card-shadow: 0 1px 4px 1px rgba(186, 191, 199, 0.4);
  --ag-popup-shadow: var(--ag-card-shadow);
  --ag-side-bar-panel-width: 250px;
}

.ag-theme-alpine-dark {
  --ag-background-color: #181d1f;
  --ag-foreground-color: #fff;
  --ag-border-color: #68686e;
  --ag-secondary-border-color: rgba(88, 86, 82, 0.5);
  --ag-modal-overlay-background-color: rgba(24, 29, 31, 0.66);
  --ag-header-background-color: #222628;
  --ag-tooltip-background-color: #222628;
  --ag-odd-row-background-color: #222628;
  --ag-control-panel-background-color: #222628;
  --ag-subheader-background-color: #000;
  --ag-input-disabled-background-color: #282c2f;
  --ag-input-focus-box-shadow: 0 0 2px 0.5px rgba(255, 255, 255, 0.5), 0 0 4px 3px var(--ag-input-focus-border-color);
  --ag-card-shadow: 0 1px 20px 1px black;
  --ag-disabled-foreground-color: rgba(255, 255, 255, 0.5);
  --ag-chip-background-color: rgba(255, 255, 255, 0.07);
  --ag-input-disabled-border-color: rgba(104, 104, 110, 0.3);
  --ag-input-disabled-background-color: rgba(104, 104, 110, 0.07);
  --ag-advanced-filter-join-pill-color: #7a3a37;
  --ag-advanced-filter-column-pill-color: #355f2d;
  --ag-advanced-filter-option-pill-color: #5a3168;
  --ag-advanced-filter-value-pill-color: #374c86;
  --ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  .ag-theme-alpine-auto-dark {
    --ag-background-color: #181d1f;
    --ag-foreground-color: #fff;
    --ag-border-color: #68686e;
    --ag-secondary-border-color: rgba(88, 86, 82, 0.5);
    --ag-modal-overlay-background-color: rgba(24, 29, 31, 0.66);
    --ag-header-background-color: #222628;
    --ag-tooltip-background-color: #222628;
    --ag-odd-row-background-color: #222628;
    --ag-control-panel-background-color: #222628;
    --ag-subheader-background-color: #000;
    --ag-input-disabled-background-color: #282c2f;
    --ag-input-focus-box-shadow: 0 0 2px 0.5px rgba(255, 255, 255, 0.5), 0 0 4px 3px var(--ag-input-focus-border-color);
    --ag-card-shadow: 0 1px 20px 1px black;
    --ag-disabled-foreground-color: rgba(255, 255, 255, 0.5);
    --ag-chip-background-color: rgba(255, 255, 255, 0.07);
    --ag-input-disabled-border-color: rgba(104, 104, 110, 0.3);
    --ag-input-disabled-background-color: rgba(104, 104, 110, 0.07);
    --ag-advanced-filter-join-pill-color: #7a3a37;
    --ag-advanced-filter-column-pill-color: #355f2d;
    --ag-advanced-filter-option-pill-color: #5a3168;
    --ag-advanced-filter-value-pill-color: #374c86;
    --ag-row-loading-skeleton-effect-color: rgba(202, 203, 204, 0.4);
    color-scheme: dark;
  }
}
.ag-theme-alpine .ag-filter-toolpanel-header,
.ag-theme-alpine .ag-filter-toolpanel-search,
.ag-theme-alpine .ag-status-bar,
.ag-theme-alpine .ag-header-row,
.ag-theme-alpine .ag-panel-title-bar-title,
.ag-theme-alpine .ag-multi-filter-group-title-bar,
.ag-theme-alpine-dark .ag-filter-toolpanel-header,
.ag-theme-alpine-dark .ag-filter-toolpanel-search,
.ag-theme-alpine-dark .ag-status-bar,
.ag-theme-alpine-dark .ag-header-row,
.ag-theme-alpine-dark .ag-panel-title-bar-title,
.ag-theme-alpine-dark .ag-multi-filter-group-title-bar,
.ag-theme-alpine-auto-dark .ag-filter-toolpanel-header,
.ag-theme-alpine-auto-dark .ag-filter-toolpanel-search,
.ag-theme-alpine-auto-dark .ag-status-bar,
.ag-theme-alpine-auto-dark .ag-header-row,
.ag-theme-alpine-auto-dark .ag-panel-title-bar-title,
.ag-theme-alpine-auto-dark .ag-multi-filter-group-title-bar {
  font-weight: 700;
  color: var(--ag-header-foreground-color);
}
.ag-theme-alpine .ag-row,
.ag-theme-alpine-dark .ag-row,
.ag-theme-alpine-auto-dark .ag-row {
  font-size: calc(var(--ag-font-size) + 1px);
}
.ag-theme-alpine input[class^=ag-]:not([type]),
.ag-theme-alpine input[class^=ag-][type=text],
.ag-theme-alpine input[class^=ag-][type=number],
.ag-theme-alpine input[class^=ag-][type=tel],
.ag-theme-alpine input[class^=ag-][type=date],
.ag-theme-alpine input[class^=ag-][type=datetime-local],
.ag-theme-alpine textarea[class^=ag-],
.ag-theme-alpine-dark input[class^=ag-]:not([type]),
.ag-theme-alpine-dark input[class^=ag-][type=text],
.ag-theme-alpine-dark input[class^=ag-][type=number],
.ag-theme-alpine-dark input[class^=ag-][type=tel],
.ag-theme-alpine-dark input[class^=ag-][type=date],
.ag-theme-alpine-dark input[class^=ag-][type=datetime-local],
.ag-theme-alpine-dark textarea[class^=ag-],
.ag-theme-alpine-auto-dark input[class^=ag-]:not([type]),
.ag-theme-alpine-auto-dark input[class^=ag-][type=text],
.ag-theme-alpine-auto-dark input[class^=ag-][type=number],
.ag-theme-alpine-auto-dark input[class^=ag-][type=tel],
.ag-theme-alpine-auto-dark input[class^=ag-][type=date],
.ag-theme-alpine-auto-dark input[class^=ag-][type=datetime-local],
.ag-theme-alpine-auto-dark textarea[class^=ag-] {
  min-height: calc(var(--ag-grid-size) * 4);
  border-radius: var(--ag-border-radius);
}
.ag-theme-alpine .ag-ltr input[class^=ag-]:not([type]), .ag-theme-alpine .ag-ltr input[class^=ag-][type=text], .ag-theme-alpine .ag-ltr input[class^=ag-][type=number], .ag-theme-alpine .ag-ltr input[class^=ag-][type=tel], .ag-theme-alpine .ag-ltr input[class^=ag-][type=date], .ag-theme-alpine .ag-ltr input[class^=ag-][type=datetime-local], .ag-theme-alpine .ag-ltr textarea[class^=ag-], .ag-theme-alpine-dark .ag-ltr input[class^=ag-]:not([type]), .ag-theme-alpine-dark .ag-ltr input[class^=ag-][type=text], .ag-theme-alpine-dark .ag-ltr input[class^=ag-][type=number], .ag-theme-alpine-dark .ag-ltr input[class^=ag-][type=tel], .ag-theme-alpine-dark .ag-ltr input[class^=ag-][type=date], .ag-theme-alpine-dark .ag-ltr input[class^=ag-][type=datetime-local], .ag-theme-alpine-dark .ag-ltr textarea[class^=ag-], .ag-theme-alpine-auto-dark .ag-ltr input[class^=ag-]:not([type]), .ag-theme-alpine-auto-dark .ag-ltr input[class^=ag-][type=text], .ag-theme-alpine-auto-dark .ag-ltr input[class^=ag-][type=number], .ag-theme-alpine-auto-dark .ag-ltr input[class^=ag-][type=tel], .ag-theme-alpine-auto-dark .ag-ltr input[class^=ag-][type=date], .ag-theme-alpine-auto-dark .ag-ltr input[class^=ag-][type=datetime-local], .ag-theme-alpine-auto-dark .ag-ltr textarea[class^=ag-] {
  padding-left: var(--ag-grid-size);
}

.ag-theme-alpine .ag-rtl input[class^=ag-]:not([type]), .ag-theme-alpine .ag-rtl input[class^=ag-][type=text], .ag-theme-alpine .ag-rtl input[class^=ag-][type=number], .ag-theme-alpine .ag-rtl input[class^=ag-][type=tel], .ag-theme-alpine .ag-rtl input[class^=ag-][type=date], .ag-theme-alpine .ag-rtl input[class^=ag-][type=datetime-local], .ag-theme-alpine .ag-rtl textarea[class^=ag-], .ag-theme-alpine-dark .ag-rtl input[class^=ag-]:not([type]), .ag-theme-alpine-dark .ag-rtl input[class^=ag-][type=text], .ag-theme-alpine-dark .ag-rtl input[class^=ag-][type=number], .ag-theme-alpine-dark .ag-rtl input[class^=ag-][type=tel], .ag-theme-alpine-dark .ag-rtl input[class^=ag-][type=date], .ag-theme-alpine-dark .ag-rtl input[class^=ag-][type=datetime-local], .ag-theme-alpine-dark .ag-rtl textarea[class^=ag-], .ag-theme-alpine-auto-dark .ag-rtl input[class^=ag-]:not([type]), .ag-theme-alpine-auto-dark .ag-rtl input[class^=ag-][type=text], .ag-theme-alpine-auto-dark .ag-rtl input[class^=ag-][type=number], .ag-theme-alpine-auto-dark .ag-rtl input[class^=ag-][type=tel], .ag-theme-alpine-auto-dark .ag-rtl input[class^=ag-][type=date], .ag-theme-alpine-auto-dark .ag-rtl input[class^=ag-][type=datetime-local], .ag-theme-alpine-auto-dark .ag-rtl textarea[class^=ag-] {
  padding-right: var(--ag-grid-size);
}

.ag-theme-alpine .ag-tab,
.ag-theme-alpine-dark .ag-tab,
.ag-theme-alpine-auto-dark .ag-tab {
  padding: calc(var(--ag-grid-size) * 1.5);
  transition: color 0.4s;
  flex: 1 1 auto;
}
.ag-theme-alpine .ag-tab-selected,
.ag-theme-alpine-dark .ag-tab-selected,
.ag-theme-alpine-auto-dark .ag-tab-selected {
  color: var(--ag-alpine-active-color);
}
.ag-theme-alpine .ag-menu,
.ag-theme-alpine-dark .ag-menu,
.ag-theme-alpine-auto-dark .ag-menu {
  background-color: var(--ag-control-panel-background-color);
}
.ag-theme-alpine .ag-panel-content-wrapper .ag-column-select,
.ag-theme-alpine-dark .ag-panel-content-wrapper .ag-column-select,
.ag-theme-alpine-auto-dark .ag-panel-content-wrapper .ag-column-select {
  background-color: var(--ag-control-panel-background-color);
}
.ag-theme-alpine .ag-menu-header,
.ag-theme-alpine-dark .ag-menu-header,
.ag-theme-alpine-auto-dark .ag-menu-header {
  background-color: var(--ag-control-panel-background-color);
  padding-top: 1px;
}
.ag-theme-alpine .ag-tabs-header,
.ag-theme-alpine-dark .ag-tabs-header,
.ag-theme-alpine-auto-dark .ag-tabs-header {
  border-bottom: var(--ag-borders) var(--ag-border-color);
}
.ag-theme-alpine .ag-charts-settings-group-title-bar,
.ag-theme-alpine .ag-charts-data-group-title-bar,
.ag-theme-alpine .ag-charts-format-top-level-group-title-bar,
.ag-theme-alpine .ag-charts-advanced-settings-top-level-group-title-bar,
.ag-theme-alpine-dark .ag-charts-settings-group-title-bar,
.ag-theme-alpine-dark .ag-charts-data-group-title-bar,
.ag-theme-alpine-dark .ag-charts-format-top-level-group-title-bar,
.ag-theme-alpine-dark .ag-charts-advanced-settings-top-level-group-title-bar,
.ag-theme-alpine-auto-dark .ag-charts-settings-group-title-bar,
.ag-theme-alpine-auto-dark .ag-charts-data-group-title-bar,
.ag-theme-alpine-auto-dark .ag-charts-format-top-level-group-title-bar,
.ag-theme-alpine-auto-dark .ag-charts-advanced-settings-top-level-group-title-bar {
  padding: var(--ag-grid-size) calc(var(--ag-grid-size) * 2);
  line-height: calc(var(--ag-icon-size) + var(--ag-grid-size) - 2px);
}
.ag-theme-alpine .ag-chart-mini-thumbnail,
.ag-theme-alpine-dark .ag-chart-mini-thumbnail,
.ag-theme-alpine-auto-dark .ag-chart-mini-thumbnail {
  background-color: var(--ag-background-color);
}
.ag-theme-alpine .ag-chart-settings-nav-bar,
.ag-theme-alpine-dark .ag-chart-settings-nav-bar,
.ag-theme-alpine-auto-dark .ag-chart-settings-nav-bar {
  border-top: var(--ag-borders-secondary) var(--ag-secondary-border-color);
}
.ag-theme-alpine .ag-ltr .ag-group-title-bar-icon, .ag-theme-alpine-dark .ag-ltr .ag-group-title-bar-icon, .ag-theme-alpine-auto-dark .ag-ltr .ag-group-title-bar-icon {
  margin-right: var(--ag-grid-size);
}

.ag-theme-alpine .ag-rtl .ag-group-title-bar-icon, .ag-theme-alpine-dark .ag-rtl .ag-group-title-bar-icon, .ag-theme-alpine-auto-dark .ag-rtl .ag-group-title-bar-icon {
  margin-left: var(--ag-grid-size);
}

.ag-theme-alpine .ag-charts-format-top-level-group-toolbar,
.ag-theme-alpine .ag-charts-advanced-settings-top-level-group-toolbar,
.ag-theme-alpine-dark .ag-charts-format-top-level-group-toolbar,
.ag-theme-alpine-dark .ag-charts-advanced-settings-top-level-group-toolbar,
.ag-theme-alpine-auto-dark .ag-charts-format-top-level-group-toolbar,
.ag-theme-alpine-auto-dark .ag-charts-advanced-settings-top-level-group-toolbar {
  margin-top: var(--ag-grid-size);
}
.ag-theme-alpine .ag-ltr .ag-charts-format-top-level-group-toolbar, .ag-theme-alpine .ag-ltr .ag-charts-advanced-settings-top-level-group-toolbar, .ag-theme-alpine-dark .ag-ltr .ag-charts-format-top-level-group-toolbar, .ag-theme-alpine-dark .ag-ltr .ag-charts-advanced-settings-top-level-group-toolbar, .ag-theme-alpine-auto-dark .ag-ltr .ag-charts-format-top-level-group-toolbar, .ag-theme-alpine-auto-dark .ag-ltr .ag-charts-advanced-settings-top-level-group-toolbar {
  padding-left: calc(var(--ag-icon-size) * 0.5 + var(--ag-grid-size) * 2);
}

.ag-theme-alpine .ag-rtl .ag-charts-format-top-level-group-toolbar, .ag-theme-alpine .ag-rtl .ag-charts-advanced-settings-top-level-group-toolbar, .ag-theme-alpine-dark .ag-rtl .ag-charts-format-top-level-group-toolbar, .ag-theme-alpine-dark .ag-rtl .ag-charts-advanced-settings-top-level-group-toolbar, .ag-theme-alpine-auto-dark .ag-rtl .ag-charts-format-top-level-group-toolbar, .ag-theme-alpine-auto-dark .ag-rtl .ag-charts-advanced-settings-top-level-group-toolbar {
  padding-right: calc(var(--ag-icon-size) * 0.5 + var(--ag-grid-size) * 2);
}

.ag-theme-alpine .ag-charts-format-sub-level-group,
.ag-theme-alpine-dark .ag-charts-format-sub-level-group,
.ag-theme-alpine-auto-dark .ag-charts-format-sub-level-group {
  border-left: dashed 1px;
  border-left-color: var(--ag-border-color);
  padding-left: var(--ag-grid-size);
  margin-bottom: calc(var(--ag-grid-size) * 2);
}
.ag-theme-alpine .ag-charts-format-sub-level-group-title-bar,
.ag-theme-alpine-dark .ag-charts-format-sub-level-group-title-bar,
.ag-theme-alpine-auto-dark .ag-charts-format-sub-level-group-title-bar {
  padding-top: 0;
  padding-bottom: 0;
  background: none;
  font-weight: 700;
}
.ag-theme-alpine .ag-charts-format-sub-level-group-container,
.ag-theme-alpine-dark .ag-charts-format-sub-level-group-container,
.ag-theme-alpine-auto-dark .ag-charts-format-sub-level-group-container {
  padding-bottom: 0;
}
.ag-theme-alpine .ag-charts-format-sub-level-group-item:last-child,
.ag-theme-alpine-dark .ag-charts-format-sub-level-group-item:last-child,
.ag-theme-alpine-auto-dark .ag-charts-format-sub-level-group-item:last-child {
  margin-bottom: 0;
}
.ag-theme-alpine.ag-dnd-ghost,
.ag-theme-alpine-dark.ag-dnd-ghost,
.ag-theme-alpine-auto-dark.ag-dnd-ghost {
  font-size: calc(var(--ag-font-size) - 1px);
  font-weight: 700;
}
.ag-theme-alpine .ag-side-buttons,
.ag-theme-alpine-dark .ag-side-buttons,
.ag-theme-alpine-auto-dark .ag-side-buttons {
  width: calc(var(--ag-grid-size) * 5);
}
.ag-theme-alpine .ag-standard-button,
.ag-theme-alpine-dark .ag-standard-button,
.ag-theme-alpine-auto-dark .ag-standard-button {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--ag-border-radius);
  border: 1px solid;
  border-color: var(--ag-alpine-active-color);
  color: var(--ag-alpine-active-color);
  background-color: var(--ag-background-color);
  font-weight: 600;
  padding: var(--ag-grid-size) calc(var(--ag-grid-size) * 2);
}
.ag-theme-alpine .ag-standard-button:hover,
.ag-theme-alpine-dark .ag-standard-button:hover,
.ag-theme-alpine-auto-dark .ag-standard-button:hover {
  border-color: var(--ag-alpine-active-color);
  background-color: var(--ag-row-hover-color);
}
.ag-theme-alpine .ag-standard-button:active,
.ag-theme-alpine-dark .ag-standard-button:active,
.ag-theme-alpine-auto-dark .ag-standard-button:active {
  border-color: var(--ag-alpine-active-color);
  background-color: var(--ag-alpine-active-color);
  color: var(--ag-background-color);
}
.ag-theme-alpine .ag-standard-button:disabled,
.ag-theme-alpine-dark .ag-standard-button:disabled,
.ag-theme-alpine-auto-dark .ag-standard-button:disabled {
  color: var(--ag-disabled-foreground-color);
  background-color: var(--ag-input-disabled-background-color);
  border-color: var(--ag-input-disabled-border-color);
}
.ag-theme-alpine .ag-column-drop-vertical,
.ag-theme-alpine-dark .ag-column-drop-vertical,
.ag-theme-alpine-auto-dark .ag-column-drop-vertical {
  min-height: 75px;
}
.ag-theme-alpine .ag-column-drop-vertical-title-bar,
.ag-theme-alpine-dark .ag-column-drop-vertical-title-bar,
.ag-theme-alpine-auto-dark .ag-column-drop-vertical-title-bar {
  padding: calc(var(--ag-grid-size) * 2);
  padding-bottom: 0px;
}
.ag-theme-alpine .ag-column-drop-vertical-empty-message,
.ag-theme-alpine-dark .ag-column-drop-vertical-empty-message,
.ag-theme-alpine-auto-dark .ag-column-drop-vertical-empty-message {
  display: flex;
  align-items: center;
  border: dashed 1px;
  border-color: var(--ag-border-color);
  margin: calc(var(--ag-grid-size) * 2);
  padding: calc(var(--ag-grid-size) * 2);
}
.ag-theme-alpine .ag-column-drop-empty-message,
.ag-theme-alpine-dark .ag-column-drop-empty-message,
.ag-theme-alpine-auto-dark .ag-column-drop-empty-message {
  color: var(--ag-foreground-color);
  opacity: 0.75;
}
.ag-theme-alpine .ag-pill-select .ag-column-drop,
.ag-theme-alpine-dark .ag-pill-select .ag-column-drop,
.ag-theme-alpine-auto-dark .ag-pill-select .ag-column-drop {
  min-height: unset;
}
.ag-theme-alpine .ag-status-bar,
.ag-theme-alpine-dark .ag-status-bar,
.ag-theme-alpine-auto-dark .ag-status-bar {
  font-weight: normal;
}
.ag-theme-alpine .ag-status-name-value-value,
.ag-theme-alpine-dark .ag-status-name-value-value,
.ag-theme-alpine-auto-dark .ag-status-name-value-value {
  font-weight: 700;
}
.ag-theme-alpine .ag-paging-number,
.ag-theme-alpine .ag-paging-row-summary-panel-number,
.ag-theme-alpine-dark .ag-paging-number,
.ag-theme-alpine-dark .ag-paging-row-summary-panel-number,
.ag-theme-alpine-auto-dark .ag-paging-number,
.ag-theme-alpine-auto-dark .ag-paging-row-summary-panel-number {
  font-weight: 700;
}
.ag-theme-alpine .ag-column-drop-cell-button,
.ag-theme-alpine-dark .ag-column-drop-cell-button,
.ag-theme-alpine-auto-dark .ag-column-drop-cell-button {
  opacity: 0.5;
}
.ag-theme-alpine .ag-column-drop-cell-button:hover,
.ag-theme-alpine-dark .ag-column-drop-cell-button:hover,
.ag-theme-alpine-auto-dark .ag-column-drop-cell-button:hover {
  opacity: 0.75;
}
.ag-theme-alpine .ag-column-select-column-readonly.ag-icon-grip,
.ag-theme-alpine .ag-column-select-column-readonly .ag-icon-grip,
.ag-theme-alpine-dark .ag-column-select-column-readonly.ag-icon-grip,
.ag-theme-alpine-dark .ag-column-select-column-readonly .ag-icon-grip,
.ag-theme-alpine-auto-dark .ag-column-select-column-readonly.ag-icon-grip,
.ag-theme-alpine-auto-dark .ag-column-select-column-readonly .ag-icon-grip {
  opacity: 0.35;
}
.ag-theme-alpine .ag-header-cell-menu-button:hover,
.ag-theme-alpine .ag-header-cell-filter-button:hover,
.ag-theme-alpine .ag-side-button-button:hover,
.ag-theme-alpine .ag-tab:hover,
.ag-theme-alpine .ag-panel-title-bar-button:hover,
.ag-theme-alpine .ag-header-expand-icon:hover,
.ag-theme-alpine .ag-column-group-icons:hover,
.ag-theme-alpine .ag-set-filter-group-icons:hover,
.ag-theme-alpine .ag-group-expanded .ag-icon:hover,
.ag-theme-alpine .ag-group-contracted .ag-icon:hover,
.ag-theme-alpine .ag-chart-settings-prev:hover,
.ag-theme-alpine .ag-chart-settings-next:hover,
.ag-theme-alpine .ag-group-title-bar-icon:hover,
.ag-theme-alpine .ag-column-select-header-icon:hover,
.ag-theme-alpine .ag-floating-filter-button-button:hover,
.ag-theme-alpine .ag-filter-toolpanel-expand:hover,
.ag-theme-alpine .ag-chart-menu-icon:hover,
.ag-theme-alpine-dark .ag-header-cell-menu-button:hover,
.ag-theme-alpine-dark .ag-header-cell-filter-button:hover,
.ag-theme-alpine-dark .ag-side-button-button:hover,
.ag-theme-alpine-dark .ag-tab:hover,
.ag-theme-alpine-dark .ag-panel-title-bar-button:hover,
.ag-theme-alpine-dark .ag-header-expand-icon:hover,
.ag-theme-alpine-dark .ag-column-group-icons:hover,
.ag-theme-alpine-dark .ag-set-filter-group-icons:hover,
.ag-theme-alpine-dark .ag-group-expanded .ag-icon:hover,
.ag-theme-alpine-dark .ag-group-contracted .ag-icon:hover,
.ag-theme-alpine-dark .ag-chart-settings-prev:hover,
.ag-theme-alpine-dark .ag-chart-settings-next:hover,
.ag-theme-alpine-dark .ag-group-title-bar-icon:hover,
.ag-theme-alpine-dark .ag-column-select-header-icon:hover,
.ag-theme-alpine-dark .ag-floating-filter-button-button:hover,
.ag-theme-alpine-dark .ag-filter-toolpanel-expand:hover,
.ag-theme-alpine-dark .ag-chart-menu-icon:hover,
.ag-theme-alpine-auto-dark .ag-header-cell-menu-button:hover,
.ag-theme-alpine-auto-dark .ag-header-cell-filter-button:hover,
.ag-theme-alpine-auto-dark .ag-side-button-button:hover,
.ag-theme-alpine-auto-dark .ag-tab:hover,
.ag-theme-alpine-auto-dark .ag-panel-title-bar-button:hover,
.ag-theme-alpine-auto-dark .ag-header-expand-icon:hover,
.ag-theme-alpine-auto-dark .ag-column-group-icons:hover,
.ag-theme-alpine-auto-dark .ag-set-filter-group-icons:hover,
.ag-theme-alpine-auto-dark .ag-group-expanded .ag-icon:hover,
.ag-theme-alpine-auto-dark .ag-group-contracted .ag-icon:hover,
.ag-theme-alpine-auto-dark .ag-chart-settings-prev:hover,
.ag-theme-alpine-auto-dark .ag-chart-settings-next:hover,
.ag-theme-alpine-auto-dark .ag-group-title-bar-icon:hover,
.ag-theme-alpine-auto-dark .ag-column-select-header-icon:hover,
.ag-theme-alpine-auto-dark .ag-floating-filter-button-button:hover,
.ag-theme-alpine-auto-dark .ag-filter-toolpanel-expand:hover,
.ag-theme-alpine-auto-dark .ag-chart-menu-icon:hover {
  color: var(--ag-alpine-active-color);
}
.ag-theme-alpine .ag-header-cell-menu-button:hover .ag-icon,
.ag-theme-alpine .ag-header-cell-filter-button:hover .ag-icon,
.ag-theme-alpine .ag-side-button-button:hover .ag-icon,
.ag-theme-alpine .ag-panel-title-bar-button:hover .ag-icon,
.ag-theme-alpine .ag-floating-filter-button-button:hover .ag-icon,
.ag-theme-alpine-dark .ag-header-cell-menu-button:hover .ag-icon,
.ag-theme-alpine-dark .ag-header-cell-filter-button:hover .ag-icon,
.ag-theme-alpine-dark .ag-side-button-button:hover .ag-icon,
.ag-theme-alpine-dark .ag-panel-title-bar-button:hover .ag-icon,
.ag-theme-alpine-dark .ag-floating-filter-button-button:hover .ag-icon,
.ag-theme-alpine-auto-dark .ag-header-cell-menu-button:hover .ag-icon,
.ag-theme-alpine-auto-dark .ag-header-cell-filter-button:hover .ag-icon,
.ag-theme-alpine-auto-dark .ag-side-button-button:hover .ag-icon,
.ag-theme-alpine-auto-dark .ag-panel-title-bar-button:hover .ag-icon,
.ag-theme-alpine-auto-dark .ag-floating-filter-button-button:hover .ag-icon {
  color: inherit;
}
.ag-theme-alpine .ag-filter-active .ag-icon-filter,
.ag-theme-alpine-dark .ag-filter-active .ag-icon-filter,
.ag-theme-alpine-auto-dark .ag-filter-active .ag-icon-filter {
  color: var(--ag-alpine-active-color);
}
.ag-theme-alpine .ag-chart-settings-card-item.ag-not-selected:hover,
.ag-theme-alpine-dark .ag-chart-settings-card-item.ag-not-selected:hover,
.ag-theme-alpine-auto-dark .ag-chart-settings-card-item.ag-not-selected:hover {
  opacity: 0.35;
}
.ag-theme-alpine .ag-ltr .ag-panel-title-bar-button, .ag-theme-alpine-dark .ag-ltr .ag-panel-title-bar-button, .ag-theme-alpine-auto-dark .ag-ltr .ag-panel-title-bar-button {
  margin-left: calc(var(--ag-grid-size) * 2);
  margin-right: var(--ag-grid-size);
}

.ag-theme-alpine .ag-rtl .ag-panel-title-bar-button, .ag-theme-alpine-dark .ag-rtl .ag-panel-title-bar-button, .ag-theme-alpine-auto-dark .ag-rtl .ag-panel-title-bar-button {
  margin-right: calc(var(--ag-grid-size) * 2);
  margin-left: var(--ag-grid-size);
}

.ag-theme-alpine .ag-ltr .ag-filter-toolpanel-group-container, .ag-theme-alpine-dark .ag-ltr .ag-filter-toolpanel-group-container, .ag-theme-alpine-auto-dark .ag-ltr .ag-filter-toolpanel-group-container {
  padding-left: var(--ag-grid-size);
}

.ag-theme-alpine .ag-rtl .ag-filter-toolpanel-group-container, .ag-theme-alpine-dark .ag-rtl .ag-filter-toolpanel-group-container, .ag-theme-alpine-auto-dark .ag-rtl .ag-filter-toolpanel-group-container {
  padding-right: var(--ag-grid-size);
}

.ag-theme-alpine .ag-filter-toolpanel-instance-filter,
.ag-theme-alpine-dark .ag-filter-toolpanel-instance-filter,
.ag-theme-alpine-auto-dark .ag-filter-toolpanel-instance-filter {
  border: none;
  background-color: var(--ag-control-panel-background-color);
}
.ag-theme-alpine .ag-ltr .ag-filter-toolpanel-instance-filter, .ag-theme-alpine-dark .ag-ltr .ag-filter-toolpanel-instance-filter, .ag-theme-alpine-auto-dark .ag-ltr .ag-filter-toolpanel-instance-filter {
  border-left: dashed 1px;
  border-left-color: var(--ag-border-color);
  margin-left: calc(var(--ag-icon-size) * 0.5);
}

.ag-theme-alpine .ag-rtl .ag-filter-toolpanel-instance-filter, .ag-theme-alpine-dark .ag-rtl .ag-filter-toolpanel-instance-filter, .ag-theme-alpine-auto-dark .ag-rtl .ag-filter-toolpanel-instance-filter {
  border-right: dashed 1px;
  border-right-color: var(--ag-border-color);
  margin-right: calc(var(--ag-icon-size) * 0.5);
}

.ag-theme-alpine .ag-set-filter-list,
.ag-theme-alpine-dark .ag-set-filter-list,
.ag-theme-alpine-auto-dark .ag-set-filter-list {
  padding-top: calc(var(--ag-grid-size) * 0.5);
  padding-bottom: calc(var(--ag-grid-size) * 0.5);
}
.ag-theme-alpine .ag-layout-auto-height .ag-center-cols-viewport,
.ag-theme-alpine .ag-layout-auto-height .ag-center-cols-container,
.ag-theme-alpine .ag-layout-print .ag-center-cols-viewport,
.ag-theme-alpine .ag-layout-print .ag-center-cols-container,
.ag-theme-alpine-dark .ag-layout-auto-height .ag-center-cols-viewport,
.ag-theme-alpine-dark .ag-layout-auto-height .ag-center-cols-container,
.ag-theme-alpine-dark .ag-layout-print .ag-center-cols-viewport,
.ag-theme-alpine-dark .ag-layout-print .ag-center-cols-container,
.ag-theme-alpine-auto-dark .ag-layout-auto-height .ag-center-cols-viewport,
.ag-theme-alpine-auto-dark .ag-layout-auto-height .ag-center-cols-container,
.ag-theme-alpine-auto-dark .ag-layout-print .ag-center-cols-viewport,
.ag-theme-alpine-auto-dark .ag-layout-print .ag-center-cols-container {
  min-height: 150px;
}
.ag-theme-alpine .ag-date-time-list-page-entry-is-current,
.ag-theme-alpine-dark .ag-date-time-list-page-entry-is-current,
.ag-theme-alpine-auto-dark .ag-date-time-list-page-entry-is-current {
  background-color: var(--ag-alpine-active-color);
}
.ag-theme-alpine .ag-advanced-filter-builder-button,
.ag-theme-alpine-dark .ag-advanced-filter-builder-button,
.ag-theme-alpine-auto-dark .ag-advanced-filter-builder-button {
  padding: var(--ag-grid-size);
  font-weight: 600;
}
.ag-theme-alpine .ag-list-item-hovered::after,
.ag-theme-alpine-dark .ag-list-item-hovered::after,
.ag-theme-alpine-auto-dark .ag-list-item-hovered::after {
  background-color: var(--ag-alpine-active-color);
}
.ag-theme-alpine .ag-pill .ag-pill-button:hover,
.ag-theme-alpine-dark .ag-pill .ag-pill-button:hover,
.ag-theme-alpine-auto-dark .ag-pill .ag-pill-button:hover {
  color: var(--ag-alpine-active-color);
}
.ag-theme-alpine .ag-header-highlight-before::after,
.ag-theme-alpine .ag-header-highlight-after::after,
.ag-theme-alpine-dark .ag-header-highlight-before::after,
.ag-theme-alpine-dark .ag-header-highlight-after::after,
.ag-theme-alpine-auto-dark .ag-header-highlight-before::after,
.ag-theme-alpine-auto-dark .ag-header-highlight-after::after {
  background-color: var(--ag-alpine-active-color);
}

/* Bryntum Gantt Import */
/*!
 *
 * Bryntum Gantt 6.3.3
 *
 * Copyright(c) 2025 Bryntum AB
 * https://bryntum.com/contact
 * https://bryntum.com/license
 *
 * Bryntum incorporates third-party code licensed under the MIT and Apache-2.0 licenses.
 * See the licenses below or visit https://bryntum.com/products/gantt/docs/guide/Gantt/licenses
 *
 * # Third Party Notices
 * 
 * Bryntum uses the following third party libraries:
 * 
 * * [Font Awesome 6 Free](https://fontawesome.com/license/free) (MIT/SIL OFL 1.1)
 * * [Roboto font (for Material theme only)](https://github.com/google/roboto) (Apache-2.0)
 * * [Styling Cross-Browser Compatible Range Inputs with Sass](https://github.com/darlanrod/input-range-sass) (MIT)
 * * [Tree Walker polyfill (only applies to Salesforce)](https://github.com/Krinkle/dom-TreeWalker-polyfill) (MIT)
 * * [chronograph](https://github.com/bryntum/chronograph) (MIT)
 * * [later.js](https://github.com/bunkat/later) (MIT)
 * * [Monaco editor (only used in our demos)](https://microsoft.github.io/monaco-editor) (MIT)
 * * Map/Set polyfill to fix performance issues for Salesforce LWS (MIT)
 * * [Chart.js (when using Chart package)](https://github.com/chartjs/Chart.js) (MIT)
 * 
 * Note: the **chronograph** and **later.js** libraries are used in Bryntum Scheduler Pro and Bryntum Gantt, but they are
 * listed for all Bryntum products since the distribution contains trial versions of the thin bundles for all other
 * products. TreeWalker is only used in the LWC bundle for Salesforce. Roboto font is only used in the material theme.
 * 
 * ## Font Awesome 6 Free
 * 
 * [Font Awesome Free 6 by @fontawesome](https://fontawesome.com/)
 * 
 * Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects,
 * or really almost whatever you want.
 * 
 * [Full Font Awesome Free license](https://fontawesome.com/license/free)
 * 
 * ## Roboto font
 * 
 * [Apache License Version 2.0, January 2004](https://www.apache.org/licenses/LICENSE-2.0)
 * 
 * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
 * 
 * 1. Definitions.
 * 
 * "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9
 * of this document.
 * 
 * "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
 * 
 * "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are
 * under common control with that entity. For the purposes of this definition,
 * "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by
 * contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial
 * ownership of such entity.
 * 
 * "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
 * 
 * "Source" form shall mean the preferred form for making modifications, including but not limited to software source code,
 * documentation source, and configuration files.
 * 
 * "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including
 * but not limited to compiled object code, generated documentation, and conversions to other media types.
 * 
 * "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as
 * indicated by a copyright notice that is included in or attached to the work
 * (an example is provided in the Appendix below).
 * 
 * "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work
 * and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an
 * original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain
 * separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
 * 
 * "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or
 * additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the
 * Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner.
 * For the purposes of this definition, "submitted"
 * means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including
 * but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems
 * that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding
 * communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a
 * Contribution."
 * 
 * "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received
 * by Licensor and subsequently incorporated within the Work.
 * 
 * 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to
 *    You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce,
 *    prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such
 *    Derivative Works in Source or Object form.
 * 
 * 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a
 *    perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable
 *    (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise
 *    transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are
 *    necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s)
 *    with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (
 *    including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within
 *    the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this
 *    License for that Work shall terminate as of the date such litigation is filed.
 * 
 * 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with
 *    or without modifications, and in Source or Object form, provided that You meet the following conditions:
 * 
 * (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
 * 
 * (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
 * 
 * (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark,
 * and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the
 * Derivative Works; and
 * 
 * (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute
 * must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that
 * do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file
 * distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the
 * Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices
 * normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You
 * may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the
 * NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the
 * License.
 * 
 * You may add Your own copyright statement to Your modifications and may provide additional or different license terms and
 * conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole,
 * provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this
 * License.
 * 
 * 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for
 *    inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any
 *    additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any
 *    separate license agreement you may have executed with Licensor regarding such Contributions.
 * 
 * 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product
 *    names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and
 *    reproducing the content of the NOTICE file.
 * 
 * 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and
 *    each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 *    either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT,
 *    MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness
 *    of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this
 *    License.
 * 
 * 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or
 *    otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing,
 *    shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or
 *    consequential damages of any character arising as a result of this License or out of the use or inability to use the
 *    Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or
 *    any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such
 *    damages.
 * 
 * 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose
 *    to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or
 *    rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and
 *    on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and
 *    hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason
 *    of your accepting any such warranty or additional liability.
 * 
 * END OF TERMS AND CONDITIONS
 * 
 * APPENDIX: How to apply the Apache License to your work.
 * 
 * To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by
 * brackets "[]"
 * replaced with your own identifying information. (Don't include the brackets!)  The text should be enclosed in the
 * appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose
 * be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
 * 
 * Copyright [yyyy] [name of copyright owner]
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the
 * License. You may obtain a copy of the License at
 * 
 * [APACHE LICENSE, VERSION 2.0](http://www.apache.org/licenses/LICENSE-2.0)
 * 
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "
 * AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
 * language governing permissions and limitations under the License.
 * 
 * ## Styling Cross-Browser Compatible Range Inputs with Sass
 * 
 * Github: [input-range-sass](https://github.com/darlanrod/input-range-sass)
 * 
 * Author: [Darlan Rod](https://github.com/darlanrod)
 * 
 * Version 1.4.1
 * 
 * The MIT License (MIT)
 * 
 * Copyright (c) 2016 Darlan Rod
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
 * persons to whom the Software is furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
 * Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 * ## Tree Walker polyfill
 * 
 * The MIT License (MIT)
 * 
 * [Copyright 2013–2017 Timo Tijhof](https://github.com/Krinkle/dom-TreeWalker-polyfill)
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
 * persons to whom the Software is furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
 * Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 * ## chronograph
 * 
 * GitHub: [chronograph](https://github.com/bryntum/chronograph)
 * 
 * The MIT License (MIT)
 * 
 * Copyright (c) 2023 Bryntum
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
 * persons to whom the Software is furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
 * Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 * ## later.js
 * 
 * GitHub: [later.js](https://github.com/bunkat/later)
 * 
 * The MIT License (MIT)
 * 
 * Copyright © 2013 BunKat
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
 * persons to whom the Software is furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
 * Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 * ## Monaco editor
 * 
 * GitHub: [Monaco editor](https://microsoft.github.io/monaco-editor) (MIT)
 * 
 * The MIT License (MIT)
 * 
 * Copyright (c) 2016 - present Microsoft Corporation
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
 * persons to whom the Software is furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
 * Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 * ## Map/Set polyfill to fix performance issues for Salesforce LWS
 * 
 * Copyright © 2024 Certinia Inc.
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 * 
 * ## Chart.js
 * 
 * GitHub: [Chart.js](https://github.com/chartjs/Chart.js)
 * 
 * The MIT License (MIT)
 * 
 * Copyright (c) 2014-2022 Chart.js Contributors
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 */
:root{
  --bryntum-version:"6.3.3";
}
.b-fa{
  font-family:var(--b-fa-style-family, "Font Awesome 6 Free");
  font-weight:var(--b-fa-style, 900);
}
.b-fa-solid,
.b-fa-regular,
.b-fa-brands,
.fas,
.far,
.fab,
.b-fa-sharp-solid,
.b-fa-classic,
.b-fa{
  -moz-osx-font-smoothing:grayscale;
  -webkit-font-smoothing:antialiased;
  display:var(--b-fa-display, inline-block);
  font-style:normal;
  font-variant:normal;
  line-height:1;
  text-rendering:auto;
}
.fas,
.b-fa-classic,
.b-fa-solid,
.far,
.b-fa-regular{
  font-family:"Font Awesome 6 Free";
}
.fab,
.b-fa-brands{
  font-family:"Font Awesome 6 Brands";
}
.b-fa-lg{
  font-size:1.3333333333em;
  line-height:0.75em;
  vertical-align:-0.0667em;
}
.b-fa-xs{
  font-size:0.75em;
}
.b-fa-sm{
  font-size:0.875em;
}
.b-fa-1x{
  font-size:1em;
}
.b-fa-2x{
  font-size:2em;
}
.b-fa-3x{
  font-size:3em;
}
.b-fa-4x{
  font-size:4em;
}
.b-fa-5x{
  font-size:5em;
}
.b-fa-6x{
  font-size:6em;
}
.b-fa-7x{
  font-size:7em;
}
.b-fa-8x{
  font-size:8em;
}
.b-fa-9x{
  font-size:9em;
}
.b-fa-10x{
  font-size:10em;
}
.b-fa-fw, .b-fw-icon:before{
  text-align:center;
  width:1.25em;
}
.b-fa-ul{
  list-style-type:none;
  margin-left:var(--b-fa-li-margin, 2.5em);
  padding-left:0;
}
.b-fa-ul > li{
  position:relative;
}
.b-fa-li{
  left:calc(-1 * var(--b-fa-li-width, 2em));
  position:absolute;
  text-align:center;
  width:var(--b-fa-li-width, 2em);
  line-height:inherit;
}
.b-fa-border{
  border-color:var(--b-fa-border-color, #eee);
  border-radius:var(--b-fa-border-radius, 0.1em);
  border-style:var(--b-fa-border-style, solid);
  border-width:var(--b-fa-border-width, 0.08em);
  padding:var(--b-fa-border-padding, 0.2em 0.25em 0.15em);
}
.b-fa-pull-left{
  float:left;
  margin-right:var(--b-fa-pull-margin, 0.3em);
}
.b-fa-pull-right{
  float:right;
  margin-left:var(--b-fa-pull-margin, 0.3em);
}
.b-fa-beat{
  animation-name:b-fa-beat;
  animation-delay:var(--b-fa-animation-delay, 0s);
  animation-direction:var(--b-fa-animation-direction, normal);
  animation-duration:var(--b-fa-animation-duration, 1s);
  animation-iteration-count:var(--b-fa-animation-iteration-count, infinite);
  animation-timing-function:var(--b-fa-animation-timing, ease-in-out);
}
.b-fa-bounce{
  animation-name:b-fa-bounce;
  animation-delay:var(--b-fa-animation-delay, 0s);
  animation-direction:var(--b-fa-animation-direction, normal);
  animation-duration:var(--b-fa-animation-duration, 1s);
  animation-iteration-count:var(--b-fa-animation-iteration-count, infinite);
  animation-timing-function:var(--b-fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}
.b-fa-fade{
  animation-name:b-fa-fade;
  animation-delay:var(--b-fa-animation-delay, 0s);
  animation-direction:var(--b-fa-animation-direction, normal);
  animation-duration:var(--b-fa-animation-duration, 1s);
  animation-iteration-count:var(--b-fa-animation-iteration-count, infinite);
  animation-timing-function:var(--b-fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.b-fa-beat-fade{
  animation-name:b-fa-beat-fade;
  animation-delay:var(--b-fa-animation-delay, 0s);
  animation-direction:var(--b-fa-animation-direction, normal);
  animation-duration:var(--b-fa-animation-duration, 1s);
  animation-iteration-count:var(--b-fa-animation-iteration-count, infinite);
  animation-timing-function:var(--b-fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.b-fa-flip{
  animation-name:b-fa-flip;
  animation-delay:var(--b-fa-animation-delay, 0s);
  animation-direction:var(--b-fa-animation-direction, normal);
  animation-duration:var(--b-fa-animation-duration, 1s);
  animation-iteration-count:var(--b-fa-animation-iteration-count, infinite);
  animation-timing-function:var(--b-fa-animation-timing, ease-in-out);
}
.b-fa-shake{
  animation-name:b-fa-shake;
  animation-delay:var(--b-fa-animation-delay, 0s);
  animation-direction:var(--b-fa-animation-direction, normal);
  animation-duration:var(--b-fa-animation-duration, 1s);
  animation-iteration-count:var(--b-fa-animation-iteration-count, infinite);
  animation-timing-function:var(--b-fa-animation-timing, linear);
}
.b-fa-spin{
  animation-name:b-fa-spin;
  animation-delay:var(--b-fa-animation-delay, 0s);
  animation-direction:var(--b-fa-animation-direction, normal);
  animation-duration:var(--b-fa-animation-duration, 2s);
  animation-iteration-count:var(--b-fa-animation-iteration-count, infinite);
  animation-timing-function:var(--b-fa-animation-timing, linear);
}
.b-fa-spin-reverse{
  --b-fa-animation-direction:reverse;
}
.b-fa-pulse,
.b-fa-spin-pulse{
  animation-name:b-fa-spin;
  animation-direction:var(--b-fa-animation-direction, normal);
  animation-duration:var(--b-fa-animation-duration, 1s);
  animation-iteration-count:var(--b-fa-animation-iteration-count, infinite);
  animation-timing-function:var(--b-fa-animation-timing, steps(8));
}
@media (prefers-reduced-motion: reduce){
  .b-fa-beat,
  .b-fa-bounce,
  .b-fa-fade,
  .b-fa-beat-fade,
  .b-fa-flip,
  .b-fa-pulse,
  .b-fa-shake,
  .b-fa-spin,
  .b-fa-spin-pulse{
    animation-delay:-1ms;
    animation-duration:1ms;
    animation-iteration-count:1;
    transition-delay:0s;
    transition-duration:0s;
  }
}
@keyframes b-fa-beat{
  0%, 90%{
    transform:scale(1);
  }
  45%{
    transform:scale(var(--b-fa-beat-scale, 1.25));
  }
}
@keyframes b-fa-bounce{
  0%{
    transform:scale(1, 1) translateY(0);
  }
  10%{
    transform:scale(var(--b-fa-bounce-start-scale-x, 1.1), var(--b-fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30%{
    transform:scale(var(--b-fa-bounce-jump-scale-x, 0.9), var(--b-fa-bounce-jump-scale-y, 1.1)) translateY(var(--b-fa-bounce-height, -0.5em));
  }
  50%{
    transform:scale(var(--b-fa-bounce-land-scale-x, 1.05), var(--b-fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57%{
    transform:scale(1, 1) translateY(var(--b-fa-bounce-rebound, -0.125em));
  }
  64%{
    transform:scale(1, 1) translateY(0);
  }
  100%{
    transform:scale(1, 1) translateY(0);
  }
}
@keyframes b-fa-fade{
  50%{
    opacity:var(--b-fa-fade-opacity, 0.4);
  }
}
@keyframes b-fa-beat-fade{
  0%, 100%{
    opacity:var(--b-fa-beat-fade-opacity, 0.4);
    transform:scale(1);
  }
  50%{
    opacity:1;
    transform:scale(var(--b-fa-beat-fade-scale, 1.125));
  }
}
@keyframes b-fa-flip{
  50%{
    transform:rotate3d(var(--b-fa-flip-x, 0), var(--b-fa-flip-y, 1), var(--b-fa-flip-z, 0), var(--b-fa-flip-angle, -180deg));
  }
}
@keyframes b-fa-shake{
  0%{
    transform:rotate(-15deg);
  }
  4%{
    transform:rotate(15deg);
  }
  8%, 24%{
    transform:rotate(-18deg);
  }
  12%, 28%{
    transform:rotate(18deg);
  }
  16%{
    transform:rotate(-22deg);
  }
  20%{
    transform:rotate(22deg);
  }
  32%{
    transform:rotate(-12deg);
  }
  36%{
    transform:rotate(12deg);
  }
  40%, 100%{
    transform:rotate(0deg);
  }
}
@keyframes b-fa-spin{
  0%{
    transform:rotate(0deg);
  }
  100%{
    transform:rotate(360deg);
  }
}
.b-fa-rotate-90{
  transform:rotate(90deg);
}
.b-fa-rotate-180{
  transform:rotate(180deg);
}
.b-fa-rotate-270{
  transform:rotate(270deg);
}
.b-fa-flip-horizontal{
  transform:scale(-1, 1);
}
.b-fa-flip-vertical{
  transform:scale(1, -1);
}
.b-fa-flip-both,
.b-fa-flip-horizontal.b-fa-flip-vertical{
  transform:scale(-1, -1);
}
.b-fa-rotate-by{
  transform:rotate(var(--b-fa-rotate-angle, 0));
}
.b-fa-stack{
  display:inline-block;
  height:2em;
  line-height:2em;
  position:relative;
  vertical-align:middle;
  width:2.5em;
}
.b-fa-stack-1x,
.b-fa-stack-2x{
  left:0;
  position:absolute;
  text-align:center;
  width:100%;
  z-index:var(--b-fa-stack-z-index, auto);
}
.b-fa-stack-1x{
  line-height:inherit;
}
.b-fa-stack-2x{
  font-size:2em;
}
.b-fa-inverse{
  color:var(--b-fa-inverse, #fff);
}
.b-fa-0::before{
  content:"\30 ";
}
.b-fa-1::before{
  content:"\31 ";
}
.b-fa-2::before{
  content:"\32 ";
}
.b-fa-3::before{
  content:"\33 ";
}
.b-fa-4::before{
  content:"\34 ";
}
.b-fa-5::before{
  content:"\35 ";
}
.b-fa-6::before{
  content:"\36 ";
}
.b-fa-7::before{
  content:"\37 ";
}
.b-fa-8::before{
  content:"\38 ";
}
.b-fa-9::before{
  content:"\39 ";
}
.b-fa-fill-drip::before{
  content:"\f576";
}
.b-fa-arrows-to-circle::before{
  content:"\e4bd";
}
.b-fa-circle-chevron-right::before{
  content:"\f138";
}
.b-fa-chevron-circle-right::before{
  content:"\f138";
}
.b-fa-at::before{
  content:"\@";
}
.b-fa-trash-can::before{
  content:"\f2ed";
}
.b-fa-trash-alt::before{
  content:"\f2ed";
}
.b-fa-text-height::before{
  content:"\f034";
}
.b-fa-user-xmark::before{
  content:"\f235";
}
.b-fa-user-times::before{
  content:"\f235";
}
.b-fa-stethoscope::before{
  content:"\f0f1";
}
.b-fa-message::before{
  content:"\f27a";
}
.b-fa-comment-alt::before{
  content:"\f27a";
}
.b-fa-info::before{
  content:"\f129";
}
.b-fa-down-left-and-up-right-to-center::before{
  content:"\f422";
}
.b-fa-compress-alt::before{
  content:"\f422";
}
.b-fa-explosion::before{
  content:"\e4e9";
}
.b-fa-file-lines::before{
  content:"\f15c";
}
.b-fa-file-alt::before{
  content:"\f15c";
}
.b-fa-file-text::before{
  content:"\f15c";
}
.b-fa-wave-square::before{
  content:"\f83e";
}
.b-fa-ring::before{
  content:"\f70b";
}
.b-fa-building-un::before{
  content:"\e4d9";
}
.b-fa-dice-three::before{
  content:"\f527";
}
.b-fa-calendar-days::before{
  content:"\f073";
}
.b-fa-calendar-alt::before{
  content:"\f073";
}
.b-fa-anchor-circle-check::before{
  content:"\e4aa";
}
.b-fa-building-circle-arrow-right::before{
  content:"\e4d1";
}
.b-fa-volleyball::before{
  content:"\f45f";
}
.b-fa-volleyball-ball::before{
  content:"\f45f";
}
.b-fa-arrows-up-to-line::before{
  content:"\e4c2";
}
.b-fa-sort-down::before{
  content:"\f0dd";
}
.b-fa-sort-desc::before{
  content:"\f0dd";
}
.b-fa-circle-minus::before{
  content:"\f056";
}
.b-fa-minus-circle::before{
  content:"\f056";
}
.b-fa-door-open::before{
  content:"\f52b";
}
.b-fa-right-from-bracket::before{
  content:"\f2f5";
}
.b-fa-sign-out-alt::before{
  content:"\f2f5";
}
.b-fa-atom::before{
  content:"\f5d2";
}
.b-fa-soap::before{
  content:"\e06e";
}
.b-fa-icons::before{
  content:"\f86d";
}
.b-fa-heart-music-camera-bolt::before{
  content:"\f86d";
}
.b-fa-microphone-lines-slash::before{
  content:"\f539";
}
.b-fa-microphone-alt-slash::before{
  content:"\f539";
}
.b-fa-bridge-circle-check::before{
  content:"\e4c9";
}
.b-fa-pump-medical::before{
  content:"\e06a";
}
.b-fa-fingerprint::before{
  content:"\f577";
}
.b-fa-hand-point-right::before{
  content:"\f0a4";
}
.b-fa-magnifying-glass-location::before{
  content:"\f689";
}
.b-fa-search-location::before{
  content:"\f689";
}
.b-fa-forward-step::before{
  content:"\f051";
}
.b-fa-step-forward::before{
  content:"\f051";
}
.b-fa-face-smile-beam::before{
  content:"\f5b8";
}
.b-fa-smile-beam::before{
  content:"\f5b8";
}
.b-fa-flag-checkered::before{
  content:"\f11e";
}
.b-fa-football::before{
  content:"\f44e";
}
.b-fa-football-ball::before{
  content:"\f44e";
}
.b-fa-school-circle-exclamation::before{
  content:"\e56c";
}
.b-fa-crop::before{
  content:"\f125";
}
.b-fa-angles-down::before{
  content:"\f103";
}
.b-fa-angle-double-down::before{
  content:"\f103";
}
.b-fa-users-rectangle::before{
  content:"\e594";
}
.b-fa-people-roof::before{
  content:"\e537";
}
.b-fa-people-line::before{
  content:"\e534";
}
.b-fa-beer-mug-empty::before{
  content:"\f0fc";
}
.b-fa-beer::before{
  content:"\f0fc";
}
.b-fa-diagram-predecessor::before{
  content:"\e477";
}
.b-fa-arrow-up-long::before{
  content:"\f176";
}
.b-fa-long-arrow-up::before{
  content:"\f176";
}
.b-fa-fire-flame-simple::before{
  content:"\f46a";
}
.b-fa-burn::before{
  content:"\f46a";
}
.b-fa-person::before{
  content:"\f183";
}
.b-fa-male::before{
  content:"\f183";
}
.b-fa-laptop::before{
  content:"\f109";
}
.b-fa-file-csv::before{
  content:"\f6dd";
}
.b-fa-menorah::before{
  content:"\f676";
}
.b-fa-truck-plane::before{
  content:"\e58f";
}
.b-fa-record-vinyl::before{
  content:"\f8d9";
}
.b-fa-face-grin-stars::before{
  content:"\f587";
}
.b-fa-grin-stars::before{
  content:"\f587";
}
.b-fa-bong::before{
  content:"\f55c";
}
.b-fa-spaghetti-monster-flying::before{
  content:"\f67b";
}
.b-fa-pastafarianism::before{
  content:"\f67b";
}
.b-fa-arrow-down-up-across-line::before{
  content:"\e4af";
}
.b-fa-spoon::before{
  content:"\f2e5";
}
.b-fa-utensil-spoon::before{
  content:"\f2e5";
}
.b-fa-jar-wheat::before{
  content:"\e517";
}
.b-fa-envelopes-bulk::before{
  content:"\f674";
}
.b-fa-mail-bulk::before{
  content:"\f674";
}
.b-fa-file-circle-exclamation::before{
  content:"\e4eb";
}
.b-fa-circle-h::before{
  content:"\f47e";
}
.b-fa-hospital-symbol::before{
  content:"\f47e";
}
.b-fa-pager::before{
  content:"\f815";
}
.b-fa-address-book::before{
  content:"\f2b9";
}
.b-fa-contact-book::before{
  content:"\f2b9";
}
.b-fa-strikethrough::before{
  content:"\f0cc";
}
.b-fa-k::before{
  content:"K";
}
.b-fa-landmark-flag::before{
  content:"\e51c";
}
.b-fa-pencil::before{
  content:"\f303";
}
.b-fa-pencil-alt::before{
  content:"\f303";
}
.b-fa-backward::before{
  content:"\f04a";
}
.b-fa-caret-right::before{
  content:"\f0da";
}
.b-fa-comments::before{
  content:"\f086";
}
.b-fa-paste::before{
  content:"\f0ea";
}
.b-fa-file-clipboard::before{
  content:"\f0ea";
}
.b-fa-code-pull-request::before{
  content:"\e13c";
}
.b-fa-clipboard-list::before{
  content:"\f46d";
}
.b-fa-truck-ramp-box::before{
  content:"\f4de";
}
.b-fa-truck-loading::before{
  content:"\f4de";
}
.b-fa-user-check::before{
  content:"\f4fc";
}
.b-fa-vial-virus::before{
  content:"\e597";
}
.b-fa-sheet-plastic::before{
  content:"\e571";
}
.b-fa-blog::before{
  content:"\f781";
}
.b-fa-user-ninja::before{
  content:"\f504";
}
.b-fa-person-arrow-up-from-line::before{
  content:"\e539";
}
.b-fa-scroll-torah::before{
  content:"\f6a0";
}
.b-fa-torah::before{
  content:"\f6a0";
}
.b-fa-broom-ball::before{
  content:"\f458";
}
.b-fa-quidditch::before{
  content:"\f458";
}
.b-fa-quidditch-broom-ball::before{
  content:"\f458";
}
.b-fa-toggle-off::before{
  content:"\f204";
}
.b-fa-box-archive::before{
  content:"\f187";
}
.b-fa-archive::before{
  content:"\f187";
}
.b-fa-person-drowning::before{
  content:"\e545";
}
.b-fa-arrow-down-9-1::before{
  content:"\f886";
}
.b-fa-sort-numeric-desc::before{
  content:"\f886";
}
.b-fa-sort-numeric-down-alt::before{
  content:"\f886";
}
.b-fa-face-grin-tongue-squint::before{
  content:"\f58a";
}
.b-fa-grin-tongue-squint::before{
  content:"\f58a";
}
.b-fa-spray-can::before{
  content:"\f5bd";
}
.b-fa-truck-monster::before{
  content:"\f63b";
}
.b-fa-w::before{
  content:"W";
}
.b-fa-earth-africa::before{
  content:"\f57c";
}
.b-fa-globe-africa::before{
  content:"\f57c";
}
.b-fa-rainbow::before{
  content:"\f75b";
}
.b-fa-circle-notch::before{
  content:"\f1ce";
}
.b-fa-tablet-screen-button::before{
  content:"\f3fa";
}
.b-fa-tablet-alt::before{
  content:"\f3fa";
}
.b-fa-paw::before{
  content:"\f1b0";
}
.b-fa-cloud::before{
  content:"\f0c2";
}
.b-fa-trowel-bricks::before{
  content:"\e58a";
}
.b-fa-face-flushed::before{
  content:"\f579";
}
.b-fa-flushed::before{
  content:"\f579";
}
.b-fa-hospital-user::before{
  content:"\f80d";
}
.b-fa-tent-arrow-left-right::before{
  content:"\e57f";
}
.b-fa-gavel::before{
  content:"\f0e3";
}
.b-fa-legal::before{
  content:"\f0e3";
}
.b-fa-binoculars::before{
  content:"\f1e5";
}
.b-fa-microphone-slash::before{
  content:"\f131";
}
.b-fa-box-tissue::before{
  content:"\e05b";
}
.b-fa-motorcycle::before{
  content:"\f21c";
}
.b-fa-bell-concierge::before{
  content:"\f562";
}
.b-fa-concierge-bell::before{
  content:"\f562";
}
.b-fa-pen-ruler::before{
  content:"\f5ae";
}
.b-fa-pencil-ruler::before{
  content:"\f5ae";
}
.b-fa-people-arrows::before{
  content:"\e068";
}
.b-fa-people-arrows-left-right::before{
  content:"\e068";
}
.b-fa-mars-and-venus-burst::before{
  content:"\e523";
}
.b-fa-square-caret-right::before{
  content:"\f152";
}
.b-fa-caret-square-right::before{
  content:"\f152";
}
.b-fa-scissors::before{
  content:"\f0c4";
}
.b-fa-cut::before{
  content:"\f0c4";
}
.b-fa-sun-plant-wilt::before{
  content:"\e57a";
}
.b-fa-toilets-portable::before{
  content:"\e584";
}
.b-fa-hockey-puck::before{
  content:"\f453";
}
.b-fa-table::before{
  content:"\f0ce";
}
.b-fa-magnifying-glass-arrow-right::before{
  content:"\e521";
}
.b-fa-tachograph-digital::before{
  content:"\f566";
}
.b-fa-digital-tachograph::before{
  content:"\f566";
}
.b-fa-users-slash::before{
  content:"\e073";
}
.b-fa-clover::before{
  content:"\e139";
}
.b-fa-reply::before{
  content:"\f3e5";
}
.b-fa-mail-reply::before{
  content:"\f3e5";
}
.b-fa-star-and-crescent::before{
  content:"\f699";
}
.b-fa-house-fire::before{
  content:"\e50c";
}
.b-fa-square-minus::before{
  content:"\f146";
}
.b-fa-minus-square::before{
  content:"\f146";
}
.b-fa-helicopter::before{
  content:"\f533";
}
.b-fa-compass::before{
  content:"\f14e";
}
.b-fa-square-caret-down::before{
  content:"\f150";
}
.b-fa-caret-square-down::before{
  content:"\f150";
}
.b-fa-file-circle-question::before{
  content:"\e4ef";
}
.b-fa-laptop-code::before{
  content:"\f5fc";
}
.b-fa-swatchbook::before{
  content:"\f5c3";
}
.b-fa-prescription-bottle::before{
  content:"\f485";
}
.b-fa-bars::before{
  content:"\f0c9";
}
.b-fa-navicon::before{
  content:"\f0c9";
}
.b-fa-people-group::before{
  content:"\e533";
}
.b-fa-hourglass-end::before{
  content:"\f253";
}
.b-fa-hourglass-3::before{
  content:"\f253";
}
.b-fa-heart-crack::before{
  content:"\f7a9";
}
.b-fa-heart-broken::before{
  content:"\f7a9";
}
.b-fa-square-up-right::before{
  content:"\f360";
}
.b-fa-external-link-square-alt::before{
  content:"\f360";
}
.b-fa-face-kiss-beam::before{
  content:"\f597";
}
.b-fa-kiss-beam::before{
  content:"\f597";
}
.b-fa-film::before{
  content:"\f008";
}
.b-fa-ruler-horizontal::before{
  content:"\f547";
}
.b-fa-people-robbery::before{
  content:"\e536";
}
.b-fa-lightbulb::before{
  content:"\f0eb";
}
.b-fa-caret-left::before{
  content:"\f0d9";
}
.b-fa-circle-exclamation::before{
  content:"\f06a";
}
.b-fa-exclamation-circle::before{
  content:"\f06a";
}
.b-fa-school-circle-xmark::before{
  content:"\e56d";
}
.b-fa-arrow-right-from-bracket::before{
  content:"\f08b";
}
.b-fa-sign-out::before{
  content:"\f08b";
}
.b-fa-circle-chevron-down::before{
  content:"\f13a";
}
.b-fa-chevron-circle-down::before{
  content:"\f13a";
}
.b-fa-unlock-keyhole::before{
  content:"\f13e";
}
.b-fa-unlock-alt::before{
  content:"\f13e";
}
.b-fa-cloud-showers-heavy::before{
  content:"\f740";
}
.b-fa-headphones-simple::before{
  content:"\f58f";
}
.b-fa-headphones-alt::before{
  content:"\f58f";
}
.b-fa-sitemap::before{
  content:"\f0e8";
}
.b-fa-circle-dollar-to-slot::before{
  content:"\f4b9";
}
.b-fa-donate::before{
  content:"\f4b9";
}
.b-fa-memory::before{
  content:"\f538";
}
.b-fa-road-spikes::before{
  content:"\e568";
}
.b-fa-fire-burner::before{
  content:"\e4f1";
}
.b-fa-flag::before{
  content:"\f024";
}
.b-fa-hanukiah::before{
  content:"\f6e6";
}
.b-fa-feather::before{
  content:"\f52d";
}
.b-fa-volume-low::before{
  content:"\f027";
}
.b-fa-volume-down::before{
  content:"\f027";
}
.b-fa-comment-slash::before{
  content:"\f4b3";
}
.b-fa-cloud-sun-rain::before{
  content:"\f743";
}
.b-fa-compress::before{
  content:"\f066";
}
.b-fa-wheat-awn::before{
  content:"\e2cd";
}
.b-fa-wheat-alt::before{
  content:"\e2cd";
}
.b-fa-ankh::before{
  content:"\f644";
}
.b-fa-hands-holding-child::before{
  content:"\e4fa";
}
.b-fa-asterisk::before{
  content:"\*";
}
.b-fa-square-check::before{
  content:"\f14a";
}
.b-fa-check-square::before{
  content:"\f14a";
}
.b-fa-peseta-sign::before{
  content:"\e221";
}
.b-fa-heading::before{
  content:"\f1dc";
}
.b-fa-header::before{
  content:"\f1dc";
}
.b-fa-ghost::before{
  content:"\f6e2";
}
.b-fa-list::before{
  content:"\f03a";
}
.b-fa-list-squares::before{
  content:"\f03a";
}
.b-fa-square-phone-flip::before{
  content:"\f87b";
}
.b-fa-phone-square-alt::before{
  content:"\f87b";
}
.b-fa-cart-plus::before{
  content:"\f217";
}
.b-fa-gamepad::before{
  content:"\f11b";
}
.b-fa-circle-dot::before{
  content:"\f192";
}
.b-fa-dot-circle::before{
  content:"\f192";
}
.b-fa-face-dizzy::before{
  content:"\f567";
}
.b-fa-dizzy::before{
  content:"\f567";
}
.b-fa-egg::before{
  content:"\f7fb";
}
.b-fa-house-medical-circle-xmark::before{
  content:"\e513";
}
.b-fa-campground::before{
  content:"\f6bb";
}
.b-fa-folder-plus::before{
  content:"\f65e";
}
.b-fa-futbol::before{
  content:"\f1e3";
}
.b-fa-futbol-ball::before{
  content:"\f1e3";
}
.b-fa-soccer-ball::before{
  content:"\f1e3";
}
.b-fa-paintbrush::before{
  content:"\f1fc";
}
.b-fa-paint-brush::before{
  content:"\f1fc";
}
.b-fa-lock::before{
  content:"\f023";
}
.b-fa-gas-pump::before{
  content:"\f52f";
}
.b-fa-hot-tub-person::before{
  content:"\f593";
}
.b-fa-hot-tub::before{
  content:"\f593";
}
.b-fa-map-location::before{
  content:"\f59f";
}
.b-fa-map-marked::before{
  content:"\f59f";
}
.b-fa-house-flood-water::before{
  content:"\e50e";
}
.b-fa-tree::before{
  content:"\f1bb";
}
.b-fa-bridge-lock::before{
  content:"\e4cc";
}
.b-fa-sack-dollar::before{
  content:"\f81d";
}
.b-fa-pen-to-square::before{
  content:"\f044";
}
.b-fa-edit::before{
  content:"\f044";
}
.b-fa-car-side::before{
  content:"\f5e4";
}
.b-fa-share-nodes::before{
  content:"\f1e0";
}
.b-fa-share-alt::before{
  content:"\f1e0";
}
.b-fa-heart-circle-minus::before{
  content:"\e4ff";
}
.b-fa-hourglass-half::before{
  content:"\f252";
}
.b-fa-hourglass-2::before{
  content:"\f252";
}
.b-fa-microscope::before{
  content:"\f610";
}
.b-fa-sink::before{
  content:"\e06d";
}
.b-fa-bag-shopping::before{
  content:"\f290";
}
.b-fa-shopping-bag::before{
  content:"\f290";
}
.b-fa-arrow-down-z-a::before{
  content:"\f881";
}
.b-fa-sort-alpha-desc::before{
  content:"\f881";
}
.b-fa-sort-alpha-down-alt::before{
  content:"\f881";
}
.b-fa-mitten::before{
  content:"\f7b5";
}
.b-fa-person-rays::before{
  content:"\e54d";
}
.b-fa-users::before{
  content:"\f0c0";
}
.b-fa-eye-slash::before{
  content:"\f070";
}
.b-fa-flask-vial::before{
  content:"\e4f3";
}
.b-fa-hand::before{
  content:"\f256";
}
.b-fa-hand-paper::before{
  content:"\f256";
}
.b-fa-om::before{
  content:"\f679";
}
.b-fa-worm::before{
  content:"\e599";
}
.b-fa-house-circle-xmark::before{
  content:"\e50b";
}
.b-fa-plug::before{
  content:"\f1e6";
}
.b-fa-chevron-up::before{
  content:"\f077";
}
.b-fa-hand-spock::before{
  content:"\f259";
}
.b-fa-stopwatch::before{
  content:"\f2f2";
}
.b-fa-face-kiss::before{
  content:"\f596";
}
.b-fa-kiss::before{
  content:"\f596";
}
.b-fa-bridge-circle-xmark::before{
  content:"\e4cb";
}
.b-fa-face-grin-tongue::before{
  content:"\f589";
}
.b-fa-grin-tongue::before{
  content:"\f589";
}
.b-fa-chess-bishop::before{
  content:"\f43a";
}
.b-fa-face-grin-wink::before{
  content:"\f58c";
}
.b-fa-grin-wink::before{
  content:"\f58c";
}
.b-fa-ear-deaf::before{
  content:"\f2a4";
}
.b-fa-deaf::before{
  content:"\f2a4";
}
.b-fa-deafness::before{
  content:"\f2a4";
}
.b-fa-hard-of-hearing::before{
  content:"\f2a4";
}
.b-fa-road-circle-check::before{
  content:"\e564";
}
.b-fa-dice-five::before{
  content:"\f523";
}
.b-fa-square-rss::before{
  content:"\f143";
}
.b-fa-rss-square::before{
  content:"\f143";
}
.b-fa-land-mine-on::before{
  content:"\e51b";
}
.b-fa-i-cursor::before{
  content:"\f246";
}
.b-fa-stamp::before{
  content:"\f5bf";
}
.b-fa-stairs::before{
  content:"\e289";
}
.b-fa-i::before{
  content:"I";
}
.b-fa-hryvnia-sign::before{
  content:"\f6f2";
}
.b-fa-hryvnia::before{
  content:"\f6f2";
}
.b-fa-pills::before{
  content:"\f484";
}
.b-fa-face-grin-wide::before{
  content:"\f581";
}
.b-fa-grin-alt::before{
  content:"\f581";
}
.b-fa-tooth::before{
  content:"\f5c9";
}
.b-fa-v::before{
  content:"V";
}
.b-fa-bangladeshi-taka-sign::before{
  content:"\e2e6";
}
.b-fa-bicycle::before{
  content:"\f206";
}
.b-fa-staff-snake::before{
  content:"\e579";
}
.b-fa-rod-asclepius::before{
  content:"\e579";
}
.b-fa-rod-snake::before{
  content:"\e579";
}
.b-fa-staff-aesculapius::before{
  content:"\e579";
}
.b-fa-head-side-cough-slash::before{
  content:"\e062";
}
.b-fa-truck-medical::before{
  content:"\f0f9";
}
.b-fa-ambulance::before{
  content:"\f0f9";
}
.b-fa-wheat-awn-circle-exclamation::before{
  content:"\e598";
}
.b-fa-snowman::before{
  content:"\f7d0";
}
.b-fa-mortar-pestle::before{
  content:"\f5a7";
}
.b-fa-road-barrier::before{
  content:"\e562";
}
.b-fa-school::before{
  content:"\f549";
}
.b-fa-igloo::before{
  content:"\f7ae";
}
.b-fa-joint::before{
  content:"\f595";
}
.b-fa-angle-right::before{
  content:"\f105";
}
.b-fa-horse::before{
  content:"\f6f0";
}
.b-fa-q::before{
  content:"Q";
}
.b-fa-g::before{
  content:"G";
}
.b-fa-notes-medical::before{
  content:"\f481";
}
.b-fa-temperature-half::before{
  content:"\f2c9";
}
.b-fa-temperature-2::before{
  content:"\f2c9";
}
.b-fa-thermometer-2::before{
  content:"\f2c9";
}
.b-fa-thermometer-half::before{
  content:"\f2c9";
}
.b-fa-dong-sign::before{
  content:"\e169";
}
.b-fa-capsules::before{
  content:"\f46b";
}
.b-fa-poo-storm::before{
  content:"\f75a";
}
.b-fa-poo-bolt::before{
  content:"\f75a";
}
.b-fa-face-frown-open::before{
  content:"\f57a";
}
.b-fa-frown-open::before{
  content:"\f57a";
}
.b-fa-hand-point-up::before{
  content:"\f0a6";
}
.b-fa-money-bill::before{
  content:"\f0d6";
}
.b-fa-bookmark::before{
  content:"\f02e";
}
.b-fa-align-justify::before{
  content:"\f039";
}
.b-fa-umbrella-beach::before{
  content:"\f5ca";
}
.b-fa-helmet-un::before{
  content:"\e503";
}
.b-fa-bullseye::before{
  content:"\f140";
}
.b-fa-bacon::before{
  content:"\f7e5";
}
.b-fa-hand-point-down::before{
  content:"\f0a7";
}
.b-fa-arrow-up-from-bracket::before{
  content:"\e09a";
}
.b-fa-folder::before{
  content:"\f07b";
}
.b-fa-folder-blank::before{
  content:"\f07b";
}
.b-fa-file-waveform::before{
  content:"\f478";
}
.b-fa-file-medical-alt::before{
  content:"\f478";
}
.b-fa-radiation::before{
  content:"\f7b9";
}
.b-fa-chart-simple::before{
  content:"\e473";
}
.b-fa-mars-stroke::before{
  content:"\f229";
}
.b-fa-vial::before{
  content:"\f492";
}
.b-fa-gauge::before{
  content:"\f624";
}
.b-fa-dashboard::before{
  content:"\f624";
}
.b-fa-gauge-med::before{
  content:"\f624";
}
.b-fa-tachometer-alt-average::before{
  content:"\f624";
}
.b-fa-wand-magic-sparkles::before{
  content:"\e2ca";
}
.b-fa-magic-wand-sparkles::before{
  content:"\e2ca";
}
.b-fa-e::before{
  content:"E";
}
.b-fa-pen-clip::before{
  content:"\f305";
}
.b-fa-pen-alt::before{
  content:"\f305";
}
.b-fa-bridge-circle-exclamation::before{
  content:"\e4ca";
}
.b-fa-user::before{
  content:"\f007";
}
.b-fa-school-circle-check::before{
  content:"\e56b";
}
.b-fa-dumpster::before{
  content:"\f793";
}
.b-fa-van-shuttle::before{
  content:"\f5b6";
}
.b-fa-shuttle-van::before{
  content:"\f5b6";
}
.b-fa-building-user::before{
  content:"\e4da";
}
.b-fa-square-caret-left::before{
  content:"\f191";
}
.b-fa-caret-square-left::before{
  content:"\f191";
}
.b-fa-highlighter::before{
  content:"\f591";
}
.b-fa-key::before{
  content:"\f084";
}
.b-fa-bullhorn::before{
  content:"\f0a1";
}
.b-fa-globe::before{
  content:"\f0ac";
}
.b-fa-synagogue::before{
  content:"\f69b";
}
.b-fa-person-half-dress::before{
  content:"\e548";
}
.b-fa-road-bridge::before{
  content:"\e563";
}
.b-fa-location-arrow::before{
  content:"\f124";
}
.b-fa-c::before{
  content:"C";
}
.b-fa-tablet-button::before{
  content:"\f10a";
}
.b-fa-building-lock::before{
  content:"\e4d6";
}
.b-fa-pizza-slice::before{
  content:"\f818";
}
.b-fa-money-bill-wave::before{
  content:"\f53a";
}
.b-fa-chart-area::before{
  content:"\f1fe";
}
.b-fa-area-chart::before{
  content:"\f1fe";
}
.b-fa-house-flag::before{
  content:"\e50d";
}
.b-fa-person-circle-minus::before{
  content:"\e540";
}
.b-fa-ban::before{
  content:"\f05e";
}
.b-fa-cancel::before{
  content:"\f05e";
}
.b-fa-camera-rotate::before{
  content:"\e0d8";
}
.b-fa-spray-can-sparkles::before{
  content:"\f5d0";
}
.b-fa-air-freshener::before{
  content:"\f5d0";
}
.b-fa-star::before{
  content:"\f005";
}
.b-fa-repeat::before{
  content:"\f363";
}
.b-fa-cross::before{
  content:"\f654";
}
.b-fa-box::before{
  content:"\f466";
}
.b-fa-venus-mars::before{
  content:"\f228";
}
.b-fa-arrow-pointer::before{
  content:"\f245";
}
.b-fa-mouse-pointer::before{
  content:"\f245";
}
.b-fa-maximize::before{
  content:"\f31e";
}
.b-fa-expand-arrows-alt::before{
  content:"\f31e";
}
.b-fa-charging-station::before{
  content:"\f5e7";
}
.b-fa-shapes::before{
  content:"\f61f";
}
.b-fa-triangle-circle-square::before{
  content:"\f61f";
}
.b-fa-shuffle::before{
  content:"\f074";
}
.b-fa-random::before{
  content:"\f074";
}
.b-fa-person-running::before{
  content:"\f70c";
}
.b-fa-running::before{
  content:"\f70c";
}
.b-fa-mobile-retro::before{
  content:"\e527";
}
.b-fa-grip-lines-vertical::before{
  content:"\f7a5";
}
.b-fa-spider::before{
  content:"\f717";
}
.b-fa-hands-bound::before{
  content:"\e4f9";
}
.b-fa-file-invoice-dollar::before{
  content:"\f571";
}
.b-fa-plane-circle-exclamation::before{
  content:"\e556";
}
.b-fa-x-ray::before{
  content:"\f497";
}
.b-fa-spell-check::before{
  content:"\f891";
}
.b-fa-slash::before{
  content:"\f715";
}
.b-fa-computer-mouse::before{
  content:"\f8cc";
}
.b-fa-mouse::before{
  content:"\f8cc";
}
.b-fa-arrow-right-to-bracket::before{
  content:"\f090";
}
.b-fa-sign-in::before{
  content:"\f090";
}
.b-fa-shop-slash::before{
  content:"\e070";
}
.b-fa-store-alt-slash::before{
  content:"\e070";
}
.b-fa-server::before{
  content:"\f233";
}
.b-fa-virus-covid-slash::before{
  content:"\e4a9";
}
.b-fa-shop-lock::before{
  content:"\e4a5";
}
.b-fa-hourglass-start::before{
  content:"\f251";
}
.b-fa-hourglass-1::before{
  content:"\f251";
}
.b-fa-blender-phone::before{
  content:"\f6b6";
}
.b-fa-building-wheat::before{
  content:"\e4db";
}
.b-fa-person-breastfeeding::before{
  content:"\e53a";
}
.b-fa-right-to-bracket::before{
  content:"\f2f6";
}
.b-fa-sign-in-alt::before{
  content:"\f2f6";
}
.b-fa-venus::before{
  content:"\f221";
}
.b-fa-passport::before{
  content:"\f5ab";
}
.b-fa-thumbtack-slash::before{
  content:"\e68f";
}
.b-fa-thumb-tack-slash::before{
  content:"\e68f";
}
.b-fa-heart-pulse::before{
  content:"\f21e";
}
.b-fa-heartbeat::before{
  content:"\f21e";
}
.b-fa-people-carry-box::before{
  content:"\f4ce";
}
.b-fa-people-carry::before{
  content:"\f4ce";
}
.b-fa-temperature-high::before{
  content:"\f769";
}
.b-fa-microchip::before{
  content:"\f2db";
}
.b-fa-crown::before{
  content:"\f521";
}
.b-fa-weight-hanging::before{
  content:"\f5cd";
}
.b-fa-xmarks-lines::before{
  content:"\e59a";
}
.b-fa-file-prescription::before{
  content:"\f572";
}
.b-fa-weight-scale::before{
  content:"\f496";
}
.b-fa-weight::before{
  content:"\f496";
}
.b-fa-user-group::before{
  content:"\f500";
}
.b-fa-user-friends::before{
  content:"\f500";
}
.b-fa-arrow-up-a-z::before{
  content:"\f15e";
}
.b-fa-sort-alpha-up::before{
  content:"\f15e";
}
.b-fa-chess-knight::before{
  content:"\f441";
}
.b-fa-face-laugh-squint::before{
  content:"\f59b";
}
.b-fa-laugh-squint::before{
  content:"\f59b";
}
.b-fa-wheelchair::before{
  content:"\f193";
}
.b-fa-circle-arrow-up::before{
  content:"\f0aa";
}
.b-fa-arrow-circle-up::before{
  content:"\f0aa";
}
.b-fa-toggle-on::before{
  content:"\f205";
}
.b-fa-person-walking::before{
  content:"\f554";
}
.b-fa-walking::before{
  content:"\f554";
}
.b-fa-l::before{
  content:"L";
}
.b-fa-fire::before{
  content:"\f06d";
}
.b-fa-bed-pulse::before{
  content:"\f487";
}
.b-fa-procedures::before{
  content:"\f487";
}
.b-fa-shuttle-space::before{
  content:"\f197";
}
.b-fa-space-shuttle::before{
  content:"\f197";
}
.b-fa-face-laugh::before{
  content:"\f599";
}
.b-fa-laugh::before{
  content:"\f599";
}
.b-fa-folder-open::before{
  content:"\f07c";
}
.b-fa-heart-circle-plus::before{
  content:"\e500";
}
.b-fa-code-fork::before{
  content:"\e13b";
}
.b-fa-city::before{
  content:"\f64f";
}
.b-fa-microphone-lines::before{
  content:"\f3c9";
}
.b-fa-microphone-alt::before{
  content:"\f3c9";
}
.b-fa-pepper-hot::before{
  content:"\f816";
}
.b-fa-unlock::before{
  content:"\f09c";
}
.b-fa-colon-sign::before{
  content:"\e140";
}
.b-fa-headset::before{
  content:"\f590";
}
.b-fa-store-slash::before{
  content:"\e071";
}
.b-fa-road-circle-xmark::before{
  content:"\e566";
}
.b-fa-user-minus::before{
  content:"\f503";
}
.b-fa-mars-stroke-up::before{
  content:"\f22a";
}
.b-fa-mars-stroke-v::before{
  content:"\f22a";
}
.b-fa-champagne-glasses::before{
  content:"\f79f";
}
.b-fa-glass-cheers::before{
  content:"\f79f";
}
.b-fa-clipboard::before{
  content:"\f328";
}
.b-fa-house-circle-exclamation::before{
  content:"\e50a";
}
.b-fa-file-arrow-up::before{
  content:"\f574";
}
.b-fa-file-upload::before{
  content:"\f574";
}
.b-fa-wifi::before{
  content:"\f1eb";
}
.b-fa-wifi-3::before{
  content:"\f1eb";
}
.b-fa-wifi-strong::before{
  content:"\f1eb";
}
.b-fa-bath::before{
  content:"\f2cd";
}
.b-fa-bathtub::before{
  content:"\f2cd";
}
.b-fa-underline::before{
  content:"\f0cd";
}
.b-fa-user-pen::before{
  content:"\f4ff";
}
.b-fa-user-edit::before{
  content:"\f4ff";
}
.b-fa-signature::before{
  content:"\f5b7";
}
.b-fa-stroopwafel::before{
  content:"\f551";
}
.b-fa-bold::before{
  content:"\f032";
}
.b-fa-anchor-lock::before{
  content:"\e4ad";
}
.b-fa-building-ngo::before{
  content:"\e4d7";
}
.b-fa-manat-sign::before{
  content:"\e1d5";
}
.b-fa-not-equal::before{
  content:"\f53e";
}
.b-fa-border-top-left::before{
  content:"\f853";
}
.b-fa-border-style::before{
  content:"\f853";
}
.b-fa-map-location-dot::before{
  content:"\f5a0";
}
.b-fa-map-marked-alt::before{
  content:"\f5a0";
}
.b-fa-jedi::before{
  content:"\f669";
}
.b-fa-square-poll-vertical::before{
  content:"\f681";
}
.b-fa-poll::before{
  content:"\f681";
}
.b-fa-mug-hot::before{
  content:"\f7b6";
}
.b-fa-car-battery::before{
  content:"\f5df";
}
.b-fa-battery-car::before{
  content:"\f5df";
}
.b-fa-gift::before{
  content:"\f06b";
}
.b-fa-dice-two::before{
  content:"\f528";
}
.b-fa-chess-queen::before{
  content:"\f445";
}
.b-fa-glasses::before{
  content:"\f530";
}
.b-fa-chess-board::before{
  content:"\f43c";
}
.b-fa-building-circle-check::before{
  content:"\e4d2";
}
.b-fa-person-chalkboard::before{
  content:"\e53d";
}
.b-fa-mars-stroke-right::before{
  content:"\f22b";
}
.b-fa-mars-stroke-h::before{
  content:"\f22b";
}
.b-fa-hand-back-fist::before{
  content:"\f255";
}
.b-fa-hand-rock::before{
  content:"\f255";
}
.b-fa-square-caret-up::before{
  content:"\f151";
}
.b-fa-caret-square-up::before{
  content:"\f151";
}
.b-fa-cloud-showers-water::before{
  content:"\e4e4";
}
.b-fa-chart-bar::before{
  content:"\f080";
}
.b-fa-bar-chart::before{
  content:"\f080";
}
.b-fa-hands-bubbles::before{
  content:"\e05e";
}
.b-fa-hands-wash::before{
  content:"\e05e";
}
.b-fa-less-than-equal::before{
  content:"\f537";
}
.b-fa-train::before{
  content:"\f238";
}
.b-fa-eye-low-vision::before{
  content:"\f2a8";
}
.b-fa-low-vision::before{
  content:"\f2a8";
}
.b-fa-crow::before{
  content:"\f520";
}
.b-fa-sailboat::before{
  content:"\e445";
}
.b-fa-window-restore::before{
  content:"\f2d2";
}
.b-fa-square-plus::before{
  content:"\f0fe";
}
.b-fa-plus-square::before{
  content:"\f0fe";
}
.b-fa-torii-gate::before{
  content:"\f6a1";
}
.b-fa-frog::before{
  content:"\f52e";
}
.b-fa-bucket::before{
  content:"\e4cf";
}
.b-fa-image::before{
  content:"\f03e";
}
.b-fa-microphone::before{
  content:"\f130";
}
.b-fa-cow::before{
  content:"\f6c8";
}
.b-fa-caret-up::before{
  content:"\f0d8";
}
.b-fa-screwdriver::before{
  content:"\f54a";
}
.b-fa-folder-closed::before{
  content:"\e185";
}
.b-fa-house-tsunami::before{
  content:"\e515";
}
.b-fa-square-nfi::before{
  content:"\e576";
}
.b-fa-arrow-up-from-ground-water::before{
  content:"\e4b5";
}
.b-fa-martini-glass::before{
  content:"\f57b";
}
.b-fa-glass-martini-alt::before{
  content:"\f57b";
}
.b-fa-rotate-left::before{
  content:"\f2ea";
}
.b-fa-rotate-back::before{
  content:"\f2ea";
}
.b-fa-rotate-backward::before{
  content:"\f2ea";
}
.b-fa-undo-alt::before{
  content:"\f2ea";
}
.b-fa-table-columns::before{
  content:"\f0db";
}
.b-fa-columns::before{
  content:"\f0db";
}
.b-fa-lemon::before{
  content:"\f094";
}
.b-fa-head-side-mask::before{
  content:"\e063";
}
.b-fa-handshake::before{
  content:"\f2b5";
}
.b-fa-gem::before{
  content:"\f3a5";
}
.b-fa-dolly::before{
  content:"\f472";
}
.b-fa-dolly-box::before{
  content:"\f472";
}
.b-fa-smoking::before{
  content:"\f48d";
}
.b-fa-minimize::before{
  content:"\f78c";
}
.b-fa-compress-arrows-alt::before{
  content:"\f78c";
}
.b-fa-monument::before{
  content:"\f5a6";
}
.b-fa-snowplow::before{
  content:"\f7d2";
}
.b-fa-angles-right::before{
  content:"\f101";
}
.b-fa-angle-double-right::before{
  content:"\f101";
}
.b-fa-cannabis::before{
  content:"\f55f";
}
.b-fa-circle-play::before{
  content:"\f144";
}
.b-fa-play-circle::before{
  content:"\f144";
}
.b-fa-tablets::before{
  content:"\f490";
}
.b-fa-ethernet::before{
  content:"\f796";
}
.b-fa-euro-sign::before{
  content:"\f153";
}
.b-fa-eur::before{
  content:"\f153";
}
.b-fa-euro::before{
  content:"\f153";
}
.b-fa-chair::before{
  content:"\f6c0";
}
.b-fa-circle-check::before{
  content:"\f058";
}
.b-fa-check-circle::before{
  content:"\f058";
}
.b-fa-circle-stop::before{
  content:"\f28d";
}
.b-fa-stop-circle::before{
  content:"\f28d";
}
.b-fa-compass-drafting::before{
  content:"\f568";
}
.b-fa-drafting-compass::before{
  content:"\f568";
}
.b-fa-plate-wheat::before{
  content:"\e55a";
}
.b-fa-icicles::before{
  content:"\f7ad";
}
.b-fa-person-shelter::before{
  content:"\e54f";
}
.b-fa-neuter::before{
  content:"\f22c";
}
.b-fa-id-badge::before{
  content:"\f2c1";
}
.b-fa-marker::before{
  content:"\f5a1";
}
.b-fa-face-laugh-beam::before{
  content:"\f59a";
}
.b-fa-laugh-beam::before{
  content:"\f59a";
}
.b-fa-helicopter-symbol::before{
  content:"\e502";
}
.b-fa-universal-access::before{
  content:"\f29a";
}
.b-fa-circle-chevron-up::before{
  content:"\f139";
}
.b-fa-chevron-circle-up::before{
  content:"\f139";
}
.b-fa-lari-sign::before{
  content:"\e1c8";
}
.b-fa-volcano::before{
  content:"\f770";
}
.b-fa-person-walking-dashed-line-arrow-right::before{
  content:"\e553";
}
.b-fa-sterling-sign::before{
  content:"\f154";
}
.b-fa-gbp::before{
  content:"\f154";
}
.b-fa-pound-sign::before{
  content:"\f154";
}
.b-fa-viruses::before{
  content:"\e076";
}
.b-fa-square-person-confined::before{
  content:"\e577";
}
.b-fa-user-tie::before{
  content:"\f508";
}
.b-fa-arrow-down-long::before{
  content:"\f175";
}
.b-fa-long-arrow-down::before{
  content:"\f175";
}
.b-fa-tent-arrow-down-to-line::before{
  content:"\e57e";
}
.b-fa-certificate::before{
  content:"\f0a3";
}
.b-fa-reply-all::before{
  content:"\f122";
}
.b-fa-mail-reply-all::before{
  content:"\f122";
}
.b-fa-suitcase::before{
  content:"\f0f2";
}
.b-fa-person-skating::before{
  content:"\f7c5";
}
.b-fa-skating::before{
  content:"\f7c5";
}
.b-fa-filter-circle-dollar::before{
  content:"\f662";
}
.b-fa-funnel-dollar::before{
  content:"\f662";
}
.b-fa-camera-retro::before{
  content:"\f083";
}
.b-fa-circle-arrow-down::before{
  content:"\f0ab";
}
.b-fa-arrow-circle-down::before{
  content:"\f0ab";
}
.b-fa-file-import::before{
  content:"\f56f";
}
.b-fa-arrow-right-to-file::before{
  content:"\f56f";
}
.b-fa-square-arrow-up-right::before{
  content:"\f14c";
}
.b-fa-external-link-square::before{
  content:"\f14c";
}
.b-fa-box-open::before{
  content:"\f49e";
}
.b-fa-scroll::before{
  content:"\f70e";
}
.b-fa-spa::before{
  content:"\f5bb";
}
.b-fa-location-pin-lock::before{
  content:"\e51f";
}
.b-fa-pause::before{
  content:"\f04c";
}
.b-fa-hill-avalanche::before{
  content:"\e507";
}
.b-fa-temperature-empty::before{
  content:"\f2cb";
}
.b-fa-temperature-0::before{
  content:"\f2cb";
}
.b-fa-thermometer-0::before{
  content:"\f2cb";
}
.b-fa-thermometer-empty::before{
  content:"\f2cb";
}
.b-fa-bomb::before{
  content:"\f1e2";
}
.b-fa-registered::before{
  content:"\f25d";
}
.b-fa-address-card::before{
  content:"\f2bb";
}
.b-fa-contact-card::before{
  content:"\f2bb";
}
.b-fa-vcard::before{
  content:"\f2bb";
}
.b-fa-scale-unbalanced-flip::before{
  content:"\f516";
}
.b-fa-balance-scale-right::before{
  content:"\f516";
}
.b-fa-subscript::before{
  content:"\f12c";
}
.b-fa-diamond-turn-right::before{
  content:"\f5eb";
}
.b-fa-directions::before{
  content:"\f5eb";
}
.b-fa-burst::before{
  content:"\e4dc";
}
.b-fa-house-laptop::before{
  content:"\e066";
}
.b-fa-laptop-house::before{
  content:"\e066";
}
.b-fa-face-tired::before{
  content:"\f5c8";
}
.b-fa-tired::before{
  content:"\f5c8";
}
.b-fa-money-bills::before{
  content:"\e1f3";
}
.b-fa-smog::before{
  content:"\f75f";
}
.b-fa-crutch::before{
  content:"\f7f7";
}
.b-fa-cloud-arrow-up::before{
  content:"\f0ee";
}
.b-fa-cloud-upload::before{
  content:"\f0ee";
}
.b-fa-cloud-upload-alt::before{
  content:"\f0ee";
}
.b-fa-palette::before{
  content:"\f53f";
}
.b-fa-arrows-turn-right::before{
  content:"\e4c0";
}
.b-fa-vest::before{
  content:"\e085";
}
.b-fa-ferry::before{
  content:"\e4ea";
}
.b-fa-arrows-down-to-people::before{
  content:"\e4b9";
}
.b-fa-seedling::before{
  content:"\f4d8";
}
.b-fa-sprout::before{
  content:"\f4d8";
}
.b-fa-left-right::before{
  content:"\f337";
}
.b-fa-arrows-alt-h::before{
  content:"\f337";
}
.b-fa-boxes-packing::before{
  content:"\e4c7";
}
.b-fa-circle-arrow-left::before{
  content:"\f0a8";
}
.b-fa-arrow-circle-left::before{
  content:"\f0a8";
}
.b-fa-group-arrows-rotate::before{
  content:"\e4f6";
}
.b-fa-bowl-food::before{
  content:"\e4c6";
}
.b-fa-candy-cane::before{
  content:"\f786";
}
.b-fa-arrow-down-wide-short::before{
  content:"\f160";
}
.b-fa-sort-amount-asc::before{
  content:"\f160";
}
.b-fa-sort-amount-down::before{
  content:"\f160";
}
.b-fa-cloud-bolt::before{
  content:"\f76c";
}
.b-fa-thunderstorm::before{
  content:"\f76c";
}
.b-fa-text-slash::before{
  content:"\f87d";
}
.b-fa-remove-format::before{
  content:"\f87d";
}
.b-fa-face-smile-wink::before{
  content:"\f4da";
}
.b-fa-smile-wink::before{
  content:"\f4da";
}
.b-fa-file-word::before{
  content:"\f1c2";
}
.b-fa-file-powerpoint::before{
  content:"\f1c4";
}
.b-fa-arrows-left-right::before{
  content:"\f07e";
}
.b-fa-arrows-h::before{
  content:"\f07e";
}
.b-fa-house-lock::before{
  content:"\e510";
}
.b-fa-cloud-arrow-down::before{
  content:"\f0ed";
}
.b-fa-cloud-download::before{
  content:"\f0ed";
}
.b-fa-cloud-download-alt::before{
  content:"\f0ed";
}
.b-fa-children::before{
  content:"\e4e1";
}
.b-fa-chalkboard::before{
  content:"\f51b";
}
.b-fa-blackboard::before{
  content:"\f51b";
}
.b-fa-user-large-slash::before{
  content:"\f4fa";
}
.b-fa-user-alt-slash::before{
  content:"\f4fa";
}
.b-fa-envelope-open::before{
  content:"\f2b6";
}
.b-fa-handshake-simple-slash::before{
  content:"\e05f";
}
.b-fa-handshake-alt-slash::before{
  content:"\e05f";
}
.b-fa-mattress-pillow::before{
  content:"\e525";
}
.b-fa-guarani-sign::before{
  content:"\e19a";
}
.b-fa-arrows-rotate::before{
  content:"\f021";
}
.b-fa-refresh::before{
  content:"\f021";
}
.b-fa-sync::before{
  content:"\f021";
}
.b-fa-fire-extinguisher::before{
  content:"\f134";
}
.b-fa-cruzeiro-sign::before{
  content:"\e152";
}
.b-fa-greater-than-equal::before{
  content:"\f532";
}
.b-fa-shield-halved::before{
  content:"\f3ed";
}
.b-fa-shield-alt::before{
  content:"\f3ed";
}
.b-fa-book-atlas::before{
  content:"\f558";
}
.b-fa-atlas::before{
  content:"\f558";
}
.b-fa-virus::before{
  content:"\e074";
}
.b-fa-envelope-circle-check::before{
  content:"\e4e8";
}
.b-fa-layer-group::before{
  content:"\f5fd";
}
.b-fa-arrows-to-dot::before{
  content:"\e4be";
}
.b-fa-archway::before{
  content:"\f557";
}
.b-fa-heart-circle-check::before{
  content:"\e4fd";
}
.b-fa-house-chimney-crack::before{
  content:"\f6f1";
}
.b-fa-house-damage::before{
  content:"\f6f1";
}
.b-fa-file-zipper::before{
  content:"\f1c6";
}
.b-fa-file-archive::before{
  content:"\f1c6";
}
.b-fa-square::before{
  content:"\f0c8";
}
.b-fa-martini-glass-empty::before{
  content:"\f000";
}
.b-fa-glass-martini::before{
  content:"\f000";
}
.b-fa-couch::before{
  content:"\f4b8";
}
.b-fa-cedi-sign::before{
  content:"\e0df";
}
.b-fa-italic::before{
  content:"\f033";
}
.b-fa-table-cells-column-lock::before{
  content:"\e678";
}
.b-fa-church::before{
  content:"\f51d";
}
.b-fa-comments-dollar::before{
  content:"\f653";
}
.b-fa-democrat::before{
  content:"\f747";
}
.b-fa-z::before{
  content:"Z";
}
.b-fa-person-skiing::before{
  content:"\f7c9";
}
.b-fa-skiing::before{
  content:"\f7c9";
}
.b-fa-road-lock::before{
  content:"\e567";
}
.b-fa-a::before{
  content:"A";
}
.b-fa-temperature-arrow-down::before{
  content:"\e03f";
}
.b-fa-temperature-down::before{
  content:"\e03f";
}
.b-fa-feather-pointed::before{
  content:"\f56b";
}
.b-fa-feather-alt::before{
  content:"\f56b";
}
.b-fa-p::before{
  content:"P";
}
.b-fa-snowflake::before{
  content:"\f2dc";
}
.b-fa-newspaper::before{
  content:"\f1ea";
}
.b-fa-rectangle-ad::before{
  content:"\f641";
}
.b-fa-ad::before{
  content:"\f641";
}
.b-fa-circle-arrow-right::before{
  content:"\f0a9";
}
.b-fa-arrow-circle-right::before{
  content:"\f0a9";
}
.b-fa-filter-circle-xmark::before{
  content:"\e17b";
}
.b-fa-locust::before{
  content:"\e520";
}
.b-fa-sort::before{
  content:"\f0dc";
}
.b-fa-unsorted::before{
  content:"\f0dc";
}
.b-fa-list-ol::before{
  content:"\f0cb";
}
.b-fa-list-1-2::before{
  content:"\f0cb";
}
.b-fa-list-numeric::before{
  content:"\f0cb";
}
.b-fa-person-dress-burst::before{
  content:"\e544";
}
.b-fa-money-check-dollar::before{
  content:"\f53d";
}
.b-fa-money-check-alt::before{
  content:"\f53d";
}
.b-fa-vector-square::before{
  content:"\f5cb";
}
.b-fa-bread-slice::before{
  content:"\f7ec";
}
.b-fa-language::before{
  content:"\f1ab";
}
.b-fa-face-kiss-wink-heart::before{
  content:"\f598";
}
.b-fa-kiss-wink-heart::before{
  content:"\f598";
}
.b-fa-filter::before{
  content:"\f0b0";
}
.b-fa-question::before{
  content:"\?";
}
.b-fa-file-signature::before{
  content:"\f573";
}
.b-fa-up-down-left-right::before{
  content:"\f0b2";
}
.b-fa-arrows-alt::before{
  content:"\f0b2";
}
.b-fa-house-chimney-user::before{
  content:"\e065";
}
.b-fa-hand-holding-heart::before{
  content:"\f4be";
}
.b-fa-puzzle-piece::before{
  content:"\f12e";
}
.b-fa-money-check::before{
  content:"\f53c";
}
.b-fa-star-half-stroke::before{
  content:"\f5c0";
}
.b-fa-star-half-alt::before{
  content:"\f5c0";
}
.b-fa-code::before{
  content:"\f121";
}
.b-fa-whiskey-glass::before{
  content:"\f7a0";
}
.b-fa-glass-whiskey::before{
  content:"\f7a0";
}
.b-fa-building-circle-exclamation::before{
  content:"\e4d3";
}
.b-fa-magnifying-glass-chart::before{
  content:"\e522";
}
.b-fa-arrow-up-right-from-square::before{
  content:"\f08e";
}
.b-fa-external-link::before{
  content:"\f08e";
}
.b-fa-cubes-stacked::before{
  content:"\e4e6";
}
.b-fa-won-sign::before{
  content:"\f159";
}
.b-fa-krw::before{
  content:"\f159";
}
.b-fa-won::before{
  content:"\f159";
}
.b-fa-virus-covid::before{
  content:"\e4a8";
}
.b-fa-austral-sign::before{
  content:"\e0a9";
}
.b-fa-f::before{
  content:"F";
}
.b-fa-leaf::before{
  content:"\f06c";
}
.b-fa-road::before{
  content:"\f018";
}
.b-fa-taxi::before{
  content:"\f1ba";
}
.b-fa-cab::before{
  content:"\f1ba";
}
.b-fa-person-circle-plus::before{
  content:"\e541";
}
.b-fa-chart-pie::before{
  content:"\f200";
}
.b-fa-pie-chart::before{
  content:"\f200";
}
.b-fa-bolt-lightning::before{
  content:"\e0b7";
}
.b-fa-sack-xmark::before{
  content:"\e56a";
}
.b-fa-file-excel::before{
  content:"\f1c3";
}
.b-fa-file-contract::before{
  content:"\f56c";
}
.b-fa-fish-fins::before{
  content:"\e4f2";
}
.b-fa-building-flag::before{
  content:"\e4d5";
}
.b-fa-face-grin-beam::before{
  content:"\f582";
}
.b-fa-grin-beam::before{
  content:"\f582";
}
.b-fa-object-ungroup::before{
  content:"\f248";
}
.b-fa-poop::before{
  content:"\f619";
}
.b-fa-location-pin::before{
  content:"\f041";
}
.b-fa-map-marker::before{
  content:"\f041";
}
.b-fa-kaaba::before{
  content:"\f66b";
}
.b-fa-toilet-paper::before{
  content:"\f71e";
}
.b-fa-helmet-safety::before{
  content:"\f807";
}
.b-fa-hard-hat::before{
  content:"\f807";
}
.b-fa-hat-hard::before{
  content:"\f807";
}
.b-fa-eject::before{
  content:"\f052";
}
.b-fa-circle-right::before{
  content:"\f35a";
}
.b-fa-arrow-alt-circle-right::before{
  content:"\f35a";
}
.b-fa-plane-circle-check::before{
  content:"\e555";
}
.b-fa-face-rolling-eyes::before{
  content:"\f5a5";
}
.b-fa-meh-rolling-eyes::before{
  content:"\f5a5";
}
.b-fa-object-group::before{
  content:"\f247";
}
.b-fa-chart-line::before{
  content:"\f201";
}
.b-fa-line-chart::before{
  content:"\f201";
}
.b-fa-mask-ventilator::before{
  content:"\e524";
}
.b-fa-arrow-right::before{
  content:"\f061";
}
.b-fa-signs-post::before{
  content:"\f277";
}
.b-fa-map-signs::before{
  content:"\f277";
}
.b-fa-cash-register::before{
  content:"\f788";
}
.b-fa-person-circle-question::before{
  content:"\e542";
}
.b-fa-h::before{
  content:"H";
}
.b-fa-tarp::before{
  content:"\e57b";
}
.b-fa-screwdriver-wrench::before{
  content:"\f7d9";
}
.b-fa-tools::before{
  content:"\f7d9";
}
.b-fa-arrows-to-eye::before{
  content:"\e4bf";
}
.b-fa-plug-circle-bolt::before{
  content:"\e55b";
}
.b-fa-heart::before{
  content:"\f004";
}
.b-fa-mars-and-venus::before{
  content:"\f224";
}
.b-fa-house-user::before{
  content:"\e1b0";
}
.b-fa-home-user::before{
  content:"\e1b0";
}
.b-fa-dumpster-fire::before{
  content:"\f794";
}
.b-fa-house-crack::before{
  content:"\e3b1";
}
.b-fa-martini-glass-citrus::before{
  content:"\f561";
}
.b-fa-cocktail::before{
  content:"\f561";
}
.b-fa-face-surprise::before{
  content:"\f5c2";
}
.b-fa-surprise::before{
  content:"\f5c2";
}
.b-fa-bottle-water::before{
  content:"\e4c5";
}
.b-fa-circle-pause::before{
  content:"\f28b";
}
.b-fa-pause-circle::before{
  content:"\f28b";
}
.b-fa-toilet-paper-slash::before{
  content:"\e072";
}
.b-fa-apple-whole::before{
  content:"\f5d1";
}
.b-fa-apple-alt::before{
  content:"\f5d1";
}
.b-fa-kitchen-set::before{
  content:"\e51a";
}
.b-fa-r::before{
  content:"R";
}
.b-fa-temperature-quarter::before{
  content:"\f2ca";
}
.b-fa-temperature-1::before{
  content:"\f2ca";
}
.b-fa-thermometer-1::before{
  content:"\f2ca";
}
.b-fa-thermometer-quarter::before{
  content:"\f2ca";
}
.b-fa-cube::before{
  content:"\f1b2";
}
.b-fa-bitcoin-sign::before{
  content:"\e0b4";
}
.b-fa-shield-dog::before{
  content:"\e573";
}
.b-fa-solar-panel::before{
  content:"\f5ba";
}
.b-fa-lock-open::before{
  content:"\f3c1";
}
.b-fa-elevator::before{
  content:"\e16d";
}
.b-fa-money-bill-transfer::before{
  content:"\e528";
}
.b-fa-money-bill-trend-up::before{
  content:"\e529";
}
.b-fa-house-flood-water-circle-arrow-right::before{
  content:"\e50f";
}
.b-fa-square-poll-horizontal::before{
  content:"\f682";
}
.b-fa-poll-h::before{
  content:"\f682";
}
.b-fa-circle::before{
  content:"\f111";
}
.b-fa-backward-fast::before{
  content:"\f049";
}
.b-fa-fast-backward::before{
  content:"\f049";
}
.b-fa-recycle::before{
  content:"\f1b8";
}
.b-fa-user-astronaut::before{
  content:"\f4fb";
}
.b-fa-plane-slash::before{
  content:"\e069";
}
.b-fa-trademark::before{
  content:"\f25c";
}
.b-fa-basketball::before{
  content:"\f434";
}
.b-fa-basketball-ball::before{
  content:"\f434";
}
.b-fa-satellite-dish::before{
  content:"\f7c0";
}
.b-fa-circle-up::before{
  content:"\f35b";
}
.b-fa-arrow-alt-circle-up::before{
  content:"\f35b";
}
.b-fa-mobile-screen-button::before{
  content:"\f3cd";
}
.b-fa-mobile-alt::before{
  content:"\f3cd";
}
.b-fa-volume-high::before{
  content:"\f028";
}
.b-fa-volume-up::before{
  content:"\f028";
}
.b-fa-users-rays::before{
  content:"\e593";
}
.b-fa-wallet::before{
  content:"\f555";
}
.b-fa-clipboard-check::before{
  content:"\f46c";
}
.b-fa-file-audio::before{
  content:"\f1c7";
}
.b-fa-burger::before{
  content:"\f805";
}
.b-fa-hamburger::before{
  content:"\f805";
}
.b-fa-wrench::before{
  content:"\f0ad";
}
.b-fa-bugs::before{
  content:"\e4d0";
}
.b-fa-rupee-sign::before{
  content:"\f156";
}
.b-fa-rupee::before{
  content:"\f156";
}
.b-fa-file-image::before{
  content:"\f1c5";
}
.b-fa-circle-question::before{
  content:"\f059";
}
.b-fa-question-circle::before{
  content:"\f059";
}
.b-fa-plane-departure::before{
  content:"\f5b0";
}
.b-fa-handshake-slash::before{
  content:"\e060";
}
.b-fa-book-bookmark::before{
  content:"\e0bb";
}
.b-fa-code-branch::before{
  content:"\f126";
}
.b-fa-hat-cowboy::before{
  content:"\f8c0";
}
.b-fa-bridge::before{
  content:"\e4c8";
}
.b-fa-phone-flip::before{
  content:"\f879";
}
.b-fa-phone-alt::before{
  content:"\f879";
}
.b-fa-truck-front::before{
  content:"\e2b7";
}
.b-fa-cat::before{
  content:"\f6be";
}
.b-fa-anchor-circle-exclamation::before{
  content:"\e4ab";
}
.b-fa-truck-field::before{
  content:"\e58d";
}
.b-fa-route::before{
  content:"\f4d7";
}
.b-fa-clipboard-question::before{
  content:"\e4e3";
}
.b-fa-panorama::before{
  content:"\e209";
}
.b-fa-comment-medical::before{
  content:"\f7f5";
}
.b-fa-teeth-open::before{
  content:"\f62f";
}
.b-fa-file-circle-minus::before{
  content:"\e4ed";
}
.b-fa-tags::before{
  content:"\f02c";
}
.b-fa-wine-glass::before{
  content:"\f4e3";
}
.b-fa-forward-fast::before{
  content:"\f050";
}
.b-fa-fast-forward::before{
  content:"\f050";
}
.b-fa-face-meh-blank::before{
  content:"\f5a4";
}
.b-fa-meh-blank::before{
  content:"\f5a4";
}
.b-fa-square-parking::before{
  content:"\f540";
}
.b-fa-parking::before{
  content:"\f540";
}
.b-fa-house-signal::before{
  content:"\e012";
}
.b-fa-bars-progress::before{
  content:"\f828";
}
.b-fa-tasks-alt::before{
  content:"\f828";
}
.b-fa-faucet-drip::before{
  content:"\e006";
}
.b-fa-cart-flatbed::before{
  content:"\f474";
}
.b-fa-dolly-flatbed::before{
  content:"\f474";
}
.b-fa-ban-smoking::before{
  content:"\f54d";
}
.b-fa-smoking-ban::before{
  content:"\f54d";
}
.b-fa-terminal::before{
  content:"\f120";
}
.b-fa-mobile-button::before{
  content:"\f10b";
}
.b-fa-house-medical-flag::before{
  content:"\e514";
}
.b-fa-basket-shopping::before{
  content:"\f291";
}
.b-fa-shopping-basket::before{
  content:"\f291";
}
.b-fa-tape::before{
  content:"\f4db";
}
.b-fa-bus-simple::before{
  content:"\f55e";
}
.b-fa-bus-alt::before{
  content:"\f55e";
}
.b-fa-eye::before{
  content:"\f06e";
}
.b-fa-face-sad-cry::before{
  content:"\f5b3";
}
.b-fa-sad-cry::before{
  content:"\f5b3";
}
.b-fa-audio-description::before{
  content:"\f29e";
}
.b-fa-person-military-to-person::before{
  content:"\e54c";
}
.b-fa-file-shield::before{
  content:"\e4f0";
}
.b-fa-user-slash::before{
  content:"\f506";
}
.b-fa-pen::before{
  content:"\f304";
}
.b-fa-tower-observation::before{
  content:"\e586";
}
.b-fa-file-code::before{
  content:"\f1c9";
}
.b-fa-signal::before{
  content:"\f012";
}
.b-fa-signal-5::before{
  content:"\f012";
}
.b-fa-signal-perfect::before{
  content:"\f012";
}
.b-fa-bus::before{
  content:"\f207";
}
.b-fa-heart-circle-xmark::before{
  content:"\e501";
}
.b-fa-house-chimney::before{
  content:"\e3af";
}
.b-fa-home-lg::before{
  content:"\e3af";
}
.b-fa-window-maximize::before{
  content:"\f2d0";
}
.b-fa-face-frown::before{
  content:"\f119";
}
.b-fa-frown::before{
  content:"\f119";
}
.b-fa-prescription::before{
  content:"\f5b1";
}
.b-fa-shop::before{
  content:"\f54f";
}
.b-fa-store-alt::before{
  content:"\f54f";
}
.b-fa-floppy-disk::before{
  content:"\f0c7";
}
.b-fa-save::before{
  content:"\f0c7";
}
.b-fa-vihara::before{
  content:"\f6a7";
}
.b-fa-scale-unbalanced::before{
  content:"\f515";
}
.b-fa-balance-scale-left::before{
  content:"\f515";
}
.b-fa-sort-up::before{
  content:"\f0de";
}
.b-fa-sort-asc::before{
  content:"\f0de";
}
.b-fa-comment-dots::before{
  content:"\f4ad";
}
.b-fa-commenting::before{
  content:"\f4ad";
}
.b-fa-plant-wilt::before{
  content:"\e5aa";
}
.b-fa-diamond::before{
  content:"\f219";
}
.b-fa-face-grin-squint::before{
  content:"\f585";
}
.b-fa-grin-squint::before{
  content:"\f585";
}
.b-fa-hand-holding-dollar::before{
  content:"\f4c0";
}
.b-fa-hand-holding-usd::before{
  content:"\f4c0";
}
.b-fa-bacterium::before{
  content:"\e05a";
}
.b-fa-hand-pointer::before{
  content:"\f25a";
}
.b-fa-drum-steelpan::before{
  content:"\f56a";
}
.b-fa-hand-scissors::before{
  content:"\f257";
}
.b-fa-hands-praying::before{
  content:"\f684";
}
.b-fa-praying-hands::before{
  content:"\f684";
}
.b-fa-arrow-rotate-right::before{
  content:"\f01e";
}
.b-fa-arrow-right-rotate::before{
  content:"\f01e";
}
.b-fa-arrow-rotate-forward::before{
  content:"\f01e";
}
.b-fa-redo::before{
  content:"\f01e";
}
.b-fa-biohazard::before{
  content:"\f780";
}
.b-fa-location-crosshairs::before{
  content:"\f601";
}
.b-fa-location::before{
  content:"\f601";
}
.b-fa-mars-double::before{
  content:"\f227";
}
.b-fa-child-dress::before{
  content:"\e59c";
}
.b-fa-users-between-lines::before{
  content:"\e591";
}
.b-fa-lungs-virus::before{
  content:"\e067";
}
.b-fa-face-grin-tears::before{
  content:"\f588";
}
.b-fa-grin-tears::before{
  content:"\f588";
}
.b-fa-phone::before{
  content:"\f095";
}
.b-fa-calendar-xmark::before{
  content:"\f273";
}
.b-fa-calendar-times::before{
  content:"\f273";
}
.b-fa-child-reaching::before{
  content:"\e59d";
}
.b-fa-head-side-virus::before{
  content:"\e064";
}
.b-fa-user-gear::before{
  content:"\f4fe";
}
.b-fa-user-cog::before{
  content:"\f4fe";
}
.b-fa-arrow-up-1-9::before{
  content:"\f163";
}
.b-fa-sort-numeric-up::before{
  content:"\f163";
}
.b-fa-door-closed::before{
  content:"\f52a";
}
.b-fa-shield-virus::before{
  content:"\e06c";
}
.b-fa-dice-six::before{
  content:"\f526";
}
.b-fa-mosquito-net::before{
  content:"\e52c";
}
.b-fa-bridge-water::before{
  content:"\e4ce";
}
.b-fa-person-booth::before{
  content:"\f756";
}
.b-fa-text-width::before{
  content:"\f035";
}
.b-fa-hat-wizard::before{
  content:"\f6e8";
}
.b-fa-pen-fancy::before{
  content:"\f5ac";
}
.b-fa-person-digging::before{
  content:"\f85e";
}
.b-fa-digging::before{
  content:"\f85e";
}
.b-fa-trash::before{
  content:"\f1f8";
}
.b-fa-gauge-simple::before{
  content:"\f629";
}
.b-fa-gauge-simple-med::before{
  content:"\f629";
}
.b-fa-tachometer-average::before{
  content:"\f629";
}
.b-fa-book-medical::before{
  content:"\f7e6";
}
.b-fa-poo::before{
  content:"\f2fe";
}
.b-fa-quote-right::before{
  content:"\f10e";
}
.b-fa-quote-right-alt::before{
  content:"\f10e";
}
.b-fa-shirt::before{
  content:"\f553";
}
.b-fa-t-shirt::before{
  content:"\f553";
}
.b-fa-tshirt::before{
  content:"\f553";
}
.b-fa-cubes::before{
  content:"\f1b3";
}
.b-fa-divide::before{
  content:"\f529";
}
.b-fa-tenge-sign::before{
  content:"\f7d7";
}
.b-fa-tenge::before{
  content:"\f7d7";
}
.b-fa-headphones::before{
  content:"\f025";
}
.b-fa-hands-holding::before{
  content:"\f4c2";
}
.b-fa-hands-clapping::before{
  content:"\e1a8";
}
.b-fa-republican::before{
  content:"\f75e";
}
.b-fa-arrow-left::before{
  content:"\f060";
}
.b-fa-person-circle-xmark::before{
  content:"\e543";
}
.b-fa-ruler::before{
  content:"\f545";
}
.b-fa-align-left::before{
  content:"\f036";
}
.b-fa-dice-d6::before{
  content:"\f6d1";
}
.b-fa-restroom::before{
  content:"\f7bd";
}
.b-fa-j::before{
  content:"J";
}
.b-fa-users-viewfinder::before{
  content:"\e595";
}
.b-fa-file-video::before{
  content:"\f1c8";
}
.b-fa-up-right-from-square::before{
  content:"\f35d";
}
.b-fa-external-link-alt::before{
  content:"\f35d";
}
.b-fa-table-cells::before{
  content:"\f00a";
}
.b-fa-th::before{
  content:"\f00a";
}
.b-fa-file-pdf::before{
  content:"\f1c1";
}
.b-fa-book-bible::before{
  content:"\f647";
}
.b-fa-bible::before{
  content:"\f647";
}
.b-fa-o::before{
  content:"O";
}
.b-fa-suitcase-medical::before{
  content:"\f0fa";
}
.b-fa-medkit::before{
  content:"\f0fa";
}
.b-fa-user-secret::before{
  content:"\f21b";
}
.b-fa-otter::before{
  content:"\f700";
}
.b-fa-person-dress::before{
  content:"\f182";
}
.b-fa-female::before{
  content:"\f182";
}
.b-fa-comment-dollar::before{
  content:"\f651";
}
.b-fa-business-time::before{
  content:"\f64a";
}
.b-fa-briefcase-clock::before{
  content:"\f64a";
}
.b-fa-table-cells-large::before{
  content:"\f009";
}
.b-fa-th-large::before{
  content:"\f009";
}
.b-fa-book-tanakh::before{
  content:"\f827";
}
.b-fa-tanakh::before{
  content:"\f827";
}
.b-fa-phone-volume::before{
  content:"\f2a0";
}
.b-fa-volume-control-phone::before{
  content:"\f2a0";
}
.b-fa-hat-cowboy-side::before{
  content:"\f8c1";
}
.b-fa-clipboard-user::before{
  content:"\f7f3";
}
.b-fa-child::before{
  content:"\f1ae";
}
.b-fa-lira-sign::before{
  content:"\f195";
}
.b-fa-satellite::before{
  content:"\f7bf";
}
.b-fa-plane-lock::before{
  content:"\e558";
}
.b-fa-tag::before{
  content:"\f02b";
}
.b-fa-comment::before{
  content:"\f075";
}
.b-fa-cake-candles::before{
  content:"\f1fd";
}
.b-fa-birthday-cake::before{
  content:"\f1fd";
}
.b-fa-cake::before{
  content:"\f1fd";
}
.b-fa-envelope::before{
  content:"\f0e0";
}
.b-fa-angles-up::before{
  content:"\f102";
}
.b-fa-angle-double-up::before{
  content:"\f102";
}
.b-fa-paperclip::before{
  content:"\f0c6";
}
.b-fa-arrow-right-to-city::before{
  content:"\e4b3";
}
.b-fa-ribbon::before{
  content:"\f4d6";
}
.b-fa-lungs::before{
  content:"\f604";
}
.b-fa-arrow-up-9-1::before{
  content:"\f887";
}
.b-fa-sort-numeric-up-alt::before{
  content:"\f887";
}
.b-fa-litecoin-sign::before{
  content:"\e1d3";
}
.b-fa-border-none::before{
  content:"\f850";
}
.b-fa-circle-nodes::before{
  content:"\e4e2";
}
.b-fa-parachute-box::before{
  content:"\f4cd";
}
.b-fa-indent::before{
  content:"\f03c";
}
.b-fa-truck-field-un::before{
  content:"\e58e";
}
.b-fa-hourglass::before{
  content:"\f254";
}
.b-fa-hourglass-empty::before{
  content:"\f254";
}
.b-fa-mountain::before{
  content:"\f6fc";
}
.b-fa-user-doctor::before{
  content:"\f0f0";
}
.b-fa-user-md::before{
  content:"\f0f0";
}
.b-fa-circle-info::before{
  content:"\f05a";
}
.b-fa-info-circle::before{
  content:"\f05a";
}
.b-fa-cloud-meatball::before{
  content:"\f73b";
}
.b-fa-camera::before{
  content:"\f030";
}
.b-fa-camera-alt::before{
  content:"\f030";
}
.b-fa-square-virus::before{
  content:"\e578";
}
.b-fa-meteor::before{
  content:"\f753";
}
.b-fa-car-on::before{
  content:"\e4dd";
}
.b-fa-sleigh::before{
  content:"\f7cc";
}
.b-fa-arrow-down-1-9::before{
  content:"\f162";
}
.b-fa-sort-numeric-asc::before{
  content:"\f162";
}
.b-fa-sort-numeric-down::before{
  content:"\f162";
}
.b-fa-hand-holding-droplet::before{
  content:"\f4c1";
}
.b-fa-hand-holding-water::before{
  content:"\f4c1";
}
.b-fa-water::before{
  content:"\f773";
}
.b-fa-calendar-check::before{
  content:"\f274";
}
.b-fa-braille::before{
  content:"\f2a1";
}
.b-fa-prescription-bottle-medical::before{
  content:"\f486";
}
.b-fa-prescription-bottle-alt::before{
  content:"\f486";
}
.b-fa-landmark::before{
  content:"\f66f";
}
.b-fa-truck::before{
  content:"\f0d1";
}
.b-fa-crosshairs::before{
  content:"\f05b";
}
.b-fa-person-cane::before{
  content:"\e53c";
}
.b-fa-tent::before{
  content:"\e57d";
}
.b-fa-vest-patches::before{
  content:"\e086";
}
.b-fa-check-double::before{
  content:"\f560";
}
.b-fa-arrow-down-a-z::before{
  content:"\f15d";
}
.b-fa-sort-alpha-asc::before{
  content:"\f15d";
}
.b-fa-sort-alpha-down::before{
  content:"\f15d";
}
.b-fa-money-bill-wheat::before{
  content:"\e52a";
}
.b-fa-cookie::before{
  content:"\f563";
}
.b-fa-arrow-rotate-left::before{
  content:"\f0e2";
}
.b-fa-arrow-left-rotate::before{
  content:"\f0e2";
}
.b-fa-arrow-rotate-back::before{
  content:"\f0e2";
}
.b-fa-arrow-rotate-backward::before{
  content:"\f0e2";
}
.b-fa-undo::before{
  content:"\f0e2";
}
.b-fa-hard-drive::before{
  content:"\f0a0";
}
.b-fa-hdd::before{
  content:"\f0a0";
}
.b-fa-face-grin-squint-tears::before{
  content:"\f586";
}
.b-fa-grin-squint-tears::before{
  content:"\f586";
}
.b-fa-dumbbell::before{
  content:"\f44b";
}
.b-fa-rectangle-list::before{
  content:"\f022";
}
.b-fa-list-alt::before{
  content:"\f022";
}
.b-fa-tarp-droplet::before{
  content:"\e57c";
}
.b-fa-house-medical-circle-check::before{
  content:"\e511";
}
.b-fa-person-skiing-nordic::before{
  content:"\f7ca";
}
.b-fa-skiing-nordic::before{
  content:"\f7ca";
}
.b-fa-calendar-plus::before{
  content:"\f271";
}
.b-fa-plane-arrival::before{
  content:"\f5af";
}
.b-fa-circle-left::before{
  content:"\f359";
}
.b-fa-arrow-alt-circle-left::before{
  content:"\f359";
}
.b-fa-train-subway::before{
  content:"\f239";
}
.b-fa-subway::before{
  content:"\f239";
}
.b-fa-chart-gantt::before{
  content:"\e0e4";
}
.b-fa-indian-rupee-sign::before{
  content:"\e1bc";
}
.b-fa-indian-rupee::before{
  content:"\e1bc";
}
.b-fa-inr::before{
  content:"\e1bc";
}
.b-fa-crop-simple::before{
  content:"\f565";
}
.b-fa-crop-alt::before{
  content:"\f565";
}
.b-fa-money-bill-1::before{
  content:"\f3d1";
}
.b-fa-money-bill-alt::before{
  content:"\f3d1";
}
.b-fa-left-long::before{
  content:"\f30a";
}
.b-fa-long-arrow-alt-left::before{
  content:"\f30a";
}
.b-fa-dna::before{
  content:"\f471";
}
.b-fa-virus-slash::before{
  content:"\e075";
}
.b-fa-minus::before{
  content:"\f068";
}
.b-fa-subtract::before{
  content:"\f068";
}
.b-fa-chess::before{
  content:"\f439";
}
.b-fa-arrow-left-long::before{
  content:"\f177";
}
.b-fa-long-arrow-left::before{
  content:"\f177";
}
.b-fa-plug-circle-check::before{
  content:"\e55c";
}
.b-fa-street-view::before{
  content:"\f21d";
}
.b-fa-franc-sign::before{
  content:"\e18f";
}
.b-fa-volume-off::before{
  content:"\f026";
}
.b-fa-hands-asl-interpreting::before{
  content:"\f2a3";
}
.b-fa-american-sign-language-interpreting::before{
  content:"\f2a3";
}
.b-fa-asl-interpreting::before{
  content:"\f2a3";
}
.b-fa-hands-american-sign-language-interpreting::before{
  content:"\f2a3";
}
.b-fa-gear::before{
  content:"\f013";
}
.b-fa-cog::before{
  content:"\f013";
}
.b-fa-droplet-slash::before{
  content:"\f5c7";
}
.b-fa-tint-slash::before{
  content:"\f5c7";
}
.b-fa-mosque::before{
  content:"\f678";
}
.b-fa-mosquito::before{
  content:"\e52b";
}
.b-fa-star-of-david::before{
  content:"\f69a";
}
.b-fa-person-military-rifle::before{
  content:"\e54b";
}
.b-fa-cart-shopping::before{
  content:"\f07a";
}
.b-fa-shopping-cart::before{
  content:"\f07a";
}
.b-fa-vials::before{
  content:"\f493";
}
.b-fa-plug-circle-plus::before{
  content:"\e55f";
}
.b-fa-place-of-worship::before{
  content:"\f67f";
}
.b-fa-grip-vertical::before{
  content:"\f58e";
}
.b-fa-arrow-turn-up::before{
  content:"\f148";
}
.b-fa-level-up::before{
  content:"\f148";
}
.b-fa-u::before{
  content:"U";
}
.b-fa-square-root-variable::before{
  content:"\f698";
}
.b-fa-square-root-alt::before{
  content:"\f698";
}
.b-fa-clock::before{
  content:"\f017";
}
.b-fa-clock-four::before{
  content:"\f017";
}
.b-fa-backward-step::before{
  content:"\f048";
}
.b-fa-step-backward::before{
  content:"\f048";
}
.b-fa-pallet::before{
  content:"\f482";
}
.b-fa-faucet::before{
  content:"\e005";
}
.b-fa-baseball-bat-ball::before{
  content:"\f432";
}
.b-fa-s::before{
  content:"S";
}
.b-fa-timeline::before{
  content:"\e29c";
}
.b-fa-keyboard::before{
  content:"\f11c";
}
.b-fa-caret-down::before{
  content:"\f0d7";
}
.b-fa-house-chimney-medical::before{
  content:"\f7f2";
}
.b-fa-clinic-medical::before{
  content:"\f7f2";
}
.b-fa-temperature-three-quarters::before{
  content:"\f2c8";
}
.b-fa-temperature-3::before{
  content:"\f2c8";
}
.b-fa-thermometer-3::before{
  content:"\f2c8";
}
.b-fa-thermometer-three-quarters::before{
  content:"\f2c8";
}
.b-fa-mobile-screen::before{
  content:"\f3cf";
}
.b-fa-mobile-android-alt::before{
  content:"\f3cf";
}
.b-fa-plane-up::before{
  content:"\e22d";
}
.b-fa-piggy-bank::before{
  content:"\f4d3";
}
.b-fa-battery-half::before{
  content:"\f242";
}
.b-fa-battery-3::before{
  content:"\f242";
}
.b-fa-mountain-city::before{
  content:"\e52e";
}
.b-fa-coins::before{
  content:"\f51e";
}
.b-fa-khanda::before{
  content:"\f66d";
}
.b-fa-sliders::before{
  content:"\f1de";
}
.b-fa-sliders-h::before{
  content:"\f1de";
}
.b-fa-folder-tree::before{
  content:"\f802";
}
.b-fa-network-wired::before{
  content:"\f6ff";
}
.b-fa-map-pin::before{
  content:"\f276";
}
.b-fa-hamsa::before{
  content:"\f665";
}
.b-fa-cent-sign::before{
  content:"\e3f5";
}
.b-fa-flask::before{
  content:"\f0c3";
}
.b-fa-person-pregnant::before{
  content:"\e31e";
}
.b-fa-wand-sparkles::before{
  content:"\f72b";
}
.b-fa-ellipsis-vertical::before{
  content:"\f142";
}
.b-fa-ellipsis-v::before{
  content:"\f142";
}
.b-fa-ticket::before{
  content:"\f145";
}
.b-fa-power-off::before{
  content:"\f011";
}
.b-fa-right-long::before{
  content:"\f30b";
}
.b-fa-long-arrow-alt-right::before{
  content:"\f30b";
}
.b-fa-flag-usa::before{
  content:"\f74d";
}
.b-fa-laptop-file::before{
  content:"\e51d";
}
.b-fa-tty::before{
  content:"\f1e4";
}
.b-fa-teletype::before{
  content:"\f1e4";
}
.b-fa-diagram-next::before{
  content:"\e476";
}
.b-fa-person-rifle::before{
  content:"\e54e";
}
.b-fa-house-medical-circle-exclamation::before{
  content:"\e512";
}
.b-fa-closed-captioning::before{
  content:"\f20a";
}
.b-fa-person-hiking::before{
  content:"\f6ec";
}
.b-fa-hiking::before{
  content:"\f6ec";
}
.b-fa-venus-double::before{
  content:"\f226";
}
.b-fa-images::before{
  content:"\f302";
}
.b-fa-calculator::before{
  content:"\f1ec";
}
.b-fa-people-pulling::before{
  content:"\e535";
}
.b-fa-n::before{
  content:"N";
}
.b-fa-cable-car::before{
  content:"\f7da";
}
.b-fa-tram::before{
  content:"\f7da";
}
.b-fa-cloud-rain::before{
  content:"\f73d";
}
.b-fa-building-circle-xmark::before{
  content:"\e4d4";
}
.b-fa-ship::before{
  content:"\f21a";
}
.b-fa-arrows-down-to-line::before{
  content:"\e4b8";
}
.b-fa-download::before{
  content:"\f019";
}
.b-fa-face-grin::before{
  content:"\f580";
}
.b-fa-grin::before{
  content:"\f580";
}
.b-fa-delete-left::before{
  content:"\f55a";
}
.b-fa-backspace::before{
  content:"\f55a";
}
.b-fa-eye-dropper::before{
  content:"\f1fb";
}
.b-fa-eye-dropper-empty::before{
  content:"\f1fb";
}
.b-fa-eyedropper::before{
  content:"\f1fb";
}
.b-fa-file-circle-check::before{
  content:"\e5a0";
}
.b-fa-forward::before{
  content:"\f04e";
}
.b-fa-mobile::before{
  content:"\f3ce";
}
.b-fa-mobile-android::before{
  content:"\f3ce";
}
.b-fa-mobile-phone::before{
  content:"\f3ce";
}
.b-fa-face-meh::before{
  content:"\f11a";
}
.b-fa-meh::before{
  content:"\f11a";
}
.b-fa-align-center::before{
  content:"\f037";
}
.b-fa-book-skull::before{
  content:"\f6b7";
}
.b-fa-book-dead::before{
  content:"\f6b7";
}
.b-fa-id-card::before{
  content:"\f2c2";
}
.b-fa-drivers-license::before{
  content:"\f2c2";
}
.b-fa-outdent::before{
  content:"\f03b";
}
.b-fa-dedent::before{
  content:"\f03b";
}
.b-fa-heart-circle-exclamation::before{
  content:"\e4fe";
}
.b-fa-house::before{
  content:"\f015";
}
.b-fa-home::before{
  content:"\f015";
}
.b-fa-home-alt::before{
  content:"\f015";
}
.b-fa-home-lg-alt::before{
  content:"\f015";
}
.b-fa-calendar-week::before{
  content:"\f784";
}
.b-fa-laptop-medical::before{
  content:"\f812";
}
.b-fa-b::before{
  content:"B";
}
.b-fa-file-medical::before{
  content:"\f477";
}
.b-fa-dice-one::before{
  content:"\f525";
}
.b-fa-kiwi-bird::before{
  content:"\f535";
}
.b-fa-arrow-right-arrow-left::before{
  content:"\f0ec";
}
.b-fa-exchange::before{
  content:"\f0ec";
}
.b-fa-rotate-right::before{
  content:"\f2f9";
}
.b-fa-redo-alt::before{
  content:"\f2f9";
}
.b-fa-rotate-forward::before{
  content:"\f2f9";
}
.b-fa-utensils::before{
  content:"\f2e7";
}
.b-fa-cutlery::before{
  content:"\f2e7";
}
.b-fa-arrow-up-wide-short::before{
  content:"\f161";
}
.b-fa-sort-amount-up::before{
  content:"\f161";
}
.b-fa-mill-sign::before{
  content:"\e1ed";
}
.b-fa-bowl-rice::before{
  content:"\e2eb";
}
.b-fa-skull::before{
  content:"\f54c";
}
.b-fa-tower-broadcast::before{
  content:"\f519";
}
.b-fa-broadcast-tower::before{
  content:"\f519";
}
.b-fa-truck-pickup::before{
  content:"\f63c";
}
.b-fa-up-long::before{
  content:"\f30c";
}
.b-fa-long-arrow-alt-up::before{
  content:"\f30c";
}
.b-fa-stop::before{
  content:"\f04d";
}
.b-fa-code-merge::before{
  content:"\f387";
}
.b-fa-upload::before{
  content:"\f093";
}
.b-fa-hurricane::before{
  content:"\f751";
}
.b-fa-mound::before{
  content:"\e52d";
}
.b-fa-toilet-portable::before{
  content:"\e583";
}
.b-fa-compact-disc::before{
  content:"\f51f";
}
.b-fa-file-arrow-down::before{
  content:"\f56d";
}
.b-fa-file-download::before{
  content:"\f56d";
}
.b-fa-caravan::before{
  content:"\f8ff";
}
.b-fa-shield-cat::before{
  content:"\e572";
}
.b-fa-bolt::before{
  content:"\f0e7";
}
.b-fa-zap::before{
  content:"\f0e7";
}
.b-fa-glass-water::before{
  content:"\e4f4";
}
.b-fa-oil-well::before{
  content:"\e532";
}
.b-fa-vault::before{
  content:"\e2c5";
}
.b-fa-mars::before{
  content:"\f222";
}
.b-fa-toilet::before{
  content:"\f7d8";
}
.b-fa-plane-circle-xmark::before{
  content:"\e557";
}
.b-fa-yen-sign::before{
  content:"\f157";
}
.b-fa-cny::before{
  content:"\f157";
}
.b-fa-jpy::before{
  content:"\f157";
}
.b-fa-rmb::before{
  content:"\f157";
}
.b-fa-yen::before{
  content:"\f157";
}
.b-fa-ruble-sign::before{
  content:"\f158";
}
.b-fa-rouble::before{
  content:"\f158";
}
.b-fa-rub::before{
  content:"\f158";
}
.b-fa-ruble::before{
  content:"\f158";
}
.b-fa-sun::before{
  content:"\f185";
}
.b-fa-guitar::before{
  content:"\f7a6";
}
.b-fa-face-laugh-wink::before{
  content:"\f59c";
}
.b-fa-laugh-wink::before{
  content:"\f59c";
}
.b-fa-horse-head::before{
  content:"\f7ab";
}
.b-fa-bore-hole::before{
  content:"\e4c3";
}
.b-fa-industry::before{
  content:"\f275";
}
.b-fa-circle-down::before{
  content:"\f358";
}
.b-fa-arrow-alt-circle-down::before{
  content:"\f358";
}
.b-fa-arrows-turn-to-dots::before{
  content:"\e4c1";
}
.b-fa-florin-sign::before{
  content:"\e184";
}
.b-fa-arrow-down-short-wide::before{
  content:"\f884";
}
.b-fa-sort-amount-desc::before{
  content:"\f884";
}
.b-fa-sort-amount-down-alt::before{
  content:"\f884";
}
.b-fa-less-than::before{
  content:"\<";
}
.b-fa-angle-down::before{
  content:"\f107";
}
.b-fa-car-tunnel::before{
  content:"\e4de";
}
.b-fa-head-side-cough::before{
  content:"\e061";
}
.b-fa-grip-lines::before{
  content:"\f7a4";
}
.b-fa-thumbs-down::before{
  content:"\f165";
}
.b-fa-user-lock::before{
  content:"\f502";
}
.b-fa-arrow-right-long::before{
  content:"\f178";
}
.b-fa-long-arrow-right::before{
  content:"\f178";
}
.b-fa-anchor-circle-xmark::before{
  content:"\e4ac";
}
.b-fa-ellipsis::before{
  content:"\f141";
}
.b-fa-ellipsis-h::before{
  content:"\f141";
}
.b-fa-chess-pawn::before{
  content:"\f443";
}
.b-fa-kit-medical::before{
  content:"\f479";
}
.b-fa-first-aid::before{
  content:"\f479";
}
.b-fa-person-through-window::before{
  content:"\e5a9";
}
.b-fa-toolbox::before{
  content:"\f552";
}
.b-fa-hands-holding-circle::before{
  content:"\e4fb";
}
.b-fa-bug::before{
  content:"\f188";
}
.b-fa-credit-card::before{
  content:"\f09d";
}
.b-fa-credit-card-alt::before{
  content:"\f09d";
}
.b-fa-car::before{
  content:"\f1b9";
}
.b-fa-automobile::before{
  content:"\f1b9";
}
.b-fa-hand-holding-hand::before{
  content:"\e4f7";
}
.b-fa-book-open-reader::before{
  content:"\f5da";
}
.b-fa-book-reader::before{
  content:"\f5da";
}
.b-fa-mountain-sun::before{
  content:"\e52f";
}
.b-fa-arrows-left-right-to-line::before{
  content:"\e4ba";
}
.b-fa-dice-d20::before{
  content:"\f6cf";
}
.b-fa-truck-droplet::before{
  content:"\e58c";
}
.b-fa-file-circle-xmark::before{
  content:"\e5a1";
}
.b-fa-temperature-arrow-up::before{
  content:"\e040";
}
.b-fa-temperature-up::before{
  content:"\e040";
}
.b-fa-medal::before{
  content:"\f5a2";
}
.b-fa-bed::before{
  content:"\f236";
}
.b-fa-square-h::before{
  content:"\f0fd";
}
.b-fa-h-square::before{
  content:"\f0fd";
}
.b-fa-podcast::before{
  content:"\f2ce";
}
.b-fa-temperature-full::before{
  content:"\f2c7";
}
.b-fa-temperature-4::before{
  content:"\f2c7";
}
.b-fa-thermometer-4::before{
  content:"\f2c7";
}
.b-fa-thermometer-full::before{
  content:"\f2c7";
}
.b-fa-bell::before{
  content:"\f0f3";
}
.b-fa-superscript::before{
  content:"\f12b";
}
.b-fa-plug-circle-xmark::before{
  content:"\e560";
}
.b-fa-star-of-life::before{
  content:"\f621";
}
.b-fa-phone-slash::before{
  content:"\f3dd";
}
.b-fa-paint-roller::before{
  content:"\f5aa";
}
.b-fa-handshake-angle::before{
  content:"\f4c4";
}
.b-fa-hands-helping::before{
  content:"\f4c4";
}
.b-fa-location-dot::before{
  content:"\f3c5";
}
.b-fa-map-marker-alt::before{
  content:"\f3c5";
}
.b-fa-file::before{
  content:"\f15b";
}
.b-fa-greater-than::before{
  content:"\>";
}
.b-fa-person-swimming::before{
  content:"\f5c4";
}
.b-fa-swimmer::before{
  content:"\f5c4";
}
.b-fa-arrow-down::before{
  content:"\f063";
}
.b-fa-droplet::before{
  content:"\f043";
}
.b-fa-tint::before{
  content:"\f043";
}
.b-fa-eraser::before{
  content:"\f12d";
}
.b-fa-earth-americas::before{
  content:"\f57d";
}
.b-fa-earth::before{
  content:"\f57d";
}
.b-fa-earth-america::before{
  content:"\f57d";
}
.b-fa-globe-americas::before{
  content:"\f57d";
}
.b-fa-person-burst::before{
  content:"\e53b";
}
.b-fa-dove::before{
  content:"\f4ba";
}
.b-fa-battery-empty::before{
  content:"\f244";
}
.b-fa-battery-0::before{
  content:"\f244";
}
.b-fa-socks::before{
  content:"\f696";
}
.b-fa-inbox::before{
  content:"\f01c";
}
.b-fa-section::before{
  content:"\e447";
}
.b-fa-gauge-high::before{
  content:"\f625";
}
.b-fa-tachometer-alt::before{
  content:"\f625";
}
.b-fa-tachometer-alt-fast::before{
  content:"\f625";
}
.b-fa-envelope-open-text::before{
  content:"\f658";
}
.b-fa-hospital::before{
  content:"\f0f8";
}
.b-fa-hospital-alt::before{
  content:"\f0f8";
}
.b-fa-hospital-wide::before{
  content:"\f0f8";
}
.b-fa-wine-bottle::before{
  content:"\f72f";
}
.b-fa-chess-rook::before{
  content:"\f447";
}
.b-fa-bars-staggered::before{
  content:"\f550";
}
.b-fa-reorder::before{
  content:"\f550";
}
.b-fa-stream::before{
  content:"\f550";
}
.b-fa-dharmachakra::before{
  content:"\f655";
}
.b-fa-hotdog::before{
  content:"\f80f";
}
.b-fa-person-walking-with-cane::before{
  content:"\f29d";
}
.b-fa-blind::before{
  content:"\f29d";
}
.b-fa-drum::before{
  content:"\f569";
}
.b-fa-ice-cream::before{
  content:"\f810";
}
.b-fa-heart-circle-bolt::before{
  content:"\e4fc";
}
.b-fa-fax::before{
  content:"\f1ac";
}
.b-fa-paragraph::before{
  content:"\f1dd";
}
.b-fa-check-to-slot::before{
  content:"\f772";
}
.b-fa-vote-yea::before{
  content:"\f772";
}
.b-fa-star-half::before{
  content:"\f089";
}
.b-fa-boxes-stacked::before{
  content:"\f468";
}
.b-fa-boxes::before{
  content:"\f468";
}
.b-fa-boxes-alt::before{
  content:"\f468";
}
.b-fa-link::before{
  content:"\f0c1";
}
.b-fa-chain::before{
  content:"\f0c1";
}
.b-fa-ear-listen::before{
  content:"\f2a2";
}
.b-fa-assistive-listening-systems::before{
  content:"\f2a2";
}
.b-fa-tree-city::before{
  content:"\e587";
}
.b-fa-play::before{
  content:"\f04b";
}
.b-fa-font::before{
  content:"\f031";
}
.b-fa-table-cells-row-lock::before{
  content:"\e67a";
}
.b-fa-rupiah-sign::before{
  content:"\e23d";
}
.b-fa-magnifying-glass::before{
  content:"\f002";
}
.b-fa-search::before{
  content:"\f002";
}
.b-fa-table-tennis-paddle-ball::before{
  content:"\f45d";
}
.b-fa-ping-pong-paddle-ball::before{
  content:"\f45d";
}
.b-fa-table-tennis::before{
  content:"\f45d";
}
.b-fa-person-dots-from-line::before{
  content:"\f470";
}
.b-fa-diagnoses::before{
  content:"\f470";
}
.b-fa-trash-can-arrow-up::before{
  content:"\f82a";
}
.b-fa-trash-restore-alt::before{
  content:"\f82a";
}
.b-fa-naira-sign::before{
  content:"\e1f6";
}
.b-fa-cart-arrow-down::before{
  content:"\f218";
}
.b-fa-walkie-talkie::before{
  content:"\f8ef";
}
.b-fa-file-pen::before{
  content:"\f31c";
}
.b-fa-file-edit::before{
  content:"\f31c";
}
.b-fa-receipt::before{
  content:"\f543";
}
.b-fa-square-pen::before{
  content:"\f14b";
}
.b-fa-pen-square::before{
  content:"\f14b";
}
.b-fa-pencil-square::before{
  content:"\f14b";
}
.b-fa-suitcase-rolling::before{
  content:"\f5c1";
}
.b-fa-person-circle-exclamation::before{
  content:"\e53f";
}
.b-fa-chevron-down::before{
  content:"\f078";
}
.b-fa-battery-full::before{
  content:"\f240";
}
.b-fa-battery::before{
  content:"\f240";
}
.b-fa-battery-5::before{
  content:"\f240";
}
.b-fa-skull-crossbones::before{
  content:"\f714";
}
.b-fa-code-compare::before{
  content:"\e13a";
}
.b-fa-list-ul::before{
  content:"\f0ca";
}
.b-fa-list-dots::before{
  content:"\f0ca";
}
.b-fa-school-lock::before{
  content:"\e56f";
}
.b-fa-tower-cell::before{
  content:"\e585";
}
.b-fa-down-long::before{
  content:"\f309";
}
.b-fa-long-arrow-alt-down::before{
  content:"\f309";
}
.b-fa-ranking-star::before{
  content:"\e561";
}
.b-fa-chess-king::before{
  content:"\f43f";
}
.b-fa-person-harassing::before{
  content:"\e549";
}
.b-fa-brazilian-real-sign::before{
  content:"\e46c";
}
.b-fa-landmark-dome::before{
  content:"\f752";
}
.b-fa-landmark-alt::before{
  content:"\f752";
}
.b-fa-arrow-up::before{
  content:"\f062";
}
.b-fa-tv::before{
  content:"\f26c";
}
.b-fa-television::before{
  content:"\f26c";
}
.b-fa-tv-alt::before{
  content:"\f26c";
}
.b-fa-shrimp::before{
  content:"\e448";
}
.b-fa-list-check::before{
  content:"\f0ae";
}
.b-fa-tasks::before{
  content:"\f0ae";
}
.b-fa-jug-detergent::before{
  content:"\e519";
}
.b-fa-circle-user::before{
  content:"\f2bd";
}
.b-fa-user-circle::before{
  content:"\f2bd";
}
.b-fa-user-shield::before{
  content:"\f505";
}
.b-fa-wind::before{
  content:"\f72e";
}
.b-fa-car-burst::before{
  content:"\f5e1";
}
.b-fa-car-crash::before{
  content:"\f5e1";
}
.b-fa-y::before{
  content:"Y";
}
.b-fa-person-snowboarding::before{
  content:"\f7ce";
}
.b-fa-snowboarding::before{
  content:"\f7ce";
}
.b-fa-truck-fast::before{
  content:"\f48b";
}
.b-fa-shipping-fast::before{
  content:"\f48b";
}
.b-fa-fish::before{
  content:"\f578";
}
.b-fa-user-graduate::before{
  content:"\f501";
}
.b-fa-circle-half-stroke::before{
  content:"\f042";
}
.b-fa-adjust::before{
  content:"\f042";
}
.b-fa-clapperboard::before{
  content:"\e131";
}
.b-fa-circle-radiation::before{
  content:"\f7ba";
}
.b-fa-radiation-alt::before{
  content:"\f7ba";
}
.b-fa-baseball::before{
  content:"\f433";
}
.b-fa-baseball-ball::before{
  content:"\f433";
}
.b-fa-jet-fighter-up::before{
  content:"\e518";
}
.b-fa-diagram-project::before{
  content:"\f542";
}
.b-fa-project-diagram::before{
  content:"\f542";
}
.b-fa-copy::before{
  content:"\f0c5";
}
.b-fa-volume-xmark::before{
  content:"\f6a9";
}
.b-fa-volume-mute::before{
  content:"\f6a9";
}
.b-fa-volume-times::before{
  content:"\f6a9";
}
.b-fa-hand-sparkles::before{
  content:"\e05d";
}
.b-fa-grip::before{
  content:"\f58d";
}
.b-fa-grip-horizontal::before{
  content:"\f58d";
}
.b-fa-share-from-square::before{
  content:"\f14d";
}
.b-fa-share-square::before{
  content:"\f14d";
}
.b-fa-child-combatant::before{
  content:"\e4e0";
}
.b-fa-child-rifle::before{
  content:"\e4e0";
}
.b-fa-gun::before{
  content:"\e19b";
}
.b-fa-square-phone::before{
  content:"\f098";
}
.b-fa-phone-square::before{
  content:"\f098";
}
.b-fa-plus::before{
  content:"\+";
}
.b-fa-add::before{
  content:"\+";
}
.b-fa-expand::before{
  content:"\f065";
}
.b-fa-computer::before{
  content:"\e4e5";
}
.b-fa-xmark::before{
  content:"\f00d";
}
.b-fa-close::before{
  content:"\f00d";
}
.b-fa-multiply::before{
  content:"\f00d";
}
.b-fa-remove::before{
  content:"\f00d";
}
.b-fa-times::before{
  content:"\f00d";
}
.b-fa-arrows-up-down-left-right::before{
  content:"\f047";
}
.b-fa-arrows::before{
  content:"\f047";
}
.b-fa-chalkboard-user::before{
  content:"\f51c";
}
.b-fa-chalkboard-teacher::before{
  content:"\f51c";
}
.b-fa-peso-sign::before{
  content:"\e222";
}
.b-fa-building-shield::before{
  content:"\e4d8";
}
.b-fa-baby::before{
  content:"\f77c";
}
.b-fa-users-line::before{
  content:"\e592";
}
.b-fa-quote-left::before{
  content:"\f10d";
}
.b-fa-quote-left-alt::before{
  content:"\f10d";
}
.b-fa-tractor::before{
  content:"\f722";
}
.b-fa-trash-arrow-up::before{
  content:"\f829";
}
.b-fa-trash-restore::before{
  content:"\f829";
}
.b-fa-arrow-down-up-lock::before{
  content:"\e4b0";
}
.b-fa-lines-leaning::before{
  content:"\e51e";
}
.b-fa-ruler-combined::before{
  content:"\f546";
}
.b-fa-copyright::before{
  content:"\f1f9";
}
.b-fa-equals::before{
  content:"\=";
}
.b-fa-blender::before{
  content:"\f517";
}
.b-fa-teeth::before{
  content:"\f62e";
}
.b-fa-shekel-sign::before{
  content:"\f20b";
}
.b-fa-ils::before{
  content:"\f20b";
}
.b-fa-shekel::before{
  content:"\f20b";
}
.b-fa-sheqel::before{
  content:"\f20b";
}
.b-fa-sheqel-sign::before{
  content:"\f20b";
}
.b-fa-map::before{
  content:"\f279";
}
.b-fa-rocket::before{
  content:"\f135";
}
.b-fa-photo-film::before{
  content:"\f87c";
}
.b-fa-photo-video::before{
  content:"\f87c";
}
.b-fa-folder-minus::before{
  content:"\f65d";
}
.b-fa-store::before{
  content:"\f54e";
}
.b-fa-arrow-trend-up::before{
  content:"\e098";
}
.b-fa-plug-circle-minus::before{
  content:"\e55e";
}
.b-fa-sign-hanging::before{
  content:"\f4d9";
}
.b-fa-sign::before{
  content:"\f4d9";
}
.b-fa-bezier-curve::before{
  content:"\f55b";
}
.b-fa-bell-slash::before{
  content:"\f1f6";
}
.b-fa-tablet::before{
  content:"\f3fb";
}
.b-fa-tablet-android::before{
  content:"\f3fb";
}
.b-fa-school-flag::before{
  content:"\e56e";
}
.b-fa-fill::before{
  content:"\f575";
}
.b-fa-angle-up::before{
  content:"\f106";
}
.b-fa-drumstick-bite::before{
  content:"\f6d7";
}
.b-fa-holly-berry::before{
  content:"\f7aa";
}
.b-fa-chevron-left::before{
  content:"\f053";
}
.b-fa-bacteria::before{
  content:"\e059";
}
.b-fa-hand-lizard::before{
  content:"\f258";
}
.b-fa-notdef::before{
  content:"\e1fe";
}
.b-fa-disease::before{
  content:"\f7fa";
}
.b-fa-briefcase-medical::before{
  content:"\f469";
}
.b-fa-genderless::before{
  content:"\f22d";
}
.b-fa-chevron-right::before{
  content:"\f054";
}
.b-fa-retweet::before{
  content:"\f079";
}
.b-fa-car-rear::before{
  content:"\f5de";
}
.b-fa-car-alt::before{
  content:"\f5de";
}
.b-fa-pump-soap::before{
  content:"\e06b";
}
.b-fa-video-slash::before{
  content:"\f4e2";
}
.b-fa-battery-quarter::before{
  content:"\f243";
}
.b-fa-battery-2::before{
  content:"\f243";
}
.b-fa-radio::before{
  content:"\f8d7";
}
.b-fa-baby-carriage::before{
  content:"\f77d";
}
.b-fa-carriage-baby::before{
  content:"\f77d";
}
.b-fa-traffic-light::before{
  content:"\f637";
}
.b-fa-thermometer::before{
  content:"\f491";
}
.b-fa-vr-cardboard::before{
  content:"\f729";
}
.b-fa-hand-middle-finger::before{
  content:"\f806";
}
.b-fa-percent::before{
  content:"\%";
}
.b-fa-percentage::before{
  content:"\%";
}
.b-fa-truck-moving::before{
  content:"\f4df";
}
.b-fa-glass-water-droplet::before{
  content:"\e4f5";
}
.b-fa-display::before{
  content:"\e163";
}
.b-fa-face-smile::before{
  content:"\f118";
}
.b-fa-smile::before{
  content:"\f118";
}
.b-fa-thumbtack::before{
  content:"\f08d";
}
.b-fa-thumb-tack::before{
  content:"\f08d";
}
.b-fa-trophy::before{
  content:"\f091";
}
.b-fa-person-praying::before{
  content:"\f683";
}
.b-fa-pray::before{
  content:"\f683";
}
.b-fa-hammer::before{
  content:"\f6e3";
}
.b-fa-hand-peace::before{
  content:"\f25b";
}
.b-fa-rotate::before{
  content:"\f2f1";
}
.b-fa-sync-alt::before{
  content:"\f2f1";
}
.b-fa-spinner::before{
  content:"\f110";
}
.b-fa-robot::before{
  content:"\f544";
}
.b-fa-peace::before{
  content:"\f67c";
}
.b-fa-gears::before{
  content:"\f085";
}
.b-fa-cogs::before{
  content:"\f085";
}
.b-fa-warehouse::before{
  content:"\f494";
}
.b-fa-arrow-up-right-dots::before{
  content:"\e4b7";
}
.b-fa-splotch::before{
  content:"\f5bc";
}
.b-fa-face-grin-hearts::before{
  content:"\f584";
}
.b-fa-grin-hearts::before{
  content:"\f584";
}
.b-fa-dice-four::before{
  content:"\f524";
}
.b-fa-sim-card::before{
  content:"\f7c4";
}
.b-fa-transgender::before{
  content:"\f225";
}
.b-fa-transgender-alt::before{
  content:"\f225";
}
.b-fa-mercury::before{
  content:"\f223";
}
.b-fa-arrow-turn-down::before{
  content:"\f149";
}
.b-fa-level-down::before{
  content:"\f149";
}
.b-fa-person-falling-burst::before{
  content:"\e547";
}
.b-fa-award::before{
  content:"\f559";
}
.b-fa-ticket-simple::before{
  content:"\f3ff";
}
.b-fa-ticket-alt::before{
  content:"\f3ff";
}
.b-fa-building::before{
  content:"\f1ad";
}
.b-fa-angles-left::before{
  content:"\f100";
}
.b-fa-angle-double-left::before{
  content:"\f100";
}
.b-fa-qrcode::before{
  content:"\f029";
}
.b-fa-clock-rotate-left::before{
  content:"\f1da";
}
.b-fa-history::before{
  content:"\f1da";
}
.b-fa-face-grin-beam-sweat::before{
  content:"\f583";
}
.b-fa-grin-beam-sweat::before{
  content:"\f583";
}
.b-fa-file-export::before{
  content:"\f56e";
}
.b-fa-arrow-right-from-file::before{
  content:"\f56e";
}
.b-fa-shield::before{
  content:"\f132";
}
.b-fa-shield-blank::before{
  content:"\f132";
}
.b-fa-arrow-up-short-wide::before{
  content:"\f885";
}
.b-fa-sort-amount-up-alt::before{
  content:"\f885";
}
.b-fa-house-medical::before{
  content:"\e3b2";
}
.b-fa-golf-ball-tee::before{
  content:"\f450";
}
.b-fa-golf-ball::before{
  content:"\f450";
}
.b-fa-circle-chevron-left::before{
  content:"\f137";
}
.b-fa-chevron-circle-left::before{
  content:"\f137";
}
.b-fa-house-chimney-window::before{
  content:"\e00d";
}
.b-fa-pen-nib::before{
  content:"\f5ad";
}
.b-fa-tent-arrow-turn-left::before{
  content:"\e580";
}
.b-fa-tents::before{
  content:"\e582";
}
.b-fa-wand-magic::before{
  content:"\f0d0";
}
.b-fa-magic::before{
  content:"\f0d0";
}
.b-fa-dog::before{
  content:"\f6d3";
}
.b-fa-carrot::before{
  content:"\f787";
}
.b-fa-moon::before{
  content:"\f186";
}
.b-fa-wine-glass-empty::before{
  content:"\f5ce";
}
.b-fa-wine-glass-alt::before{
  content:"\f5ce";
}
.b-fa-cheese::before{
  content:"\f7ef";
}
.b-fa-yin-yang::before{
  content:"\f6ad";
}
.b-fa-music::before{
  content:"\f001";
}
.b-fa-code-commit::before{
  content:"\f386";
}
.b-fa-temperature-low::before{
  content:"\f76b";
}
.b-fa-person-biking::before{
  content:"\f84a";
}
.b-fa-biking::before{
  content:"\f84a";
}
.b-fa-broom::before{
  content:"\f51a";
}
.b-fa-shield-heart::before{
  content:"\e574";
}
.b-fa-gopuram::before{
  content:"\f664";
}
.b-fa-earth-oceania::before{
  content:"\e47b";
}
.b-fa-globe-oceania::before{
  content:"\e47b";
}
.b-fa-square-xmark::before{
  content:"\f2d3";
}
.b-fa-times-square::before{
  content:"\f2d3";
}
.b-fa-xmark-square::before{
  content:"\f2d3";
}
.b-fa-hashtag::before{
  content:"\#";
}
.b-fa-up-right-and-down-left-from-center::before{
  content:"\f424";
}
.b-fa-expand-alt::before{
  content:"\f424";
}
.b-fa-oil-can::before{
  content:"\f613";
}
.b-fa-t::before{
  content:"T";
}
.b-fa-hippo::before{
  content:"\f6ed";
}
.b-fa-chart-column::before{
  content:"\e0e3";
}
.b-fa-infinity::before{
  content:"\f534";
}
.b-fa-vial-circle-check::before{
  content:"\e596";
}
.b-fa-person-arrow-down-to-line::before{
  content:"\e538";
}
.b-fa-voicemail::before{
  content:"\f897";
}
.b-fa-fan::before{
  content:"\f863";
}
.b-fa-person-walking-luggage::before{
  content:"\e554";
}
.b-fa-up-down::before{
  content:"\f338";
}
.b-fa-arrows-alt-v::before{
  content:"\f338";
}
.b-fa-cloud-moon-rain::before{
  content:"\f73c";
}
.b-fa-calendar::before{
  content:"\f133";
}
.b-fa-trailer::before{
  content:"\e041";
}
.b-fa-bahai::before{
  content:"\f666";
}
.b-fa-haykal::before{
  content:"\f666";
}
.b-fa-sd-card::before{
  content:"\f7c2";
}
.b-fa-dragon::before{
  content:"\f6d5";
}
.b-fa-shoe-prints::before{
  content:"\f54b";
}
.b-fa-circle-plus::before{
  content:"\f055";
}
.b-fa-plus-circle::before{
  content:"\f055";
}
.b-fa-face-grin-tongue-wink::before{
  content:"\f58b";
}
.b-fa-grin-tongue-wink::before{
  content:"\f58b";
}
.b-fa-hand-holding::before{
  content:"\f4bd";
}
.b-fa-plug-circle-exclamation::before{
  content:"\e55d";
}
.b-fa-link-slash::before{
  content:"\f127";
}
.b-fa-chain-broken::before{
  content:"\f127";
}
.b-fa-chain-slash::before{
  content:"\f127";
}
.b-fa-unlink::before{
  content:"\f127";
}
.b-fa-clone::before{
  content:"\f24d";
}
.b-fa-person-walking-arrow-loop-left::before{
  content:"\e551";
}
.b-fa-arrow-up-z-a::before{
  content:"\f882";
}
.b-fa-sort-alpha-up-alt::before{
  content:"\f882";
}
.b-fa-fire-flame-curved::before{
  content:"\f7e4";
}
.b-fa-fire-alt::before{
  content:"\f7e4";
}
.b-fa-tornado::before{
  content:"\f76f";
}
.b-fa-file-circle-plus::before{
  content:"\e494";
}
.b-fa-book-quran::before{
  content:"\f687";
}
.b-fa-quran::before{
  content:"\f687";
}
.b-fa-anchor::before{
  content:"\f13d";
}
.b-fa-border-all::before{
  content:"\f84c";
}
.b-fa-face-angry::before{
  content:"\f556";
}
.b-fa-angry::before{
  content:"\f556";
}
.b-fa-cookie-bite::before{
  content:"\f564";
}
.b-fa-arrow-trend-down::before{
  content:"\e097";
}
.b-fa-rss::before{
  content:"\f09e";
}
.b-fa-feed::before{
  content:"\f09e";
}
.b-fa-draw-polygon::before{
  content:"\f5ee";
}
.b-fa-scale-balanced::before{
  content:"\f24e";
}
.b-fa-balance-scale::before{
  content:"\f24e";
}
.b-fa-gauge-simple-high::before{
  content:"\f62a";
}
.b-fa-tachometer::before{
  content:"\f62a";
}
.b-fa-tachometer-fast::before{
  content:"\f62a";
}
.b-fa-shower::before{
  content:"\f2cc";
}
.b-fa-desktop::before{
  content:"\f390";
}
.b-fa-desktop-alt::before{
  content:"\f390";
}
.b-fa-m::before{
  content:"M";
}
.b-fa-table-list::before{
  content:"\f00b";
}
.b-fa-th-list::before{
  content:"\f00b";
}
.b-fa-comment-sms::before{
  content:"\f7cd";
}
.b-fa-sms::before{
  content:"\f7cd";
}
.b-fa-book::before{
  content:"\f02d";
}
.b-fa-user-plus::before{
  content:"\f234";
}
.b-fa-check::before{
  content:"\f00c";
}
.b-fa-battery-three-quarters::before{
  content:"\f241";
}
.b-fa-battery-4::before{
  content:"\f241";
}
.b-fa-house-circle-check::before{
  content:"\e509";
}
.b-fa-angle-left::before{
  content:"\f104";
}
.b-fa-diagram-successor::before{
  content:"\e47a";
}
.b-fa-truck-arrow-right::before{
  content:"\e58b";
}
.b-fa-arrows-split-up-and-left::before{
  content:"\e4bc";
}
.b-fa-hand-fist::before{
  content:"\f6de";
}
.b-fa-fist-raised::before{
  content:"\f6de";
}
.b-fa-cloud-moon::before{
  content:"\f6c3";
}
.b-fa-briefcase::before{
  content:"\f0b1";
}
.b-fa-person-falling::before{
  content:"\e546";
}
.b-fa-image-portrait::before{
  content:"\f3e0";
}
.b-fa-portrait::before{
  content:"\f3e0";
}
.b-fa-user-tag::before{
  content:"\f507";
}
.b-fa-rug::before{
  content:"\e569";
}
.b-fa-earth-europe::before{
  content:"\f7a2";
}
.b-fa-globe-europe::before{
  content:"\f7a2";
}
.b-fa-cart-flatbed-suitcase::before{
  content:"\f59d";
}
.b-fa-luggage-cart::before{
  content:"\f59d";
}
.b-fa-rectangle-xmark::before{
  content:"\f410";
}
.b-fa-rectangle-times::before{
  content:"\f410";
}
.b-fa-times-rectangle::before{
  content:"\f410";
}
.b-fa-window-close::before{
  content:"\f410";
}
.b-fa-baht-sign::before{
  content:"\e0ac";
}
.b-fa-book-open::before{
  content:"\f518";
}
.b-fa-book-journal-whills::before{
  content:"\f66a";
}
.b-fa-journal-whills::before{
  content:"\f66a";
}
.b-fa-handcuffs::before{
  content:"\e4f8";
}
.b-fa-triangle-exclamation::before{
  content:"\f071";
}
.b-fa-exclamation-triangle::before{
  content:"\f071";
}
.b-fa-warning::before{
  content:"\f071";
}
.b-fa-database::before{
  content:"\f1c0";
}
.b-fa-share::before{
  content:"\f064";
}
.b-fa-mail-forward::before{
  content:"\f064";
}
.b-fa-bottle-droplet::before{
  content:"\e4c4";
}
.b-fa-mask-face::before{
  content:"\e1d7";
}
.b-fa-hill-rockslide::before{
  content:"\e508";
}
.b-fa-right-left::before{
  content:"\f362";
}
.b-fa-exchange-alt::before{
  content:"\f362";
}
.b-fa-paper-plane::before{
  content:"\f1d8";
}
.b-fa-road-circle-exclamation::before{
  content:"\e565";
}
.b-fa-dungeon::before{
  content:"\f6d9";
}
.b-fa-align-right::before{
  content:"\f038";
}
.b-fa-money-bill-1-wave::before{
  content:"\f53b";
}
.b-fa-money-bill-wave-alt::before{
  content:"\f53b";
}
.b-fa-life-ring::before{
  content:"\f1cd";
}
.b-fa-hands::before{
  content:"\f2a7";
}
.b-fa-sign-language::before{
  content:"\f2a7";
}
.b-fa-signing::before{
  content:"\f2a7";
}
.b-fa-calendar-day::before{
  content:"\f783";
}
.b-fa-water-ladder::before{
  content:"\f5c5";
}
.b-fa-ladder-water::before{
  content:"\f5c5";
}
.b-fa-swimming-pool::before{
  content:"\f5c5";
}
.b-fa-arrows-up-down::before{
  content:"\f07d";
}
.b-fa-arrows-v::before{
  content:"\f07d";
}
.b-fa-face-grimace::before{
  content:"\f57f";
}
.b-fa-grimace::before{
  content:"\f57f";
}
.b-fa-wheelchair-move::before{
  content:"\e2ce";
}
.b-fa-wheelchair-alt::before{
  content:"\e2ce";
}
.b-fa-turn-down::before{
  content:"\f3be";
}
.b-fa-level-down-alt::before{
  content:"\f3be";
}
.b-fa-person-walking-arrow-right::before{
  content:"\e552";
}
.b-fa-square-envelope::before{
  content:"\f199";
}
.b-fa-envelope-square::before{
  content:"\f199";
}
.b-fa-dice::before{
  content:"\f522";
}
.b-fa-bowling-ball::before{
  content:"\f436";
}
.b-fa-brain::before{
  content:"\f5dc";
}
.b-fa-bandage::before{
  content:"\f462";
}
.b-fa-band-aid::before{
  content:"\f462";
}
.b-fa-calendar-minus::before{
  content:"\f272";
}
.b-fa-circle-xmark::before{
  content:"\f057";
}
.b-fa-times-circle::before{
  content:"\f057";
}
.b-fa-xmark-circle::before{
  content:"\f057";
}
.b-fa-gifts::before{
  content:"\f79c";
}
.b-fa-hotel::before{
  content:"\f594";
}
.b-fa-earth-asia::before{
  content:"\f57e";
}
.b-fa-globe-asia::before{
  content:"\f57e";
}
.b-fa-id-card-clip::before{
  content:"\f47f";
}
.b-fa-id-card-alt::before{
  content:"\f47f";
}
.b-fa-magnifying-glass-plus::before{
  content:"\f00e";
}
.b-fa-search-plus::before{
  content:"\f00e";
}
.b-fa-thumbs-up::before{
  content:"\f164";
}
.b-fa-user-clock::before{
  content:"\f4fd";
}
.b-fa-hand-dots::before{
  content:"\f461";
}
.b-fa-allergies::before{
  content:"\f461";
}
.b-fa-file-invoice::before{
  content:"\f570";
}
.b-fa-window-minimize::before{
  content:"\f2d1";
}
.b-fa-mug-saucer::before{
  content:"\f0f4";
}
.b-fa-coffee::before{
  content:"\f0f4";
}
.b-fa-brush::before{
  content:"\f55d";
}
.b-fa-mask::before{
  content:"\f6fa";
}
.b-fa-magnifying-glass-minus::before{
  content:"\f010";
}
.b-fa-search-minus::before{
  content:"\f010";
}
.b-fa-ruler-vertical::before{
  content:"\f548";
}
.b-fa-user-large::before{
  content:"\f406";
}
.b-fa-user-alt::before{
  content:"\f406";
}
.b-fa-train-tram::before{
  content:"\e5b4";
}
.b-fa-user-nurse::before{
  content:"\f82f";
}
.b-fa-syringe::before{
  content:"\f48e";
}
.b-fa-cloud-sun::before{
  content:"\f6c4";
}
.b-fa-stopwatch-20::before{
  content:"\e06f";
}
.b-fa-square-full::before{
  content:"\f45c";
}
.b-fa-magnet::before{
  content:"\f076";
}
.b-fa-jar::before{
  content:"\e516";
}
.b-fa-note-sticky::before{
  content:"\f249";
}
.b-fa-sticky-note::before{
  content:"\f249";
}
.b-fa-bug-slash::before{
  content:"\e490";
}
.b-fa-arrow-up-from-water-pump::before{
  content:"\e4b6";
}
.b-fa-bone::before{
  content:"\f5d7";
}
.b-fa-table-cells-row-unlock::before{
  content:"\e691";
}
.b-fa-user-injured::before{
  content:"\f728";
}
.b-fa-face-sad-tear::before{
  content:"\f5b4";
}
.b-fa-sad-tear::before{
  content:"\f5b4";
}
.b-fa-plane::before{
  content:"\f072";
}
.b-fa-tent-arrows-down::before{
  content:"\e581";
}
.b-fa-exclamation::before{
  content:"\!";
}
.b-fa-arrows-spin::before{
  content:"\e4bb";
}
.b-fa-print::before{
  content:"\f02f";
}
.b-fa-turkish-lira-sign::before{
  content:"\e2bb";
}
.b-fa-try::before{
  content:"\e2bb";
}
.b-fa-turkish-lira::before{
  content:"\e2bb";
}
.b-fa-dollar-sign::before{
  content:"\$";
}
.b-fa-dollar::before{
  content:"\$";
}
.b-fa-usd::before{
  content:"\$";
}
.b-fa-x::before{
  content:"X";
}
.b-fa-magnifying-glass-dollar::before{
  content:"\f688";
}
.b-fa-search-dollar::before{
  content:"\f688";
}
.b-fa-users-gear::before{
  content:"\f509";
}
.b-fa-users-cog::before{
  content:"\f509";
}
.b-fa-person-military-pointing::before{
  content:"\e54a";
}
.b-fa-building-columns::before{
  content:"\f19c";
}
.b-fa-bank::before{
  content:"\f19c";
}
.b-fa-institution::before{
  content:"\f19c";
}
.b-fa-museum::before{
  content:"\f19c";
}
.b-fa-university::before{
  content:"\f19c";
}
.b-fa-umbrella::before{
  content:"\f0e9";
}
.b-fa-trowel::before{
  content:"\e589";
}
.b-fa-d::before{
  content:"D";
}
.b-fa-stapler::before{
  content:"\e5af";
}
.b-fa-masks-theater::before{
  content:"\f630";
}
.b-fa-theater-masks::before{
  content:"\f630";
}
.b-fa-kip-sign::before{
  content:"\e1c4";
}
.b-fa-hand-point-left::before{
  content:"\f0a5";
}
.b-fa-handshake-simple::before{
  content:"\f4c6";
}
.b-fa-handshake-alt::before{
  content:"\f4c6";
}
.b-fa-jet-fighter::before{
  content:"\f0fb";
}
.b-fa-fighter-jet::before{
  content:"\f0fb";
}
.b-fa-square-share-nodes::before{
  content:"\f1e1";
}
.b-fa-share-alt-square::before{
  content:"\f1e1";
}
.b-fa-barcode::before{
  content:"\f02a";
}
.b-fa-plus-minus::before{
  content:"\e43c";
}
.b-fa-video::before{
  content:"\f03d";
}
.b-fa-video-camera::before{
  content:"\f03d";
}
.b-fa-graduation-cap::before{
  content:"\f19d";
}
.b-fa-mortar-board::before{
  content:"\f19d";
}
.b-fa-hand-holding-medical::before{
  content:"\e05c";
}
.b-fa-person-circle-check::before{
  content:"\e53e";
}
.b-fa-turn-up::before{
  content:"\f3bf";
}
.b-fa-level-up-alt::before{
  content:"\f3bf";
}
.sr-only,
.b-fa-sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border-width:0;
}
.sr-only-focusable:not(:focus),
.b-fa-sr-only-focusable:not(:focus){
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border-width:0;
}
.b-fa{
  font-family:inherit;
  font-weight:inherit;
  line-height:inherit;
  -webkit-font-smoothing:inherit;
}
.b-fa:before{
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
}
.b-icon::before, .b-indicator.b-constraint-type-muststarton::before, .b-indicator.b-constraint-type-mustfinishon::before, .b-indicator.b-deadline-date::before, .b-icon-version::before,
.b-fw-icon::before{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:inline-block;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  line-height:1;
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  display:inline-flex;
  justify-content:center;
  align-items:center;
}
.b-icon:after, .b-indicator.b-constraint-type-muststarton:after, .b-indicator.b-constraint-type-mustfinishon:after, .b-indicator.b-deadline-date:after, .b-icon-version:after{
  font-style:normal;
}
.b-fw-icon:before{
  vertical-align:0;
}
.b-icon-add:before{
  content:"+";
}
.b-icon-remove:before{
  content:"\f00d";
}
.b-icon-remove-circle:before{
  content:"\f057";
}
.b-icon-clear:before{
  content:"\f00d";
}
.b-icon-close:before, .b-popup-close:before{
  content:"\f00d";
}
.b-icon-collapse-down:before{
  content:"\f078";
}
.b-icon-collapse-left:before{
  content:"\f053";
}
.b-icon-collapse-right:before{
  content:"\f054";
}
.b-icon-collapse-up:before{
  content:"\f077";
}
.b-icon-filter-disable:before{
  content:"\f05e";
}
.b-icon-search:before{
  content:"\f002";
}
.b-icon-search-plus:before{
  content:"\f00e";
}
.b-icon-search-minus:before{
  content:"\f010";
}
.b-icon-hide:before{
  content:"\f057";
}
.b-icon-trash:before{
  content:"\f1f8";
}
.b-icon-edit:before{
  content:"\f303";
}
.b-icon-show-details:before{
  content:"\f002";
}
.b-icon-rename:before{
  content:"\f044";
}
.b-icon-copy:before{
  content:"\f0c5";
}
.b-icon-cut:before{
  content:"\f0c4";
}
.b-icon-paste:before{
  content:"\f0ea";
}
.b-icon-bold:before{
  content:"\f032";
}
.b-icon-italic:before{
  content:"\f033";
}
.b-icon-underline:before{
  content:"\f0cd";
}
.b-icon-expand-row:before{
  content:"\f107";
}
.b-icon-expand-column:before{
  content:"\f105";
}
.b-icon-expand, .b-popup-expand:before{
  content:"\f065";
}
.b-icon-first:before{
  content:"\f100";
}
.b-rtl > .b-icon-first:before{
  transform:scaleX(-1);
}
.b-icon-last:before{
  content:"\f101";
}
.b-rtl > .b-icon-last:before{
  transform:scaleX(-1);
}
.b-icon-reload:before{
  content:"\f01e";
}
.b-icon-undo:before{
  content:"\f0e2";
}
.b-icon-redo:before{
  content:"\f01e";
}
.b-icon-compare:before{
  content:"\e13a";
}
.b-icon-split-horizontal:before,
.b-icon-split-vertical:before,
.b-icon-split-both:before{
  min-width:1em !important;
  width:1em;
  height:1em;
  border-radius:2px;
  border:2px solid currentColor;
  overflow:hidden;
}
.b-icon-split-horizontal:before{
  content:"┃";
  transform:rotate(90deg);
  border-left-width:3px;
}
.b-icon-split-vertical:before{
  content:"┃";
  border-top-width:3px;
}
.b-icon-split-both:before{
  content:"╋";
  border-top-width:3px;
}
.b-icon-code:before{
  content:"\f121";
}
.b-icon-clipboard:before{
  content:"\f328";
}
.b-icon-filter:before,
.b-icon-filter-equal:before{
  content:"\f0b0";
}
.b-icon-clear-filter:before{
  content:"\e17b";
}
.b-icon-filter-less:before,
.b-icon-filter-before:before{
  content:"\f053";
}
.b-icon-filter-more:before,
.b-icon-filter-after:before{
  content:"\f054";
}
.b-icon-check:before{
  content:"\f00c";
}
.b-icon-checked:before{
  content:"\f14a";
}
.b-icon-unchecked:before{
  content:"\f0c8";
}
.b-icon-radio:before{
  content:"\f111";
}
.b-icon-radio-checked:before{
  content:"\f192";
}
.b-icon-radio-unchecked:before{
  content:"\f111";
}
.b-icon-calendar:before{
  content:"\f133";
}
.b-icon-calendar-plus:before{
  content:"\f271";
}
.b-icon-calendar-day:before{
  content:"\f783";
}
.b-icon-clock:before{
  content:"\f017";
}
.b-icon-recurring:before{
  content:"\f021";
}
.b-icon-duration:before{
  content:"\f254";
}
.b-icon-milestone:before{
  content:"\f219";
}
.b-icon-locked:before{
  content:"\f023";
}
.b-icon-unlocked:before{
  content:"\f3c1";
}
.b-icon-user:before{
  content:"\f007";
}
.b-icon-menu:before{
  content:"\f0c9";
}
.b-icon-menu-horizontal:before{
  content:"\f141";
}
.b-icon-menu-vertical:before{
  content:"\f142";
}
.b-icon-info:before{
  content:"\f129";
}
.b-icon-sub-menu:before{
  content:"\f054";
}
.b-icon-star:before{
  content:"\f005";
}
.b-icon-warning:before{
  content:"\f071";
}
.b-icon-columns:before{
  content:"\f0db";
}
.b-icon-picker:before{
  content:"\f0d7";
  transition:transform 0.2s;
}
.b-icon-picker-rotated:before{
  content:"\f0d7";
  transform:rotate(180deg);
  transition:transform 0.2s;
}
.b-icon-resize-horizontal:before{
  content:"\f337";
}
.b-icon-fullscreen:before{
  content:"\f0b2";
}
.b-icon-cog:before{
  content:"\f013";
}
.b-linux .b-icon-cog:before, .b-windows .b-icon-cog:before{
  vertical-align:middle;
}
.b-icon-download:before{
  content:"\f019";
}
.b-icon-file-download:before{
  content:"\f56d";
}
.b-icon-sync:before{
  content:"\f2f1";
}
.b-icon-bad-mood-emoji:before{
  content:"\f119";
}
.b-icon-circle:before{
  content:"\f111";
}
.b-icon-square:before{
  content:"\f0c8";
}
.b-icon-merge-cells:before{
  content:"\f5fd";
}
.b-icon-up:before{
  content:"\f062";
}
.b-icon-down:before{
  content:"\f063";
}
.b-icon-before:before,
.b-icon-left:before{
  content:"\f060";
}
.b-rtl .b-icon-before:before{
  transform:scaleX(-1);
}
.b-icon-after:before,
.b-icon-right:before{
  content:"\f061";
}
.b-rtl .b-icon-after:before{
  transform:scaleX(-1);
}
.b-icon-angle-left:before{
  content:"\f104";
}
.b-icon-angle-right:before{
  content:"\f105";
}
.b-icon-previous:before{
  content:"\f053";
}
.b-rtl > .b-icon-previous:before,
.b-rtl.b-icon-previous:before{
  transform:scaleX(-1);
}
.b-icon-next:before{
  content:"\f054";
}
.b-rtl > .b-icon-next:before,
.b-rtl.b-icon-next:before{
  transform:scaleX(-1);
}
.b-icon-move-left-right:before{
  content:"\f337";
}
.b-icon-move-up-down:before{
  content:"\f338";
}
.b-icon-spinner:before{
  content:"\f110";
  animation:rotate 2s infinite linear;
}
.b-icon-column-move-left:before{
  content:"\f0a8";
}
.b-icon-column-move-right:before{
  content:"\f0a9";
}
.b-icon-hide-column:before{
  content:"\f057";
}
.b-icon-sort:before{
  content:"\f0dc";
}
.b-icon-sort-asc:before{
  content:"\f15e";
}
.b-icon-sort-desc:before{
  content:"\f15d";
}
.b-icon-sorted-asc:before{
  content:"\f062";
}
.b-icon-group-asc:before{
  content:"\f885";
}
.b-icon-group-desc:before{
  content:"\f160";
}
.b-icon-group-collapse:before{
  content:"\f078";
}
.b-icon-group-expand:before{
  content:"\f054";
}
.b-icon-grouped-asc:before{
  content:"\f012";
}
.b-icon-tree-expand:before{
  content:"\f105";
}
.b-icon-tree-collapse:before{
  content:"\f107";
}
.b-icon-tree-folder:before{
  content:"\f07b";
}
.b-icon-tree-folder-open:before{
  content:"\f07c";
}
.b-icon-tree-leaf:before{
  content:"\f111";
}
.b-icon-expand-gridregion:before{
  content:"\f054";
}
.b-icon-collapse-gridregion:before{
  content:"\f053";
}
.b-icon-lock-row:before{
  content:"\e67a";
}
.b-icon-unlock-row:before{
  content:"\e691";
}
.b-icon-unassign:before{
  content:"\f506";
}
.b-icon-valid:before{
  content:"\f00c";
}
.b-icon-invalid:before{
  content:"\f05e";
}
.b-icon-checking:before{
  content:"\f110";
}
.b-icon-expand-resource:before{
  content:"\f103";
}
.b-icon-note:before{
  content:"\f249";
}
.b-icon-advanced:before{
  content:"\f085";
}
.b-icon-palette:before{
  content:"\f53f";
}
.b-icon-renumber:before{
  content:"\f884";
}
.b-icon-indent:before{
  content:"\f03c";
}
.b-icon-outdent:before{
  content:"\f03b";
}
.b-icon-subtask::before{
  content:"\e476";
}
.b-icon-predecessor::before{
  content:"\e477";
}
.b-icon-successor::before{
  content:"\e47a";
}
.b-icon-link:before{
  content:"\f0c1";
}
.b-icon-unlink:before{
  content:"\f127";
}
.b-icon-calendar-days:before{
  content:"\f073";
}
.b-icon-calendar-week:before{
  content:"\f784";
}
.b-icon-chart:before{
  content:"\f201";
}
.b-icon-settings:before{
  content:"\f013";
}
.b-noselect{
  -webkit-user-select:none;
  user-select:none;
}
:root, :host{
  --rtl-negate:1;
}
.b-rtl{
  --rtl-negate:-1;
}
.b-released,
.b-hide-display,
.b-theme-info{
  display:none !important;
}
.b-hide-visibility{
  visibility:hidden !important;
}
.b-hide-offscreen, .b-scroll-hidden{
  visibility:hidden !important;
  position:absolute !important;
  top:-10000em;
  left:-10000em;
}
.b-yscroll-pad{
  display:none;
}
.b-visible-scrollbar .b-show-yscroll-padding > .b-yscroll-pad{
  display:block;
  order:9999;
  border-inline-start:1px solid #ddd;
}
.b-visible-scrollbar .b-show-yscroll-padding > .b-yscroll-pad .b-yscroll-pad-sizer{
  overflow-x:hidden;
  overflow-y:scroll;
  visibility:hidden;
  margin-inline-start:-1px;
  height:0;
}
.b-fx-highlight{
  z-index:9999 !important;
  animation-name:b-fx-highlight-animation;
  animation-duration:2s;
  animation:b-fx-highlight-animation 2s ease 0s 1;
}
@keyframes b-fx-highlight-animation{
  0%{
    box-shadow:none;
  }
  50%{
    box-shadow:inset 0 0 10px 5px rgba(253, 126, 20, 0.5);
  }
  100%{
    box-shadow:none;
  }
}
@keyframes b-slide-in-from-right{
  30%{
    transform:translateX(-30%);
    opacity:0.1;
  }
  30.01%{
    transform:translateX(30%);
  }
  100%{
    transform:translateX(0);
    opacity:1;
  }
}
@keyframes b-slide-in-from-left{
  30%{
    transform:translateX(30%);
    opacity:0.1;
  }
  30.01%{
    transform:translateX(-30%);
  }
  100%{
    transform:translateX(0);
    opacity:1;
  }
}
@keyframes b-slide-in-from-below{
  30%{
    transform:translateY(-30%);
    opacity:0.1;
  }
  30.01%{
    transform:translateY(30%);
  }
  100%{
    transform:translateY(0);
    opacity:1;
  }
}
@keyframes b-slide-in-from-above{
  30%{
    transform:translateY(30%);
    opacity:0.1;
  }
  30.01%{
    transform:translateY(-30%);
  }
  100%{
    transform:translateY(0);
    opacity:1;
  }
}
.b-slide-vertical.b-slide-in-next{
  animation:b-slide-in-from-below 0.3s ease 0s 1 normal;
}
.b-slide-vertical.b-slide-in-previous{
  animation:b-slide-in-from-above 0.3s ease 0s 1 normal;
}
:not(.b-slide-vertical).b-slide-in-next{
  animation:b-slide-in-from-right 0.3s ease 0s 1 normal;
}
:not(.b-slide-vertical).b-slide-in-previous{
  animation:b-slide-in-from-left 0.3s ease 0s 1 normal;
}
.b-rtl :not(.b-slide-vertical).b-slide-in-next{
  animation:b-slide-in-from-left 0.3s ease 0s 1 normal;
}
.b-rtl :not(.b-slide-vertical).b-slide-in-previous{
  animation:b-slide-in-from-right 0.3s ease 0s 1 normal;
}
.b-sliding-child-element{
  overflow:hidden !important;
  overflow:clip !important;
}
.b-no-resizeobserver.b-resize-monitored{
  position:relative;
}
.b-no-resizeobserver.b-resize-monitored .b-resize-monitors{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  visibility:hidden;
  overflow:hidden;
}
.b-no-resizeobserver.b-resize-monitored .b-resize-monitors > *{
  width:100%;
  height:100%;
  overflow:hidden;
}
.b-no-resizeobserver.b-resize-monitored .b-resize-monitors > .b-resize-monitor-expand:after{
  content:"";
  display:block;
  width:100000px;
  height:100000px;
}
.b-no-resizeobserver.b-resize-monitored .b-resize-monitors > .b-resize-monitor-shrink:after{
  content:"";
  display:block;
  width:200%;
  height:200%;
  min-width:1px;
  min-height:1px;
}
.b-float-root{
  position:fixed;
  inset:0;
  pointer-events:none;
  overflow:clip;
  z-index:11000;
  contain:strict;
  display:flex;
  justify-content:center;
  align-items:center;
}
.b-float-root.b-safari{
  -webkit-user-select:none;
  user-select:none;
}
.b-float-root > .b-floating{
  position:absolute;
  contain:layout style;
  pointer-events:all;
  transition:opacity 0.2s;
  box-shadow:0 3px 6px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.24);
  top:0;
  inset-inline-start:0;
  z-index:11001;
}
.b-firefox .b-float-root > .b-floating{
  contain:layout;
}
.b-float-root > .b-floating.b-hidden{
  opacity:0;
}
.b-float-root > .b-floating.b-aligned-above:not(.b-anchored){
  box-shadow:-3px -1px 6px rgba(0, 0, 0, 0.12), 3px -2px 6px rgba(0, 0, 0, 0.24);
}
.b-trial-demo-mode [style*="data:image/svg+xml"]{
  background-image:none !important;
}
.b-gripper{
  position:absolute;
}
.b-gripper:after{
  content:" ";
  position:absolute;
  opacity:0;
}
.b-hover-top .b-gripper.b-gripper-horz, .b-hover-bottom .b-gripper.b-gripper-horz{
  cursor:ns-resize;
  height:1em;
  left:0;
  right:0;
}
.b-hover-bottom .b-gripper.b-gripper-horz{
  bottom:0;
}
.b-gripper.b-gripper-horz:after{
  border-top:1px solid rgba(0, 0, 0, 0.3);
  border-bottom:1px solid rgba(0, 0, 0, 0.3);
  width:0;
  height:0.25em;
  left:50%;
  margin-inline-start:0;
}
.b-hover-top .b-gripper.b-gripper-horz:after{
  top:0.4em;
}
.b-hover-bottom .b-gripper.b-gripper-horz:after{
  bottom:0.4em;
}
.b-hover-anim.b-hover-edge .b-gripper.b-gripper-horz:after{
  transition:opacity 0.2s, margin-inline-start 0.2s, width 0.2s;
  opacity:1;
  margin-inline-start:-0.6em;
  width:1.2em;
}
.b-hover-left .b-gripper.b-gripper-vert, .b-hover-right .b-gripper.b-gripper-vert{
  cursor:ew-resize;
  width:1em;
  top:0;
  bottom:0;
}
.b-hover-right .b-gripper.b-gripper-vert{
  right:0;
}
.b-hover-left .b-gripper.b-gripper-vert{
  left:0;
}
.b-gripper.b-gripper-vert:after{
  background:repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.8) 3px);
  height:0;
  width:0.5em;
  top:50%;
  margin-top:0;
}
.b-hover-left .b-gripper.b-gripper-vert:after{
  left:4px;
}
.b-hover-right .b-gripper.b-gripper-vert:after{
  right:4px;
}
.b-hover-anim.b-hover-edge .b-gripper.b-gripper-vert:after{
  transition:opacity 0.2s, margin-top 0.2s, height 0.2s;
  opacity:1;
  margin-top:-6px;
  height:12px;
}
.b-resize-grip{
  position:absolute;
  z-index:1;
}
.b-resize-grip-top-start,
.b-resize-grip-top-end,
.b-resize-grip-bottom-start,
.b-resize-grip-bottom-end{
  width:0.5em;
  height:0.5em;
}
.b-resize-grip-top,
.b-resize-grip-top-start,
.b-resize-grip-top-end{
  top:0;
}
.b-resize-grip-bottom,
.b-resize-grip-bottom-start,
.b-resize-grip-bottom-end{
  bottom:0;
}
.b-resize-grip-start,
.b-resize-grip-top-start,
.b-resize-grip-bottom-start{
  inset-inline-start:0;
}
.b-resize-grip-end,
.b-resize-grip-top-end,
.b-resize-grip-bottom-end{
  inset-inline-end:0;
}
.b-resize-grip-top,
.b-resize-grip-bottom{
  height:0.5em;
}
.b-resize-grip-start,
.b-resize-grip-end{
  width:0.5em;
}
.b-resize-grip-top-start,
.b-resize-grip-bottom-end{
  cursor:nwse-resize;
  z-index:2;
}
.b-resize-grip-top-end,
.b-resize-grip-bottom-start{
  cursor:nesw-resize;
  z-index:2;
}
.b-resize-grip-top,
.b-resize-grip-bottom{
  cursor:ns-resize;
  width:100%;
  inset-inline-start:0;
}
.b-resize-grip-start,
.b-resize-grip-end{
  height:100%;
  top:0;
  cursor:ew-resize;
}
.b-dragging, .b-dragging *{
  pointer-events:none !important;
}
.b-dragging:not(.b-widget){
  z-index:100;
  opacity:0.8;
  box-sizing:border-box;
}
.b-dragging:not(.b-widget).b-drag-unified-proxy{
  opacity:0.65;
}
.b-dragging:not(.b-widget).b-drag-main{
  z-index:101;
  opacity:1;
}
.b-drag-proxy{
  position:absolute !important;
  top:0;
  left:0;
  pointer-events:none !important;
  box-sizing:border-box;
}
.b-drag-proxy *{
  box-sizing:border-box;
}
.b-drag-proxy *{
  pointer-events:none !important;
}
.b-aborting,
.b-drag-final-transition{
  transition-duration:0.3s;
  transition-property:all !important;
}
.b-drag-unified-animation{
  transition:transform 0.2s;
}
.b-drag-original.b-hidden{
  display:none !important;
}
.b-draghelper-active *{
  -webkit-user-select:none;
  user-select:none;
}
.simulated-mouse{
  position:absolute;
  z-index:100;
  top:10px;
  left:10px;
  transition:top 0.5s, left 0.5s;
  pointer-events:none;
  font-size:16px;
}
.simulated-mouse.quick{
  transition:top 0.05s, left 0.05s;
}
.simulated-mouse:after{
  position:absolute;
  content:"\f245";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  z-index:102;
}
.simulated-mouse.drag:before, .simulated-mouse.mousedown:before, .simulated-mouse.dblclick:before, .simulated-mouse.click:before{
  position:absolute;
  content:"";
  border:2px solid transparent;
  border-radius:50%;
  animation-name:click;
  animation-duration:0.2s;
  top:0;
  left:0;
  transform:translate(-50%, -50%);
  z-index:101;
  opacity:0.7;
}
.simulated-mouse.drag:after{
  content:"\f25a";
  left:-3px;
}
.simulated-mouse.dblclick:before{
  animation-name:dblclick;
  animation-duration:0.3s;
}
.simulated-mouse.mousedown:before, .simulated-mouse.drag:before{
  animation-name:none;
  width:1.5em;
  height:1.5em;
  border-color:red;
}
@keyframes click{
  0%{
    width:0;
    height:0;
  }
  90%{
    width:1.5em;
    height:1.5em;
    border-color:red;
  }
  100%{
    width:0;
    height:0;
    border-color:transparent;
  }
}
@keyframes dblclick{
  0%{
    width:0;
    height:0;
  }
  40%{
    width:1.5em;
    height:1.5em;
    border-color:red;
  }
  50%{
    width:0;
    height:0;
  }
  90%{
    width:1.5em;
    height:1.5em;
    border-color:red;
  }
  100%{
    width:0;
    height:0;
    border-color:transparent;
  }
}
.b-scroll-hidden{
  transform:translate(0, 0) !important;
}
.b-infinity-scroller{
  overflow:scroll;
}
.b-infinity-scroller.b-infinity-scroller-smooth{
  scroll-behavior:smooth;
}
.b-infinity-scroller-item{
  position:absolute !important;
}
.b-widget{
  --color-indigo:#3f51b5;
  --color-blue:#2196f3;
  --color-cyan:#3bc9db;
  --color-red:#f44336;
  --color-deep-orange:#ff5722;
  --color-orange:#ff9800;
  --color-amber:#ffc107;
  --color-yellow:#ffeb3b;
  --color-green:#4caf50;
  --color-teal:#009688;
  --color-light-green:#8bc34a;
  --color-lime:#cddc39;
  --color-purple:#9c27b0;
  --color-pink:#f783ac;
  --color-violet:#9775fa;
  --color-gray:#9e9e9e;
  --color-light-gray:#e0e0e0;
  --color-dark-gray:#424242;
  --color-white:#fff;
  --color-black:#000;
  display:inline-flex;
  overflow:hidden;
  line-height:initial;
  font-weight:400;
  font-size:1em;
  box-sizing:border-box;
  color-scheme:light;
}
.b-widget.b-initializing *{
  transition:none !important;
}
.b-widget.b-measure{
  display:block !important;
}
.b-widget.b-anchored{
  overflow:visible;
}
.b-widget.b-maximized{
  position:fixed;
  transform:none !important;
  width:100% !important;
  height:100% !important;
  max-width:100% !important;
  max-height:100% !important;
  top:0 !important;
  inset-inline-start:0 !important;
}
.b-widget.b-maximized.b-mobile .b-bottom-toolbar{
  order:-1;
  min-height:3.5em;
}
.b-widget.b-maximized.b-mobile .b-bottom-toolbar .b-toolbar-content{
  padding-block:0.5em 0;
  padding-inline-start:1em !important;
}
.b-widget *, .b-widget:before, .b-widget:after,
.b-widget *:before,
.b-widget *:after{
  box-sizing:border-box;
}
.b-widget.b-positioned{
  position:absolute;
  top:0;
  inset-inline-start:0;
}
.b-widget.b-positionable{
  position:absolute;
}
.b-widget.b-floating{
  box-shadow:0 3px 6px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.24);
}
.b-widget.b-floating.b-centered:not(.b-maximized), .b-widget.b-positioned.b-centered:not(.b-maximized){
  inset-inline-start:50%;
  top:50%;
}
.b-widget.b-floating.b-centered:not(.b-maximized):not(.b-rtl), .b-widget.b-positioned.b-centered:not(.b-maximized):not(.b-rtl){
  transform:translate(-50%, -50%);
}
.b-widget.b-floating.b-centered:not(.b-maximized).b-rtl, .b-widget.b-positioned.b-centered:not(.b-maximized).b-rtl{
  transform:translate(50%, -50%);
}
.b-widget > .b-focus-trap{
  position:absolute;
  display:none;
  clip:rect(0, 0, 0, 0);
}
.b-widget.b-focus-trapped.b-contains-focus > .b-focus-trap{
  display:inherit;
}
.b-widget.b-hidden.b-hide-mode-clip{
  clip:rect(0, 0, 0, 0) !important;
}
.b-widget.b-hidden.b-hide-mode-opacity{
  opacity:0 !important;
  pointer-events:none;
}
.b-widget.b-hidden.b-hide-mode-display{
  display:none !important;
}
.b-widget.b-hiding{
  pointer-events:none;
}
.b-widget .b-aria-desc-element{
  position:absolute;
  clip-path:polygon(0 0);
  contain:strict;
}
.b-widget .b-widget-inner{
  width:100%;
  position:relative;
  flex:1;
}
.b-widget .b-anchor{
  position:absolute;
  z-index:-1;
}
.b-widget .b-anchor svg{
  width:16px;
  height:8px;
  position:absolute;
  overflow:visible;
}
.b-widget .b-anchor.b-anchor-top, .b-widget .b-anchor.b-anchor-bottom{
  inset-inline-start:0;
  height:8px;
  width:100%;
}
.b-widget .b-anchor.b-anchor-top{
  bottom:calc(100% - 1px);
}
.b-widget .b-anchor.b-anchor-top svg{
  bottom:0;
}
.b-widget .b-anchor.b-anchor-bottom{
  top:calc(100% - 1px);
}
.b-widget .b-anchor.b-anchor-bottom svg{
  top:0;
  rotate:180deg;
}
.b-widget .b-anchor.b-anchor-start, .b-widget .b-anchor.b-anchor-end{
  top:0;
  width:8px;
  height:100%;
}
.b-widget .b-anchor.b-anchor-start{
  inset-inline-end:calc(100% - 1px);
}
.b-widget .b-anchor.b-anchor-start svg{
  right:0;
  width:8px;
  height:16px;
  rotate:270deg;
  transform-origin:8px 8px;
}
.b-widget .b-anchor.b-anchor-end{
  inset-inline-start:calc(100% - 1px);
}
.b-widget .b-anchor.b-anchor-end svg{
  rotate:90deg;
  width:8px;
  height:16px;
  transform-origin:4px 4px;
}
.b-widget.b-sub-menu .b-anchor.b-anchor-start, .b-widget.b-sub-menu .b-anchor.b-anchor-end{
  width:9px;
}
.b-slidingcontent-content{
  display:flex;
  flex-flow:row nowrap !important;
  align-items:stretch;
  scroll-snap-type:x mandatory;
}
.b-slidingcontent-content .b-carousel-item{
  flex:1 0 100%;
}
.b-widget-scroller{
  overflow:hidden;
  -webkit-overflow-scrolling:touch;
  overflow-anchor:none;
  position:relative;
}
.b-hide-scroll{
  scrollbar-width:none;
}
.b-hide-scroll::-webkit-scrollbar{
  display:none;
}
.b-scroller-stretcher{
  position:absolute;
  height:1px;
  width:1px;
  top:0;
  inset-inline-start:0;
}
.b-text-align-start,
.b-text-align-left{
  text-align:start;
}
.b-text-align-center{
  text-align:center;
}
.b-text-align-end,
.b-text-align-right{
  text-align:end;
}
.b-rtl{
  direction:rtl;
}
.b-rtl .b-anchor.b-anchor-start svg{
  rotate:90deg;
  transform-origin:4px 4px;
}
.b-rtl .b-anchor.b-anchor-end svg{
  rotate:270deg;
  transform-origin:8px 8px;
}
.b-ltr{
  direction:ltr;
}
.b-arialive-el{
  clip:rect(0, 0, 0, 0);
  position:absolute;
}
.b-firefox .b-anchor-end .b-pointer-el{
  margin-left:calc(var(--rtl-negate) * -1px);
}
.b-widget.b-badge{
  overflow:visible;
}
.b-badge::before{
  content:attr(data-badge);
  position:absolute;
  right:-1em;
  top:-1em;
  width:0;
  height:0;
  overflow:visible;
  padding:1em;
  background-color:#f44336;
  color:#fff;
  border-radius:50%;
  font-size:0.6em;
  z-index:5;
  display:flex;
  justify-content:center;
  align-items:center;
  animation-name:b-badge-show;
  animation-duration:0.3s;
}
.b-badge.b-rtl::before{
  left:-1em;
  right:auto;
}
.b-button.b-badge:before{
  font-size:0.7em;
}
@keyframes b-badge-show{
  0%{
    opacity:0;
    transform:scale(0.1) rotate(180deg);
  }
  100%{
    opacity:1;
    transform:scale(1) rotate(0deg);
  }
}
.b-button{
  --widget-primary-color-rgb:33,150,243;
  --button-background-opacity:0.05;
  --button-border-opacity:0.3;
  --button-text-color:var(--widget-primary-color-rgb);
  --button-text-opacity:1;
  --button-hover-background-opacity:var(--button-border-opacity);
  --button-pressed-text-color:255, 255, 255;
  --button-pressed-background-opacity:0.8;
  --button-pressed-hover-background-opacity:0.7;
  --button-pressed-disabled-background-opacity:0.1;
  --button-active-background-opacity:1;
  --button-focus-background-opacity:0.3;
  --button-pressed-focus-background-opacity:1;
  --button-disabled-background-opacity:0;
  --button-disabled-text-opacity:0.3;
  --button-disabled-border-opacity:0.2;
  --button-transparent-background-opacity:0;
  --button-transparent-text-opacity:1;
  --button-transparent-pressed-text-opacity:1;
  --button-transparent-hover-background-opacity:0.1;
  position:relative;
  padding:0 0.7em;
  min-height:3em;
  cursor:pointer;
  font-family:inherit;
  font-weight:500;
  transition:background-color 200ms, color 200ms, border 200ms;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-transform:uppercase;
  border:0 solid rgba(var(--widget-primary-color-rgb), var(--button-border-opacity));
  background-color:rgba(var(--widget-primary-color-rgb), var(--button-background-opacity));
  color:rgba(var(--button-text-color), var(--button-text-opacity));
  -webkit-user-select:none;
  user-select:none;
}
.b-button.b-text{
  min-width:3.3em;
}
.b-button.b-transparent{
  --button-background-opacity:var(--button-transparent-background-opacity);
  --button-text-opacity:var(--button-transparent-text-opacity);
  border:none;
}
.b-button.b-pressed{
  --button-background-opacity:var(--button-pressed-background-opacity);
  --button-text-color:var(--button-pressed-text-color);
}
.b-button.b-pressed.b-transparent{
  --button-text-color:var(--widget-primary-color-rgb);
  --button-background-opacity:var(--button-transparent-background-opacity);
  --button-text-opacity:var(--button-transparent-pressed-text-opacity);
}
.b-button.b-pressed:hover:not(.b-disabled){
  --button-background-opacity:var(--button-pressed-hover-background-opacity);
}
.b-button.b-pressed:hover:not(.b-disabled).b-transparent{
  --button-background-opacity:var(--button-transparent-hover-background-opacity);
}
.b-button.b-pressed[data-group]:not(.b-disabled):hover{
  --button-background-opacity:var(--button-pressed-hover-background-opacity);
}
.b-button:hover:not(.b-disabled){
  --button-background-opacity:var(--button-hover-background-opacity);
}
.b-button:hover:not(.b-disabled).b-transparent{
  --button-background-opacity:var(--button-transparent-hover-background-opacity);
}
.b-button:active:not(.b-disabled), .b-button:active:focus:not(.b-disabled){
  --button-background-opacity:var(--button-active-background-opacity);
  --button-text-color:var(--button-pressed-text-color);
}
.b-using-keyboard .b-button:focus, .b-button.b-using-keyboard:focus{
  --button-background-opacity:var(--button-focus-background-opacity);
}
.b-using-keyboard .b-button:focus.b-pressed:not(.b-transparent), .b-button.b-using-keyboard:focus.b-pressed:not(.b-transparent){
  --button-background-opacity:var(--button-pressed-focus-background-opacity);
}
.b-button.b-disabled{
  --button-background-opacity:var(--button-disabled-background-opacity);
  --button-text-opacity:var(--button-disabled-text-opacity);
  --button-border-opacity:var(--button-disabled-border-opacity);
}
.b-button.b-disabled.b-pressed{
  --button-background-opacity:var(--button-pressed-disabled-background-opacity);
}
.b-button:not(.b-tab){
  border-radius:2px;
}
.b-button::-moz-focus-inner{
  border:0;
}
.b-button label{
  margin:0;
  cursor:pointer;
  overflow:hidden;
  text-overflow:ellipsis;
}
.b-button.b-rotate-vertical{
  min-height:3em;
  min-width:3em;
  padding:0.7em 0 0.7em 0;
}
.b-button.b-rotate-vertical label{
  -webkit-writing-mode:vertical-lr;
  -ms-writing-mode:tb-lr;
  writing-mode:vertical-lr;
}
.b-button.b-rotate-left{
  flex-direction:column-reverse;
}
.b-button.b-rotate-left label{
  transform:rotate(180deg);
}
.b-button.b-rotate-left i{
  transform:rotate(270deg);
}
.b-button.b-rotate-right{
  flex-direction:column;
}
.b-button.b-rotate-right i{
  transform:rotate(90deg);
}
.b-button.b-icon-align-start i:not(.b-button-menu-icon, .b-tab-close){
  order:-100;
}
.b-button.b-icon-align-start:not(.b-rotate-vertical) label{
  margin-inline-start:0.5em;
}
.b-button.b-icon-align-start.b-rotate-right label{
  margin-inline-end:0.5em;
}
.b-button.b-icon-align-start.b-rotate-left label{
  margin-inline-start:0.5em;
}
.b-button.b-icon-align-end i{
  order:100;
}
.b-button.b-icon-align-end:not(.b-rotate-vertical) label{
  margin-inline-end:0.5em;
}
.b-button.b-icon-align-end.b-rotate-right label{
  margin-inline-start:0.5em;
}
.b-button.b-icon-align-end.b-rotate-left label{
  margin-inline-end:0.5em;
}
.b-button .b-button-menu-icon{
  margin-inline-start:0.5em;
}
.b-button i{
  font-size:1em;
}
.b-button label:empty{
  display:none;
}
.b-button.b-badge{
  overflow:visible !important;
}
.b-button.b-rounded{
  border-radius:50%;
  width:3em;
  height:3em;
}
.b-button:focus{
  outline:none;
}
.b-button:focus-visible{
  outline:1px solid #ff9800;
}
.b-button:disabled{
  cursor:default;
}
.b-button.b-borderless{
  border:none;
}
.b-button img.b-button-image{
  height:1.3em;
}
.b-button.b-splitbutton{
  padding-inline-end:0;
}
.b-button.b-splitbutton .b-button-menu-icon{
  height:100%;
  display:grid;
  place-content:center;
  padding-inline:0.7em 0.7em;
  border-inline-start:1px solid rgba(var(--widget-primary-color-rgb), var(--button-border-opacity));
  margin-inline-start:0.7em;
}
.b-button.b-raised{
  --button-background-opacity:1;
  --button-focus-background-opacity:0.7;
  --button-hover-background-opacity:0.8;
  --button-pressed-hover-background-opacity:1;
  color:#fff;
  border:none;
}
.b-button.b-raised:active{
  box-shadow:inset 0 0 5px rgba(0, 0, 0, 0.3);
}
.b-button.b-raised.b-pressed{
  box-shadow:inset 0 0 5px rgba(0, 0, 0, 0.3);
  background-image:linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.b-using-keyboard .b-button.b-raised.b-pressed:focus, .b-button.b-raised.b-pressed.b-using-keyboard:focus{
  background-image:linear-gradient(rgba(0, 0, 0, 0.0666666667), rgba(0, 0, 0, 0.0666666667));
}
.b-button.b-raised.b-disabled{
  --widget-primary-color-rgb:224,224,224;
}
.b-button-custom-content{
  display:flex;
  align-items:center;
}
.b-button-key{
  text-decoration:underline;
}
.b-button-key.b-align-end{
  margin-inline-start:0.5em;
}
.b-popup .b-bottom-toolbar .b-button.b-text{
  min-width:8em;
}
a.b-button{
  text-decoration:none;
}
.b-container{
  --autocontainer-gap:0.6em;
}
.b-container.b-outer, .b-auto-container:not(.b-toolbar-content).b-single-child > .b-container{
  align-self:stretch;
  flex:1 1 auto;
}
body.b-container.b-outer{
  margin:0;
  height:100%;
  width:100%;
  overflow:hidden;
}
.b-container:focus{
  outline:none;
}
.b-auto-container{
  gap:var(--autocontainer-gap);
}
.b-content-element{
  position:relative;
  display:flex;
  flex-flow:row wrap;
}
.b-content-element.b-flex-row{
  align-content:flex-start;
}
.b-content-element.b-text-content{
  display:block;
  overflow:auto;
}
.b-content-element > .b-field.b-half-width{
  flex:0 0 calc(50% - var(--autocontainer-gap) / 2);
}
.b-toolbar{
  --toolbar-min-size:4em;
  --toolbar-content-padding:0.8em;
  background-color:#fff;
  color:#616161;
  flex-shrink:0;
}
.b-toolbar.b-dock-header, .b-toolbar.b-dock-pre-header{
  background-color:transparent;
}
.b-toolbar.b-dock-header .b-toolbar-content, .b-toolbar.b-dock-pre-header .b-toolbar-content{
  padding:0;
}
.b-toolbar.b-dock-header > .b-button, .b-toolbar.b-dock-pre-header > .b-button{
  margin:0;
}
.b-toolbar.b-dock-header .b-button, .b-toolbar.b-dock-pre-header .b-button{
  min-height:auto;
}
.b-toolbar.b-dock-header{
  margin-inline-start:1em;
}
.b-toolbar.b-dock-pre-header{
  margin-inline-end:1em;
}
.b-toolbar > .b-tool{
  align-self:center;
  background-color:transparent;
}
.b-toolbar > .b-tool.b-pressed{
  background-color:rgba(50, 50, 50, 0.2);
}
.b-toolbar .b-button:not(.b-text){
  flex-shrink:0;
}
.b-toolbar .b-row-start-scroller{
  margin:0;
  margin-inline-end:0.8em;
}
.b-toolbar.b-dock-left .b-row-start-scroller{
  margin:0;
  margin-inline-start:0.8em;
}
.b-toolbar.b-dock-right .b-row-start-scroller{
  margin:0;
  margin-inline-start:0.8em;
}
.b-toolbar .b-row-end-scroller, .b-toolbar .b-row-menu{
  margin:0;
  margin-inline-start:0.8em;
}
.b-toolbar .b-column-start-scroller{
  margin:0 0 0.8em 0;
}
.b-toolbar .b-column-end-scroller, .b-toolbar .b-column-menu{
  margin:0.8em 0 0 0;
}
.b-toolbar > .b-overflow-button{
  margin:0.8em;
}
.b-toolbar.b-rtl > .b-overflow-button::before{
  transform:scaleX(-1);
}
.b-toolbar.b-dock-bottom{
  --toolbar-min-size:3em;
  --toolbar-content-padding:1em;
}
.b-toolbar .b-toolbar-content{
  overflow:hidden;
  padding:var(--toolbar-content-padding);
  gap:0.8em;
}
.b-toolbar .b-toolbar-content .b-field{
  margin-bottom:0;
}
.b-toolbar .b-toolbar-content > .b-toolbar-fill{
  flex:1 1 0%;
}
.b-toolbar .b-toolbar-content .b-html{
  align-items:center;
}
.b-toolbar .b-toolbar-content.b-overflow .b-field, .b-toolbar .b-toolbar-content.b-overflow .b-button{
  flex-shrink:0;
}
.b-toolbar.b-dock-top .b-toolbar-content, .b-toolbar.b-dock-bottom .b-toolbar-content{
  min-height:var(--toolbar-min-size);
}
.b-toolbar.b-dock-top .b-toolbar-content > .b-toolbar-separator, .b-toolbar.b-dock-bottom .b-toolbar-content > .b-toolbar-separator{
  margin-block:0.2em;
  border-style:solid;
  border-width:0 1px 0 1px;
  border-inline-start-color:rgb(229.5, 229.5, 229.5);
  border-inline-end-color:rgb(242.25, 242.25, 242.25);
}
.b-toolbar.b-dock-top .b-toolbar-content > .b-widget:not(.b-button), .b-toolbar.b-dock-bottom .b-toolbar-content > .b-widget:not(.b-button){
  min-height:0;
}
.b-toolbar.b-dock-left .b-toolbar-content, .b-toolbar.b-dock-right .b-toolbar-content{
  min-width:var(--toolbar-min-size);
}
.b-toolbar.b-dock-left .b-toolbar-content > .b-toolbar-separator, .b-toolbar.b-dock-right .b-toolbar-content > .b-toolbar-separator{
  margin:0 0.5em 0.2em 0.2em;
  border-style:solid;
  border-width:1px 0 1px 0;
  border-top-color:rgb(229.5, 229.5, 229.5);
  border-bottom-color:rgb(242.25, 242.25, 242.25);
}
.b-toolbar.b-dock-left .b-toolbar-content > .b-widget:not(.b-button), .b-toolbar.b-dock-right .b-toolbar-content > .b-widget:not(.b-button){
  min-width:0;
}
.b-tabpanel .b-panel .b-toolbar{
  background-color:transparent;
}
.b-toolbar.b-outer{
  background-color:#fff;
}
.b-toolbar-overflow-menu > .b-panel-body-wrap > .b-menu-content .b-widget{
  flex:0 0 auto !important;
  width:auto;
}
.b-pagingtoolbar .b-toolbar-content{
  justify-content:center;
}
.b-pagingtoolbar .b-toolbar-content .b-numberfield{
  width:unset;
}
.b-pagingtoolbar .b-toolbar-content .b-numberfield input{
  width:4em;
  text-align:center;
}
.b-pagingtoolbar .b-toolbar-content .b-disabled.b-html{
  color:#bdbdbd;
}
.b-buttongroup{
  overflow:visible;
  flex-shrink:0;
}
.b-buttongroup.b-content-element{
  display:inline-flex;
  flex-flow:row nowrap;
  gap:0;
}
.b-buttongroup.b-content-element.b-rotate-vertical{
  flex-direction:column;
}
.b-buttongroup.b-content-element.b-invalid{
  border-style:solid;
  border-width:1px;
  border-color:#f44336;
}
.b-buttongroup .b-button{
  margin:0;
}
.b-buttongroup .b-button:not(.b-pressed){
  box-shadow:none !important;
}
.b-buttongroup .b-button.b-pressed, .b-buttongroup .b-button:active{
  z-index:2;
}
.b-buttongroup.b-columned.b-content-element{
  flex:1;
  flex-wrap:wrap;
}
.b-buttongroup.b-columned.b-content-element .b-button{
  margin-inline-start:0;
}
.b-buttongroup.b-no-gap .b-button:not(.b-first-visible-child){
  margin-inline-start:0;
}
.b-buttongroup.b-no-gap .b-button:not(.b-first-visible-child):not(.b-last-visible-child){
  border-radius:0;
}
.b-buttongroup.b-no-gap .b-button.b-first-visible-child:not(.b-last-visible-child){
  border-top-right-radius:0;
  border-bottom-right-radius:0;
}
.b-buttongroup.b-no-gap .b-button.b-last-visible-child:not(.b-first-visible-child){
  border-top-left-radius:0;
  border-bottom-left-radius:0;
}
.b-buttongroup.b-no-gap.b-rtl .b-button.b-first-visible-child:not(.b-last-visible-child){
  border-top-left-radius:0;
  border-bottom-left-radius:0;
}
.b-buttongroup.b-no-gap.b-rtl .b-button.b-last-visible-child:not(.b-first-visible-child){
  border-top-right-radius:0;
  border-bottom-right-radius:0;
}
.b-editor{
  background-color:#fff;
  border-radius:2px;
}
.b-editor.b-positioned:not(.b-hidden){
  box-shadow:0 0 6px rgba(0, 0, 0, 0.1);
}
.b-editor.b-content-element > .b-widget.b-field{
  margin:0;
}
.b-editor.b-content-element > .b-widget.b-field > .b-field-inner{
  padding-inline-start:0.79em;
  padding-inline-end:0.79em;
}
@keyframes b-field-updated{
  0%{
    color:#424242;
  }
  25%{
    color:rgb(142.5, 142.5, 142.5);
  }
  75%{
    color:rgb(142.5, 142.5, 142.5);
  }
  100%{
    color:#424242;
  }
}
.b-field label{
  user-select:none;
}
.b-has-label.b-required label::after{
  content:"*";
}
.b-has-label.b-label-above{
  flex-direction:column;
}
.b-has-label.b-label-before .b-label{
  align-self:center;
  margin-inline-end:1em;
  flex-shrink:0;
}
.b-has-label.b-label-above .b-label{
  align-self:flex-start;
  flex:none !important;
  margin:0 0 0.4em 0.1em;
}
.b-has-label.b-open .b-label, .b-has-label:focus-within .b-label{
  color:#2196f3;
}
.b-container .b-has-label .b-label.b-align-end{
  margin-inline-start:1em;
  text-align:left;
}
.b-container .b-has-label.b-open .b-label, .b-container .b-has-label:focus-within .b-label{
  color:#2196f3;
}
.b-has-label.b-invalid .b-label{
  color:#f44336 !important;
}
.b-has-label.b-disabled .b-label{
  color:#bdbdbd;
}
.b-field-updated{
  animation-name:b-field-updated;
  animation-duration:0.5s;
}
.b-vbox.b-box-justify-stretch > .b-field,
.b-flex-column > .b-field{
  width:auto;
}
.b-flex-row > .b-field{
  align-self:flex-start;
  flex:1 0 100%;
}
.b-vbox > .b-field.b-label-above{
  margin-bottom:1.2em;
}
.b-field-inner{
  display:flex;
  flex:1 1 100%;
  align-items:center;
  background-color:transparent;
  border-radius:0;
  border-width:0 0 1px 0;
  border-style:solid;
  border-color:inherit;
  min-width:0;
  position:relative;
}
.b-field-container-inline > .b-field-inner{
  flex:0 1 auto;
}
.b-safari .b-field-inner{
  margin-block-end:0.3px;
}
.b-field-container:not(.b-field-container-inline){
  flex-wrap:wrap;
}
.b-field-container-wrap{
  display:flex;
  flex:1 1 auto;
  overflow:hidden;
  position:relative;
}
.b-field-container-wrap > .b-container{
  width:100%;
}
.b-field.b-collapsed:not(.b-field-container-inline) > .b-field-container-wrap{
  height:0;
}
.b-field.b-collapsed.b-field-container-inline > .b-field-container-wrap{
  opacity:0;
}
.b-field.b-collapsed:not(.b-field-container-inline) > .b-field-container-wrap > .b-container, .b-field.b-collapsing:not(.b-field-container-inline) > .b-field-container-wrap > .b-container{
  position:absolute;
  bottom:0;
}
.b-field-container-inline:not(.b-no-input) > .b-field-container-wrap{
  margin-inline-start:1em;
}
.b-field-hint{
  align-self:stretch;
  overflow:visible;
  pointer-events:none;
  position:relative;
  white-space:nowrap;
  width:0;
}
.b-field-hint .b-field-hint-content{
  position:absolute;
  inset-inline-end:0.6em;
  top:50%;
  transform:translateY(-50%);
  font-size:0.8em;
}
.b-legacy-inset .b-field-hint .b-field-hint-content{
  right:0.6em;
}
.b-legacy-inset .b-field-hint .b-field-hint-content.b-rtl{
  left:0.6em;
}
.b-field-no-hint .b-field-hint{
  display:none;
}
.b-safari .b-field input[autocomplete=off]::-webkit-contacts-auto-fill-button{
  visibility:hidden;
}
.b-numberfield,
.b-textareafield,
.b-textfield{
  align-items:stretch;
  min-width:3em;
  color:#424242;
  border-color:#9e9e9e;
  border-radius:0;
  position:relative;
  width:12.5em;
}
.b-numberfield.b-has-width,
.b-textareafield.b-has-width,
.b-textfield.b-has-width{
  width:auto;
}
.b-numberfield.b-contains-focus .b-field-inner,
.b-textareafield.b-contains-focus .b-field-inner,
.b-textfield.b-contains-focus .b-field-inner{
  border-color:#ff9800;
}
.b-numberfield .b-fieldtrigger,
.b-textareafield .b-fieldtrigger,
.b-textfield .b-fieldtrigger{
  color:#757575;
  cursor:pointer;
  flex:0 0 auto;
  align-items:center;
}
.b-numberfield .b-fieldtrigger.b-align-start,
.b-textareafield .b-fieldtrigger.b-align-start,
.b-textfield .b-fieldtrigger.b-align-start{
  padding-inline:0 0.5em;
}
.b-numberfield .b-fieldtrigger.b-align-end,
.b-textareafield .b-fieldtrigger.b-align-end,
.b-textfield .b-fieldtrigger.b-align-end{
  padding-inline:0.5em 0;
}
.b-numberfield .b-fieldtrigger:before,
.b-textareafield .b-fieldtrigger:before,
.b-textfield .b-fieldtrigger:before{
  font-size:1.3em;
  transition:transform 0.3s;
}
.b-numberfield .b-spintrigger,
.b-textareafield .b-spintrigger,
.b-textfield .b-spintrigger{
  flex-direction:column;
  font-size:1em;
}
.b-numberfield .b-spintrigger .b-spin-up:before,
.b-textareafield .b-spintrigger .b-spin-up:before,
.b-textfield .b-spintrigger .b-spin-up:before{
  content:"\f0d8";
  vertical-align:bottom;
}
.b-numberfield .b-spintrigger .b-spin-down:before,
.b-textareafield .b-spintrigger .b-spin-down:before,
.b-textfield .b-spintrigger .b-spin-down:before{
  content:"\f0d7";
  vertical-align:top;
}
.b-numberfield.b-hide-spinner .b-spintrigger,
.b-textareafield.b-hide-spinner .b-spintrigger,
.b-textfield.b-hide-spinner .b-spintrigger{
  display:none;
}
.b-numberfield input, .b-numberfield textarea, .b-numberfield bry-time,
.b-textareafield input,
.b-textareafield textarea,
.b-textareafield bry-time,
.b-textfield input,
.b-textfield textarea,
.b-textfield bry-time{
  background-color:transparent;
  color:inherit;
  padding:0.79em 0 0.7em;
  font-weight:400;
  flex:1 1 0;
  border:0 none;
  margin:0;
  font-family:inherit;
  font-size:inherit;
  min-width:1em;
  text-align:inherit;
}
.b-numberfield input:focus, .b-numberfield textarea:focus, .b-numberfield bry-time:focus,
.b-textareafield input:focus,
.b-textareafield textarea:focus,
.b-textareafield bry-time:focus,
.b-textfield input:focus,
.b-textfield textarea:focus,
.b-textfield bry-time:focus{
  outline:none;
}
.b-numberfield input::-ms-clear, .b-numberfield textarea::-ms-clear, .b-numberfield bry-time::-ms-clear,
.b-textareafield input::-ms-clear,
.b-textareafield textarea::-ms-clear,
.b-textareafield bry-time::-ms-clear,
.b-textfield input::-ms-clear,
.b-textfield textarea::-ms-clear,
.b-textfield bry-time::-ms-clear{
  display:none;
}
.b-numberfield textarea,
.b-textareafield textarea,
.b-textfield textarea{
  align-self:stretch;
}
.b-numberfield ::-webkit-input-placeholder,
.b-textareafield ::-webkit-input-placeholder,
.b-textfield ::-webkit-input-placeholder{
  color:#9e9e9e;
}
.b-numberfield.b-empty .b-fieldtrigger.b-icon-remove,
.b-textareafield.b-empty .b-fieldtrigger.b-icon-remove,
.b-textfield.b-empty .b-fieldtrigger.b-icon-remove{
  visibility:hidden;
}
.b-numberfield:focus-within .b-label i,
.b-textareafield:focus-within .b-label i,
.b-textfield:focus-within .b-label i{
  color:#ff9800;
}
.b-numberfield:not(.b-disabled):hover .b-label i,
.b-textareafield:not(.b-disabled):hover .b-label i,
.b-textfield:not(.b-disabled):hover .b-label i{
  color:#ff9800;
}
.b-numberfield:not(.b-disabled):hover .b-field-inner,
.b-textareafield:not(.b-disabled):hover .b-field-inner,
.b-textfield:not(.b-disabled):hover .b-field-inner{
  border-color:#212121;
}
.b-numberfield.b-invalid .b-field-inner,
.b-textareafield.b-invalid .b-field-inner,
.b-textfield.b-invalid .b-field-inner{
  border-color:#f44336 !important;
}
.b-numberfield.b-disabled,
.b-textareafield.b-disabled,
.b-textfield.b-disabled{
  color:#bdbdbd;
  cursor:default;
}
.b-safari .b-numberfield.b-disabled,
.b-safari .b-textareafield.b-disabled,
.b-safari .b-textfield.b-disabled{
  color:inherit;
}
.b-numberfield.b-disabled input,
.b-textareafield.b-disabled input,
.b-textfield.b-disabled input{
  cursor:text;
}
.b-numberfield.b-disabled .b-fieldtrigger,
.b-textareafield.b-disabled .b-fieldtrigger,
.b-textfield.b-disabled .b-fieldtrigger{
  color:#e0e0e0;
}
.b-numberfield.b-disabled .b-fieldtrigger,
.b-textareafield.b-disabled .b-fieldtrigger,
.b-textfield.b-disabled .b-fieldtrigger{
  cursor:default;
}
.b-numberfield.b-disabled .b-field-inner,
.b-textareafield.b-disabled .b-field-inner,
.b-textfield.b-disabled .b-field-inner{
  border-style:dotted;
}
.b-numberfield.b-readonly,
.b-textareafield.b-readonly,
.b-textfield.b-readonly{
  cursor:default;
}
.b-numberfield.b-readonly input,
.b-textareafield.b-readonly input,
.b-textfield.b-readonly input{
  cursor:text;
}
.b-numberfield.b-readonly .b-fieldtrigger,
.b-textareafield.b-readonly .b-fieldtrigger,
.b-textfield.b-readonly .b-fieldtrigger{
  color:#e0e0e0;
  cursor:default;
}
.b-numberfield input[type=number]::-webkit-inner-spin-button,
.b-numberfield input[type=number]::-webkit-outer-spin-button{
  -webkit-appearance:none;
  appearance:none;
  margin:0;
}
.b-numberfield input[type=number]{
  -moz-appearance:textfield;
  appearance:textfield;
}
.b-numberfield .b-field-inner .b-fieldtrigger.b-icon-remove{
  font-size:0.8em;
}
div.b-tooltip.b-field-error-tip{
  border:1px solid #f44336;
}
div.b-tooltip.b-field-error-tip .b-panel-body-wrap{
  background-color:#fff;
  color:#f44336;
  font-weight:bold;
  padding-block:0.1em;
}
div.b-tooltip.b-field-error-tip .b-panel-body-wrap .b-popup-content{
  background-color:#fff;
  color:#f44336;
  font-weight:bold;
}
.b-divider{
  position:relative;
  justify-content:center;
  margin:1em 0 1.5em 0;
}
.b-divider::before{
  content:"";
  width:100%;
  border-bottom:1px solid inherit;
  position:absolute;
  top:50%;
}
.b-divider::after{
  display:flex;
  content:attr(data-text);
  color:#424242;
  background:#fff;
  padding:0 1em;
  z-index:1;
  font-size:0.7em;
}
.b-list-item.b-special-field{
  font-style:italic;
}
.b-colorbox{
  width:1em;
  height:1em;
  border-radius:3px;
  background:currentColor;
  margin-inline-end:0.5em;
}
.b-colorfield:not(.b-colorless) .b-colorbox,
.b-colorboxcombo:not(.b-colorless) .b-colorbox{
  margin-inline:0 0.4em;
}
.b-colorfield:not(.b-colorless) .b-colorbox.b-no-color,
.b-colorboxcombo:not(.b-colorless) .b-colorbox.b-no-color{
  background:none;
  border:1px solid #757575;
}
.b-colorfield:not(.b-colorless) input,
.b-colorboxcombo:not(.b-colorless) input{
  padding-inline-start:0;
}
.b-colorfield.b-colorless .b-colorbox,
.b-colorboxcombo.b-colorless .b-colorbox{
  display:none;
}
.b-colorfield.b-empty,
.b-colorboxcombo.b-empty{
  color:#ccc;
}
.b-colorfield.b-empty ::-webkit-input-placeholder,
.b-colorboxcombo.b-empty ::-webkit-input-placeholder{
  color:#424242;
}
.b-colorfield.b-empty .b-colorbox,
.b-colorboxcombo.b-empty .b-colorbox{
  background:none;
  border:1px solid currentColor;
}
.b-colorpicker.b-list.b-widget{
  display:grid;
  grid-gap:0.8em;
  padding:1em;
}
.b-colorpicker.b-list.b-widget .b-list-item{
  border:none;
  width:2em;
  height:2em;
  border-radius:50%;
  padding:0;
  min-width:0;
  justify-content:center;
}
.b-colorpicker.b-list.b-widget .b-list-item.b-no-color{
  border:1px solid #757575;
}
.b-colorpicker.b-list.b-widget .b-list-item.b-no-color.b-selected:after{
  color:#999;
}
.b-colorpicker.b-list.b-widget .b-list-item.b-no-color:before{
  content:"";
  border-right:1px solid #757575;
  height:100%;
  transform:rotate(135deg);
  position:absolute;
}
.b-colorpicker.b-list.b-widget .b-list-item.b-color-active{
  outline:2px solid #999;
  outline-offset:2px;
}
.b-colorpicker.b-list.b-widget .b-list-item.b-selected:after{
  content:"\f00c";
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  color:#fff;
  text-shadow:0 0 1px #000;
  font-size:1.2em;
}
.b-popup .b-colorpicker{
  background:transparent;
}
.b-combo.b-open .b-fieldtrigger.b-icon-picker:before{
  transform:rotate(180deg);
}
.b-combo.b-inline-picker:not(.b-label-above){
  flex-wrap:wrap;
  align-content:flex-start;
}
.b-combo.b-inline-picker:not(.b-label-above) .b-field-inner{
  flex-shrink:0;
  align-self:flex-start;
}
.b-combo.b-inline-picker:not(.b-label-above) .b-combo-picker{
  flex:1 0 100%;
}
.b-combo .b-field-inner .b-fieldtrigger.b-icon-remove{
  font-size:0.8em;
}
.b-combo.b-hide-trigger .b-fieldtrigger.b-icon-picker, .b-combo.b-readonly .b-fieldtrigger.b-icon-picker{
  display:none;
}
.b-combo.b-uses-chipview .b-field-inner{
  align-self:stretch;
}
.b-combo.b-uses-chipview:not(.b-empty) input::placeholder{
  visibility:hidden;
}
.b-combo.b-uses-chipview .b-chipview{
  align-self:stretch;
  display:flex;
  flex-flow:wrap;
  flex:1 1 auto;
  align-items:center;
  margin:0.16em 0.3em;
}
.b-combo.b-uses-chipview .b-chipview:not(.b-empty) input{
  padding-inline-start:0.2em;
  order:99999;
}
.b-combo.b-uses-chipview.b-not-editable input{
  order:-1;
  min-width:0;
  padding-inline:0;
  flex:0 1 0;
  margin-inline-start:-0.3em;
}
.b-combo.b-uses-chipview.b-not-editable:not(.b-empty) .b-chipview .b-chip{
  padding-block:calc(0.3em + 0.5px);
  padding-inline:0.7em;
}
.b-combo.b-uses-chipview.b-not-editable:not(.b-empty) input{
  padding-inline:0;
}
.b-list.b-combo-picker.b-empty:not(.b-masked)[data-add-new-value]::after{
  content:attr(data-add-new-value);
  display:block;
  padding:0.8em;
  color:#616161;
  cursor:pointer;
}
.b-fieldfilterpicker .b-fieldfilterpicker-inputs{
  flex-wrap:wrap;
  gap:0.25em 0.5em;
}
.b-fieldfilterpicker .b-fieldfilterpicker-property,
.b-fieldfilterpicker .b-fieldfilterpicker-operator,
.b-fieldfilterpicker .b-fieldfilterpicker-values{
  flex:1 0 8em;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values-number{
  flex:1 0 3em;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values-duration{
  flex:1 0 6em;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values-time{
  flex:1 0 10em;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values{
  overflow:hidden;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values.b-hidden{
  display:none;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values-multiple{
  flex:0 0 100%;
}
.b-fieldfilterpicker .b-fieldfilterpicker-combo-locked > .b-field-inner{
  border:none;
  background:none;
}
.b-fieldfilterpicker .b-fieldfilterpicker-combo-locked > .b-field-inner input{
  padding-inline-start:0;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values{
  display:flex;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values-multiple{
  width:100%;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values > .b-field{
  flex:1;
  margin-block-end:0;
  align-self:baseline;
}
.b-fieldfilterpicker .b-fieldfilterpicker-value-separator{
  flex:none;
  padding:0 0.4em;
  align-self:center;
}
.b-fieldfilterpicker .b-fieldfilterpicker-values > .b-field:last-child::after{
  display:none;
}
.b-fieldfilterpickergroup .b-checkbox[data-ref=enableAllCheckbox] .b-checkbox-label::before{
  margin-inline-end:0.5em;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-row{
  padding-top:2.2em;
  position:relative;
  flex-shrink:0;
  align-items:baseline;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-row:first-child{
  padding-top:0;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-row:first-child::before{
  display:none;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-row::before{
  content:attr(data-separator-text);
  font-size:85%;
  position:absolute;
  text-align:center;
  line-height:2.2em;
  width:100%;
  height:2.2em;
  top:0;
  background-image:linear-gradient(to right, #e0e0e7, #e0e0e7 44%, transparent 46%, transparent 54%, #e0e0e7 56%);
  background-position:0 50%;
  background-size:100% 1px;
  background-repeat:no-repeat;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-row:not(.b-fieldfilterpickergroup-row-removable){
  padding-inline-end:2.25em;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-filter-active{
  flex:0 0 2rem;
  align-self:baseline;
  position:relative;
  top:1px;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-filter-active.b-slidetoggle{
  flex-basis:2.5rem;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-other-filters{
  padding:0.5em 0;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-add-button{
  align-self:center;
  margin-top:1.1em;
}
.b-fieldfilterpickergroup .b-fieldfilterpickergroup-remove{
  inline-size:2em;
  margin-inline-start:0.25em;
}
.b-filepicker{
  overflow:visible;
}
.b-filepicker.b-content-element{
  align-content:stretch;
}
.b-displayfield{
  color:inherit;
}
.b-displayfield .b-field-inner{
  border:0;
  background:transparent;
}
.b-displayfield .b-field-inner span{
  padding:0.79em 0;
}
.b-pickerfield.b-open .b-field-inner{
  border-color:#2196f3;
}
.b-pickerfield:not(.b-readonly):not(.b-disabled) input[readonly]{
  cursor:pointer;
}
.b-datefield.b-open .b-fieldtrigger{
  color:#2196f3 !important;
}
.b-datefield.b-no-steppers .b-step-trigger{
  display:none;
}
.b-datefield.b-rtl .b-step-trigger::before{
  transform:scaleX(-1);
}
.b-datetimefield{
  align-items:center;
  position:relative;
}
.b-datetimefield input{
  text-align:center;
}
.b-datetimefield .b-field-inner{
  height:100%;
}
.b-datetimefield .b-datefield{
  flex:1 1 55%;
  border-top-right-radius:0;
  border-bottom-right-radius:0;
}
.b-datetimefield .b-datefield .b-field-inner{
  border-inline-end:1px solid rgb(158.4, 158.4, 158.4);
  border-top-right-radius:0;
  border-bottom-right-radius:0;
}
.b-datetimefield .b-timefield{
  flex:1 1 45%;
  border-top-left-radius:0;
  border-bottom-left-radius:0;
}
.b-datetimefield .b-timefield .b-field-inner{
  border:none;
  border-top-left-radius:0;
  border-bottom-left-radius:0;
}
.b-datetimefield:not(.b-disabled):hover .b-field-inner, .b-datetimefield:focus-within .b-field-inner{
  border-color:#212121;
}
.b-datetimefield:not(.b-disabled):hover .b-datefield .b-field-inner, .b-datetimefield:focus-within .b-datefield .b-field-inner{
  border-inline-end:1px solid rgb(158.4, 158.4, 158.4);
}
.b-label{
  align-items:center;
  color:#424242;
  font-size:0.8em;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.b-container .b-label{
  color:#424242;
}
.b-list.b-multiselect .b-selected-icon::before, .b-checkbox > .b-field-inner .b-checkbox-label:before{
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  margin-inline-end:0.6em;
  font-size:0.9em;
  width:1.2em;
  height:1.2em;
  padding:0.6em;
  border-radius:2px;
  transition:var(--checkbox-label-transition);
  background-color:var(--checkbox-background-color);
  border:2px solid var(--checkbox-border-color);
}
.b-checkbox{
  --widget-primary-color-rgb:158,158,158;
  --checkbox-unchecked-check-opacity:0.1;
  --checkbox-unchecked-check-color:rgb(var(--widget-primary-color-rgb), var(--checkbox-unchecked-check-opacity));
  --checkbox-unchecked-background-color:transparent;
  --checkbox-unchecked-border-color:rgb(var(--widget-primary-color-rgb));
  --checkbox-checked-check-color:#fff;
  --checkbox-checked-background-color:rgb(var(--widget-primary-color-rgb));
  --checkbox-checked-border-color:rgb(var(--widget-primary-color-rgb));
  --checkbox-disabled-unchecked-check-color:transparent;
  --checkbox-disabled-checked-check-color:rgba(128, 128, 128, 0.15);
  --checkbox-disabled-background-color:rgba(128, 128, 128, 0.1);
  --checkbox-disabled-border-color:rgba(128, 128, 128, 0.15);
  --checkbox-check-color:var(--checkbox-unchecked-check-color);
  --checkbox-background-color:var(--checkbox-unchecked-background-color);
  --checkbox-border-color:var(--checkbox-unchecked-border-color);
  --checkbox-label-transition:color 0.2s, background-color 0.2s;
  --checkbox-input-transition:color 0.5s, background-color 0.5s;
  position:relative;
  align-items:center;
}
.b-checkbox.b-field-container > .b-field-inner{
  min-height:5.4ex;
}
.b-checkbox > .b-field-inner{
  border:none;
  background-color:transparent;
  white-space:nowrap;
  word-break:break-all;
}
.b-checkbox > .b-field-inner .b-checkbox-label{
  position:relative;
  font-size:inherit;
  cursor:pointer;
  color:#424242;
  white-space:normal;
}
.b-container .b-checkbox > .b-field-inner .b-checkbox-label{
  color:#424242;
}
.b-checkbox > .b-field-inner .b-checkbox-label:not(.b-radio-label):before{
  content:"\f00c";
  color:var(--checkbox-check-color);
}
.b-checkbox > .b-field-inner input[type=checkbox]{
  z-index:1;
  opacity:0;
  width:2.2em;
  height:2.2em;
  position:absolute;
  margin:0;
  cursor:pointer;
  transition:var(--checkbox-input-transition);
}
.b-checkbox > .b-field-inner input[type=checkbox]:checked + .b-checkbox-label:before{
  --checkbox-check-color:var(--checkbox-checked-check-color);
  --checkbox-background-color:var(--checkbox-checked-background-color);
  --checkbox-border-color:var(--checkbox-checked-border-color);
}
.b-checkbox.b-disabled > .b-field-inner{
  --checkbox-check-color:var(--checkbox-disabled-unchecked-check-color);
  --checkbox-background-color:var(--checkbox-disabled-background-color);
  --checkbox-border-color:var(--checkbox-disabled-border-color);
}
.b-checkbox.b-disabled > .b-field-inner .b-checkbox-label{
  color:#bdbdbd;
}
.b-checkbox.b-disabled > .b-field-inner input[type=checkbox]:checked + .b-checkbox-label:before{
  --checkbox-check-color:var(--checkbox-disabled-checked-check-color);
  --checkbox-background-color:var(--checkbox-disabled-background-color);
  --checkbox-border-color:var(--checkbox-disabled-border-color);
}
.b-using-keyboard .b-checkbox.b-contains-focus .b-checkbox-label::before,
.b-using-keyboard .b-checkbox.b-contains-focus .b-slidetoggle-toggle{
  outline:2px solid #ff9800;
  outline-offset:-2px;
}
.b-container .b-checkbox-label:before{
  margin:0.675em;
  margin-inline-end:0.6em;
  margin-inline-start:0;
  margin-top:0.5em;
}
.b-checkbox.b-field-container:not(.b-field-container-inline) > .b-field-container-wrap{
  margin-inline-start:2.2em;
}
.b-list{
  display:block;
  background-color:hsl(0, 0%, 105%);
  outline:none;
  padding:0;
  margin:0;
  -webkit-user-select:none;
  user-select:none;
}
.b-list.b-floating{
  border-radius:2px;
}
.b-list.b-empty:not(.b-masked){
  min-height:initial !important;
}
.b-list .b-empty-text{
  pointer-events:none;
}
.b-list.b-masked{
  padding:2em 0;
}
.b-list .b-selected-icon{
  margin-inline-end:0.5em;
  display:none;
}
.b-list .b-select-all-item{
  border-bottom:1px solid;
  font-weight:500;
  position:sticky;
  top:0;
  background-color:hsl(0, 0%, 105%);
  z-index:1;
}
:has(.b-list-title) > .b-list .b-select-all-item{
  top:2em;
}
.b-list .b-list-title{
  position:sticky;
  top:0;
  font-weight:500;
  background-color:hsl(0, 0%, 105%);
  z-index:1;
  height:2em;
}
.b-list.b-multiselect .b-selected-icon{
  display:inline-flex;
  visibility:visible;
  --widget-primary-color-rgb:158,158,158;
  --checkbox-unchecked-check-opacity:0.1;
  --checkbox-unchecked-check-color:rgb(var(--widget-primary-color-rgb), var(--checkbox-unchecked-check-opacity));
  --checkbox-unchecked-background-color:transparent;
  --checkbox-unchecked-border-color:rgb(var(--widget-primary-color-rgb));
  --checkbox-checked-check-color:#fff;
  --checkbox-checked-background-color:rgb(var(--widget-primary-color-rgb));
  --checkbox-checked-border-color:rgb(var(--widget-primary-color-rgb));
  --checkbox-disabled-unchecked-check-color:transparent;
  --checkbox-disabled-checked-check-color:rgba(128, 128, 128, 0.15);
  --checkbox-disabled-background-color:rgba(128, 128, 128, 0.1);
  --checkbox-disabled-border-color:rgba(128, 128, 128, 0.15);
  --checkbox-check-color:var(--checkbox-unchecked-check-color);
  --checkbox-background-color:var(--checkbox-unchecked-background-color);
  --checkbox-border-color:var(--checkbox-unchecked-border-color);
  --checkbox-label-transition:color 0.2s, background-color 0.2s;
  --checkbox-input-transition:color 0.5s, background-color 0.5s;
}
.b-list.b-multiselect .b-selected-icon::before{
  content:"\f00c";
  color:var(--checkbox-check-color);
}
.b-list.b-multiselect .b-selected .b-selected-icon{
  visibility:visible;
  --checkbox-check-color:var(--checkbox-checked-check-color);
  --checkbox-background-color:var(--checkbox-checked-background-color);
  --checkbox-border-color:var(--checkbox-checked-border-color);
}
.b-list-item{
  position:relative;
  padding:0.8em;
  color:#616161;
  cursor:pointer;
  background-color:transparent;
  transition:background-color 0.2s, color 0.2s;
  border-top:1px dotted rgba(0, 0, 0, 0);
  min-width:100px;
  overflow:hidden;
  overflow:clip;
  white-space:nowrap;
  display:flex;
  flex-direction:row;
  align-items:center;
}
.b-list-itemli{
  padding-inline-start:calc(var(--tree-level, 0) * 1em + 0.8em);
}
.b-list-item.b-hidden{
  display:none;
}
.b-list-item:first-child{
  border-top:none;
  border-top-right-radius:2px;
  border-top-left-radius:2px;
}
.b-list-item:last-child{
  border-bottom-right-radius:2px;
  border-bottom-left-radius:2px;
}
.b-list-item.b-active, .b-list-item:focus{
  outline:none;
}
.b-list-item.b-active:not(.b-disabled), .b-list-item:focus:not(.b-disabled){
  background-color:#eeeeee;
  color:#616161;
}
.b-list-item:is(.b-list-item-group-header, .b-list-item-tree-parent){
  font-weight:500;
}
.b-list-item:is(.b-list-item-group-header, .b-list-item-tree-parent) .b-icon-check{
  display:none;
}
.b-list-item:is(.b-list-item-group-header, .b-list-item-tree-parent) .b-list-expander-icon{
  margin-inline-start:auto;
  margin-inline-end:0;
  font-size:1.1em;
  min-width:0;
  min-height:0;
  padding:0;
  height:1.1em;
  width:1.1em;
  opacity:0.8;
  color:var(--button-text-color);
}
@media (pointer: coarse){
  .b-list-item:is(.b-list-item-group-header, .b-list-item-tree-parent) .b-list-expander-icon{
    font-size:1.4em;
    width:1.4em;
  }
}
.b-list-item:is(.b-list-item-group-header, .b-list-item-tree-parent) .b-list-expander-icon:hover{
  opacity:1;
}
.b-grouped .b-list-item:not(.b-list-item-group-header, .b-list-item-tree-parent){
  padding-inline-start:2em !important;
}
.b-virtualized .b-list-item{
  height:1.5em;
  box-sizing:content-box;
}
.b-chip{
  display:flex;
  align-items:center;
  padding-block:0.3em;
  padding-inline:0.7em;
  border-radius:1em;
  background-color:#e0e0e0;
  color:#333333;
  transition:background-color 0.3s, color 0.3s;
}
.b-chip .b-icon, .b-chip .b-indicator.b-constraint-type-muststarton, .b-chip .b-indicator.b-constraint-type-mustfinishon, .b-chip .b-indicator.b-deadline-date, .b-chip .b-icon-version{
  height:1.5em;
  width:1.5em;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color:rgb(236.75, 236.75, 236.75);
  color:#424242;
}
.b-chip .b-icon:first-child:not(.b-close-icon), .b-chip .b-indicator.b-constraint-type-muststarton:first-child:not(.b-close-icon), .b-chip .b-indicator.b-constraint-type-mustfinishon:first-child:not(.b-close-icon), .b-chip .b-indicator.b-deadline-date:first-child:not(.b-close-icon), .b-chip .b-icon-version:first-child:not(.b-close-icon){
  margin-inline-end:0.5em;
  margin-inline-start:-0.4em;
}
.b-chip:hover{
  background-color:rgb(211.25, 211.25, 211.25);
  color:rgb(38.25, 38.25, 38.25);
}
.b-chip:hover .b-icon, .b-chip:hover .b-indicator.b-constraint-type-muststarton, .b-chip:hover .b-indicator.b-constraint-type-mustfinishon, .b-chip:hover .b-indicator.b-deadline-date, .b-chip:hover .b-icon-version{
  background-color:rgb(236.75, 236.75, 236.75);
  color:#424242;
}
.b-chip.b-selected{
  background-color:#2196f3;
  color:#000;
}
.b-chip.b-selected .b-icon, .b-chip.b-selected .b-indicator.b-constraint-type-muststarton, .b-chip.b-selected .b-indicator.b-constraint-type-mustfinishon, .b-chip.b-selected .b-indicator.b-deadline-date, .b-chip.b-selected .b-icon-version{
  background-color:rgb(236.75, 236.75, 236.75);
  color:#2196f3;
}
.b-chip.b-selected:hover{
  background-color:rgb(12.8461538462, 138.0961538462, 237.6538461538);
  color:#000;
}
.b-chip.b-selected:hover .b-icon, .b-chip.b-selected:hover .b-indicator.b-constraint-type-muststarton, .b-chip.b-selected:hover .b-indicator.b-constraint-type-mustfinishon, .b-chip.b-selected:hover .b-indicator.b-deadline-date, .b-chip.b-selected:hover .b-icon-version{
  background-color:rgb(236.75, 236.75, 236.75);
  color:rgb(12.8461538462, 138.0961538462, 237.6538461538);
}
.b-chip.b-active{
  outline:1px solid #ff9800;
  outline-offset:2px;
}
.b-chip .b-close-icon{
  margin-inline-start:0.5em;
  cursor:pointer;
}
.b-chipview{
  background-color:transparent;
  gap:0.3em;
}
.b-chipview.b-empty::after{
  display:none;
}
.b-chipview input{
  padding-top:0.6em;
  padding-bottom:calc(0.6em + 1px);
}
.b-chipview.b-chips-closable .b-chip{
  padding-inline-end:0.3em;
}
@keyframes maskOpacity{
  0%{
    opacity:0;
  }
  100%{
    opacity:1;
  }
}
.b-masked{
  position:relative;
}
.b-mask{
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  z-index:10000;
  background-color:transparent;
}
.b-mask:not(.b-visible){
  opacity:0;
  pointer-events:none;
}
.b-mask:not(.b-prevent-transitions){
  transition:opacity 1s;
}
.b-mask:not(.b-prevent-transitions):not(.b-delayed-show){
  animation:maskOpacity 0.3s ease 0s 1;
}
.b-mask:not(.b-prevent-transitions).b-hidden{
  animation:maskOpacity 0.2s ease 0s 1 reverse;
}
.b-mask.b-delayed-show{
  opacity:0;
}
.b-mask.b-mask-bright, .b-mask.b-mask-bright-blur{
  background-color:rgba(255, 255, 255, 0.6980392157);
}
.b-mask.b-mask-dark, .b-mask.b-mask-dark-blur{
  background-color:rgba(0, 0, 0, 0.2980392157);
}
.b-mask-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  display:flex;
  flex-direction:column;
  color:#fff;
  background-color:#2196f3;
  border-radius:2px;
}
.b-mask-text{
  padding:1em;
  display:flex;
  align-items:center;
}
.b-mask-progress-bar{
  height:3px;
  background-color:#ff9800;
}
.b-mask-icon{
  margin-inline-end:0.5em;
}
.b-masked-dark-blur,
.b-masked-bright-blur{
  filter:blur(3px);
  transform:scale(1.01);
  transition:all 0.5s;
}
.b-panel.b-floating{
  border-radius:2px;
}
.b-panel.b-floating:not(.b-panel-has-header) > .b-panel-body-wrap, .b-panel.b-floating:not(.b-panel-has-header) > .b-panel-body-wrap > .b-panel-content{
  border-radius:inherit;
}
.b-panel.b-floating > .b-panel-header.b-dock-top, .b-panel.b-floating:not(.b-has-header) > .b-panel-body-wrap > .b-toolbar.b-dock-top{
  border-top-left-radius:2px;
  border-top-right-radius:2px;
}
.b-panel.b-floating > .b-panel-body-wrap > .b-toolbar.b-dock-bottom{
  border-bottom-left-radius:2px;
  border-bottom-right-radius:2px;
}
.b-panel.b-floating.b-panel-has-header > .b-panel-body-wrap > .b-panel-content, .b-panel.b-floating.b-panel-has-top-toolbar > .b-panel-body-wrap > .b-panel-content{
  border-top-left-radius:0;
  border-top-right-radius:0;
}
.b-panel.b-floating.b-panel-has-bottom-toolbar > .b-panel-body-wrap > .b-panel-content{
  border-bottom-left-radius:0;
  border-bottom-right-radius:0;
}
.b-panel{
  --b-drawer-size:30em;
  --panel-background-color:#fff;
  padding:0;
  color:#000;
  background-color:var(--panel-background-color);
  z-index:0;
}
.b-panel > .b-positionable{
  z-index:10;
}
.b-panel .b-panel-body-wrap{
  background-color:var(--panel-background-color);
  overflow:hidden;
}
.b-panel .b-auto-container-panel .b-toolbar.b-innermost.b-dock-top .b-toolbar-content{
  padding-bottom:0;
}
.b-panel .b-auto-container-panel .b-toolbar.b-innermost.b-dock-right .b-toolbar-content{
  padding-left:0;
}
.b-panel .b-auto-container-panel .b-toolbar.b-innermost.b-dock-bottom .b-toolbar-content{
  padding-top:0;
}
.b-panel .b-auto-container-panel .b-toolbar.b-innermost.b-dock-left .b-toolbar-content{
  padding-right:0;
}
.b-panel.b-html .b-panel-content{
  padding-block:3px;
  margin-block:1em;
}
.b-panel > .b-panel-overlay,
.b-panel > .b-panel-body-wrap{
  z-index:0;
}
.b-panel > .b-panel-collapse-size-locker{
  position:absolute !important;
}
.b-panel:not(.b-panel-collapsible-overlay).b-collapsed > .b-panel-collapse-size-locker{
  clip:rect(0, 0, 0, 0);
}
.b-panel:not(.b-panel-collapsible-overlay).b-panel-collapse-down:not(.b-panel-has-header) > .b-panel-collapse-size-locker, .b-panel:not(.b-panel-collapsible-overlay).b-header-dock-bottom.b-panel-collapse-down > .b-panel-collapse-size-locker, .b-panel:not(.b-panel-collapsible-overlay).b-header-dock-bottom.b-panel-collapse-up > .b-panel-collapse-size-locker{
  top:0;
}
.b-panel:not(.b-panel-collapsible-overlay).b-panel-collapse-up:not(.b-panel-has-header) > .b-panel-collapse-size-locker, .b-panel:not(.b-panel-collapsible-overlay).b-header-dock-top.b-panel-collapse-up > .b-panel-collapse-size-locker, .b-panel:not(.b-panel-collapsible-overlay).b-header-dock-top.b-panel-collapse-down > .b-panel-collapse-size-locker{
  bottom:0;
}
.b-panel:not(.b-panel-collapsible-overlay).b-panel-collapse-left:not(.b-panel-has-header) > .b-panel-collapse-size-locker, .b-panel:not(.b-panel-collapsible-overlay).b-header-dock-left.b-panel-collapse-left > .b-panel-collapse-size-locker, .b-panel:not(.b-panel-collapsible-overlay).b-header-dock-left.b-panel-collapse-right > .b-panel-collapse-size-locker{
  right:0;
}
.b-panel:not(.b-panel-collapsible-overlay).b-panel-collapse-right:not(.b-panel-has-header) > .b-panel-collapse-size-locker, .b-panel:not(.b-panel-collapsible-overlay).b-header-dock-right.b-panel-collapse-left > .b-panel-collapse-size-locker, .b-panel:not(.b-panel-collapsible-overlay).b-header-dock-right.b-panel-collapse-right > .b-panel-collapse-size-locker{
  left:0;
}
.b-panel.b-panel-collapsible-overlay:not(.b-collapsing, .b-expanding, .b-panel-overlay-revealed, .b-panel-overlay-revealing) > .b-panel-overlay > .b-panel-overlay-header{
  display:none;
}
.b-panel.b-panel-collapsible-overlay.b-panel-overlay-revealed > .b-panel-overlay{
  box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.3);
  overflow:visible;
}
.b-panel.b-panel-collapsible-overlay > .b-panel-header{
  transition:transform 0.2s ease-out;
}
.b-panel.b-panel-collapsible-overlay.b-collapsed > .b-panel-header > .b-collapsify-hide{
  display:none;
}
.b-panel.b-panel-collapsible-overlay.b-collapsing > .b-panel-header, .b-panel.b-panel-collapsible-overlay.b-expanding > .b-panel-header{
  opacity:0;
}
.b-panel.b-panel-collapsible-overlay:not(.b-collapsed, .b-collapsing) > .b-panel-overlay > .b-panel-overlay-header{
  display:none;
}
.b-panel.b-panel-collapsible-overlay.b-collapsing, .b-panel.b-panel-collapsible-overlay.b-expanding, .b-panel.b-panel-collapsible-overlay.b-panel-overlay-revealing, .b-panel.b-panel-collapsible-overlay.b-panel-overlay-revealed{
  overflow:visible;
  z-index:1;
}
.b-panel.b-panel-collapsible-overlay.b-collapsing{
  overflow:visible;
}
.b-panel.b-panel-collapsible-overlay.b-collapsing > .b-panel-header{
  z-index:-1;
}
.b-panel.b-panel-collapsible-overlay.b-collapsing.b-panel-collapse-up > .b-panel-header{
  transform:translate(0, -100%);
}
.b-panel.b-panel-collapsible-overlay.b-collapsing.b-panel-collapse-down > .b-panel-header{
  transform:translate(0, 100%);
}
.b-panel.b-panel-collapsible-overlay.b-collapsing.b-panel-collapse-right > .b-panel-header{
  transform:translate(100%, 0);
}
.b-panel.b-panel-collapsible-overlay.b-collapsing.b-panel-collapse-left > .b-panel-header{
  transform:translate(-100%, 0);
}
.b-panel.b-panel-collapsible-overlay.b-collapsed:not(.b-expanding) > .b-panel-collapse-size-locker{
  transition:transform 0.2s cubic-bezier(0.06, 1.1, 0.58, 1), clip-path 0.2s ease-out, top 0.2s ease-out, right 0.2s ease-out, bottom 0.2s ease-out, left 0.2s ease-out;
}
.b-panel.b-panel-collapsible-overlay.b-collapsed:not(.b-expanding).b-panel-collapse-up > .b-panel-collapse-size-locker{
  transform:translate(0, -100%);
}
.b-panel.b-panel-collapsible-overlay.b-collapsed:not(.b-expanding).b-panel-collapse-up.b-panel-overlay-revealed > .b-panel-collapse-size-locker{
  clip-path:inset(0 0 -10px 0);
  transform:translate(0, 0);
}
.b-panel.b-panel-collapsible-overlay.b-collapsed:not(.b-expanding).b-panel-collapse-down > .b-panel-collapse-size-locker{
  transform:translate(0, 100%);
}
.b-panel.b-panel-collapsible-overlay.b-collapsed:not(.b-expanding).b-panel-collapse-down.b-panel-overlay-revealed > .b-panel-collapse-size-locker{
  clip-path:inset(-10px 0 0 0);
  transform:translate(0, 0);
}
.b-panel.b-panel-collapsible-overlay.b-collapsed:not(.b-expanding).b-panel-collapse-left > .b-panel-collapse-size-locker{
  transform:translate(-100%, 0);
}
.b-panel.b-panel-collapsible-overlay.b-collapsed:not(.b-expanding).b-panel-collapse-left.b-panel-overlay-revealed > .b-panel-collapse-size-locker{
  clip-path:inset(0 -10px 0 0);
  transform:translate(0, 0);
}
.b-panel.b-panel-collapsible-overlay.b-collapsed:not(.b-expanding).b-panel-collapse-right > .b-panel-collapse-size-locker{
  transform:translate(100%, 0);
}
.b-panel.b-panel-collapsible-overlay.b-collapsed:not(.b-expanding).b-panel-collapse-right.b-panel-overlay-revealed > .b-panel-collapse-size-locker{
  clip-path:inset(0 0 0 -10px);
  transform:translate(0, 0);
}
.b-panel.b-panel-collapsible-overlay.b-expanding{
  flex:none !important;
  overflow:visible;
}
.b-panel.b-header-dock-right, .b-panel.b-header-dock-bottom{
  justify-content:flex-end;
}
.b-panel.b-collapsed:not(.b-expanding):not(.b-panel-overlay-revealed):not(.b-panel-overlay-revealing){
  visibility:hidden;
  flex:0 1 0px;
}
.b-panel.b-collapsed > .b-panel-collapse-revealer{
  visibility:visible;
  cursor:pointer;
}
.b-panel .b-panel-collapser-header{
  display:none;
}
.b-panel.b-collapse-unflex{
  flex-grow:unset !important;
  flex-basis:unset !important;
  flex-shrink:0 !important;
}
.b-panel.b-collapsed .b-panel-collapser-header, .b-panel.b-collapsing .b-panel-collapser-header{
  display:flex;
}
.b-panel.b-collapsed.b-header-dock-top, .b-panel.b-collapsed.b-header-dock-bottom, .b-panel.b-collapsing.b-header-dock-top, .b-panel.b-collapsing.b-header-dock-bottom{
  min-height:auto !important;
}
.b-panel.b-collapsed.b-header-dock-top.b-panel-collapsible-overlay, .b-panel.b-collapsed.b-header-dock-bottom.b-panel-collapsible-overlay, .b-panel.b-collapsing.b-header-dock-top.b-panel-collapsible-overlay, .b-panel.b-collapsing.b-header-dock-bottom.b-panel-collapsible-overlay{
  height:unset !important;
}
.b-vbox > .b-panel.b-collapsed.b-header-dock-top, .b-vbox > .b-panel.b-collapsed.b-header-dock-bottom, .b-vbox > .b-panel.b-collapsing.b-header-dock-top, .b-vbox > .b-panel.b-collapsing.b-header-dock-bottom{
  flex:none !important;
}
.b-panel.b-collapsed.b-header-dock-right, .b-panel.b-collapsed.b-header-dock-left, .b-panel.b-collapsing.b-header-dock-right, .b-panel.b-collapsing.b-header-dock-left{
  min-width:auto !important;
}
.b-panel.b-collapsed.b-header-dock-right.b-panel-collapsible-overlay, .b-panel.b-collapsed.b-header-dock-left.b-panel-collapsible-overlay, .b-panel.b-collapsing.b-header-dock-right.b-panel-collapsible-overlay, .b-panel.b-collapsing.b-header-dock-left.b-panel-collapsible-overlay{
  width:unset !important;
}
.b-hbox > .b-panel.b-collapsed.b-header-dock-right, .b-hbox > .b-panel.b-collapsed.b-header-dock-left, .b-hbox > .b-panel.b-collapsing.b-header-dock-right, .b-hbox > .b-panel.b-collapsing.b-header-dock-left{
  flex:none !important;
}
.b-panel.b-collapsed:not(.b-expanding).b-header-dock-right, .b-panel.b-collapsed:not(.b-expanding).b-header-dock-left{
  width:unset !important;
  flex:0 0 auto !important;
}
.b-panel.b-header-dock-top .b-panel-content{
  border-top-right-radius:0;
  border-top-left-radius:0;
}
.b-panel.b-header-dock-right .b-panel-content{
  border-top-right-radius:0;
  border-bottom-right-radius:0;
}
.b-panel.b-header-dock-bottom .b-panel-content{
  border-bottom-left-radius:0;
  border-bottom-right-radius:0;
}
.b-panel.b-header-dock-left .b-panel-content{
  border-top-left-radius:0;
  border-bottom-left-radius:0;
}
.b-panel.b-panel-has-bottom-toolbar .b-panel-content{
  border-bottom-left-radius:0;
  border-bottom-right-radius:0;
}
.b-panel.b-floating > .b-dock-top{
  border-top-right-radius:2px;
  border-top-left-radius:2px;
}
.b-panel.b-floating > .b-dock-right{
  border-top-right-radius:2px;
  border-bottom-right-radius:2px;
}
.b-panel.b-floating > .b-dock-bottom{
  position:static;
  border-bottom-left-radius:2px;
  border-bottom-right-radius:2px;
}
.b-panel.b-floating > .b-dock-left{
  border-top-left-radius:2px;
  border-bottom-left-radius:2px;
}
.b-panel.b-panel-ui-plain > .b-panel-header .b-tool{
  color:inherit;
}
.b-panel.b-panel-ui-plain, .b-panel.b-panel-ui-plain .b-panel-overlay{
  background-color:var(--panel-background-color);
}
.b-panel.b-panel-ui-plain .b-toolbar{
  background:transparent;
}
.b-drawer-panel:not(.b-positioned, .b-floating){
  flex:unset;
}
.b-drawer-panel.b-panel-overlay-revealed header.b-panel-collapse-revealer{
  display:none;
}
.b-drawer-panel header.b-panel-collapse-revealer{
  display:none;
}
.b-drawer-panel.b-panel-collapse-up{
  min-height:var(--b-drawer-size);
  height:auto;
  inset:0 0 auto 0;
}
.b-drawer-panel.b-panel-collapse-right{
  width:var(--b-drawer-size);
  inset:0 0 0 auto;
}
.b-drawer-panel.b-panel-collapse-down{
  min-height:var(--b-drawer-size);
  height:auto;
  inset:auto 0 0 0;
}
.b-drawer-panel.b-panel-collapse-left{
  width:var(--b-drawer-size);
  inset:0 auto 0 0;
}
.b-panel-content{
  justify-content:space-between;
  overflow:hidden;
  padding:1em;
}
.b-panel-ui-plain > .b-panel-content{
  padding-block:0;
}
.b-panel-content.b-auto-container.b-single-child > .b-container{
  flex:1 1 auto;
}
.b-panel-content.b-fit-container{
  padding:0;
}
.b-tabpanel .b-panel-content{
  background-color:transparent;
}
.b-panel-collapser{
  z-index:0;
}
.b-panel-header{
  display:flex;
  background-color:#2196f3;
  color:#fff;
  padding:1em;
  flex:0 0 auto;
  align-items:center;
  z-index:1;
  gap:0.5em;
}
.b-panel-header.b-panel-ui-toolbar{
  background-color:#fff;
  color:#616161;
  padding:0.8em;
}
.b-panel-header.b-panel-ui-toolbar .b-header-title{
  font-size:unset;
  font-weight:unset;
}
.b-panel-header.b-panel-ui-toolbar .b-tool{
  color:inherit;
}
.b-panel-header.b-panel-ui-toolbar.b-panel-ui-plain{
  border:none;
}
.b-panel-header.b-dock-right{
  flex-flow:column nowrap;
}
.b-panel-header.b-dock-left{
  flex-flow:column-reverse nowrap;
}
.b-panel-header.b-dock-left .b-header-title{
  transform:rotate(180deg);
}
.b-panel-header.b-panel-ui-plain{
  background-color:transparent;
  border:none;
  color:inherit;
}
.b-panel-header:not(.b-panel-ui-plain) .b-tool{
  color:#fff;
}
.b-panel-header .b-header-title{
  display:inline-flex;
  flex:1 1 auto;
  text-align:center;
  justify-content:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.b-panel-header .b-header-title:not(:last-child){
  padding-inline-end:1em;
}
.b-panel-header .b-header-title.b-align-start{
  text-align:start;
  justify-content:flex-start;
}
.b-panel-header .b-header-title.b-align-center{
  text-align:center;
  justify-content:center;
  padding-inline-end:0;
}
.b-panel-header .b-header-title.b-align-end{
  text-align:end;
  justify-content:flex-end;
}
.b-panel-header .b-header-title.b-align-end:not(:last-child){
  margin-inline-end:1em;
}
.b-panel.b-panel-ui-plain > .b-panel-header .b-header-title.b-panel-ui-plain{
  font-size:1.2em;
  font-weight:600;
}
.b-panel-header .b-panel-title-icon{
  margin-inline-end:0.5em;
  font-size:0.9em;
}
.b-panel-header:after{
  content:" ";
  font-size:0.9em;
  height:2em;
  width:1px;
  visibility:hidden;
  display:inline;
  margin-inline-start:-0.5em;
}
.b-panel-header.b-dock-right .b-header-title, .b-panel-header.b-dock-left .b-header-title{
  -webkit-writing-mode:vertical-lr;
  writing-mode:vertical-lr;
  -ms-writing-mode:tb-lr;
}
.b-panel-header.b-dock-right:after, .b-panel-header.b-dock-left:after{
  height:1px;
  width:2em;
}
.b-panel-header.b-dock-right, .b-panel-header.b-dock-bottom{
  order:100;
}
.b-button.b-tool,
.b-tool{
  cursor:pointer;
  color:#616161;
  height:2em;
  width:2em;
  font-size:0.9em;
  display:grid;
  place-content:center;
  border-radius:50%;
  border:0 none;
  background-color:transparent;
  flex-shrink:0;
  contain:paint;
}
.b-button.b-tool::-moz-focus-inner,
.b-tool::-moz-focus-inner{
  border:0;
}
.b-button.b-tool:focus,
.b-tool:focus{
  outline:none;
}
.b-using-keyboard .b-button.b-tool:focus,
.b-using-keyboard .b-tool:focus{
  background-color:rgba(220, 220, 220, 0.5);
}
.b-button.b-tool.b-icon:before,
.b-tool.b-icon:before,
.b-tool.b-indicator.b-constraint-type-muststarton:before,
.b-tool.b-indicator.b-constraint-type-mustfinishon:before,
.b-tool.b-indicator.b-deadline-date:before,
.b-tool.b-icon-version:before{
  width:1em;
  height:1em;
  line-height:0;
}
.b-button.b-tool:hover,
.b-tool:hover{
  opacity:0.8;
}
.b-button.b-tool.b-disabled,
.b-tool.b-disabled{
  opacity:0.4;
}
.b-button.b-tool.b-rotate-left:before,
.b-tool.b-rotate-left:before{
  transform:rotate(270deg);
}
.b-button.b-tool.b-rotate-right:before,
.b-tool.b-rotate-right:before{
  transform:rotate(90deg);
}
.b-button.b-tool i,
.b-tool i{
  display:flex;
}
.b-button.b-tool a,
.b-tool a{
  color:#fff;
}
.b-button.b-tool{
  min-height:2em;
  min-width:2em;
}
.b-collapsetool:not(.b-collapsing):before{
  transition:all 0.2s ease-out;
}
.b-collapsetool.b-rotate-left:before, .b-collapsetool.b-rotate-right:before{
  transform:rotate(0deg);
}
.b-collapsetool.b-collapsed:before{
  transform:rotate(180deg);
}
.b-panel-ui-toolbar.b-panel-collapse-right .b-collapsible-tr.b-dock-right .b-collapsetool{
  margin-block-start:0.6em;
}
.b-panel-ui-toolbar.b-panel-collapse-right .b-collapsible-tr.b-dock-top .b-collapsetool{
  margin-inline-end:0.7em;
}
.b-dock-top .b-header-title:not(:last-child), .b-dock-bottom .b-header-title:not(:last-child){
  padding-inline-end:0.2em;
}
.b-dock-top .b-tool.b-align-start, .b-dock-top .b-tool.b-align-end, .b-dock-bottom .b-tool.b-align-start, .b-dock-bottom .b-tool.b-align-end{
  margin-block:0;
}
.b-dock-right .b-header-title:not(:last-child), .b-dock-left .b-header-title:not(:last-child){
  padding:0.2em 0;
}
.b-dock-right .b-tool.b-align-start, .b-dock-left .b-tool.b-align-start{
  margin-block-end:0.4em;
}
.b-dock-right .b-tool.b-align-end, .b-dock-left .b-tool.b-align-end{
  margin-block-start:0.4em;
}
.b-codeeditor [data-ref=status] i.b-icon, .b-codeeditor [data-ref=status] i.b-indicator.b-constraint-type-muststarton, .b-codeeditor [data-ref=status] i.b-indicator.b-constraint-type-mustfinishon, .b-codeeditor [data-ref=status] i.b-indicator.b-deadline-date, .b-codeeditor [data-ref=status] i.b-icon-version{
  margin-inline-end:0.5em;
}
.b-panel .b-bryntumcodeeditor-body-wrap{
  background:#fff;
}
.b-panel .b-bryntumcodeeditor-body-wrap .monaco-editor .scroll-decoration{
  box-shadow:none;
}
.b-codeeditor-content{
  padding:0;
}
.b-codeeditor-content .line-numbers:not(.active-line-number){
  opacity:0.3;
}
.b-codeeditor-content .folded-background,
.b-codeeditor-content .monaco-editor .view-overlays .current-line{
  background:transparent !important;
  border:0 !important;
}
.b-codeeditor-content .monaco-editor .lines-content .core-guide-indent{
  opacity:0.4;
}
.b-widget.b-democodeeditor{
  flex:unset;
  width:450px;
  gap:0;
}
@media (min-width: 2000px){
  .b-widget.b-democodeeditor{
    width:700px;
  }
}
.b-widget.b-democodeeditor .b-header-title{
  font-size:18px;
  font-weight:normal;
}
.b-widget.b-democodeeditor .demo-header .b-button.b-text{
  min-height:2.5em;
}
.b-widget.b-democodeeditor .demo-header .title-container{
  align-items:center;
}
.b-widget.b-democodeeditor .demo-header .title{
  background:none;
  padding-inline-start:0;
  font-size:18px;
}
.b-widget.b-democodeeditor .demo-header .b-tool{
  color:#fff;
  height:2.5em;
  font-size:1.1em;
}
.b-widget.b-democodeeditor [data-ref=tbar] .b-toolbar-content{
  justify-content:flex-end;
}
.b-widget.b-democodeeditor:not(.b-collapsed){
  border-inline-start:5px solid #d8d9da;
}
body.b-theme-classic-dark .b-widget.b-democodeeditor:not(.b-collapsed){
  border-inline-start-color:#111;
}
.b-widget.b-democodeeditor.b-collapsed .b-panel-collapse-revealer, .b-widget.b-democodeeditor.b-collapsing .b-panel-collapse-revealer{
  display:none;
}
.b-widget.b-democodeeditor:not(.b-resizing){
  transition:border-width 0.1s;
}
.b-widget.b-democodeeditor .b-top-toolbar{
  min-height:4em;
}
.b-widget.b-democodeeditor .b-bottom-toolbar{
  background-color:#f3f4f5;
  color:#4f5964;
  transition:color 0.2s, background-color 0.2s;
}
.readonly .b-widget.b-democodeeditor .b-bottom-toolbar{
  background-color:#ff8d46;
}
.b-widget.b-democodeeditor .b-bottom-toolbar [data-ref=cursorPos]{
  margin-inline-start:auto;
}
.b-widget.b-democodeeditor .b-democodeeditor-body-wrap, .b-widget.b-democodeeditor .b-panel-overlay{
  overflow:hidden;
}
.b-widget.b-democodeeditor .b-panel-content{
  direction:ltr;
}
.b-widget.b-democodeeditor.b-resizing *{
  user-select:none;
}
.b-widget.b-democodeeditor.b-over-resize-handle{
  cursor:ew-resize;
}
.b-widget.b-democodeeditor .b-header-title i{
  margin-inline-end:0.5em;
}
.b-widget.b-democodeeditor.b-hidden{
  display:flex !important;
  border-inline-start-width:0;
}
.b-widget.b-democodeeditor .b-democodeeditor-header{
  background-color:#0076f8;
}
.b-widget.b-democodeeditor.invalid .b-democodeeditor-header i{
  color:rgba(144, 1, 1, 0.6784313725);
}
.b-widget.b-democodeeditor.invalid .b-bottom-toolbar{
  color:#fff;
  background:#b71c1c;
}
.b-widget.b-democodeeditor .b-bottom-toolbar .b-toolbar-content{
  padding:0.5em 1em !important;
}
.b-widget.b-democodeeditor .b-panel-header.b-dock-top{
  border-bottom:none;
}
.b-widget.b-democodeeditor .b-panel-header .b-tool{
  height:2.5em;
  width:2.5em;
}
.b-widget.b-democodeeditor .b-combo-picker .b-editor-file-type{
  margin-inline-end:0.5em;
}
.b-widget.b-democodeeditor .b-combo-picker .b-editor-folder{
  color:#a0a0a0;
}
@media (max-width: 450px){
  .b-democodeeditor .b-icon-download{
    display:none !important;
  }
}
.b-carousel-content:not(.b-carousel-empty){
  padding:0;
}
.b-carousel-content > .b-carousel-content{
  overflow:hidden;
}
.b-carousel-content.b-carousel-empty > .b-carousel-inner-ct, .b-carousel-content:not(.b-carousel-empty) > .b-carousel-empty-text{
  display:none;
}
.b-calendarpanel{
  -webkit-user-select:none;
  user-select:none;
  flex-shrink:0;
}
.b-calendarpanel.b-outer{
  display:inline-flex;
}
.b-calendarpanel .b-week-number-cell{
  display:none;
}
.b-calendarpanel.b-show-week-column .b-week-number-cell{
  display:flex;
  flex-direction:column;
}
.b-calendarpanel.b-hide-othermonth-cells .b-calendar-cell.b-other-month{
  visibility:hidden;
  pointer-events:none;
}
.b-calendarpanel.b-disable-othermonth-cells .b-calendar-cell.b-other-month{
  opacity:0.7;
  pointer-events:none;
}
.b-calendarpanel.b-disable-othermonth-cells .b-calendar-cell.b-other-month.b-first-visible-cell .b-cal-event-wrap{
  pointer-events:all;
}
.b-calendarpanel .b-panel-body-wrap{
  background-color:#fff;
}
.b-calendarpanel .b-calendar-weekdays .b-calendar-day-header{
  min-width:var(--min-column-width);
  flex:1 0 0;
  text-align:center;
}
.b-calendarpanel .b-calendarpanel-content{
  align-items:stretch;
}
.b-calendarpanel .b-calendarpanel-content.b-hide-nonworking-days .b-calendar-day-header.b-nonworking-day, .b-calendarpanel .b-calendarpanel-content.b-hide-nonworking-days .b-calendar-cell.b-nonworking-day{
  display:none;
}
.b-calendarpanel .b-calendar-row{
  display:flex;
}
.b-calendarpanel .b-calendar-cell{
  min-width:var(--min-column-width);
  display:flex;
  text-align:center;
  flex-direction:column;
  justify-content:center;
}
.b-calendarpanel .b-calendar-days{
  flex:1 1 auto;
  display:flex;
  justify-content:space-around;
  overflow:hidden;
}
.b-calendarpanel .b-weeks-container{
  display:flex;
  flex-direction:column;
  align-items:baseline;
}
.b-calendarpanel .b-weeks-container .b-calendar-row{
  min-height:var(--min-row-height);
  min-width:100%;
}
.b-datepicker{
  --datepicker-selected-cell-background-color:#2196f3;
  --datepicker-selected-range-background-color:rgba(33, 150, 243, 0.15);
}
.b-datepicker:focus{
  outline:0;
}
.b-datepicker.b-highlight-selected-week .b-calendar-week{
  border:1px solid transparent;
}
.b-datepicker.b-highlight-selected-week .b-calendar-week:has(.b-selected-date){
  background-color:rgb(178.1538461538, 218.6538461538, 250.8461538462);
  border-color:#2196f3;
}
.b-datepicker .b-datepicker-title{
  font-weight:bold;
  gap:0;
  justify-content:center;
  margin:0 !important;
  flex-wrap:nowrap;
}
.b-datepicker .b-field{
  background-color:transparent;
  border:0 none;
  color:#000;
  min-width:0;
  display:inline-flex;
  flex:none !important;
  width:auto;
  margin-bottom:0 !important;
  height:100%;
}
.b-datepicker .b-field:not(.b-readonly):not(.b-disabled){
  cursor:pointer;
}
.b-datepicker .b-field:not(.b-readonly):not(.b-disabled):hover{
  opacity:0.7;
}
.b-datepicker .b-field .b-field-inner{
  flex:none;
  border:0 none;
  background-color:transparent;
  align-self:stretch;
  padding:0;
  box-shadow:none;
}
.b-datepicker .b-field div[type=text]{
  outline:none;
}
.b-datepicker .b-toolbar.b-dock-top{
  background-color:#fff;
  color:#000;
  border-bottom:none;
  font-size:1.2em;
}
.b-datepicker .b-toolbar.b-dock-top .b-toolbar-content{
  min-height:0;
  padding:0.5em 0.5ex !important;
  gap:0.5ex;
  justify-content:space-around;
}
.b-datepicker .b-toolbar.b-dock-top .b-datepicker-title{
  flex:1 1 auto;
}
.b-datepicker .b-calendar-weekdays{
  background-color:#fff;
  color:#888;
  font-size:0.85em;
}
.b-datepicker .b-calendar-weekdays .b-calendar-day-header{
  padding:0.4em 0;
}
.b-datepicker.b-show-week-column .b-week-number-cell{
  line-height:2.4em;
  width:2.4em;
  margin:5px 4px;
  text-align:center;
}
.b-datepicker .b-calendarpanel-content{
  padding:0;
  justify-content:flex-start;
}
.b-datepicker .b-week-number-cell{
  color:#76c579;
}
.b-datepicker .b-weeks-container .b-calendar-cell{
  outline:0 none;
  position:relative;
  flex:1 0 2.4em;
  padding:0 4px;
  margin:5px 0;
  transition:background-color 0.2s, color 0.2s;
  align-items:center;
}
.b-datepicker .b-weeks-container .b-calendar-cell > .b-datepicker-cell-inner{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height:2.4em;
  width:2.4em;
  border-width:0;
  border-style:solid;
  border-color:transparent;
  border-radius:50%;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-today > .b-datepicker-cell-inner{
  border-color:#ff9800;
  border-width:1px;
}
.b-datepicker .b-weeks-container .b-calendar-cell:focus:not(.b-selected-date) > .b-datepicker-cell-inner{
  background-color:#e8f0fe;
}
.b-datepicker .b-weeks-container .b-calendar-cell:focus > .b-datepicker-cell-inner{
  outline:#ff9800 solid 2px;
  outline-offset:3px;
  border-radius:50%;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-selected-date:not(.b-in-range) > .b-datepicker-cell-inner{
  color:#fff;
  background-color:var(--datepicker-selected-cell-background-color);
  border-color:#2196f3;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-other-month > .b-datepicker-cell-inner{
  color:#bbb;
}
.b-datepicker .b-weeks-container .b-calendar-cell:not(.b-disabled-date, .b-selected-date) > .b-datepicker-cell-inner{
  cursor:pointer;
}
.b-datepicker .b-weeks-container .b-calendar-cell:not(.b-disabled-date, .b-selected-date) > .b-datepicker-cell-inner:hover{
  background-color:rgba(33, 150, 243, 0.15);
  border-color:transparent;
}
.b-datepicker .b-weeks-container .b-calendar-cell:not(.b-disabled-date, .b-selected-date) > .b-datepicker-cell-inner:hover.b-today{
  background-color:#ff9800;
  border-color:#ff9800;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-out-of-range > .b-datepicker-cell-inner{
  color:#aaa;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-disabled-date > .b-datepicker-cell-inner{
  color:#aaa;
  opacity:0.4;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-in-range{
  background-color:var(--datepicker-selected-range-background-color);
  border-radius:0 !important;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-in-range.b-first-visible-cell{
  clip-path:polygon(0 50%, 8px 0, 100% 0, 100% 100%, 8px 100%);
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-in-range.b-last-visible-cell{
  clip-path:polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-range-start, .b-datepicker .b-weeks-container .b-calendar-cell.b-range-end{
  z-index:0;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-range-start:before, .b-datepicker .b-weeks-container .b-calendar-cell.b-range-end:before{
  content:" ";
  background-color:var(--datepicker-selected-range-background-color);
  position:absolute;
  left:0;
  top:0;
  right:0;
  bottom:0;
  z-index:-1;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-range-start > .b-datepicker-cell-inner, .b-datepicker .b-weeks-container .b-calendar-cell.b-range-end > .b-datepicker-cell-inner{
  position:relative;
  background-color:#fff;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-range-start > .b-datepicker-cell-inner:after, .b-datepicker .b-weeks-container .b-calendar-cell.b-range-end > .b-datepicker-cell-inner:after{
  content:" ";
  background-color:var(--datepicker-selected-range-background-color);
  border-radius:50%;
  position:absolute;
  left:0;
  top:0;
  right:0;
  bottom:0;
  z-index:-1;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-range-start:before{
  left:50%;
}
.b-datepicker .b-weeks-container .b-calendar-cell.b-range-end:before{
  right:50%;
}
.b-datepicker:not(:has(.b-today, .b-selected-date)) .b-calendar-cell.b-active-date:not(:focus) > .b-datepicker-cell-inner:not(:hover){
  border-color:#2196f3;
}
.b-datepicker.b-multiselect .b-calendar-cell{
  flex-grow:1 !important;
  margin-inline:0 !important;
}
.b-datepicker.b-rtl .b-icon::before, .b-datepicker.b-rtl .b-indicator.b-constraint-type-muststarton::before, .b-datepicker.b-rtl .b-indicator.b-constraint-type-mustfinishon::before, .b-datepicker.b-rtl .b-indicator.b-deadline-date::before, .b-datepicker.b-rtl .b-icon-version::before{
  transform:scaleX(-1);
}
.b-datepicker .b-monthpicker,
.b-datepicker .b-yearpicker{
  width:100%;
  height:100%;
}
.b-datepicker .b-datepicker-monthbutton,
.b-datepicker .b-datepicker-yearbutton{
  margin-inline-start:0.5ex;
  padding:0;
  border:0 none;
  color:inherit !important;
  min-height:unset;
  min-width:unset;
  background-color:unset;
  font-weight:400;
  text-transform:none;
}
.b-datepicker .b-datepicker-monthbutton:not(.b-disabled):not(.b-tab):hover,
.b-datepicker .b-datepicker-yearbutton:not(.b-disabled):not(.b-tab):hover{
  opacity:0.7;
  background-color:unset;
}
.b-datepicker-nav-button.b-icon, .b-datepicker-nav-button.b-indicator.b-constraint-type-muststarton, .b-datepicker-nav-button.b-indicator.b-constraint-type-mustfinishon, .b-datepicker-nav-button.b-indicator.b-deadline-date, .b-datepicker-nav-button.b-icon-version, .b-icon.b-multidatepicker-nav-button, .b-multidatepicker-nav-button.b-indicator.b-constraint-type-muststarton, .b-multidatepicker-nav-button.b-indicator.b-constraint-type-mustfinishon, .b-multidatepicker-nav-button.b-indicator.b-deadline-date, .b-multidatepicker-nav-button.b-icon-version{
  border:none;
  border-radius:50%;
  padding:0;
  width:2em;
  height:2em;
  min-height:24px;
  min-width:24px;
}
.b-datepicker-nav-button.b-icon:not(.b-multidatepicker-nav-button), .b-datepicker-nav-button.b-indicator.b-constraint-type-muststarton:not(.b-multidatepicker-nav-button), .b-datepicker-nav-button.b-indicator.b-constraint-type-mustfinishon:not(.b-multidatepicker-nav-button), .b-datepicker-nav-button.b-indicator.b-deadline-date:not(.b-multidatepicker-nav-button), .b-datepicker-nav-button.b-icon-version:not(.b-multidatepicker-nav-button), .b-icon.b-multidatepicker-nav-button:not(.b-multidatepicker-nav-button), .b-multidatepicker-nav-button.b-indicator.b-constraint-type-muststarton:not(.b-multidatepicker-nav-button), .b-multidatepicker-nav-button.b-indicator.b-constraint-type-mustfinishon:not(.b-multidatepicker-nav-button), .b-multidatepicker-nav-button.b-indicator.b-deadline-date:not(.b-multidatepicker-nav-button), .b-multidatepicker-nav-button.b-icon-version:not(.b-multidatepicker-nav-button){
  font-size:80%;
}
.b-datepicker-nav-button.b-icon:before, .b-datepicker-nav-button.b-indicator.b-constraint-type-muststarton:before, .b-datepicker-nav-button.b-indicator.b-constraint-type-mustfinishon:before, .b-datepicker-nav-button.b-indicator.b-deadline-date:before, .b-datepicker-nav-button.b-icon-version:before, .b-icon.b-multidatepicker-nav-button:before, .b-multidatepicker-nav-button.b-indicator.b-constraint-type-muststarton:before, .b-multidatepicker-nav-button.b-indicator.b-constraint-type-mustfinishon:before, .b-multidatepicker-nav-button.b-indicator.b-deadline-date:before, .b-multidatepicker-nav-button.b-icon-version:before{
  line-height:normal;
}
.b-datepicker-nav-button.b-icon, .b-datepicker-nav-button.b-indicator.b-constraint-type-muststarton, .b-datepicker-nav-button.b-indicator.b-constraint-type-mustfinishon, .b-datepicker-nav-button.b-indicator.b-deadline-date, .b-datepicker-nav-button.b-icon-version, .b-icon.b-multidatepicker-nav-button, .b-multidatepicker-nav-button.b-indicator.b-constraint-type-muststarton, .b-multidatepicker-nav-button.b-indicator.b-constraint-type-mustfinishon, .b-multidatepicker-nav-button.b-indicator.b-deadline-date, .b-multidatepicker-nav-button.b-icon-version, .b-datepicker-nav-button.b-icon:not(.b-tab):active:not([disabled]), .b-datepicker-nav-button.b-icon:not(.b-tab):active:focus:not([disabled]){
  color:#888;
}
.b-datepicker-nav-button.b-icon:hover, .b-datepicker-nav-button.b-indicator.b-constraint-type-muststarton:hover, .b-datepicker-nav-button.b-indicator.b-constraint-type-mustfinishon:hover, .b-datepicker-nav-button.b-indicator.b-deadline-date:hover, .b-datepicker-nav-button.b-icon-version:hover, .b-icon.b-multidatepicker-nav-button:hover, .b-multidatepicker-nav-button.b-indicator.b-constraint-type-muststarton:hover, .b-multidatepicker-nav-button.b-indicator.b-constraint-type-mustfinishon:hover, .b-multidatepicker-nav-button.b-indicator.b-deadline-date:hover, .b-multidatepicker-nav-button.b-icon-version:hover{
  opacity:0.7;
}
.b-datepicker-nav-button.b-icon:not(.b-contains-focus), .b-datepicker-nav-button.b-indicator.b-constraint-type-muststarton:not(.b-contains-focus), .b-datepicker-nav-button.b-indicator.b-constraint-type-mustfinishon:not(.b-contains-focus), .b-datepicker-nav-button.b-indicator.b-deadline-date:not(.b-contains-focus), .b-datepicker-nav-button.b-icon-version:not(.b-contains-focus), .b-icon.b-multidatepicker-nav-button:not(.b-contains-focus), .b-multidatepicker-nav-button.b-indicator.b-constraint-type-muststarton:not(.b-contains-focus), .b-multidatepicker-nav-button.b-indicator.b-constraint-type-mustfinishon:not(.b-contains-focus), .b-multidatepicker-nav-button.b-indicator.b-deadline-date:not(.b-contains-focus), .b-multidatepicker-nav-button.b-icon-version:not(.b-contains-focus){
  background:transparent;
}
.b-datepicker .b-datepicker-title{
  overflow:hidden;
}
.b-datepicker .b-calendar-days{
  overflow:visible;
}
.b-readonly-combo-list.b-empty{
  display:none;
}
.b-readonly-combo-list .b-list-item{
  min-width:auto;
}
.b-visible-scrollbar .b-readonly-combo-list .b-list-item{
  padding-inline-end:2em;
}
.b-fieldset{
  flex-shrink:0;
}
.b-fieldset.b-has-label{
  align-items:center;
}
.b-fieldset.b-has-label.b-label-before > .b-panel-body-wrap{
  flex:1 1 100%;
}
.b-fieldset.b-has-label > label{
  flex-shrink:0;
}
.b-fieldset-header{
  background-color:transparent;
  padding:0.5em;
  color:#424242;
}
.b-fieldset-header .b-header-title{
  font-weight:600;
}
fieldset.b-fieldset-content{
  border:none;
  background-color:transparent;
  margin-inline-start:0;
  margin-inline-end:0;
  overflow:unset;
  padding-block-end:0;
}
.b-panel-has-header > .b-radiogroup-body-wrap > fieldset.b-fieldset-content{
  padding-block-start:1em;
  padding-inline-start:1em;
  padding-inline-end:1em;
}
.b-fieldset:not(.b-panel-has-header) > .b-radiogroup-body-wrap > fieldset.b-fieldset-content{
  padding:0;
}
fieldset.b-fieldset-content.b-inline{
  padding-block:1em;
}
fieldset.b-fieldset-content.b-inline > .b-field:not(:first-child){
  margin-inline-start:1em;
}
fieldset.b-fieldset-content > legend.b-fieldset-legend{
  position:absolute;
  top:-10000px;
  clip:rect(0, 0, 0, 0);
}
.b-popup{
  --panel-background-color:#fff;
  color:#424242;
}
.b-popup.b-text-popup{
  max-width:25em;
}
.b-popup.b-positioned{
  box-shadow:0 3px 6px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.24);
}
.b-popup-content a{
  color:rgb(52.8, 52.8, 52.8);
}
.b-popup-header{
  background-color:#2196f3;
  color:#fff;
}
.b-modal-mask{
  position:fixed;
  inset:0;
  pointer-events:all;
  z-index:11001;
}
.b-modal-mask:not(.b-modal-transparent){
  background-color:rgba(100, 100, 100, 0.5);
}
@media (max-width: 480px){
  .b-popup{
    max-width:100% !important;
  }
}
.b-messagedialog.b-popup{
  min-width:18em;
}
.b-messagedialog.b-popup .b-button{
  min-width:9em;
}
.b-messagedialog.b-popup .b-messagedialog-content{
  padding:1em;
}
.b-messagedialog.b-popup .b-messagedialog-content.b-panel-content{
  border-radius:0;
  min-height:4em;
}
.b-messagedialog.b-popup .b-messagedialog-input,
.b-messagedialog.b-popup .b-messagedialog-okbutton,
.b-messagedialog.b-popup .b-messagedialog-cancelbutton{
  display:none;
}
.b-messagedialog.b-popup.b-messagedialog-prompt .b-messagedialog-okbutton,
.b-messagedialog.b-popup.b-messagedialog-prompt .b-messagedialog-cancelbutton, .b-messagedialog.b-popup.b-messagedialog-confirm .b-messagedialog-okbutton,
.b-messagedialog.b-popup.b-messagedialog-confirm .b-messagedialog-cancelbutton{
  display:initial;
}
.b-messagedialog.b-popup.b-messagedialog-confirm .b-messagedialog-message, .b-messagedialog.b-popup.b-messagedialog-alert .b-messagedialog-message{
  display:block;
}
.b-messagedialog.b-popup.b-messagedialog-prompt .b-messagedialog-input{
  display:initial;
  margin:1em 0 0 0;
}
.b-messagedialog.b-popup.b-messagedialog-alert .b-messagedialog-okbutton{
  display:initial;
}
.b-messagedialog.b-popup .b-panel-body-wrap{
  background:#fff;
}
.b-messagedialog.b-popup .b-popup-content,
.b-messagedialog.b-popup .b-toolbar{
  background:transparent;
}
.b-messagedialog.b-popup .b-toolbar .b-toolbar-content{
  justify-content:flex-end;
}
.b-monthpicker{
  width:max-content;
}
.b-monthpicker .b-toolbar.b-dock-top{
  background-color:#fff;
  color:#000;
  border-bottom:none;
  min-height:0;
  font-size:1.2em;
}
.b-monthpicker .b-toolbar.b-dock-top .b-toolbar-content{
  padding:0.5em 0.5ex !important;
  gap:0.5ex;
}
.b-monthpicker .b-toolbar.b-dock-top button{
  border:none;
  min-height:0;
  text-transform:none;
  height:1.6em;
}
.b-monthpicker .b-toolbar.b-dock-top button, .b-monthpicker .b-toolbar.b-dock-top button:not(.b-tab, [disabled]):active, .b-monthpicker .b-toolbar.b-dock-top button:not(.b-tab, [disabled]):active:focus{
  color:#888;
}
.b-monthpicker .b-toolbar.b-dock-top .b-monthpicker-title{
  margin-inline:auto;
  color:inherit;
  font-weight:400;
  background-color:unset;
}
.b-monthpicker .b-toolbar.b-dock-top .b-monthpicker-title:not(.b-disabled, .b-tab):hover{
  opacity:0.7;
  background-color:unset;
}
.b-monthpicker .b-monthpicker-body-wrap{
  background-color:#fff;
}
.b-monthpicker .b-monthpicker-content{
  display:grid;
  align-items:center;
  grid-template-columns:repeat(3, 1fr);
  padding:1em;
  gap:1em;
}
.b-monthpicker .b-monthpicker-content button.b-monthpicker-month{
  border-width:0;
  border-style:solid;
  border-color:transparent;
  border-radius:1em;
  height:2em;
  background:transparent;
  font-size:1em;
  cursor:pointer;
  color:#000;
  font-family:inherit;
  font-weight:400;
  padding-inline:0;
}
.b-monthpicker .b-monthpicker-content button.b-monthpicker-month:hover{
  background-color:rgba(33, 150, 243, 0.15);
  border-color:transparent;
}
.b-monthpicker .b-monthpicker-content button.b-monthpicker-month.b-selected{
  color:#fff;
  background-color:#2196f3;
  border-color:#2196f3;
}
.b-monthpicker.b-outer, .b-monthpicker.b-floating{
  min-width:20.4em;
  min-height:18.2em;
}
.b-confirmationbar .b-toolbar-content{
  justify-content:flex-end;
}
.b-confirmationbar .b-toolbar-content .b-button:not(:first-child){
  margin-inline-start:1em;
}
.b-multidatepicker-nav-button{
  top:0.25em;
  transition:opacity 0.2s ease;
}
.b-panel-has-header.b-header-dock-top > .b-multidatepicker-nav-button{
  top:4.5em;
}
.b-multidatepicker:not(.b-multidatepicker-nav-buttons) > .b-multidatepicker-nav-button{
  display:none;
}
.b-multidatepicker-next-button{
  right:0.3em;
}
.b-multidatepicker-prev-button{
  left:0.3em;
}
.b-multidatepicker-nav-floating{
  overflow:visible;
}
.b-multidatepicker-nav-floating > .b-button.b-multidatepicker-nav-button{
  top:50%;
  box-shadow:0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
  background-color:#fff;
  padding:1.4em;
}
.b-multidatepicker-nav-floating > .b-button.b-multidatepicker-nav-button:focus, .b-multidatepicker-nav-floating > .b-button.b-multidatepicker-nav-button:hover{
  background-color:white;
  opacity:unset;
}
.b-multidatepicker-nav-floating > .b-multidatepicker-next-button{
  right:0;
  translate:50% -50%;
}
.b-multidatepicker-nav-floating > .b-multidatepicker-prev-button{
  left:0;
  translate:-50% -50%;
}
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker-content .b-calendar-week,
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker-content .b-calendar-weekdays{
  padding-inline:1.5em;
}
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker-content .b-calendar-week .b-active-date:not(.b-selected-date, .b-today):not(:focus) > .b-datepicker-cell-inner,
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker-content .b-calendar-weekdays .b-active-date:not(.b-selected-date, .b-today):not(:focus) > .b-datepicker-cell-inner{
  border-color:transparent;
}
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker-content .b-weeks-container{
  padding-block:0.4em;
}
.b-multidatepicker-content > .b-carousel-inner-ct .b-other-month{
  visibility:hidden;
  pointer-events:none;
}
.b-multidatepicker-content > .b-carousel-inner-ct [data-ref=nextMonth],
.b-multidatepicker-content > .b-carousel-inner-ct [data-ref=prevMonth],
.b-multidatepicker-content > .b-carousel-inner-ct [data-ref=prevYear],
.b-multidatepicker-content > .b-carousel-inner-ct [data-ref=nextYear]{
  display:none;
}
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker.b-carousel-visible.b-carousel-first > .b-top-focus-trap,
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker.b-carousel-visible.b-carousel-last > .b-end-focus-trap{
  display:none;
}
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker.b-carousel-reserve [data-ref=monthField]{
  pointer-events:none;
}
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker.b-carousel-reserve [data-ref=yearButton]{
  display:none;
}
.b-multidatepicker-content > .b-carousel-inner-ct .b-datepicker .b-calendar-cell > .b-datepicker-cell-inner{
  cursor:pointer;
}
.b-daterangepicker .b-start-date,
.b-daterangepicker .b-end-date{
  width:13em;
}
.b-daterangepicker.b-daterangefield-picker .b-end-date{
  width:11em;
}
.b-daterangepicker.b-picking-start-date .b-range-end:not(.b-range-start), .b-daterangepicker:not(.b-picking-start-date) .b-range-start:not(.b-range-end){
  --datepicker-selected-cell-background-color:rgb(188.4, 223.5, 251.4);
}
.b-daterangefield{
  width:unset;
}
.b-daterangefield > .b-field-container-wrap > .b-fieldcontainer{
  min-width:24.5em;
}
.b-daterangefield > .b-field-container-wrap > .b-fieldcontainer > .b-widget:not(:first-child){
  margin-inline-start:0.5em;
}
.b-daterangefield.b-pick-time > .b-field-container-wrap > .b-fieldcontainer{
  min-width:39.5em;
}
.b-daterangefield .b-start-date{
  flex:7 0 auto;
  width:13em;
}
.b-daterangefield .b-end-date{
  flex:5 0 auto;
  width:11em;
}
.b-daterangefield .b-end-time,
.b-daterangefield .b-start-time{
  flex:7 7 auto;
}
.b-menu{
  min-height:20px;
  outline:none;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  -webkit-user-select:none;
  user-select:none;
}
.b-menu .b-panel-content{
  background-color:#fff;
}
.b-menu.b-empty::after{
  content:attr(data-empty-text);
  display:block;
  padding:0.8em;
  color:#616161;
}
.b-menu .b-icon:before, .b-menu .b-indicator.b-constraint-type-muststarton:before, .b-menu .b-indicator.b-constraint-type-mustfinishon:before, .b-menu .b-indicator.b-deadline-date:before, .b-menu .b-icon-version:before, .b-menu .b-icon-fw:before{
  min-width:1.3em;
}
.b-menu.b-menu-with-submenu .b-menuitem:not(.b-has-submenu) .b-menu-text{
  margin-inline-end:2em;
}
.b-menu-content{
  justify-content:flex-start;
  align-items:stretch;
  padding:0;
}
.b-menu-content > :not(.b-menuitem){
  margin:0.2em 0.6em;
  display:flex;
}
.b-menu-content > :not(.b-menuitem):first-child{
  margin-top:0.4em;
}
.b-menu-content > :not(.b-menuitem):last-child{
  margin-bottom:0.4em;
}
.b-menu-content > .b-button{
  justify-content:flex-start;
}
.b-menuitem{
  flex-shrink:0;
  padding:0.8em;
  color:#616161;
  cursor:pointer;
  transition:background-color 0.2s, color 0.2s;
  border-top:1px dotted rgba(0, 0, 0, 0);
  font-size:1em;
  min-width:7em;
  display:flex;
  align-items:center;
}
.b-menuitem.b-disabled{
  opacity:0.5;
}
.b-menuitem:first-child{
  border-top:none;
  border-top-right-radius:2px;
  border-top-left-radius:2px;
}
.b-menuitem:last-child{
  border-bottom-right-radius:2px;
  border-bottom-left-radius:2px;
}
.b-menuitem.b-separator:not(.b-first-visible-child){
  border-top:1px solid #bdbdbd;
}
.b-menuitem.b-contains-focus, .b-menuitem:focus{
  outline:none;
  background-color:#eeeeee;
  color:#616161;
}
.b-menuitem span.b-menu-text{
  flex:1 1 auto;
  white-space:nowrap;
  margin-inline-start:0.6em;
  overflow:hidden;
  text-overflow:ellipsis;
  min-width:5em;
}
.b-menuitem.b-has-submenu .b-icon-sub-menu{
  margin-inline-start:0.3em;
}
.b-menuitem.b-rtl .b-icon-sub-menu::before{
  transform:scaleX(-1);
}
.b-menu-custom-content{
  display:flex;
}
a.b-menuitem:hover .b-menu-text{
  text-decoration:underline;
}
.b-menu-with-icon .b-menuitem-icon{
  width:1.25em;
  text-align:center;
  flex-shrink:0;
  margin-inline-end:0.5em;
}
.b-menu-with-icon span.b-menu-text{
  margin-inline-start:1.75em;
}
.b-menu-with-icon .b-menuitem-icon ~ span.b-menu-text{
  margin-inline-start:0;
}
.b-radio{
  --radio-background-color:#fff;
  --radio-dot-color:var(--radio-background-color);
  --radio-border-color:rgb(var(--widget-primary-color-rgb));
  --radio-checked-dot-color:rgb(var(--widget-primary-color-rgb));
  --radio-disabled-color:#e0e0e0;
}
.b-radio.b-disabled{
  --radio-border-color:var(--radio-disabled-color);
  --radio-checked-dot-color:var(--radio-disabled-color);
}
.b-radio input[type=radio]:checked{
  --radio-dot-color:var(--radio-checked-dot-color);
}
.b-radio input[type=radio]{
  border-radius:50%;
  box-shadow:0 0 0 2px var(--radio-border-color);
  border:0.25em solid var(--radio-background-color);
  background-color:var(--radio-dot-color);
  height:1.3em;
  width:1.3em;
  min-width:1.3em;
  margin:2px;
  z-index:1;
  -webkit-appearance:none;
  appearance:none;
  cursor:pointer;
}
.b-radio input[type=radio]:focus-visible{
  outline:2px solid #ff9800;
  outline-offset:0;
}
.b-radio > .b-field-inner label.b-radio-label{
  margin-inline-start:0.4em;
}
.b-radio > .b-field-inner label.b-radio-label:before{
  content:none;
}
@media screen and (min-resolution: 120dpi){
  .b-firefox .b-radio input{
    transform:rotate(1deg);
    margin:calc(2px + 0.5px);
  }
}
.b-panel.b-radiogroup{
  --panel-background-color:transparent;
}
.b-panel.b-radiogroup .b-fieldset-content{
  gap:0.75em;
}
.b-panel.b-checkboxgroup .b-fieldset-content{
  gap:0;
}
.b-panel.b-checkboxgroup .b-fieldset-content:not(.b-inline){
  padding:var(--autocontainer-gap);
}
.b-panel.b-checkboxgroup .b-fieldset-content.b-inline{
  flex-wrap:wrap;
}
.b-panel.b-checkboxgroup .b-fieldset-content.b-inline label{
  white-space:nowrap;
}
.b-panel.b-checkboxgroup.b-invalid .b-checkbox label:before{
  outline:1px solid #f44336;
  outline-offset:2px;
}
.b-richtextfield{
  overflow:visible;
  color:#000;
  height:10em;
}
.b-richtextfield .b-field-inner{
  overflow:visible;
  align-items:flex-start;
}
.b-richtextfield .b-richtextfield-container{
  flex:1;
  height:100%;
  padding:0.5em;
  outline:none;
}
.b-cell-editor .b-richtextfield{
  height:100%;
  min-height:100%;
}
.b-ripple{
  display:none;
}
.b-sftimepicker .b-panel-content{
  background-color:#fff;
  align-items:stretch;
  padding:0.5em;
  gap:0.5em;
}
.b-sftimepicker .b-panel-content .b-widget{
  margin:0;
  flex:0 0 auto;
  width:auto;
}
.b-sftimepicker .b-panel-content .b-numberfield.b-has-label{
  margin-top:0;
}
.b-sftimepicker .b-panel-content .b-numberfield > .b-label{
  clip-path:polygon(0 0);
  position:absolute;
  contain:strict;
}
.b-sftimepicker .b-panel-content .b-numberfield:not(.b-first-visible-child)::before{
  content:":";
  align-self:center;
  margin-inline-end:0.5em;
  font-weight:bold;
}
.b-sftimepicker .b-panel-content .b-numberfield input{
  width:2.8em;
}
.b-sftimepicker .b-panel-content .b-button{
  flex:0 0 3em;
  padding:0;
}
.b-sftimepicker .b-panel-content .b-button label{
  text-overflow:clip;
}
.b-slider{
  background-color:transparent;
  column-gap:0.5em;
  align-items:center;
  overflow:visible;
}
.b-slider.b-has-label{
  flex-direction:column;
}
.b-slider.b-has-label.b-has-field-label{
  display:grid;
  grid-template-columns:auto auto;
}
.b-slider .b-slider-value{
  grid-column:1/-1;
  grid-row:2;
  justify-self:center;
  transition:color 0.2s;
}
.b-slider.b-rtl > [type=range]{
  direction:rtl;
}
.b-slider [type=range]{
  flex:1;
  align-self:stretch;
  max-width:100%;
  min-width:0;
  -webkit-appearance:none;
  margin:6px 0;
  padding:0;
  font-size:inherit;
  background-color:transparent;
}
.b-slider [type=range]:focus{
  outline:0;
}
.b-slider [type=range]:focus::-webkit-slider-runnable-track{
  background:rgb(90.0653846154, 176.9903846154, 246.0846153846);
}
.b-slider [type=range]:focus::-moz-range-track{
  background:rgb(90.0653846154, 176.9903846154, 246.0846153846);
}
.b-slider [type=range]:focus::-ms-fill-lower, .b-slider [type=range]:focus::-ms-fill-upper{
  background:rgb(90.0653846154, 176.9903846154, 246.0846153846);
}
.b-slider [type=range]:focus::-webkit-slider-thumb{
  box-shadow:0 2px 4px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.2);
}
.b-slider [type=range]::-moz-focus-outer{
  border:0;
}
.b-slider [type=range]::-ms-tooltip{
  display:none;
}
.b-slider [type=range]::-webkit-slider-runnable-track{
  cursor:pointer;
  height:4px;
  transition:all 0.2s ease;
  width:100%;
  background:#e0e0e0;
  border:none;
  border-radius:2px;
}
.b-slider [type=range]::-webkit-slider-thumb{
  background:rgb(81.3846153846, 172.8846153846, 245.6153846154);
  border:none;
  border-radius:50%;
  cursor:pointer;
  height:12px;
  width:12px;
  -webkit-appearance:none;
  margin-top:-4px;
  transition:all 0.5s;
}
.b-slider [type=range]::-moz-range-track{
  cursor:pointer;
  height:4px;
  transition:all 0.2s ease;
  width:100%;
  background:#e0e0e0;
  border:none;
  border-radius:2px;
}
.b-slider [type=range]::-moz-range-thumb{
  background:rgb(81.3846153846, 172.8846153846, 245.6153846154);
  border:none;
  border-radius:50%;
  cursor:pointer;
  height:12px;
  width:12px;
}
.b-slider [type=range]::-ms-track{
  cursor:pointer;
  height:4px;
  transition:all 0.2s ease;
  width:100%;
  background:transparent;
  border-color:transparent;
  border-width:6px 0;
  color:transparent;
}
.b-slider [type=range]::-ms-fill-lower, .b-slider [type=range]::-ms-fill-upper{
  background:#e0e0e0;
  border:none;
  border-radius:4px;
}
.b-slider [type=range]::-ms-thumb{
  background:rgb(81.3846153846, 172.8846153846, 245.6153846154);
  border:none;
  border-radius:50%;
  cursor:pointer;
  height:12px;
  width:12px;
  margin-top:0;
}
.b-slider.b-disabled [type=range]::-ms-thumb, .b-slider.b-disabled [type=range]::-ms-fill-lower, .b-slider.b-disabled [type=range]::-ms-fill-upper{
  background:rgb(212.8, 212.8, 212.8);
  cursor:default;
}
.b-slider.b-disabled [type=range]::-moz-range-thumb, .b-slider.b-disabled [type=range]::-moz-range-track{
  background:rgb(212.8, 212.8, 212.8);
  cursor:default;
}
.b-slider.b-disabled [type=range]::-webkit-slider-thumb, .b-slider.b-disabled [type=range]::-webkit-slider-runnable-track{
  background:rgb(212.8, 212.8, 212.8);
  cursor:default;
}
.b-grid-cell .b-slider{
  flex:1;
}
.b-container .b-slider label{
  margin:0;
}
.b-slidetoggle{
  --widget-primary-color-rgb:33,150,243;
  --slidetoggle-background-color:rgb(var(--widget-primary-color-rgb));
  --slidetoggle-toggle-background-opacity:0.5;
  --slidetoggle-toggle-background-color:rgba(var(--widget-primary-color-rgb), var(--slidetoggle-toggle-background-opacity));
}
.b-slidetoggle.b-disabled{
  --slidetoggle-toggle-background-color:#e0e0e0;
  --slidetoggle-background-color:#e0e0e0;
}
.b-slidetoggle .b-field-inner::before{
  width:2.4em;
}
.b-slidetoggle input,
.b-slidetoggle .b-slidetoggle-toggle{
  width:2.4em;
  height:1.4em;
  font-size:inherit;
  flex-shrink:0;
}
.b-slidetoggle input{
  top:-0.4em;
}
.b-slidetoggle input:checked + .b-slidetoggle-toggle{
  opacity:1;
  background-color:var(--slidetoggle-background-color);
}
.b-slidetoggle input:checked + .b-slidetoggle-toggle .b-slidetoggle-thumb{
  background-color:#fff;
  transform:translate(1.2em, 0.2em);
}
.b-slidetoggle .b-slidetoggle-toggle{
  transition:background-color 0.2s, opacity 0.2s;
  opacity:0.7;
  border-radius:0.7em;
  margin-inline-end:0.4em;
  background-color:rgba(158, 158, 158, 0.6);
}
.b-slidetoggle:hover .b-slidetoggle-toggle{
  opacity:1;
}
.b-slidetoggle .b-slidetoggle-thumb{
  height:1em;
  width:1em;
  background-color:white;
  border-radius:0.5em;
  position:absolute;
  transform:translate(0.2em, 0.2em);
  transition:transform 0.3s ease;
}
.b-slidetoggle.b-rtl .b-slidetoggle-thumb{
  transform:translate(-0.2em, 0.2em);
}
.b-slidetoggle.b-rtl input:checked + .b-slidetoggle-toggle .b-slidetoggle-thumb{
  transform:translate(-1.2em, 0.2em);
}
.b-slidetoggle-label{
  cursor:pointer;
}
.b-container .b-slidetoggle .b-slidetoggle-label{
  margin-inline-start:0;
}
.b-splitter{
  background-color:#ebebeb;
  flex:0 0 0.5em;
  position:relative;
  touch-action:none;
}
@media (pointer: coarse){
  .b-splitter{
    --splitter-inner-size:2em;
    --splitter-button-size:1.3em;
  }
}
@media (pointer: fine){
  .b-splitter{
    --splitter-inner-size:0;
    --splitter-button-size:1em;
  }
}
.b-splitter.b-disabled{
  flex:0 0 1px;
  pointer-events:none;
}
.b-splitter:not(.b-disabled){
  overflow:visible;
}
.b-splitter::after{
  content:"";
  position:absolute;
  inset-inline-start:0;
  top:0;
  z-index:1;
}
.b-splitter.b-hover::after, .b-splitter.b-moving::after{
  background-color:#ebebeb;
}
.b-splitter.b-hover .b-splitter-buttons, .b-splitter.b-moving .b-splitter-buttons{
  display:flex;
}
.b-splitter.b-show-buttons .b-splitter-buttons{
  display:flex;
}
.b-splitter.b-horizontal{
  min-height:0.5em;
}
.b-splitter.b-horizontal:not(.b-drag-disabled){
  cursor:ns-resize;
}
.b-splitter.b-horizontal.b-disabled{
  min-height:1px;
}
.b-splitter.b-horizontal::after{
  height:var(--splitter-inner-size);
  width:100%;
}
.b-splitter.b-horizontal:hover:not(.b-drag-disabled)::after, .b-splitter.b-horizontal.b-hover:not(.b-drag-disabled)::after, .b-splitter.b-horizontal.b-moving::after{
  top:calc((10px - 0.5em) / -2);
  height:10px;
}
.b-splitter.b-horizontal .b-splitter-buttons{
  margin-top:0.2em;
  transform:translate(-50%, -50%) rotate(90deg);
}
.b-splitter.b-vertical{
  min-width:0.5em;
}
.b-splitter.b-vertical:not(.b-drag-disabled){
  cursor:ew-resize;
}
.b-splitter.b-vertical.b-disabled{
  min-width:1px;
}
.b-splitter.b-vertical::after{
  width:var(--splitter-inner-size);
  height:100%;
}
.b-splitter.b-vertical:hover:not(.b-drag-disabled)::after, .b-splitter.b-vertical.b-hover:not(.b-drag-disabled)::after, .b-splitter.b-vertical.b-moving::after{
  inset-inline-start:calc((10px - 0.5em) / -2);
  width:10px;
}
.b-splitter:last-child, .b-splitter:first-child{
  visibility:hidden;
  flex:0;
  min-width:0;
}
.b-splitter .b-splitter-inner{
  display:flex;
  background:#ebebeb;
  position:relative;
  z-index:2;
  height:100%;
  width:100%;
}
.b-splitter .b-splitter-buttons{
  display:none;
  position:absolute;
  height:2.4em;
  width:2.4em;
  font-size:var(--splitter-button-size);
  z-index:3;
  inset-inline-start:50%;
  transform:translate(-50%, -50%);
  transition:top 0.2s ease-in-out, inset-inline-start 0.2s ease-in-out;
}
.b-splitter .b-splitter-buttons:has(.b-disabled){
  pointer-events:none;
}
.b-splitter .b-splitter-button-collapse,
.b-splitter .b-splitter-button-expand{
  flex:1;
  cursor:pointer;
  background:#ebebeb;
  display:flex;
  align-items:center;
  position:relative;
  padding-top:0.1em;
}
.b-splitter .b-splitter-button-collapse:hover .b-splitter-button-icon,
.b-splitter .b-splitter-button-expand:hover .b-splitter-button-icon{
  color:#ff9800;
}
.b-splitter .b-splitter-button-collapse.b-disabled,
.b-splitter .b-splitter-button-expand.b-disabled{
  cursor:default;
  visibility:hidden !important;
  pointer-events:none;
}
.b-splitter .b-splitter-button-collapse:not(.b-disabled),
.b-splitter .b-splitter-button-expand:not(.b-disabled){
  pointer-events:auto;
}
.b-splitter .b-splitter-button-collapse{
  border-top-left-radius:100% 50%;
  border-bottom-left-radius:100% 50%;
  justify-content:flex-end;
}
.b-splitter .b-splitter-button-expand{
  border-top-right-radius:100% 50%;
  border-bottom-right-radius:100% 50%;
}
.b-splitter .b-splitter-button-icon{
  cursor:pointer;
  color:rgb(126.4, 126.4, 126.4);
  height:1.5em;
  font-size:1.3em;
  font-weight:400;
  align-content:center;
}
.b-splitter .b-splitter-touch-area{
  width:2em;
  inset-inline-start:calc((2em - 0.5em) / -2);
  position:absolute;
  top:0;
  height:100%;
}
.b-splitter .b-splitter-button-touch-area{
  height:3em;
  top:-0.3em;
  width:2em;
  position:absolute;
}
.b-splitter .b-splitter-button-collapse .b-splitter-button-touch-area{
  inset-inline-start:-0.9em;
}
.b-splitter .b-splitter-button-expand .b-splitter-button-touch-area{
  inset-inline-end:-0.9em;
}
.b-splitter.b-rtl.b-horizontal .b-splitter-buttons{
  transform:translate(50%, -50%) rotate(-90deg);
}
.b-splitter.b-rtl.b-vertical .b-splitter-buttons{
  transform:translate(50%, -50%) scaleX(-1);
}
.b-splitter.b-rtl .b-splitter-button-collapse,
.b-splitter.b-rtl .b-splitter-button-expand{
  transform:scaleX(-1);
}
.b-splitter.b-rtl .b-splitter-button-expand{
  justify-content:flex-end;
}
.b-splitter.b-rtl .b-splitter-button-collapse{
  justify-content:flex-start;
}
.b-timefield bry-time{
  --timefield-button-background-color:color-mix(in srgb, currentColor, #fff 85%);
  --timefield-input-background-color:transparent;
}
.b-timefield.b-open .b-icon-clock-live{
  background-color:#2196f3 !important;
}
.b-timefield.b-empty .b-fieldtrigger{
  animation-delay:-300s;
}
.b-timefield.b-disabled .b-icon-clock-live, .b-timefield.b-readonly .b-icon-clock-live{
  background-color:#e0e0e0;
}
.b-timefield:not(.b-disabled):not(.b-readonly) .b-icon-angle-left:hover,
.b-timefield:not(.b-disabled):not(.b-readonly) .b-icon-angle-right:hover{
  color:#2196f3;
}
.b-timefield.b-no-steppers .b-step-trigger{
  display:none;
}
.b-timefield .b-step-trigger::before{
  transition:color 0.3s;
}
.b-timefield.b-rtl .b-step-trigger::before{
  transform:scaleX(-1);
}
.b-empty:not(.b-contains-focus) bry-time{
  opacity:0;
}
.b-timepicker{
  max-height:535px;
}
.b-timepicker .b-list{
  background-color:transparent;
  display:flex;
  flex-direction:column;
  align-items:center;
  flex:1 1 auto;
  scroll-snap-type:block;
}
.b-timepicker .b-timepicker-item{
  padding:0.7em;
  aspect-ratio:1;
  flex-shrink:0;
  width:3em;
  scroll-snap-align:start;
  display:grid;
  place-content:center;
}
.b-timepicker .b-timepicker-item[aria-selected=true]{
  outline:1px solid #2196f3;
  outline-offset:-1px;
}
@keyframes b-toast-progress{
  0%{
    width:0;
  }
  100%{
    width:100%;
  }
}
.b-toast{
  --widget-primary-color-rgb:255,255,255;
  --toast-background-color:rgb(var(--widget-primary-color-rgb));
  --toast-color:#424242;
  --toast-progress-background-color:#2196f3;
  background-color:var(--toast-background-color);
  color:var(--toast-color);
}
.b-float-root > .b-floating.b-toast{
  display:inline-block;
  overflow-x:hidden;
  overflow-y:auto;
  top:auto;
  inset-inline-end:2em;
  inset-inline-start:auto;
  max-width:60%;
  max-height:60%;
  line-height:1.4em;
  transition:var(--side) 0.25s ease-in, transform 0.25s ease-in;
  padding:1em;
  border-radius:2px;
  cursor:pointer;
}
.b-float-root > .b-floating.b-toast:is(.b-side-top-start, .b-side-top-end){
  top:0;
}
.b-legacy-inset .b-float-root > .b-floating.b-toast{
  left:auto;
  right:2em;
}
.b-legacy-inset .b-float-root > .b-floating.b-toast.b-rtl{
  left:2em;
  right:auto;
}
.b-float-root > .b-floating.b-toast:is(.b-side-top-start, .b-side-bottom-start){
  inset-inline-start:2em;
  inset-inline-end:auto;
}
.b-float-root > .b-floating.b-toast.b-toast-hide:is(.b-side-bottom-end, .b-side-bottom-start){
  bottom:0 !important;
  transform:translateY(100%) !important;
}
.b-float-root > .b-floating.b-toast.b-toast-hide:is(.b-side-top-end, .b-side-top-start){
  top:0 !important;
  transform:translateY(-100%) !important;
}
.b-float-root > .b-floating.b-toast.b-icon:before, .b-float-root > .b-floating.b-toast.b-indicator.b-constraint-type-muststarton:before, .b-float-root > .b-floating.b-toast.b-indicator.b-constraint-type-mustfinishon:before, .b-float-root > .b-floating.b-toast.b-indicator.b-deadline-date:before, .b-float-root > .b-floating.b-toast.b-icon-version:before{
  margin-inline-end:0.5em;
}
.b-toast-progress{
  position:absolute;
  top:0;
  inset-inline-start:0;
  height:3px;
  background:var(--toast-progress-background-color);
  animation-name:b-toast-progress;
  animation-timing-function:linear;
}
.b-legacy-inset .b-toast-progress{
  left:0;
}
.b-legacy-inset .b-toast-progress.b-rtl{
  right:0;
}
.b-tooltip{
  --panel-background-color:#616161;
}
.b-tooltip:not(.b-allow-over){
  -webkit-user-select:none;
  user-select:none;
}
.b-tooltip .b-tooltip-loading .b-icon, .b-tooltip .b-tooltip-loading .b-indicator.b-constraint-type-muststarton, .b-tooltip .b-tooltip-loading .b-indicator.b-constraint-type-mustfinishon, .b-tooltip .b-tooltip-loading .b-indicator.b-deadline-date, .b-tooltip .b-tooltip-loading .b-icon-version{
  display:inline-block;
  margin-inline-end:0.5em;
}
.b-tooltip .b-panel-content.b-no-child-elements{
  padding-block:0.25em;
  margin-block:0.5em;
}
.b-tooltip-content{
  background:inherit;
  color:#fff;
  font-size:1em;
  line-height:1.4em;
  padding:1em;
}
.b-tooltip-content a{
  color:#fff;
}
.b-tooltip .b-tooltip-header .b-tool{
  color:#fff;
}
.b-textareafield textarea,
.b-textareapickerfield textarea{
  padding:0.79em 0;
  align-self:stretch;
}
.b-textareapickerfield-picker{
  display:flex;
  flex:1;
  min-height:10em;
}
.b-textareapickerfield-picker:focus{
  outline:none;
  border-color:#ff9800;
}
.b-tabpanel-tabs{
  display:flex;
  flex:0 0 auto;
  flex-direction:row;
  margin-bottom:0;
  background-color:transparent;
}
.b-toolbar .b-tabpanel-tabs{
  gap:0;
}
.b-tabpanel-tab{
  display:flex;
  padding:0.6em 1em;
  cursor:pointer;
  transition:background-color 0.2s, color 0.2s;
  align-items:center;
  justify-content:center;
  font-weight:400;
  text-transform:uppercase;
  color:#757575;
  background-color:transparent;
  border-width:0 0 2px 0;
  border-style:solid;
  border-color:transparent;
  border-top-left-radius:2px;
  border-top-right-radius:2px;
}
.b-tabpanel-tab.b-rotate-vertical{
  min-width:3em;
  min-height:6em;
}
.b-tabpanel-tab:not(.b-rotate-vertical){
  min-height:3em;
  min-width:6em;
}
.b-tabpanel-tab.b-active{
  background-color:transparent;
  border-color:#2196f3;
  color:#2196f3;
  z-index:1;
  --b-tabpanel-tabs-pseudo-border:none;
}
.b-tabpanel-tab.b-invalid:after{
  content:" ";
  position:absolute;
  bottom:0;
  inset-inline-start:0;
  width:100%;
  height:2px;
  border-bottom:2px solid #f44336;
}
.b-dock-top > .b-tabpanel-tabs > .b-tabpanel-tab::before{
  content:"";
  position:absolute;
  bottom:0;
  inset-inline:0;
  border-bottom:var(--b-tabpanel-tabs-pseudo-border);
}
.b-dock-left > .b-tabpanel-tabs > .b-tabpanel-tab{
  border-width:0 2px 0 0;
}
.b-dock-right > .b-tabpanel-tabs > .b-tabpanel-tab{
  border-width:0 0 0 2px;
}
.b-dock-bottom > .b-tabpanel-tabs > .b-tabpanel-tab{
  border-width:2px 0 0 0;
}
.b-tabpanel-tab.b-hidden{
  display:none !important;
}
.b-tabpanel-tab.b-disabled{
  background-color:transparent;
  color:rgba(117, 117, 117, 0.3);
  border-color:rgba(0, 0, 0, 0);
}
.b-tabpanel-tab:focus{
  outline-offset:-1px;
}
.b-tabpanel-tab:focus:not(.b-active, .b-disabled){
  color:#212121;
  --b-tabpanel-tabs-pseudo-border:none;
}
.b-tabpanel-tab:not(.b-active) img{
  filter:grayscale(1);
  opacity:0.5;
}
.b-tabpanel-tab .b-tab-close{
  color:#757575;
  font-size:0.8em;
  margin-inline-start:1em;
}
.b-tabpanel-tab .b-tab-close:hover{
  color:#212121;
}
.b-tabpanel-body.b-card-container{
  background-color:transparent;
  border-radius:2px;
  border:0 solid transparent;
  flex:1 0 auto;
  padding:1em 0;
}
.b-tabpanel[data-active-index="0"] .b-tabpanel-body{
  border-top-left-radius:0;
}
.b-tabpanel .b-html{
  color:#000;
}
.b-toolbar.b-tabbar{
  background-color:var(--panel-background-color);
}
.b-toolbar.b-tabbar > .b-tabpanel-tabs{
  min-height:auto;
  padding:0;
}
.b-toolbar.b-tabbar.b-dock-top{
  border-bottom:none;
}
.b-toolbar.b-tabbar.b-dock-top::before{
  content:"";
  position:absolute;
  bottom:0;
  inset-inline:0;
}
.b-toolbar.b-tabbar:not(.b-dragging-child) .b-tab:hover:not(.b-active, .b-disabled){
  color:#212121;
  --b-tabpanel-tabs-pseudo-border:none;
}
.b-toolbar.b-tabbar:not(.b-dragging-child) .b-tab:hover:not(.b-active, .b-disabled){
  background-color:#eeeeee;
}
.b-tabbar.b-dock-top .b-tabpanel-tabs, .b-tabbar.b-dock-bottom .b-tabpanel-tabs{
  align-items:center;
}
.b-tabbar.b-dock-top .b-tabpanel-tabs > .b-widget.b-tab-last, .b-tabbar.b-dock-bottom .b-tabpanel-tabs > .b-widget.b-tab-last{
  margin-inline-end:auto;
}
.b-tabbar.b-dock-top .b-tabpanel-tabs > .b-widget:not(.b-tab), .b-tabbar.b-dock-bottom .b-tabpanel-tabs > .b-widget:not(.b-tab){
  height:80%;
  min-height:1em;
}
.b-tabbar.b-dock-top .b-tabpanel-tabs > .b-widget:not(.b-tab).b-last-visible-child, .b-tabbar.b-dock-bottom .b-tabpanel-tabs > .b-widget:not(.b-tab).b-last-visible-child{
  margin-inline-end:0.3em;
}
.b-tabbar.b-dock-top .b-tabpanel-tabs > .b-widget:not(.b-tab-last), .b-tabbar.b-dock-bottom .b-tabpanel-tabs > .b-widget:not(.b-tab-last), .b-tabbar.b-dock-left .b-tabpanel-tabs > .b-widget:not(.b-tab-last), .b-tabbar.b-dock-right .b-tabpanel-tabs > .b-widget:not(.b-tab-last){
  margin-inline-end:0;
  margin-bottom:0;
}
.b-toolbar.b-undoredo{
  padding:0;
  gap:0;
}
.b-toolbar.b-undoredo > *{
  border-radius:0;
}
.b-buttongroup .b-toolbar.b-undoredo:not(:first-child) > button:first-child{
  margin-inline-start:0;
}
.b-buttongroup .b-toolbar.b-undoredo > .b-widget{
  margin-inline-end:0;
}
.b-toolbar.b-undoredo .b-widget.b-combo{
  flex:1 1 250px;
  margin:0 0.5em;
}
.b-theme-material .b-toolbar.b-undoredo .b-widget.b-combo .b-field-inner{
  padding-inline:0.7em;
}
.b-yearpicker{
  width:max-content;
}
.b-yearpicker .b-toolbar.b-dock-top{
  background-color:#fff;
  color:#000;
  border-bottom:none;
  min-height:0;
  font-size:1.2em;
}
.b-yearpicker .b-toolbar.b-dock-top .b-toolbar-content{
  padding:0.5em 0.5ex !important;
  gap:0.5ex;
}
.b-yearpicker .b-toolbar.b-dock-top .b-icon:before, .b-yearpicker .b-toolbar.b-dock-top .b-indicator.b-constraint-type-muststarton:before, .b-yearpicker .b-toolbar.b-dock-top .b-indicator.b-constraint-type-mustfinishon:before, .b-yearpicker .b-toolbar.b-dock-top .b-indicator.b-deadline-date:before, .b-yearpicker .b-toolbar.b-dock-top .b-icon-version:before{
  line-height:normal;
}
.b-yearpicker .b-toolbar.b-dock-top button{
  border:none;
  min-height:0;
}
.b-yearpicker .b-toolbar.b-dock-top button, .b-yearpicker .b-toolbar.b-dock-top button:not(.b-tab):active:not([disabled]), .b-yearpicker .b-toolbar.b-dock-top button:not(.b-tab):active:focus:not([disabled]){
  color:#888;
}
.b-yearpicker .b-toolbar.b-dock-top .b-tool{
  color:inherit;
  font-size:80%;
}
.b-yearpicker .b-toolbar.b-dock-top .b-tool:hover{
  opacity:0.7;
}
.b-yearpicker .b-toolbar.b-dock-top .b-tool:not(.b-contains-focus){
  background:transparent !important;
}
.b-yearpicker .b-toolbar.b-dock-top .b-yearpicker-title{
  margin-inline:auto;
  color:inherit;
  font-weight:400;
  background-color:unset;
}
.b-yearpicker .b-toolbar.b-dock-top .b-yearpicker-title[data-item-index="0"]{
  margin-inline:0.5em auto !important;
}
.b-yearpicker .b-toolbar.b-dock-top .b-yearpicker-title:not(.b-disabled):not(.b-tab):hover{
  opacity:0.7;
  background-color:unset;
}
.b-yearpicker .b-yearpicker-body-wrap{
  background-color:#fff;
}
.b-yearpicker .b-yearpicker-content{
  display:grid;
  align-items:center;
  grid-template-columns:repeat(4, 1fr);
  padding:1em;
  gap:1em;
}
.b-yearpicker .b-yearpicker-content button.b-yearpicker-year{
  border-width:0;
  border-style:solid;
  border-color:transparent;
  border-radius:1em;
  height:2em;
  background:transparent;
  font-size:1em;
  cursor:pointer;
  color:#000;
  font-family:inherit;
  font-weight:400;
  padding-inline:0;
}
.b-yearpicker .b-yearpicker-content button.b-yearpicker-year:hover{
  background-color:rgba(33, 150, 243, 0.15);
  border-color:transparent;
}
.b-yearpicker .b-yearpicker-content button.b-yearpicker-year.b-selected{
  color:#fff;
  background-color:#2196f3;
  border-color:#2196f3;
}
.b-yearpicker.b-outer, .b-yearpicker.b-floating{
  min-width:20.4em;
  min-height:18.2em;
}
:root, :host{
  --b-hint-highlight-color:#feac31;
}
.b-hint code{
  background:#eee;
  padding:2px 4px;
  line-height:1;
}
.b-theme-classic-dark .b-hint code{
  background:#111;
}
.b-hint .b-mask{
  opacity:0;
}
.b-hint .b-description{
  line-height:1.7em;
}
.b-hint.b-scroll-realigning{
  transition:none !important;
}
.b-mouse-pointer{
  pointer-events:none;
  display:inline-grid;
  position:absolute;
  font-size:20px;
}
.b-hint.b-floating{
  width:max-content;
  max-width:37em;
  transition:top 0.5s, inset-inline-start 0.5s;
}
.b-hint.b-floating [data-ref=steps]{
  margin-inline-end:auto;
}
.b-hint.b-floating.b-no-title .b-hint-header{
  max-height:0;
  padding:0;
}
.b-hint.b-floating.b-no-title .b-popup-close{
  position:absolute;
  inset-block-start:1em;
  inset-inline-end:1em;
}
.b-hint.b-floating.b-no-title .b-hint-content{
  padding-inline-end:2em;
}
.b-hint.b-floating, .b-hint.b-floating .b-button, .b-hint.b-floating .b-hint-body-wrap{
  border-radius:0.5em;
}
.b-hint.b-floating .b-button{
  text-transform:none;
  height:2.75em;
}
.b-hint.b-floating .b-tooltip-header .b-tool{
  position:absolute;
  top:0.5em;
  right:0.5em;
}
.b-float-root .b-hint-highlighter{
  left:var(--b-highlight-left);
  top:var(--b-highlight-top);
  width:var(--b-highlight-width);
  height:var(--b-highlight-height);
  background-color:transparent;
  pointer-events:none !important;
  transition:inset-inline-start 0.5s, inset-block-start 0.5s, width 0.5s, height 0.5s, background-color 0.7s;
  border-radius:3px;
  outline:2px solid var(--b-hint-highlight-color);
}
.b-float-root .b-hint-highlighter.b-hint-highlighter-ping{
  z-index:99999;
  animation:hint-highlighter-ping 1.2s 3 linear;
}
.b-float-root .b-hint-highlighter.b-hint-highlighter-center{
  background-color:var(--b-hint-highlight-color);
  border-radius:50%;
  outline-offset:-2px;
  z-index:-1;
}
.b-float-root .b-hint-highlighter.b-realigning{
  transition:none !important;
}
@keyframes hint-highlighter-ping{
  0%{
    outline-color:var(--b-hint-highlight-color);
    outline-offset:-2px;
    outline-width:2px;
  }
  70%{
    outline-offset:20px;
    outline-color:color-mix(in srgb, var(--b-hint-highlight-color) 40%, transparent 60%);
    outline-width:10px;
  }
  95%{
    outline-offset:20px;
    outline-color:transparent;
    outline-width:10px;
  }
  96%{
    outline-offset:-2px;
    outline-color:transparent;
    outline-width:2px;
  }
  100%{
    outline-offset:-2px;
    outline-color:var(--b-hint-highlight-color);
    outline-width:2px;
  }
}
.b-modal-mask[owned-by*=b-hint]{
  clip-path:polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%, var(--b-highlight-left) var(--b-highlight-top), var(--b-highlight-left) calc(var(--b-highlight-top) + var(--b-highlight-height)), calc(var(--b-highlight-left) + var(--b-highlight-width)) calc(var(--b-highlight-top) + var(--b-highlight-height)), calc(var(--b-highlight-left) + var(--b-highlight-width)) var(--b-highlight-top), var(--b-highlight-left) var(--b-highlight-top));
  transition:all 0.5s;
}
.b-histogram{
  background-color:#fff;
  padding:1px;
  contain:strict;
}
.b-histogram svg *{
  vector-effect:non-scaling-stroke;
}
.b-histogram rect{
  fill:#4caf50;
  transition-property:x, y, width, height, fill;
  transition-duration:1000ms;
}
.b-histogram rect.b-series-index-0{
  fill:#4caf50;
}
.b-histogram rect.b-series-index-1{
  fill:#2196f3;
}
.b-histogram rect.b-series-index-2{
  fill:#3f51b5;
}
.b-histogram rect.b-series-index-3{
  fill:#009688;
}
.b-histogram rect.b-series-index-4{
  fill:#ff9800;
}
.b-histogram rect.b-series-index-5{
  fill:#cddc39;
}
.b-histogram rect.b-exceeds-top{
  fill:#f44336;
}
.b-histogram text.b-bar-legend{
  writing-mode:tb;
  text-anchor:end;
  font-size:75%;
  pointer-events:none;
}
.b-histogram svg{
  overflow:visible;
}
.b-histogram path{
  fill:transparent;
  stroke:#f99;
  transition:d 1000ms;
  pointer-events:none;
}
.b-scale{
  contain:strict;
}
.b-scale svg *{
  vector-effect:non-scaling-stroke;
}
.b-scale.b-scale-vertical text.b-scale-tick-label{
  transform:translateY(0.3em);
}
.b-scale.b-scale-vertical.b-align-right{
  text-anchor:end;
}
.b-scale.b-scale-horizontal text.b-scale-tick-label{
  text-anchor:middle;
}
.b-scale path{
  stroke:#9c9c9c;
  pointer-events:none;
}
.b-scale text{
  fill:#808080;
}
.b-hbox,
.b-vbox{
  display:flex;
  align-items:stretch;
  justify-content:flex-start;
  position:relative;
}
.b-hbox > .b-box-center,
.b-vbox > .b-box-center{
  flex:1 1 auto;
  overflow:hidden;
}
.b-hbox{
  flex-flow:row nowrap;
}
.b-vbox{
  flex-flow:column nowrap;
}
.b-box-justify-stretch{
  justify-content:stretch;
}
.b-card-container{
  display:flex;
  flex-flow:row nowrap;
  align-items:stretch;
  overflow:hidden;
  padding:0;
  position:relative;
}
.b-card-container.b-animating{
  overflow:hidden;
}
.b-card-container > .b-card-item{
  flex:1 0 100%;
  align-items:stretch;
  max-width:100%;
}
.b-card-container.b-hide-child-headers > .b-panel:not(.b-positioned) > .b-panel-header{
  display:none;
}
@keyframes b-card-slide-in-left{
  0%{
    transform:translateX(-100%);
  }
  100%{
    transform:translateX(0);
  }
}
@keyframes b-card-slide-out-right{
  0%{
    transform:translateX(-100%);
  }
  100%{
    transform:translateX(0);
  }
}
@keyframes b-card-slide-in-right{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-100%);
  }
}
@keyframes b-card-slide-out-left{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-100%);
  }
}
.b-slide-in-left{
  animation:b-card-slide-in-left 0.3s ease 0s 1;
}
.b-slide-out-right{
  pointer-events:none;
  left:1em;
  animation:b-card-slide-out-right 0.3s ease 0s 1;
}
.b-slide-in-right{
  animation:b-card-slide-in-right 0.3s ease 0s 1;
}
.b-slide-out-left{
  pointer-events:none;
  margin-inline-start:-1em;
  margin-inline-end:1em;
  animation:b-card-slide-out-left 0.3s ease 0s 1;
}
.b-fit-container{
  display:flex;
  flex-flow:row nowrap;
  align-items:stretch;
  overflow:hidden;
  position:relative;
}
.b-fit-container > .b-fit-item{
  flex:1 0 auto;
  margin:0;
  max-width:100%;
  align-self:stretch !important;
}
.b-resource-avatar{
  touch-action:pan-x pan-y;
  display:flex;
  align-items:center;
  justify-content:center;
  width:2.2em;
  height:2.2em;
  border-radius:50%;
  flex-shrink:0;
}
.b-resource-avatar.b-resource-icon:before{
  font-size:1.5em;
}
.b-resource-initials{
  background:#2196f3;
  color:#fff;
  text-transform:uppercase;
}
.b-color-indigo{
  background-color:#3f51b5;
}
.b-color-blue{
  background-color:#2196f3;
}
.b-color-cyan{
  background-color:#3bc9db;
}
.b-color-red{
  background-color:#f44336;
}
.b-color-deep-orange{
  background-color:#ff5722;
}
.b-color-orange{
  background-color:#ff9800;
}
.b-color-amber{
  background-color:#ffc107;
}
.b-color-yellow{
  background-color:#ffeb3b;
}
.b-color-teal{
  background-color:#009688;
}
.b-color-green{
  background-color:#4caf50;
}
.b-color-light-green{
  background-color:#8bc34a;
}
.b-color-lime{
  background-color:#cddc39;
}
.b-color-purple{
  background-color:#9c27b0;
}
.b-color-violet{
  background-color:#9775fa;
}
.b-color-pink{
  background-color:#f783ac;
}
.b-color-dark-gray{
  background-color:#424242;
}
.b-color-gray{
  background-color:#9e9e9e;
}
.b-color-light-gray{
  background-color:#e0e0e0;
}
.b-color-white{
  background-color:#fff;
}
.b-indigo{
  --widget-primary-color-rgb:63,81,181;
}
.b-blue{
  --widget-primary-color-rgb:33,150,243;
}
.b-cyan{
  --widget-primary-color-rgb:59,201,219;
}
.b-red{
  --widget-primary-color-rgb:244,67,54;
}
.b-deep-orange{
  --widget-primary-color-rgb:255,87,34;
}
.b-orange{
  --widget-primary-color-rgb:255,152,0;
}
.b-amber{
  --widget-primary-color-rgb:255,193,7;
}
.b-yellow{
  --widget-primary-color-rgb:255,235,59;
}
.b-teal{
  --widget-primary-color-rgb:0,150,136;
}
.b-green{
  --widget-primary-color-rgb:76,175,80;
}
.b-light-green{
  --widget-primary-color-rgb:139,195,74;
}
.b-lime{
  --widget-primary-color-rgb:205,220,57;
}
.b-purple{
  --widget-primary-color-rgb:156,39,176;
}
.b-violet{
  --widget-primary-color-rgb:151,117,250;
}
.b-pink{
  --widget-primary-color-rgb:247,131,172;
}
.b-dark-gray{
  --widget-primary-color-rgb:66,66,66;
}
.b-gray{
  --widget-primary-color-rgb:158,158,158;
}
.b-light-gray{
  --widget-primary-color-rgb:224,224,224;
}
.b-white{
  --widget-primary-color-rgb:255,255,255;
}
.b-icon-clock-live{
  background-color:#757575;
  border-radius:50%;
  width:1em;
  height:1em;
  position:relative;
  animation-delay:0s;
}
.b-icon-clock-live:before, .b-icon-clock-live:after{
  position:absolute;
  display:block;
  font-size:1em !important;
  content:"";
  width:0.1em !important;
  left:0.44em;
  background:#fff;
  border-radius:0.5em;
}
.b-icon-clock-live:before{
  top:0.15em;
  height:0.4em !important;
  transform-origin:0.05em 0.35em;
  animation:rotate 6s infinite linear;
  animation-play-state:paused;
  animation-delay:inherit;
}
.b-icon-clock-live:after{
  top:0.22em;
  height:0.33em;
  transform-origin:0.05em 0.3em;
  animation:rotate 72s infinite linear;
  animation-play-state:paused;
  animation-delay:inherit;
}
@keyframes rotate{
  0%{
    transform:rotate(0deg);
  }
  100%{
    transform:rotate(360deg);
  }
}
.b-buttongroup.b-raised{
  box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.b-button.b-raised{
  transition-property:color, box-shadow, background-color;
  transition-duration:0.2s;
  transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow:0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0px rgba(0, 0, 0, 0.14), 0 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.b-button.b-raised.b-pressed{
  box-shadow:0 2px 1px -1px rgba(0, 0, 0, 0.1);
}
.b-button.b-raised.b-pressed:hover:not(.b-disabled){
  box-shadow:0 2px 1px -1px rgba(0, 0, 0, 0.1);
}
.b-button.b-raised.b-disabled{
  box-shadow:none;
}
.b-button.b-raised:hover:not(.b-disabled), .b-outer.b-using-keyboard .b-button.b-raised:focus:not(.b-disabled){
  box-shadow:0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.b-outer.b-using-keyboard .b-button.b-raised.b-pressed:focus:not(.b-disabled){
  box-shadow:0 3px 1px -2px rgba(0, 0, 0, 0.1);
}
.b-button.b-raised:active:not(.b-disabled){
  box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.b-checkbox{
  --checkbox-material-highlight-color:rgb(var(--checkbox-main-color), var(--checkbox-material-highlight-opacity));
  --checkbox-material-highlight-opacity:0;
  --checkbox-material-hover-higlight-opacity:0.1;
  --checkbox-material-focus-higlight-opacity:0.2;
  overflow:visible !important;
}
.b-checkbox .b-field-inner::before{
  content:"";
  display:block;
  z-index:0;
  position:absolute;
  left:-0.65em;
  width:2.6em;
  height:2.6em;
  border-radius:50%;
  background-color:var(--checkbox-material-highlight-color);
  transition:background-color 0.2s;
}
.b-rtl .b-checkbox .b-field-inner::before{
  left:auto;
  right:-0.65em;
}
.b-checkbox:not(.b-disabled):hover:focus-within, .b-checkbox:not(.b-disabled):focus-within{
  --checkbox-material-highlight-opacity:var(--checkbox-material-focus-higlight-opacity);
}
.b-checkbox:not(.b-disabled):hover{
  --checkbox-material-highlight-opacity:var(--checkbox-material-hover-higlight-opacity);
}
.b-checkbox.b-bright .b-checkbox-label:before{
  border-color:#fff;
}
.b-radio .b-field-inner::before{
  display:none;
}
.b-radio:not(.b-disabled) input[type=radio]::before{
  content:"";
  display:block;
  position:relative;
  width:2.5em;
  height:2.5em;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  border-radius:50%;
  background-color:transparent;
  transition:background-color 0.2s;
}
.b-radio:not(.b-disabled):hover input::before{
  background-color:rgba(33, 150, 243, 0.1);
}
.b-radio:not(.b-disabled):hover:focus-within input::before, .b-radio:not(.b-disabled):focus-within input::before{
  background-color:rgba(33, 150, 243, 0.2);
}
.b-radiogroup, .b-widget.b-radiogroup *{
  overflow:visible;
}
.b-radiogroup .b-radio.b-collapsed .b-field-container-wrap, .b-widget.b-radiogroup .b-radio.b-collapsed .b-field-container-wrap{
  overflow:hidden;
}
.b-rtl .b-radio:not(.b-disabled) input[type=radio]::before{
  transform:translate(50%, -50%);
  right:50%;
}
.b-widget.b-datetimefield,
.b-widget.b-numberfield,
.b-widget.b-richtextfield,
.b-widget.b-textfield{
  overflow:visible !important;
}
.b-widget.b-datetimefield.b-has-label, .b-widget.b-datetimefield.b-match-label,
.b-widget.b-numberfield.b-has-label,
.b-widget.b-numberfield.b-match-label,
.b-widget.b-richtextfield.b-has-label,
.b-widget.b-richtextfield.b-match-label,
.b-widget.b-textfield.b-has-label,
.b-widget.b-textfield.b-match-label{
  margin-top:1.2em;
}
.b-widget.b-datetimefield .b-field-inner::before,
.b-widget.b-numberfield .b-field-inner::before,
.b-widget.b-richtextfield .b-field-inner::before,
.b-widget.b-textfield .b-field-inner::before{
  display:inline-block;
  position:absolute;
  background-color:#2196f3;
  height:2px;
  left:0;
  right:0;
  bottom:-1px;
  content:"";
  transition:transform 0.3s;
  transform:scaleX(0);
}
.b-widget.b-datetimefield .b-field-inner:focus-within::before, .b-widget.b-datetimefield.b-open .b-field-inner::before,
.b-widget.b-numberfield .b-field-inner:focus-within::before,
.b-widget.b-numberfield.b-open .b-field-inner::before,
.b-widget.b-richtextfield .b-field-inner:focus-within::before,
.b-widget.b-richtextfield.b-open .b-field-inner::before,
.b-widget.b-textfield .b-field-inner:focus-within::before,
.b-widget.b-textfield.b-open .b-field-inner::before{
  transform:scaleX(1);
}
.b-widget.b-datetimefield.b-invalid .b-field-inner::before,
.b-widget.b-numberfield.b-invalid .b-field-inner::before,
.b-widget.b-richtextfield.b-invalid .b-field-inner::before,
.b-widget.b-textfield.b-invalid .b-field-inner::before{
  background-color:#f44336;
}
.b-widget.b-datetimefield.b-has-label ::-webkit-input-placeholder,
.b-widget.b-numberfield.b-has-label ::-webkit-input-placeholder,
.b-widget.b-richtextfield.b-has-label ::-webkit-input-placeholder,
.b-widget.b-textfield.b-has-label ::-webkit-input-placeholder{
  color:transparent;
}
.b-widget.b-datetimefield label,
.b-widget.b-numberfield label,
.b-widget.b-richtextfield label,
.b-widget.b-textfield label{
  position:absolute;
  top:-1em;
  bottom:auto;
  transition:all 0.2s;
  width:100% !important;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.b-widget.b-datetimefield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-has-start-trigger label,
.b-widget.b-numberfield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-has-start-trigger label,
.b-widget.b-richtextfield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-has-start-trigger label,
.b-widget.b-textfield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-has-start-trigger label{
  margin-inline-start:2em;
}
.b-widget.b-datetimefield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-datetimefield label, .b-widget.b-datetimefield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-datefield label,
.b-widget.b-numberfield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-datetimefield label,
.b-widget.b-numberfield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-datefield label,
.b-widget.b-richtextfield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-datetimefield label,
.b-widget.b-richtextfield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-datefield label,
.b-widget.b-textfield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-datetimefield label,
.b-widget.b-textfield.b-empty:not(.b-contains-focus):not(.b-no-steppers).b-datefield label{
  margin-inline-start:1em;
}
.b-widget.b-datetimefield.b-empty:not(:focus-within):not(.b-open) label,
.b-widget.b-numberfield.b-empty:not(:focus-within):not(.b-open) label,
.b-widget.b-richtextfield.b-empty:not(:focus-within):not(.b-open) label,
.b-widget.b-textfield.b-empty:not(:focus-within):not(.b-open) label{
  font-size:1em;
  top:1em;
  padding-inline-end:1em;
}
.b-widget.b-datetimefield.b-bright,
.b-widget.b-numberfield.b-bright,
.b-widget.b-richtextfield.b-bright,
.b-widget.b-textfield.b-bright{
  border-color:#e0e0e0;
  color:#fff;
}
.b-widget.b-datetimefield.b-bright:not(.b-has-label) ::-webkit-input-placeholder,
.b-widget.b-numberfield.b-bright:not(.b-has-label) ::-webkit-input-placeholder,
.b-widget.b-richtextfield.b-bright:not(.b-has-label) ::-webkit-input-placeholder,
.b-widget.b-textfield.b-bright:not(.b-has-label) ::-webkit-input-placeholder{
  color:#fff;
}
.b-widget.b-datetimefield.b-bright label, .b-widget.b-datetimefield.b-bright label i,
.b-widget.b-numberfield.b-bright label,
.b-widget.b-numberfield.b-bright label i,
.b-widget.b-richtextfield.b-bright label,
.b-widget.b-richtextfield.b-bright label i,
.b-widget.b-textfield.b-bright label,
.b-widget.b-textfield.b-bright label i{
  color:rgba(255, 255, 255, 0.9);
}
.b-widget.b-datetimefield.b-bright:hover:not(.b-disabled) .b-field-inner,
.b-widget.b-numberfield.b-bright:hover:not(.b-disabled) .b-field-inner,
.b-widget.b-richtextfield.b-bright:hover:not(.b-disabled) .b-field-inner,
.b-widget.b-textfield.b-bright:hover:not(.b-disabled) .b-field-inner{
  border-color:#fff;
}
.b-widget.b-datetimefield.b-bright .b-field-inner .b-fieldtrigger,
.b-widget.b-numberfield.b-bright .b-field-inner .b-fieldtrigger,
.b-widget.b-richtextfield.b-bright .b-field-inner .b-fieldtrigger,
.b-widget.b-textfield.b-bright .b-field-inner .b-fieldtrigger{
  color:inherit;
}
.b-widget.b-datetimefield.b-bright .b-field-inner::before,
.b-widget.b-numberfield.b-bright .b-field-inner::before,
.b-widget.b-richtextfield.b-bright .b-field-inner::before,
.b-widget.b-textfield.b-bright .b-field-inner::before{
  background-color:#ff9800;
}
.b-cell-editor .b-field input{
  padding-inline:0.5em;
}
.b-timefield:focus-within label{
  margin-inline-start:0;
}
.b-timefield label{
  margin-inline-start:1.8em;
  margin-top:-0.2em;
}
.b-datetimefield .b-datefield{
  margin-inline-end:0.5em;
}
.b-datetimefield .b-datefield .b-field-inner{
  border:none;
}
.b-datetimefield:not(.b-disabled):hover .b-datefield .b-field-inner, .b-datetimefield:focus-within .b-datefield .b-field-inner{
  border:none;
}
.b-colorfield .b-label{
  left:0;
}
.b-colorfield.b-empty:not(:focus-within):not(.b-open):not(.b-colorless) label.b-label{
  left:1.5em;
  top:0.8em;
}
.b-rtl .b-colorfield .b-label{
  right:0;
}
.b-rtl .b-colorfield.b-empty:not(:focus-within):not(.b-open):not(.b-colorless) label.b-label{
  right:1.5em;
  top:0.8em;
}
.b-checklistfiltercombo-picker [data-ref=searchField] .b-fieldtrigger{
  padding-inline:0.5em;
}
.b-checklistfiltercombo-picker [data-ref=searchField] input[type=text]{
  padding-inline:0.75em;
}
.b-slidetoggle .b-field-inner::before{
  transition:left, right 0.3s;
}
.b-slidetoggle.b-slidetoggle-checked .b-field-inner::before{
  left:0.35em;
}
.b-rtl .b-slidetoggle.b-slidetoggle-checked .b-field-inner::before{
  left:auto;
  right:0.35em;
}
.b-radiogroup{
  overflow:visible;
}
.b-radiogroup .b-radiogroup-body-wrap{
  overflow:visible;
}
.b-radiogroup .b-radiogroup-body-wrap .b-radiogroup-content{
  overflow:visible;
}
@font-face{
  font-family:Roboto;
  src:url("/assets/Roboto-Light.1761736823161.woff2") format("woff2"), url("/assets/Roboto-Light.1761736823161.woff") format("woff");
  font-weight:300;
}
@font-face{
  font-family:Roboto;
  src:url("/assets/Roboto-Regular.1761736823161.woff2") format("woff2"), url("/assets/Roboto-Regular.1761736823161.woff") format("woff");
  font-weight:400;
}
@font-face{
  font-family:Roboto;
  src:url("/assets/Roboto-Medium.1761736823161.woff2") format("woff2"), url("/assets/Roboto-Medium.1761736823161.woff") format("woff");
  font-weight:500;
}
@font-face{
  font-family:Roboto;
  src:url("/assets/Roboto-Bold.1761736823161.woff2") format("woff2"), url("/assets/Roboto-Bold.1761736823161.woff") format("woff");
  font-weight:700;
}
.b-widget{
  font-family:Roboto, sans-serif;
}
.b-ripple{
  box-shadow:none !important;
  pointer-events:none !important;
  position:relative;
  display:flex;
  align-items:stretch;
}
.b-ripple .b-ripple-inner{
  flex:1 0 100%;
  position:absolute;
  overflow:visible;
}
.b-ripple .b-ripple-inner circle{
  animation:b-ripple-expand 0.3s ease-in-out, b-ripple-opacity-in 0.1s linear;
  opacity:0.1;
}
.b-float-root > .b-ripple{
  overflow:hidden;
}
.b-has-label.b-bright:not(.b-disabled) label{
  color:#fff;
}
.b-panel > .b-toolbar .b-toolbar-content{
  align-items:center;
}
.b-panel > .b-toolbar .b-toolbar-content .b-widget:not(.b-tool){
  min-height:2.5em;
}
.b-toolbar-content > .b-label{
  font-size:0.9em;
}
@keyframes b-ripple-opacity-in{
  0%{
    opacity:0;
  }
  100%{
    opacity:0.1;
  }
}
@keyframes b-ripple-expand{
  0%{
    transform:scale(0.1);
  }
  100%{
    transform:scale(1);
  }
}
.b-divider{
  margin-top:2em;
}
.b-divider::before{
  border-bottom:1px solid #9e9e9e;
}
.b-divider::after{
  font-size:1em;
}
.b-tab.b-invalid{
  border-bottom-color:#f44336;
}
.b-tab.b-invalid:after{
  display:none;
}
.b-chart .b-chart-content{
  position:absolute;
  width:100%;
  top:0;
  bottom:0;
}
.b-chart .b-chart-content.b-chart-show-controls{
  padding-top:1em;
}
.b-chart .b-chart-controls{
  position:absolute;
  z-index:1;
  top:0;
  inset-inline-end:0;
  gap:0;
}
.b-chart .b-chart-controls .b-button{
  padding:0 1em;
}
.b-chartdesigner .b-tabpanel-body.b-card-container{
  padding:0;
}
.b-chartdesigner .b-vbox > .b-box-center.b-tabpanel-content{
  overflow:auto;
  scrollbar-gutter:stable;
  align-items:flex-start;
}
.b-chartdesigner .b-tabpanel-tab{
  min-width:0;
}
.b-chartdesigner .b-tabpanel-item{
  padding:1em;
}
.b-chartdesigner .b-tabpanel-item .b-panel .b-panel-content{
  background:transparent;
}
.b-chartdesigner .b-tabpanel-item .b-list.b-multiselect{
  border:1px solid #757575;
  border-radius:2px;
}
.b-chartdesigner .b-tabpanel-item > *{
  width:100%;
  overflow:visible;
}
.b-chartdesigner .b-chartdesigner-content{
  padding:0;
}
.b-chartdesigner .b-chartdesigner-content > .b-chart{
  background:#fff;
}
.b-chartdesigner .b-list.b-chart-type-list{
  background:none;
}
.b-chartdesigner .b-list.b-chart-type-list .b-list-item{
  border-top:none;
}
.b-chartdesigner .b-list.b-chart-type-list .b-list-item:not(.b-list-item-group-header){
  float:inline-start;
  display:block;
  margin-block:0 1em;
  margin-inline:0.2em 0.8em;
  padding:0 !important;
  min-width:0;
  border-radius:3px;
  border:1px solid inherit;
}
.b-chartdesigner .b-list.b-chart-type-list .b-list-item.b-selected:not(.b-list-item-group-header){
  outline:0 0 1px 0 solid #ff9800;
  outline-offset:-0 0 1px 0;
}
.b-chartdesigner .b-list.b-chart-type-list .b-list-item-group-header{
  clear:both;
  font-weight:400;
  padding:0 0 0.2em 0;
}
.b-chartdesigner .b-list.b-chart-type-list .b-list-item-group-header.b-active{
  background:none;
}
.b-chartdesigner .b-list.b-chart-type-list canvas{
  background:#fff;
}
.b-chartdesigner .b-section-header{
  font-weight:500;
}
.b-chartdesigner .b-chart-type-thumbnail{
  width:4em;
  height:3em;
}
.b-chartdesigner .b-checkbox > .b-field-inner > .b-checkbox-label{
  text-transform:none;
  font-size:1em;
}
.b-chartdesigner .b-chart-appearance-tab.b-tabpanel-item{
  padding:0;
}
.b-chartdesigner .b-chart-appearance-tab.b-tabpanel-item .b-panel-header.b-panel-collapse-revealer{
  cursor:pointer;
}
.b-chartdesigner .b-chart-appearance-tab.b-tabpanel-item .b-panel .b-panel-header .b-header-title{
  font-size:1em;
}
.b-chartdesigner .b-chart-appearance-tab.b-tabpanel-item .b-multi-section .b-panel{
  width:100%;
}
.b-chartdesigner .b-chart-appearance-tab.b-tabpanel-item .b-multi-section > .b-panel-body-wrap > .b-panel-content .b-panel-header{
  background:none;
  color:inherit;
  padding:0;
  border:none;
}
.b-chartdesigner .b-chart-appearance-tab.b-tabpanel-item .b-multi-section > .b-panel-body-wrap > .b-panel-content > .b-panel > .b-panel-body-wrap .b-panel-content{
  padding-inline:0;
}
.b-chartdesigner .b-tick-rotation-fields .b-panel-content{
  gap:1em;
  padding:0.5em 1em 1em 1em;
}
.b-chartdesigner .b-chartdesigner-settings{
  flex:0 0 22em;
  overflow:hidden;
  transition:flex-basis 0.3s;
}
.b-chartdesigner .b-chartdesigner-settings > .b-panel-header{
  display:none;
}
.b-chartdesigner .b-chartdesigner-settings .b-chart-line-thickness .b-numberfield{
  max-inline-size:5em;
}
.b-chartdesigner.b-chartdesigner-minimal .b-chartdesigner-settings{
  flex-basis:0;
}
.b-chartdesigner .b-label{
  text-transform:none;
}
.b-sliderwithfield{
  display:grid;
  grid-template-columns:1fr 5em;
  width:100%;
  column-gap:0.6em;
}
.b-sliderwithfield > .b-label{
  width:100%;
  grid-column:1/-1;
  margin-inline-start:0;
}
.b-sliderwithfield .b-numberfield{
  width:auto;
}
.b-sliderwithfield .b-numberfield .b-label{
  display:none;
}
.b-icon-triangle{
  font-size:1.2em;
}
.b-fontpicker.b-vbox{
  flex-flow:row wrap;
}
.b-fontpicker [data-ref=family]{
  flex:1 1 60%;
}
.b-fontpicker [data-ref=size]{
  flex:1 0 30%;
}
.b-fontpicker,
.b-fontpicker > .b-container{
  gap:0.6em;
}
.b-content-icon, .b-group-state-icon, .b-gridbase.b-columnresize.b-touch.b-column-resizing .b-grid-header.b-resizing::before{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:inline-block;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  line-height:1;
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  vertical-align:0;
}
.b-grid.b-readonly.b-actioncolumn-readonly .b-action-cell{
  filter:grayscale(1);
  opacity:0.2;
  pointer-events:none;
}
.b-action-cell{
  text-align:end;
}
.b-action-ct{
  display:flex;
  flex-flow:row nowrap;
}
.b-action-item{
  margin:0 -0.2em;
  text-align:center;
  font-size:1.2em;
  color:rgb(91.5, 91.5, 91.5);
}
.b-action-cell.b-grid-cell .b-action-item{
  transition:all 0.15s ease-in-out;
}
.b-action-item:hover{
  transform:scale3d(1.1, 1.1, 1);
  color:#878787;
}
.b-check-header-with-checkbox .b-grid-header-text{
  display:none;
}
.b-check-header-with-checkbox .b-field-inner{
  justify-content:center;
}
.b-check-header-with-checkbox .b-checkbox-label,
.b-check-cell .b-checkbox-label{
  display:flex;
  gap:0.4em;
  align-items:center;
}
.b-check-header-with-checkbox .b-checkbox-label:before,
.b-check-cell .b-checkbox-label:before{
  margin:0 !important;
}
.b-grid-cell.b-color-cell .b-color-cell-inner{
  border:none;
  border-radius:0.4em;
  cursor:pointer;
  height:1.5em;
  width:1.5em;
}
.b-grid-cell.b-color-cell .b-color-cell-inner.b-empty{
  border:1px solid #e0e0e0;
}
.b-percent-bar-outer{
  flex:1;
  height:30%;
  max-height:0.8em;
  background:#f1f1f1;
  border-radius:1em;
  overflow:clip;
}
.b-percent-bar{
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
  max-width:100%;
  padding:0 0.2em;
  background:#2196f3;
  color:#fff;
  font-size:0.7em;
  text-align:end;
  transition:width 0.5s, padding 0.5s, background-color 0.5s;
}
.b-percent-bar.b-zero{
  padding:0;
  text-indent:0.2em;
}
.b-percent-bar.b-low{
  background:#f44336;
  color:rgb(38.25, 38.25, 38.25);
}
.b-percent-bar.b-low span{
  left:100%;
  margin-block:0;
  margin-inline:5px 0;
}
.b-percent-bar span{
  position:relative;
  display:inline-block;
  margin-block:0;
  margin-inline:0 5px;
  line-height:1em;
}
.b-percentdone-circle{
  --grid-percent-circle-angle:0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
  max-height:3em;
  max-width:3em;
  border-radius:50%;
  background-color:#e0e0e0;
  background-image:conic-gradient(#2196f3 0 var(--grid-percent-circle-angle), transparent var(--grid-percent-circle-angle) 1turn);
}
.b-percentdone-circle.b-full, .b-percentdone-circle.b-empty{
  background-image:none;
}
.b-percentdone-circle.b-full{
  background-color:#2196f3;
}
.b-percentdone-circle::after{
  content:attr(data-value);
  display:flex;
  align-items:center;
  justify-content:center;
  width:calc(100% - 6px);
  height:calc(100% - 6px);
  border-radius:50%;
  background:#fff;
  font-size:0.8em;
  color:#212121;
}
.b-percentdone-circle:focus-visible{
  outline:none;
}
.b-grid-body-container.b-scrolling .b-percent-bar{
  transition:none;
}
.b-rating-cell-inner .b-icon, .b-rating-cell-inner .b-indicator.b-constraint-type-muststarton, .b-rating-cell-inner .b-indicator.b-constraint-type-mustfinishon, .b-rating-cell-inner .b-indicator.b-deadline-date, .b-rating-cell-inner .b-icon-version{
  font-size:1.8em;
}
.b-rating-cell-inner .b-empty{
  color:rgba(224, 224, 224, 0.3);
}
.b-rating-cell-inner .b-filled{
  color:#fdd835;
}
.b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-muststarton, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-mustfinishon, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-deadline-date, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon-version{
  cursor:pointer;
  transition:all 0.2s linear;
  position:relative;
}
.b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-icon, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-indicator.b-constraint-type-muststarton, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-indicator.b-constraint-type-mustfinishon, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-indicator.b-deadline-date, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-icon-version{
  color:#fdd835;
}
.b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-icon.b-empty::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-empty.b-indicator.b-constraint-type-muststarton::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-empty.b-indicator.b-constraint-type-mustfinishon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-empty.b-indicator.b-deadline-date::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable):hover .b-empty.b-icon-version::before{
  opacity:0.4;
}
.b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon:hover, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-muststarton:hover, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-mustfinishon:hover, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-deadline-date:hover, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon-version:hover{
  transform:scale(1.3);
}
.b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon:hover.b-filled, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-muststarton:hover.b-filled, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-mustfinishon:hover.b-filled, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-deadline-date:hover.b-filled, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon-version:hover.b-filled{
  opacity:1;
}
.b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon:hover:hover ~ .b-icon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-muststarton:hover:hover ~ .b-icon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-mustfinishon:hover:hover ~ .b-icon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon:hover:hover ~ .b-indicator.b-constraint-type-muststarton::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-muststarton:hover:hover ~ .b-indicator.b-constraint-type-muststarton::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-mustfinishon:hover:hover ~ .b-indicator.b-constraint-type-muststarton::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon:hover:hover ~ .b-indicator.b-constraint-type-mustfinishon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-muststarton:hover:hover ~ .b-indicator.b-constraint-type-mustfinishon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-mustfinishon:hover:hover ~ .b-indicator.b-constraint-type-mustfinishon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-deadline-date:hover:hover ~ .b-icon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-deadline-date:hover:hover ~ .b-indicator.b-constraint-type-muststarton::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-deadline-date:hover:hover ~ .b-indicator.b-constraint-type-mustfinishon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon:hover:hover ~ .b-indicator.b-deadline-date::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-muststarton:hover:hover ~ .b-indicator.b-deadline-date::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-mustfinishon:hover:hover ~ .b-indicator.b-deadline-date::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-deadline-date:hover:hover ~ .b-indicator.b-deadline-date::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon-version:hover:hover ~ .b-icon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon-version:hover:hover ~ .b-indicator.b-constraint-type-muststarton::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon-version:hover:hover ~ .b-indicator.b-constraint-type-mustfinishon::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon-version:hover:hover ~ .b-indicator.b-deadline-date::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon:hover:hover ~ .b-icon-version::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-muststarton:hover:hover ~ .b-icon-version::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-constraint-type-mustfinishon:hover:hover ~ .b-icon-version::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-indicator.b-deadline-date:hover:hover ~ .b-icon-version::before, .b-gridbase:not(.b-readonly) .b-rating-cell-inner:not(.b-not-editable) .b-icon-version:hover:hover ~ .b-icon-version::before{
  color:rgba(224, 224, 224, 0.3);
  opacity:1;
}
.b-grid-body-container.b-scrolling .b-rating-cell-inner .b-icon, .b-grid-body-container.b-scrolling .b-rating-cell-inner .b-indicator.b-constraint-type-muststarton, .b-grid-body-container.b-scrolling .b-rating-cell-inner .b-indicator.b-constraint-type-mustfinishon, .b-grid-body-container.b-scrolling .b-rating-cell-inner .b-indicator.b-deadline-date, .b-grid-body-container.b-scrolling .b-rating-cell-inner .b-icon-version{
  transition:none;
}
.b-grid-cell.b-row-number-cell, .b-grid-cell.b-sequence-cell{
  background-color:#fafafa;
  border-inline-end:1px solid transparent;
}
.b-grid-row.b-hover .b-grid-cell:hover.b-sequence-cell, .b-grid-row.b-hover .b-grid-cell:hover.b-row-number-cell{
  border-inline-end:1px solid transparent;
}
.b-group-row .b-grid-cell:first-child.b-sequence-cell, .b-group-row .b-grid-cell:first-child.b-row-number-cell{
  border-inline-end:1px solid transparent;
}
.b-gridbase:focus .b-grid-row.b-selected .b-grid-cell.b-selected.b-row-number-cell, .b-gridbase:focus .b-grid-row.b-selected .b-grid-cell.b-selected.b-sequence-cell{
  border-inline-end:1px solid #e0e0e0;
}
.b-gridbase .b-grid-row.b-selected .b-row-number-cell,
.b-gridbase .b-grid-row .b-grid-cell.b-selected.b-row-number-cell,
.b-gridbase .b-grid-row.b-selected .b-sequence-cell,
.b-gridbase .b-grid-row .b-grid-cell.b-selected.b-sequence-cell{
  background-color:rgb(237.25, 237.25, 237.25);
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell.b-row-number-cell,
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row) .b-grid-cell.b-row-number-cell.b-hover, .b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell.b-sequence-cell,
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row) .b-grid-cell.b-sequence-cell.b-hover{
  background-color:rgb(244.9, 244.9, 244.9);
}
.b-sparkline-cell .b-chart{
  background:transparent;
}
.b-tree-expander{
  position:relative;
  top:1px;
  margin:0 0.55em;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.b-loading-children .b-tree-expander.b-icon:before, .b-loading-children .b-tree-expander.b-indicator.b-constraint-type-muststarton:before, .b-loading-children .b-tree-expander.b-indicator.b-constraint-type-mustfinishon:before, .b-loading-children .b-tree-expander.b-indicator.b-deadline-date:before, .b-loading-children .b-tree-expander.b-icon-version:before{
  content:"\f110";
  animation:rotate 2s infinite linear;
}
.b-grid-cell.b-tree-cell{
  align-items:stretch;
}
.b-tree-leaf-cell .b-tree-cell-inner:before{
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  color:#2196f3;
  margin-inline-end:0.6em;
  width:1.25em;
  min-width:1.25em;
  text-align:center;
}
.b-tree-icon,
.b-icon-tree-leaf,
.b-icon-tree-folder,
.b-icon-tree-folder-open,
.b-icon-tree-expand,
.b-icon-tree-collapse{
  color:#2196f3;
  width:1.25em;
  min-width:1.25em;
  text-align:center;
}
.b-tree-icon,
.b-icon-tree-leaf,
.b-icon-tree-folder,
.b-icon-tree-folder-open{
  margin-inline-end:0.6em;
}
.b-icon-tree-leaf:before{
  font-size:0.3em;
  vertical-align:middle;
}
.b-icon-tree-folder:before,
.b-icon-tree-folder-open:before{
  margin-inline-start:0.1em;
}
.b-icon-tree-expand.b-empty-parent,
.b-icon-tree-collapse.b-empty-parent{
  visibility:hidden;
}
.b-icon-tree-expand:before,
.b-icon-tree-collapse:before{
  font-size:1.2em;
}
.b-tree-cell-inner{
  padding:0.5em 0;
  display:flex;
  align-items:center;
  flex-shrink:0;
  flex-grow:1;
}
.b-tree-cell-inner.b-text-value{
  flex-shrink:1;
  overflow:hidden;
}
.b-tree-cell-inner.b-text-value .b-tree-cell-value{
  display:initial;
  overflow:hidden;
  text-overflow:ellipsis;
}
.b-tree-cell.b-auto-height .b-tree-cell-inner{
  flex-shrink:1;
}
.b-tree-cell.b-auto-height{
  flex-shrink:1;
}
a.b-tree-cell-inner{
  text-decoration:none;
}
a.b-tree-cell-inner:hover .b-tree-cell-value{
  text-decoration:underline;
}
.b-tree-parent-cell,
.b-tree-leaf-cell{
  padding-inline-start:10px;
}
.b-tree-parent-row .b-grid-cell{
  font-weight:500;
  color:rgb(109.5, 109.5, 109.5);
}
.b-tree-cell-value{
  flex:1;
  display:flex;
  flex-direction:row;
  align-items:center;
}
.b-touch .b-tree-expander{
  width:1.1em;
}
.b-touch .b-icon-tree-leaf:before{
  font-size:0.6em;
}
.b-touch .b-tree-icon,
.b-touch .b-tree-leaf-cell:not(.b-tree-parent-cell):before{
  font-size:1.2em;
}
.b-tree-line{
  height:100%;
  border-inline-start:2px solid #ddd;
}
.b-editor.b-cell-editor{
  position:absolute;
  background-color:#fff;
  border-width:1px 1px 0 1px;
  border-color:#2196f3;
  border-style:solid;
  overflow:visible;
  z-index:1;
}
.b-editor.b-cell-editor:not(.b-floating){
  box-shadow:none !important;
}
.b-grid-cell:not(.b-tree-cell) .b-editor.b-cell-editor{
  width:100% !important;
}
.b-editor.b-cell-editor .b-field > .b-label{
  clip-path:inset(0 100% 100% 0);
  position:absolute;
  contain:strict;
}
.b-editor.b-cell-editor .b-numberfield:not(.b-has-start-trigger) .b-field-inner,
.b-editor.b-cell-editor .b-textfield:not(.b-has-start-trigger) .b-field-inner{
  padding-inline-start:0;
}
.b-editor.b-cell-editor .b-numberfield input,
.b-editor.b-cell-editor .b-textfield input{
  padding:0 0.5em;
}
.b-editor.b-cell-editor .b-combo.b-uses-chipview .b-chipview{
  margin:0.3em;
}
.b-gridbase :is(.b-grid-row, .b-grid-cell).b-editing{
  overflow:visible;
  contain:unset;
  z-index:1;
  outline:none !important;
}
.b-gridbase :is(.b-grid-row, .b-grid-cell).b-editing .b-grid-cell.b-editing:has(.b-editor){
  color:transparent;
}
.b-grid-cell:not(.b-editing) .b-cell-editor{
  display:none;
}
.b-celltooltip-tip{
  max-height:50%;
}
.b-chartdesigner-popup .b-popup-content{
  padding:0;
  display:flex;
}
.b-columndragtoolbar{
  position:absolute;
  top:calc(100% - 3em);
  left:50%;
  z-index:100;
  animation-name:b-show-columndragtoolbar;
  animation-duration:0.2s;
  transform:translateX(-50%);
  display:inline-flex;
  flex-direction:row;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  border-radius:0.2em;
  background:#fff;
  transition:opacity 0.2s, top 0.2s;
  box-shadow:0 3px 6px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.24);
  padding:1em 1em 0.5em 1em;
  opacity:0.8;
  font-size:0.8em;
}
.b-columndragtoolbar.b-closer{
  top:50%;
  transform:translate(-50%, -50%);
}
.b-columndragtoolbar.b-hover{
  opacity:1;
}
.b-columndragtoolbar.b-remove{
  animation-name:b-hide-columndragtoolbar;
  animation-duration:0.2s;
  top:100%;
  opacity:0;
}
.b-columndragtoolbar.b-remove.b-closer{
  animation-name:b-hide-columndragtoolbar-closer;
}
.b-columndragtoolbar > .b-title{
  color:#757575;
  flex-basis:100%;
  margin-bottom:1em;
  text-align:center;
}
.b-columndragtoolbar > .b-title:before{
  content:"Drag header downwards";
}
.b-columndragtoolbar.b-closer > .b-title:before{
  content:"Drop header on a button";
}
.b-columndragtoolbar .b-group{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  margin-inline-end:1.5em;
}
.b-columndragtoolbar .b-group:last-child{
  margin-inline-end:0;
}
.b-columndragtoolbar .b-group .b-title{
  color:#757575;
  margin-block:0.5em;
}
.b-columndragtoolbar .b-buttons{
  display:inline-flex;
  flex-direction:row;
}
.b-columndragtoolbar .b-target-button{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  transition:all 0.2s;
  color:#fff;
  border:0 solid #2196f3;
  border-radius:0.2em;
  background:#2196f3;
  padding:1em 0;
  width:7em;
  margin-inline-end:0.5em;
  box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.b-columndragtoolbar .b-target-button:last-child{
  margin-inline-end:0;
}
.b-columndragtoolbar .b-target-button i{
  font-size:2.5em;
  color:#fff;
  pointer-events:none;
  transition:all 0.2s;
}
.b-columndragtoolbar .b-target-button.b-hover:not([data-disabled=true]){
  background-color:rgb(57.1923076923, 161.4423076923, 244.3076923077);
  color:#fff;
  box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.b-columndragtoolbar .b-target-button.b-hover:not([data-disabled=true]) i{
  transform:scale(1.1);
  color:#fff;
}
.b-columndragtoolbar .b-target-button.b-activate i{
  transform:scale(1.1) rotate(180deg) !important;
}
.b-columndragtoolbar .b-target-button[data-button-id^=group]{
  border-color:#fff;
  background-color:#ff9800;
}
.b-columndragtoolbar .b-target-button[data-button-id^=group] i{
  color:#fff;
}
.b-columndragtoolbar .b-target-button[data-button-id^=group].b-hover:not([data-disabled=true]){
  background-color:rgb(255, 162.3, 25.5);
}
.b-columndragtoolbar .b-target-button[data-button-id^=group].b-hover:not([data-disabled=true]) i{
  color:#fff;
}
.b-columndragtoolbar .b-target-button[data-button-id^=multisort]{
  border-color:rgb(12.7384615385, 136.9384615385, 235.6615384615);
}
.b-columndragtoolbar .b-target-button[data-button-id^=multisort] i{
  color:rgb(229.5, 229.5, 229.5);
}
.b-columndragtoolbar .b-target-button[data-button-id^=multisort].b-hover:not([data-disabled=true]){
  background-color:rgb(12.7384615385, 136.9384615385, 235.6615384615);
}
.b-columndragtoolbar .b-target-button[data-disabled=true]{
  opacity:0.5;
}
@keyframes b-show-columndragtoolbar{
  from{
    top:100%;
    opacity:0;
  }
  to{
    top:calc(100% - 3em);
    opacity:0.4;
  }
}
@keyframes b-hide-columndragtoolbar{
  from{
    top:calc(100% - 3em);
    opacity:0.4;
  }
  to{
    top:100%;
    opacity:0;
  }
}
@keyframes b-hide-columndragtoolbar-closer{
  from{
    top:50%;
    opacity:0.4;
  }
  to{
    top:100%;
    opacity:0;
  }
}
.b-grid-header.b-drag-proxy{
  line-height:normal;
  font-weight:500;
  background-color:#fafafa;
  outline:1px solid transparent;
  transition:background-color 0.3s;
  border-inline-end:none;
}
.b-grid-header.b-drag-proxy.b-grid-header-parent{
  justify-content:stretch;
}
.b-grid-header.b-drag-proxy.b-grid-header-parent > .b-grid-header-text{
  border-inline-end:none;
}
.b-grid-header.b-drag-proxy .b-grid-header:last-child{
  border-inline-end:none;
}
.b-grid-header.b-drop-placeholder{
  opacity:0.3;
}
.b-grid-header.b-drag-invalid{
  outline:1px solid #f44336;
}
.b-grid-header.b-drag-invalid, .b-grid-header.b-drag-invalid .b-grid-header{
  color:#f44336;
}
.b-column-reorder-stretched.b-drag-proxy{
  background-color:rgba(49, 131, 254, 0.1254901961);
  outline:none;
}
.b-column-reorder-stretched.b-drag-proxy > *{
  display:none !important;
}
.b-gridbase.b-columnresize .b-grid-header.b-resize-handle{
  cursor:col-resize !important;
}
.b-gridbase.b-columnresize .b-grid-header.b-resizing{
  background:rgb(237.25, 237.25, 237.25);
}
.b-gridbase.b-columnresize.b-sort .b-grid-header.b-resizing:not(.b-filter):not(.b-multifilter) .b-filter-icon,
.b-gridbase.b-columnresize.b-sort .b-grid-header.b-over-resize-handle:not(.b-filter):not(.b-multifilter) .b-filter-icon,
.b-gridbase.b-columnresize.b-sort .b-grid-header.b-resizing:not(.b-sort):after,
.b-gridbase.b-columnresize.b-sort .b-grid-header.b-over-resize-handle:hover:not(.b-sort):after{
  display:none;
}
.b-gridbase.b-columnresize.b-touch.b-column-resizing .b-grid-header.b-resizing{
  overflow:visible;
  z-index:100;
}
.b-gridbase.b-columnresize.b-touch.b-column-resizing .b-grid-header.b-resizing::before{
  content:"\f337";
  font-size:1.5em;
  color:#fff;
  position:absolute;
  top:50%;
  transform:translateX(50%) translateY(-50%);
  right:0;
  z-index:101;
  border-radius:100%;
  background-color:transparent;
  pointer-events:none;
  padding:0.5em;
}
.b-rtl .b-gridbase.b-columnresize.b-touch.b-column-resizing .b-grid-header.b-resizing::before{
  right:auto;
  left:0;
}
.b-gridbase.b-columnresize.b-touch.b-column-resizing .b-grid-header:not(.b-resizing){
  z-index:1;
}
.b-context-menu{
  min-width:14em;
}
.b-fill-handle{
  width:0.8em;
  height:0.8em;
  transform:translate(-50%, -50%);
  position:absolute;
  background:#2196f3;
  cursor:crosshair;
  border:1px solid #fff;
  z-index:200;
  background-clip:content-box;
  user-select:none;
  -webkit-user-select:none;
}
.b-fill-selection-border{
  position:absolute;
  border:2px solid #2196f3;
  border-radius:0.1em;
  pointer-events:none;
  z-index:2;
  -webkit-user-select:none;
  user-select:none;
}
.b-indicate-crop{
  opacity:0.4;
}
.b-fill-handle-right-edge{
  border-right:0;
  transform:translate(-100%, -50%);
  width:0.5em;
}
.b-rtl .b-fill-handle{
  transform:translate(50%, -50%);
}
.b-rtl .b-fill-handle.b-fill-handle-left-edge{
  border-right:0;
  transform:translate(100%, -50%);
  width:0.5em;
}
@keyframes b-filter-icon-color{
  0%{
    color:#9e9e9e;
  }
  50%{
    color:#ff9800;
  }
  100%{
    color:#9e9e9e;
  }
}
.b-grid-header .b-filter-icon{
  display:none;
  cursor:pointer;
  transition:opacity 0.2s;
}
.b-grid-header .b-filter-icon::after{
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  color:#e0e0e0;
  transition:transform 0.3s, color 0.2s;
  transform:none;
  background:inherit;
  content:"\f0b0";
}
.b-grid-header .b-filter-icon:hover::after{
  color:#9e9e9e;
}
.b-gridbase:not(.b-filter):not(.b-multifilter) .b-filter-icon{
  opacity:0.2;
  pointer-events:none;
}
.b-gridbase:not(.b-column-resizing) .b-grid-header-container:not(.b-dragging-header) .b-grid-header.b-filterable:hover > .b-grid-header-text > .b-filter-icon{
  display:flex;
}
.b-grid-header.b-filter .b-grid-header-text{
  font-weight:700;
  color:#666;
}
.b-grid-header.b-filter .b-filter-icon{
  display:flex;
}
.b-grid-header.b-filter .b-filter-icon::after{
  color:#9e9e9e;
}
.b-grid-header.b-filter .b-filter-icon.b-latest::after{
  animation-name:b-filter-icon-color;
  animation-duration:0.75s;
}
.b-filter-popup-legacymode .b-field{
  width:15em;
}
.b-filter-popup .b-fieldfilterpickergroup{
  width:32em;
}
.b-filter-popup .b-multifilter-add{
  width:12em;
  align-self:center;
  margin:1.1em 0 0 0;
}
.b-filter-popup .b-fieldfilterpicker-property{
  display:none;
}
.b-filter-popup .b-panel-content{
  gap:0.6em;
}
.b-filter-bar-field{
  margin:0 0 0.5em 0;
  width:100%;
}
.b-filter-bar-compact .b-grid-header.b-filter-bar-enabled{
  flex-direction:row;
}
.b-filter-bar-compact .b-grid-header.b-filter-bar-enabled .b-grid-header-text{
  padding:0.25em 0;
  width:2em;
  order:1;
  margin-inline-end:-0.5em;
}
.b-filter-bar-compact .b-grid-header.b-filter-bar-enabled .b-grid-header-text .b-grid-header-text-content{
  display:none;
}
.b-filter-bar-compact .b-grid-header.b-filter-bar-enabled.b-grid-header-align-end .b-field{
  order:100000;
}
.b-filter-bar-compact .b-grid-header.b-filter-bar-enabled.b-grid-header-align-end input{
  text-align:end;
}
.b-filter-bar-compact .b-filter-bar-field{
  margin:0;
}
.b-filter-bar-compact .b-filter-bar-field .b-field-inner{
  background-color:transparent;
  border:none;
}
.b-filter-bar-compact .b-filter-bar-field .b-field-inner::before{
  display:none;
}
.b-filter-bar-compact .b-filter-bar-field .b-field-inner input{
  padding:0.8em 0;
}
.b-filter-bar-compact .b-filter-bar-field .b-field-inner input::placeholder{
  color:#757575;
  text-transform:none;
  font-size:1em;
  font-weight:500;
}
.b-filter-bar-compact .b-filter-bar-field:not(:focus-within) .b-fieldtrigger[data-ref=expand], .b-filter-bar-compact .b-filter-bar-field:not(:focus-within) .b-fieldtrigger[data-ref=clear], .b-filter-bar-compact .b-filter-bar-field:not(:focus-within) .b-fieldtrigger[data-ref=spin], .b-filter-bar-compact .b-filter-bar-field:not(:focus-within) .b-fieldtrigger[data-ref=back], .b-filter-bar-compact .b-filter-bar-field:not(:focus-within) .b-fieldtrigger[data-ref=forward]{
  display:none;
}
.b-filter-bar-compact .b-filter-bar-field.b-uses-chipview:not(.b-empty) input{
  margin-inline-start:0.5em;
  margin-top:-0.25em;
}
.b-filter-bar-compact .b-filter-bar-field.b-uses-chipview:not(.b-empty) input::placeholder{
  color:transparent;
}
.b-filter-bar-compact .b-filter-bar-field.b-uses-chipview:not(.b-empty) .b-chip{
  font-size:0.9em;
}
.b-filter-bar-compact .b-filter-bar-field.b-uses-chipview:not(.b-empty) .b-chip[data-index="0"]{
  margin-inline-start:0;
}
.b-filter-bar-compact.b-dragging .b-filter-bar-field{
  display:none;
}
.b-group-summary .b-grid-group-collapsed.b-header-summary .b-grid-cell.b-group-title{
  overflow:hidden;
}
.b-group-summary .b-grid-row.b-group-footer .b-grid-cell{
  border-inline-end-color:transparent;
  background-color:#fafafa;
}
.b-group-summary .b-grid-row.b-group-footer td{
  padding:0.25em 0;
}
.b-group-summary .b-grid-row.b-group-footer .b-grid-summary-label{
  padding-inline-end:1em;
}
.b-group-summary .b-grid-row.b-group-footer .b-grid-summary-value{
  width:100%;
}
.b-gridbase.b-firefox .b-mergecells .b-single-child .b-grid-subgrid:not(.b-timeaxissubgrid):not(.b-overlay-scrollbar), .b-mergecells.b-gridbase.b-firefox .b-single-child .b-grid-subgrid:not(.b-timeaxissubgrid):not(.b-overlay-scrollbar){
  overflow:visible !important;
}
.b-mergecells .b-single-child .b-grid-subgrid:not(.b-grid-subgrid-collapsed):not(.b-timeaxissubgrid):not(.b-horizontal-overflow),
.b-mergecells .b-grid-vertical-scroller{
  overflow:visible !important;
}
.b-mergecells .b-grid-row.b-hover, .b-mergecells.b-mergecells-passthrough .b-grid-row.b-selected, .b-using-keyboard .b-mergecells .b-grid-row.b-selected{
  z-index:2;
  overflow:visible;
}
.b-mergecells .b-grid-row.b-hover .b-merged-cell, .b-mergecells.b-mergecells-passthrough .b-grid-row.b-selected .b-merged-cell, .b-using-keyboard .b-mergecells .b-grid-row.b-selected .b-merged-cell{
  top:-1px;
  height:calc(100% + 1px);
  border-top:1px solid #e0e0e0;
}
.b-mergecells .b-stripe .b-grid-row.b-group-row,
.b-mergecells .b-grid-row.b-group-row{
  z-index:2;
}
.b-mergecells .b-merged-cell{
  border-bottom:none;
}
.b-grid-merged-cells{
  position:absolute;
  contain:strict;
  border-inline-end:1px solid #e0e0e0;
  border-bottom:1px solid #e0e0e0;
  z-index:1;
  display:flex;
  align-items:flex-start;
  background:#fff;
}
.b-gridbase.b-mergecells-passthrough .b-grid-merged-cells{
  pointer-events:none;
}
.b-grid-merged-cells:hover{
  box-shadow:inset 0 0 0 1000px rgba(170, 170, 170, 0.1);
}
.b-grid-merged-cells.b-selected{
  box-shadow:inset 0 0 0 1000px rgba(170, 170, 170, 0.2);
}
.b-grid-merged-cells .b-grid-cell{
  position:sticky;
  top:0;
  flex:1;
  contain:none;
  overflow:visible;
}
html.b-export-root,
.b-export-root body{
  margin:0;
}
html.b-print-root,
.b-print-root body{
  margin:0;
  height:auto;
  overflow:unset;
  display:block;
  -webkit-print-color-adjust:exact !important;
  print-color-adjust:exact !important;
}
html.b-export-root{
  overflow:auto;
}
.b-export-root body,
.b-print-root body{
  position:relative;
}
.b-print-root .b-float-root,
.b-print-root .b-scrollbar-measure-element,
.b-print-root .b-grid-header-resize-handle{
  display:none !important;
}
.b-print:not(.b-safari) .b-page-wrap{
  page-break-after:always;
}
.b-export .b-gridbase{
  min-height:0 !important;
}
.b-export .b-export-content{
  display:flex;
  flex-direction:column;
  height:100%;
}
.b-export .b-export-body{
  flex:1;
  contain:strict;
}
.b-export .b-grid-header-container{
  margin-inline-end:0 !important;
  border-inline-end:none !important;
}
.b-export .b-grid-body-container.b-widget-scroller{
  overflow-y:hidden !important;
}
.b-export .b-grid-footer-container{
  padding-inline-end:0 !important;
}
.b-export .b-virtual-scrollers{
  display:none;
}
.b-export.b-visible-scrollbar .b-show-yscroll-padding > .b-yscroll-pad{
  display:none;
}
.b-export.b-multipage .b-export-content{
  width:100%;
  height:100%;
}
.b-export.b-multipage .b-export-body{
  overflow:hidden;
}
.b-export.b-singlepageunscaled .b-export-body{
  contain:content;
}
.b-export-header,
.b-export-header *{
  box-sizing:border-box;
}
@media print{
  .b-page-wrap{
    overflow:hidden;
  }
  .b-grid-body-container{
    contain:paint !important;
  }
}
.b-quick-hit-cell{
  background:#fff59d;
}
.b-quick-hit-text{
  font-weight:bold;
  background:#fff59d;
}
.b-quick-hit-text{
  padding:0.3em 0;
}
.b-quick-hit-header{
  position:absolute;
  top:0.3em;
  left:0.3em;
  bottom:0.3em;
  right:0.3em;
  z-index:1;
}
.b-quick-hit-header.b-quick-hit-mode-grid{
  bottom:auto;
  height:3em;
  z-index:100;
  opacity:0.75;
}
.b-quick-hit-field{
  display:flex;
  justify-content:center;
  align-items:center;
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  padding:0.5em 0;
  background:#fff59d;
}
.b-quick-hit-cell-badge,
.b-quick-hit-header .b-quick-hit-badge{
  position:absolute;
  top:0.4em;
  right:0.4em;
  font-size:0.7em;
  line-height:0.7em;
}
.b-rtl .b-quick-hit-cell-badge,
.b-rtl .b-quick-hit-header .b-quick-hit-badge{
  right:auto;
  left:0.4em;
}
.b-quick-hit-header .b-quick-hit-badge{
  color:rgb(161, 144.5714285714, 0);
}
.b-quick-hit-cell-badge{
  color:rgb(161, 144.5714285714, 0);
}
.b-grid-splitter{
  z-index:5;
  position:relative;
  background:#e0e0e0;
  pointer-events:none;
  flex:0 0 1px;
}
@media (pointer: coarse){
  .b-grid-splitter{
    --splitter-button-size:1.3em;
  }
}
@media (pointer: fine){
  .b-grid-splitter{
    --splitter-button-size:1em;
  }
}
.b-grid-splitter .b-grid-splitter-inner{
  display:none;
}
.b-split .b-grid-splitter{
  pointer-events:all;
}
.b-grid-splitter, .b-grid-splitter.b-disabled{
  pointer-events:none;
}
.b-gridbase.b-split.b-rtl .b-grid-splitter-inner .b-grid-splitter-buttons .b-grid-splitter-button-collapse, .b-gridbase.b-split.b-rtl .b-grid-splitter-inner .b-grid-splitter-buttons .b-grid-splitter-button-expand{
  transform:scaleX(-1);
}
.b-gridbase.b-split.b-rtl .b-grid-splitter-inner .b-grid-splitter-buttons .b-grid-splitter-button-expand{
  justify-content:flex-end;
}
.b-gridbase.b-split.b-rtl .b-grid-splitter-inner .b-grid-splitter-buttons .b-grid-splitter-button-collapse{
  justify-content:flex-start;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled){
  flex:0 0 0.5em;
  background:#ebebeb;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-inner{
  display:flex;
  background:#ebebeb;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-grid-splitter-collapsed{
  cursor:initial;
  flex:0 0 0.5em;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-grid-splitter-collapsed .b-grid-splitter-inner{
  width:0.5em;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-grid-splitter-collapsed:not(.b-grid-splitter-allow-collapse) .b-grid-splitter-button-collapse, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-grid-splitter-collapsed.b-grid-splitter-allow-collapse .b-grid-splitter-button-expand{
  visibility:hidden;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-grid-splitter-collapsed .b-grid-splitter-buttons{
  display:flex;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-left-only:not(.b-grid-splitter-collapsed) .b-grid-splitter-button-expand, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-right-only:not(.b-grid-splitter-collapsed) .b-grid-splitter-button-collapse{
  visibility:hidden;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-buttons{
  display:none;
  position:absolute;
  transform:translateY(-50%);
  height:2.4em;
  width:2.4em;
  font-size:var(--splitter-button-size);
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-collapse,
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-expand{
  flex:1;
  cursor:pointer;
  background:#ebebeb;
  display:flex;
  align-items:center;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-collapse:hover .b-grid-splitter-button-icon,
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-expand:hover .b-grid-splitter-button-icon{
  fill:#ff9800;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-collapse{
  border-top-left-radius:100% 50%;
  border-bottom-left-radius:100% 50%;
  justify-content:flex-end;
  padding-right:0.1em;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-expand{
  border-top-right-radius:100% 50%;
  border-bottom-right-radius:100% 50%;
  padding-left:0.1em;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-icon{
  cursor:pointer;
  fill:rgb(126.4, 126.4, 126.4);
  height:1.5em;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-hover, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-partner-splitter-hover, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-touching, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-moving{
  overflow:visible;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-hover .b-grid-splitter-inner, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-partner-splitter-hover .b-grid-splitter-inner, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-touching .b-grid-splitter-inner, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-moving .b-grid-splitter-inner{
  left:calc((10px - 0.5em) / -2);
  width:10px;
  transition:width 0.1s, left 0.1s;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-hover:not(.b-partner-splitter-hover) .b-grid-splitter-buttons, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-partner-splitter-hover:not(.b-partner-splitter-hover) .b-grid-splitter-buttons, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-touching:not(.b-partner-splitter-hover) .b-grid-splitter-buttons, .b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-moving:not(.b-partner-splitter-hover) .b-grid-splitter-buttons{
  display:flex;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-grid-splitter-collapsed:nth-child(2):hover:not(.b-moving) .b-grid-splitter-inner{
  left:0;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-inner{
  width:0.5em;
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  flex-direction:column;
  align-items:center;
}
.b-gridbase.b-split:not(.b-grid-splitter-no-drag) .b-grid-splitter:not(.b-disabled, .b-grid-splitter-collapsed) .b-grid-splitter-inner{
  cursor:col-resize;
}
.b-grid-header-scroller.b-collapsed,
.b-grid-footer-scroller.b-collapsed,
.b-virtual-scroller.b-collapsed{
  width:0;
  min-width:0 !important;
}
.b-splitter-touch-area{
  width:2em;
  left:calc((2em - 0.5em) / -2);
  position:absolute;
  top:0;
  height:100%;
}
.b-splitter-button-touch-area{
  height:3em;
  top:-0.3em;
  width:2em;
  position:absolute;
}
.b-grid-splitter-button-collapse .b-splitter-button-touch-area{
  left:-0.9em;
}
.b-grid-splitter-button-expand .b-splitter-button-touch-area{
  right:-0.9em;
}
.b-draghelper-active .b-gridbase.b-split .b-grid-splitter{
  pointer-events:none !important;
}
.b-hide-splitter-buttons.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-grid-splitter-collapsed .b-grid-splitter-buttons, .b-hide-splitter-buttons.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-hover .b-grid-splitter-buttons, .b-hide-splitter-buttons.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-touching .b-grid-splitter-buttons, .b-hide-splitter-buttons.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-moving .b-grid-splitter-buttons{
  display:none;
}
.b-row-editor{
  --b-label-width:10em;
}
.b-row-editor .b-field .b-label{
  width:var(--b-label-width);
}
.b-row-editor .b-bottom-toolbar .b-toolbar-content{
  padding-inline-start:calc(1em + var(--b-label-width));
}
.b-theme-material .b-row-editor .b-bottom-toolbar .b-toolbar-content{
  padding-inline-start:0;
  justify-content:space-evenly;
}
.b-editor-instant-update .b-row-editor .b-bottom-toolbar{
  display:none;
}
.b-row-editor.b-readonly [data-ref=save]{
  display:none;
}
.b-row-editor :is(.b-panel-overlay-right, .b-panel-overlay-left) .b-toolbar-content > *{
  flex:1 1 33%;
  max-width:10em;
}
.b-row-drop-indicator{
  display:none;
  pointer-events:none;
}
.b-row-reordering .b-row-drop-indicator{
  position:absolute;
  display:block;
  left:0;
  top:-1px;
  width:100%;
  height:2px;
  background-color:#2196f3;
  z-index:2000;
}
.b-row-reordering .b-row-drop-indicator.b-drag-invalid{
  background-color:#f44336;
}
.b-row-reordering .b-grid-body-container{
  z-index:4;
}
.b-row-reordering .b-drag-original{
  opacity:0.3;
}
.b-row-reordering .b-grid-row.b-grid-group-collapsed.b-row-reordering-target{
  background-color:rgba(170, 170, 170, 0.1);
}
.b-row-reordering .b-grid-body-container .b-grid-subgrid .b-row-reordering-target{
  box-shadow:0 1px 0 0 #2196f3 inset, 0 -1px 0 0 #2196f3 inset;
  z-index:9999;
}
.b-row-reorder-grip{
  display:grid;
  grid-template-columns:auto 1fr;
}
.b-row-reorder-grip.b-grid-cell-align-end{
  justify-items:end;
}
.b-row-reorder-grip.b-grid-cell-align-end:before{
  margin-inline-end:auto;
}
.b-row-reorder-grip.b-grid-cell-align-right{
  justify-items:right;
}
.b-row-reorder-grip.b-grid-cell-align-center{
  justify-items:center;
}
.b-row-reorder-grip:before{
  display:inline-flex;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  align-self:stretch;
  align-items:center;
  content:"\f58e";
  cursor:move;
  padding-inline:0.85em;
  margin-inline-start:-0.5em;
  font-size:0.8em;
}
.b-grid-treegrouped .b-tree-parent-row .b-row-reorder-grip:before{
  content:none;
}
.b-rownumber-cell.b-row-reorder-grip:before{
  margin-inline-start:-0.85em;
  margin-inline-end:auto;
  padding-inline-end:0.85em;
}
.b-row-drag-count-indicator:before{
  inset-inline-end:-0.7em;
}
.b-row-reorder-proxy{
  display:flex;
  flex-direction:column;
  width:auto !important;
  height:auto !important;
  z-index:10000;
  overflow:visible;
}
.b-row-reorder-proxy.b-drag-copy .b-row-proxy-copy{
  display:flex;
}
.b-row-reorder-proxy .b-row-proxy-copy{
  display:none;
  height:1em;
  width:1em;
  align-items:center;
  justify-content:center;
  position:absolute;
  inset-inline-start:-0.5em;
  top:-0.5em;
  box-shadow:1px 1px 5px #e0e0e0;
  border-radius:50%;
  padding:0.75em;
  background:#fff;
  z-index:20000;
}
.b-row-reorder-proxy .b-grid-row{
  width:100%;
  position:relative;
}
.b-row-reorder-proxy.b-dragging{
  transition:margin-top 0.2s, opacity 0.2s;
  background:transparent;
  opacity:0.5;
}
.b-row-reorder-proxy.b-dragging .b-grid-row{
  transition:transform 0.2s, background-color 0.2s;
  box-shadow:1px 1px 4px rgba(0, 0, 0, 0.2);
  background:#fff;
}
.b-row-reorder-proxy.b-dragging.b-drag-invalid .b-grid-row{
  border:none;
  background:rgba(244, 67, 54, 0.2);
}
.b-gridbase.b-rowresize .b-grid-row.b-over-resize-handle, .b-gridbase.b-rowresize .b-grid-row.b-over-resize-handle *, .b-gridbase.b-rowresize .b-grid-row.b-over-resize-handle *:before, .b-gridbase.b-rowresize .b-grid-row.b-resize-handle{
  cursor:row-resize !important;
}
.b-gridbase.b-rowresize .b-grid-row.b-resizing{
  z-index:2;
}
.b-gridbase.b-rowresize.b-row-resizing .b-grid-row{
  pointer-events:none;
}
.b-gridbase.b-rowresize.b-row-resizing *{
  cursor:row-resize !important;
}
.b-search-hit-cell{
  background:#fff59d;
}
.b-search-hit-text{
  font-weight:bold;
  background:#fff59d;
  padding:0.3em 0;
}
.b-search-hit-field{
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  padding:0.5em 0;
  background:#fff59d;
}
.b-search-hit-cell-badge{
  position:absolute;
  top:0.4em;
  right:0.4em;
  font-size:0.7em;
  line-height:0.7em;
  color:rgb(161, 144.5714285714, 0);
}
.b-gridbase.b-sort .b-grid-header .b-sort-icon{
  display:contents;
}
.b-gridbase.b-sort .b-grid-header.b-sort .b-grid-header-text{
  color:#212121;
}
.b-gridbase.b-sort .b-grid-header.b-sort .b-grid-header-text .b-sort-icon::before{
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  color:#9e9e9e;
  transition:transform 0.3s, color 0.2s;
  transform:none;
  background:inherit;
  content:"\f062";
}
.b-gridbase.b-sort .b-grid-header.b-sort .b-grid-header-text[data-sort-index]::before{
  content:attr(data-sort-index);
  position:relative;
  top:1em;
  color:#6b6b6b;
  z-index:30;
  font-size:0.6em;
  order:1;
}
.b-gridbase.b-sort .b-grid-header.b-sort.b-desc .b-grid-header-text .b-sort-icon::before{
  transform:rotate(180deg);
}
.b-gridbase.b-sort.b-sort-hover-icon:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-grid-header.b-sortable.b-depth-0:hover:not(.b-sort):not(.b-group) .b-grid-header-text .b-sort-icon::before, .b-gridbase.b-sort.b-sort-hover-icon:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-grid-header.b-sortable.b-depth-0:focus:not(.b-sort):not(.b-group) .b-grid-header-text .b-sort-icon::before{
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  color:#e0e0e0;
  transition:transform 0.3s, color 0.2s;
  transform:none;
  background:inherit;
  content:"\f15e";
}
.b-split-container{
  display:flex;
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}
.b-split-container.b-split-horizontal, .b-split-container.b-split-both{
  flex-direction:column;
}
.b-split-container.b-split-vertical{
  flex-direction:row;
}
.b-split-container .b-split-top,
.b-split-container .b-split-bottom{
  display:flex;
  flex:1;
}
.b-split-container > .b-gridbase,
.b-split-container > div > .b-gridbase{
  flex:1;
  flex-basis:0;
  height:unset !important;
}
.b-gridbase.b-locked-rows{
  z-index:1;
}
.b-gridbase.b-locked-rows [aria-rowcount="1"] .b-virtual-scrollers{
  flex-basis:0;
}
.b-gridbase.b-locked-rows:has(.b-widget-scroller.b-grid-empty){
  overflow:visible;
}
.b-gridbase.b-locked-rows:has(.b-widget-scroller.b-grid-empty) .b-grid-body-wrap, .b-gridbase.b-locked-rows:has(.b-widget-scroller.b-grid-empty) .b-grid-panel-body{
  overflow:visible;
}
.b-gridbase.b-locked-rows:not(.b-grid-empty){
  border-bottom:1px solid #e0e0e0;
}
.b-gridbase.b-locked-rows:not(.b-grid-empty):not(.b-split){
  border-bottom-color:#e0e0e0;
}
.b-gridbase.b-locked-rows:not(.b-grid-empty).b-split{
  border-bottom:2px solid #ebebeb;
}
.b-gridbase.b-locked-rows:not(:has(.b-grid-row)){
  border-bottom-width:0;
}
.b-gridbase.b-locked-rows.b-grid-empty .b-widget-scroller{
  min-height:0;
}
.b-gridbase.b-locked-rows .b-grid-row.b-last{
  border-bottom:none;
}
.b-grid-header.b-group .b-grid-header-text .b-sort-icon::after{
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  color:#ff9800;
  transition:transform 0.3s, color 0.2s;
  transform:none;
  background:inherit;
  content:"\f012";
  transform:scaleY(1) rotate(90deg);
}
.b-grid-header.b-group.b-desc .b-grid-header-text .b-sort-icon::after{
  transform:scaleY(-1) rotate(90deg);
}
.b-rtl .b-grid-header.b-group .b-grid-header-text .b-sort-icon::after{
  transform:scaleY(1) rotate(270deg);
}
.b-rtl .b-grid-header.b-group.b-desc .b-grid-header-text .b-sort-icon::after{
  transform:scaleY(-1) rotate(270deg);
}
.b-group-row{
  background:#fff;
}
.b-group-row .b-grid-cell{
  border-inline-end-color:transparent;
}
.b-group-row .b-group-title.b-grid-cell-align-right, .b-group-row .b-group-title.b-grid-cell-align-end{
  justify-content:flex-end;
}
.b-group-row .b-group-title.b-grid-cell-align-center{
  justify-content:flex-start;
}
.b-grid-cell.b-group-title{
  color:#424242;
  overflow:visible;
  contain:size layout style;
  font-weight:500;
  text-transform:none;
}
.b-firefox .b-grid-cell.b-group-title{
  contain:size layout;
}
.b-group-state-icon{
  margin-inline-end:0.5em;
  cursor:pointer;
  color:#424242;
}
.b-stripe .b-grid-row.b-group-row,
.b-grid-row.b-group-row{
  border-bottom:2px solid #d5d5d5;
  cursor:pointer;
}
.b-gridbase.b-group .b-grid-header .b-sort-icon{
  display:contents;
}
.b-cut-row{
  opacity:0.4;
}
.b-stickycells .b-grid-sticky-row{
  position:absolute;
  top:0;
  left:0;
  min-width:auto;
  border:0 none;
  padding:0;
  contain:initial;
}
.b-stickycells .b-grid-sticky-row .b-grid-cell{
  width:min-content;
  contain:initial;
  padding:0;
  border:0 none;
}
.b-stickycells .b-sticky-cells-current-top-row .b-sticky-content-el{
  visibility:hidden;
}
.b-stickycells .b-sticky-cells-current-top-row.b-not-enough-height .b-sticky-content-el{
  visibility:visible;
  align-self:flex-end;
}
.b-stripe .b-grid-row.b-odd{
  background-color:rgba(244.4, 244.4, 244.4, 0.8);
}
.b-stripe .b-grid-row.b-even{
  background-color:rgba(255, 255, 255, 0.8);
}
.b-stripe .b-grid-row{
  border-bottom:none;
}
.b-stripe .b-grid-row.b-selected{
  background-color:rgba(170, 170, 170, 0.2);
}
.b-stripe .b-grid-row.b-selected .b-grid-cell.b-selected{
  background-color:rgba(170, 170, 170, 0.2);
}
.b-stripe:focus .b-grid-row.b-selected{
  background-color:rgba(170, 170, 170, 0.1);
}
.b-summary-wrap{
  flex:0 0 100%;
  display:grid;
  gap:0.1em 1em;
  grid-template-columns:auto 1fr;
  align-items:center;
}
.b-summary-wrap .b-grid-summary-value{
  overflow:hidden;
  text-overflow:ellipsis;
}
.b-summary-wrap .b-grid-summary-value.b-nolabel{
  grid-column:span 2/span 2;
}
.b-summary-disabled .b-grid-footer-container{
  display:none;
}
.b-generated-parent.b-readonly .b-grid-cell{
  color:#212121;
}
.b-generated-parent .b-grid-cell .b-grid-treegroup-summary{
  display:flex;
  justify-content:inherit;
}
.b-rowexpander-body{
  display:flex;
  border-top:1px solid #e0e0e0;
  left:0;
  right:0;
  color:#212121;
  font-weight:300;
}
.b-rowexpander-body, .b-rowexpander-body.b-no-resizeobserver.b-resize-monitored{
  position:absolute;
}
.b-grid-vertical-scroller > .b-rowexpander-body{
  z-index:100;
  transition:height 0.3s, top 0.3s;
  overflow:hidden;
}
.b-rowexpander-loading{
  justify-content:center;
  align-items:center;
  font-size:1.2em;
  display:flex;
  width:100%;
}
.b-grid-row > .b-rowexpander-loading{
  position:absolute;
}
.b-rowexpander-loading .b-icon-spinner{
  margin-inline-end:0.5em;
}
.b-gridbase .b-grid-row [data-column=expanderActionColumn] .b-icon, .b-gridbase .b-grid-row [data-column=expanderActionColumn] .b-indicator.b-constraint-type-muststarton, .b-gridbase .b-grid-row [data-column=expanderActionColumn] .b-indicator.b-constraint-type-mustfinishon, .b-gridbase .b-grid-row [data-column=expanderActionColumn] .b-indicator.b-deadline-date, .b-gridbase .b-grid-row [data-column=expanderActionColumn] .b-icon-version{
  transition:transform 0.15s ease-in-out;
  font-size:1em;
  transform:rotate(180deg);
}
.b-rowexpander-disabled [data-column=expanderActionColumn]{
  opacity:0.2;
  pointer-events:none;
}
.b-rowexpander.b-gridbase.b-animating.b-rowexpander-animating.b-autoheight .b-grid-body-container, .b-rowexpander.b-gridbase.b-animating.b-rowexpander-animating.b-autoheight .b-grid-vertical-scroller{
  transition:height 0.3s;
  overflow-y:hidden !important;
}
.b-rowexpander.b-gridbase.b-animating.b-rowexpander-animating.b-autoheight .b-yscroll-pad{
  display:none;
}
.b-rowexpander.b-gridbase.b-animating.b-rowexpander-animating .b-grid-row{
  transition:height 0.3s, transform 0.3s;
}
.b-gridbase .b-rowexpander-row-expanded:not(.b-row-is-collapsing) [data-column=expanderActionColumn] .b-icon-collapse-left{
  transform:rotate(270deg);
}
.b-gridbase .b-rowexpander-row-expanded:not(.b-row-is-collapsing) [data-column=expanderActionColumn] .b-icon-collapse-right{
  transform:rotate(90deg);
}
.b-grid-header[data-column=expanderActionColumn] .b-grid-header-text-content:empty{
  display:none;
}
.b-exportdialog.b-popup .b-bottom-toolbar > button{
  flex:1;
  margin-inline-end:0.5em;
}
.b-exportdialog.b-popup .b-bottom-toolbar > button:last-child{
  margin-inline-end:0;
}
.b-grid-footer-container{
  background-color:#fafafa;
  color:#212121;
  outline:0 solid transparent;
  z-index:2;
  box-shadow:0 -2px 4px rgba(0, 0, 0, 0.08);
}
.b-grid-footer-container.b-hidden{
  display:none;
}
.b-grid-footers{
  display:inline-flex;
  align-items:stretch;
  height:100%;
  white-space:nowrap;
  line-height:initial;
  overscroll-behavior:none;
}
.b-grid-footer{
  display:flex;
  border-inline-end:1px solid transparent;
  flex-shrink:0;
  align-items:stretch;
  padding:0.5em;
}
.b-no-column-lines .b-grid-footer{
  border-inline-end:none;
}
.b-grid-footer:last-child{
  border-inline-end-color:transparent;
}
.b-grid-footer-align-start,
.b-grid-footer-align-left{
  text-align:start;
}
.b-grid-footer-align-center{
  text-align:center;
}
.b-grid-footer-align-end,
.b-grid-footer-align-right{
  text-align:end;
}
.b-gridbase{
  position:relative;
}
.b-gridbase.b-outer{
  height:100%;
}
.b-gridbase.b-autoheight{
  height:auto;
  flex:none;
}
.b-gridbase.b-autoheight .b-grid-vertical-scroller{
  position:relative;
}
.b-gridbase.b-autoheight.b-grid-empty .b-grid-body-container{
  height:unset !important;
  flex:1;
}
.b-gridbase .b-grid-panel-body:not(.b-autoheight) > .b-grid-body-container{
  flex:1 1 0;
  contain:strict;
}
.b-gridbase .b-grid-panel-body:not(.b-autoheight) > .b-grid-body-container > .b-grid-vertical-scroller{
  min-height:100%;
}
.b-gridbase.b-grid-translate .b-grid-row, .b-gridbase.b-grid-translate3d .b-grid-row{
  transform-style:flat;
}
.b-gridbase.b-enable-sticky .b-sticky-cell,
.b-gridbase.b-enable-sticky .b-grid-subgrid,
.b-gridbase.b-enable-sticky .b-grid-vertical-scroller,
.b-gridbase.b-enable-sticky .b-grid-row{
  overflow:visible !important;
}
.b-gridbase.b-no-column-lines .b-grid-row .b-grid-cell,
.b-gridbase.b-no-column-lines .b-grid-header{
  border-inline-end-color:transparent;
}
.b-gridbase.b-no-row-lines .b-grid-row{
  border-block:none;
}
.b-gridbase.b-fill-last-column .b-grid-subgrid:not(.b-has-flex):not(.b-horizontal-overflow) .b-grid-cell:last-child,
.b-gridbase.b-fill-last-column .b-grid-subgrid:not(.b-has-flex):not(.b-horizontal-overflow) .b-grid-row.b-rowexpander-row-expanded .b-grid-cell:nth-last-child(2),
.b-gridbase.b-fill-last-column .b-grid-footers:not(.b-has-flex):not(.b-horizontal-overflow) .b-grid-footer:last-child,
.b-gridbase.b-fill-last-column .b-grid-headers:not(.b-has-flex):not(.b-horizontal-overflow) .b-last-parent,
.b-gridbase.b-fill-last-column .b-grid-headers:not(.b-has-flex):not(.b-horizontal-overflow) .b-last-leaf{
  flex-grow:1;
}
.b-gridbase:not(.b-masked).b-grid-empty{
  min-height:5em;
}
.b-gridbase:not(.b-masked).b-grid-empty .b-empty-text{
  display:block;
  padding:1em;
  position:absolute;
  pointer-events:none;
  color:#757575;
}
.b-gridbase.b-grid-notextselection .b-grid-cell{
  -webkit-user-select:none;
  user-select:none;
}
.b-gridbase.b-notransition .b-grid-cell *:not(.b-always-transition){
  transition:none !important;
}
.b-gridbase.b-disabled{
  opacity:0.5;
}
.b-grid-panel-body{
  position:relative;
  flex:1;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background-color:#fff;
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}
.b-gridbase:not(.b-animating) .b-grid-row:not(.b-grid-row-updating) .b-grid-cell:not(.b-widget-cell.b-focused) *, .b-gridbase:not(.b-animating) .b-grid-row:not(.b-grid-row-updating) .b-grid-cell:not(.b-widget-cell.b-focused) *:before{
  transition:none;
}
.b-gridbase.b-autoheight.b-grid-empty .b-grid-vertical-scroller{
  min-height:100%;
}
.b-grid-body-container{
  position:relative;
}
.b-grid-body-container .b-empty-text{
  display:none;
}
.b-grid-body-container:focus{
  outline:none;
}
.b-grid-body-container:focus .b-grid-row.b-selected{
  background-color:rgba(170, 170, 170, 0.1);
}
.b-playing-demo .b-grid-body-container{
  overflow:hidden !important;
}
.b-grid-vertical-scroller{
  position:absolute;
  display:flex;
  flex-flow:row nowrap;
  overflow:hidden;
  width:100%;
  align-items:stretch;
}
.b-grid-row-container{
  display:inline-block;
  min-width:100%;
}
.b-virtual-scrollers{
  z-index:3;
  display:flex;
  flex-direction:row;
  contain:paint style layout;
}
.b-firefox .b-virtual-scrollers{
  contain:paint layout;
}
.b-overlay-scrollbar.b-firefox.b-windows .b-virtual-scrollers{
  pointer-events:auto;
}
.b-overlay-scrollbar.b-firefox.b-windows .b-virtual-scrollers .b-virtual-scroller{
  pointer-events:auto;
}
.b-overlay-scrollbar .b-virtual-scrollers{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  pointer-events:none;
}
.b-overlay-scrollbar .b-virtual-scrollers .b-virtual-scroller{
  height:16px;
  pointer-events:none;
}
.b-virtual-scrollers .b-virtual-scroller{
  overflow-x:scroll;
  overflow-y:hidden;
}
.b-virtual-scrollers .b-virtual-width{
  height:1px;
}
.b-overlay-scrollbar .b-virtual-scroller:hover,
.b-overlay-scrollbar .b-virtual-scroller.b-show-virtual-scroller{
  pointer-events:all;
  opacity:1;
  transition:opacity 0.5s;
}
.b-grid-footer-container,
div.b-grid-header-container{
  display:flex;
  flex-direction:row;
}
.b-grid-header-container{
  border-bottom:0 solid transparent;
  position:relative;
}
.b-grid-footer-scroller,
.b-grid-header-scroller{
  overflow:hidden;
  position:relative;
  display:flex;
}
.b-grid-footers,
.b-grid-headers{
  z-index:2;
  contain:paint style layout;
  flex:1 1 auto;
}
.b-firefox .b-grid-footers,
.b-firefox .b-grid-headers{
  contain:paint layout;
}
.b-no-transitions .b-grid-row{
  transition:none !important;
}
:root{
  --row-splice-duration:300ms;
}
.b-grid-row{
  display:flex;
  flex-direction:row;
  align-items:stretch;
  position:absolute;
  left:0;
  overflow:hidden;
  border-bottom:1px solid #e0e0e0;
  height:45px;
  contain:layout;
}
@media screen{
  .b-grid-row.b-export-row{
    transform:translate(-99999px, -99999px);
  }
}
.b-grid-subgrid .b-grid-row{
  min-width:100%;
}
.b-grid-subgrid.b-horizontal-overflow .b-grid-row{
  min-width:max(var(--total-column-width, 100%), 100%);
}
.b-grid-row.b-aborting{
  transition:background-color 0.2s, transform 0.3s;
}
.b-splicing-rows .b-grid-row:is(.b-adding, .b-removing, .b-repositioning){
  transition:transform var(--row-splice-duration), top var(--row-splice-duration);
  z-index:-1;
  pointer-events:none;
}
.b-rtl .b-grid-row{
  left:auto;
  right:0;
}
.b-grid-row.b-selected{
  background-color:rgba(170, 170, 170, 0.2);
}
.b-grid-row.b-selected .b-grid-cell.b-checkbox-selection{
  background-color:none;
}
.b-grid-row.b-removing{
  animation:row-removing var(--row-splice-duration) forwards;
}
.b-grid-row.b-adding{
  animation:row-adding var(--row-splice-duration) forwards;
}
.b-grid-row.b-deleting-row{
  animation:b-anim-row-deleting 0.2s;
}
.b-grid-row.b-fa{
  display:flex;
}
.b-grid-row.b-fa::before{
  content:none;
}
.b-grid-row.b-row-placeholder .b-grid-cell{
  color:transparent;
  clip-path:inset(1em 1em 1em 1em);
}
.b-grid-row.b-row-placeholder .b-grid-cell > *:not(.b-editor){
  display:none;
}
.b-grid-row.b-row-placeholder .b-grid-cell::after{
  content:"";
  background:rgb(249.5, 249.5, 249.5);
  position:absolute;
  inset:1em;
  border-radius:5px;
}
.b-grid-refreshing .b-grid-row{
  transition:none;
}
.b-grid-row:not(.b-selected) .b-grid-cell.b-selected{
  background-color:rgba(170, 170, 170, 0.15);
}
.b-grid-row:not(.b-selected) .b-grid-cell.b-selected.b-hover{
  background-color:rgba(170, 170, 170, 0.2);
}
.b-grid-row:not(.b-selected) .b-grid-cell.b-selected.b-checkbox-selection{
  background-color:none;
}
.b-grid-cell{
  position:absolute;
  display:flex;
  align-items:center;
  color:#212121;
  font-weight:300;
  padding:0 0.5em;
  overflow:hidden;
  white-space:nowrap;
  flex-shrink:0;
  text-overflow:ellipsis;
  border-inline-end:1px solid #e0e0e0;
  transform-style:flat;
  width:0;
  height:100%;
  contain:strict;
}
.b-fill-last-column .b-grid-cell:last-child, .b-fill-last-column.b-rowexpander-row-expanded .b-grid-cell:nth-last-child(2){
  border-inline-end-color:transparent;
}
.b-grid-cell > i:not(:last-child){
  margin-inline-end:0.5em;
}
.b-show-dirty .b-grid-cell.b-cell-dirty:not(.b-editing):after, .b-show-dirty-during-edit .b-grid-cell.b-cell-dirty:after{
  content:"";
  clip-path:polygon(0% 50%, 0% 0%, 50% 0%);
  z-index:2;
  position:absolute;
  top:0;
  left:1px;
  background-color:red;
  width:1.2em;
  height:1.2em;
}
.b-rtl .b-show-dirty .b-grid-cell.b-cell-dirty:not(.b-editing):after, .b-rtl .b-show-dirty-during-edit .b-grid-cell.b-cell-dirty:after{
  left:auto;
  right:0;
  clip-path:polygon(100% 50%, 50% 0%, 100% 0%);
}
.b-gridbase:not(.b-panel-ui-plain) .b-grid-cell.b-checkbox-selection{
  background-color:#fafafa;
}
.b-grid-cell:focus, .b-grid-cell:focus-within{
  transition:none !important;
  outline:none;
}
.b-grid-cell.b-auto-height{
  white-space:normal;
}
.b-grid-cell.b-loading-cell{
  color:transparent;
}
.b-grid-cell.b-loading-cell::after{
  content:"";
  background:rgb(249.5, 249.5, 249.5);
  position:absolute;
  inset:1em;
  border-radius:5px;
}
.b-grid-cell.b-measuring-auto-height{
  contain:paint style layout;
  align-self:baseline;
  height:auto;
}
.b-firefox .b-grid-cell.b-measuring-auto-height{
  contain:paint layout;
}
body.b-using-keyboard .b-grid-cell:focus, body.b-using-keyboard .b-grid-cell:focus-within, body.b-using-keyboard .b-grid-header:not(.b-sch-timeaxiscolumn):focus, body.b-using-keyboard .b-grid-header:not(.b-sch-timeaxiscolumn):focus-within,
.b-outer.b-using-keyboard .b-grid-cell:focus,
.b-outer.b-using-keyboard .b-grid-cell:focus-within,
.b-outer.b-using-keyboard .b-grid-header:not(.b-sch-timeaxiscolumn):focus,
.b-outer.b-using-keyboard .b-grid-header:not(.b-sch-timeaxiscolumn):focus-within{
  outline:2px solid #2196f3;
  outline-offset:-2px;
}
.b-readonly > .b-grid-cell{
  color:rgb(178.5, 178.5, 178.5);
}
.b-grid-cell-align-right, .b-grid-cell-align-end{
  justify-content:flex-end;
  text-align:end;
}
.b-grid-cell-align-center{
  justify-content:center;
  text-align:center;
}
.b-grid-subgrid{
  position:relative;
  overscroll-behavior:none auto;
}
.b-grid-subgrid.b-grid-subgrid-collapsed{
  width:0;
  min-width:0 !important;
  overflow:hidden !important;
}
.b-playing-demo .b-grid-subgrid{
  overflow:hidden !important;
}
.b-animating .b-grid-header-scroller,
.b-animating .b-grid-subgrid{
  transition-property:width, flex, min-width;
  transition-duration:0.3s;
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row).b-hover{
  background-color:rgba(170, 170, 170, 0.1);
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row).b-hover.b-selected{
  background-color:rgba(170, 170, 170, 0.2);
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell{
  background-color:rgba(170, 170, 170, 0.1);
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell.b-checkbox-selection{
  background-color:rgba(170, 170, 170, 0.1);
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row) .b-grid-cell.b-hover{
  background-color:rgba(170, 170, 170, 0.1);
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row) .b-grid-cell.b-hover.b-selected{
  background-color:rgba(170, 170, 170, 0.2);
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row) .b-grid-cell.b-hover.b-checkbox-selection{
  background-color:rgba(170, 170, 170, 0.1);
}
@keyframes b-anim-row-deleting{
  from{
    opacity:1;
  }
  to{
    opacity:0;
  }
}
@keyframes row-removing{
  from{
    opacity:1;
  }
  to{
    opacity:0.3;
    height:0;
  }
}
@keyframes row-adding{
  from{
    opacity:0.3;
    height:0;
  }
  to{
    opacity:1;
  }
}
.b-supports-has.b-use-ellipsis:not(.b-grid-measuring) .b-grid-row{
  height:var(--b-grid-row-height);
}
.b-supports-has.b-use-ellipsis:not(.b-grid-measuring) .b-grid-row .b-grid-cell:not(.b-auto-height, .b-row-reorder-grip, :has(*)){
  display:block;
  line-height:var(--b-grid-row-height);
  text-overflow:ellipsis;
}
.b-grid-header-container{
  background-color:#fafafa;
  z-index:4;
}
.b-grid-header-container .b-header{
  box-shadow:0 2px 4px rgba(0, 0, 0, 0.08);
}
.b-gridbase.b-panel-ui-plain .b-grid-header-container{
  background-color:transparent;
}
.b-gridbase.b-panel-ui-plain .b-grid-header-container .b-header{
  box-shadow:none;
}
.b-grid-header-container.b-hidden{
  clip-path:inset(0 0 100% 0);
  contain:strict;
  border-bottom:none;
}
.b-grid-headers{
  display:inline-flex;
  flex-flow:row nowrap;
  align-items:stretch;
  line-height:initial;
  position:relative;
  overscroll-behavior:none;
}
.b-grid-header-align-right > .b-grid-header-text > .b-grid-header-text-content,
.b-grid-header-align-end > .b-grid-header-text > .b-grid-header-text-content{
  text-align:end;
}
.b-grid-header-align-center > .b-grid-header-text > .b-grid-header-text-content{
  text-align:center;
}
.b-gridbase:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-depth-0:focus, .b-gridbase:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-depth-0.b-check-header-with-checkbox:focus-within{
  background-color:hsl(0, 0%, 100.5392156863%);
}
.b-gridbase:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-depth-0:hover, .b-gridbase:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-depth-0.b-hover{
  background-color:rgb(237.25, 237.25, 237.25);
}
.b-gridbase.b-columnresize .b-grid-header-resizable:not(.b-last-leaf){
  overflow:visible;
}
.b-gridbase.b-columnresize .b-grid-header-resizable .b-grid-header-resize-handle{
  position:absolute;
  top:0;
  right:-5px;
  bottom:0;
  width:10px;
  background-color:transparent;
  z-index:3;
  cursor:col-resize;
  display:block;
}
.b-gridbase.b-columnresize.b-rtl .b-grid-header-resizable .b-grid-header-resize-handle{
  left:-5px;
  right:auto;
}
.b-touch-events .b-gridbase.b-columnresize .b-grid-header-resizable .b-grid-header-resize-handle{
  right:-10px;
  width:20px;
}
.b-rtl .b-touch-events .b-gridbase.b-columnresize .b-grid-header-resizable .b-grid-header-resize-handle{
  left:-10px;
  right:auto;
}
.b-fill-last-column .b-grid-headers .b-last-parent,
.b-fill-last-column .b-grid-headers .b-last-leaf{
  border-inline-end-color:transparent;
}
.b-fill-last-column .b-grid-headers .b-last-parent > .b-grid-header-text,
.b-fill-last-column .b-grid-headers .b-last-leaf > .b-grid-header-text{
  border-inline-end-color:transparent;
}
.b-grid-header-text{
  -webkit-user-select:none;
  user-select:none;
  padding:1.3em 0 1.3em 0;
  white-space:nowrap;
  position:relative;
  font-weight:500;
  display:flex;
  align-items:center;
  overflow:hidden;
  gap:0.5em;
}
.b-grid-header-text > .b-grid-header-text-content{
  overflow:hidden;
  text-overflow:ellipsis;
  flex:1 1 0;
  width:0;
  font-size:1em;
}
.b-grid-header-text > .b-grid-header-text-content.b-has-text > i{
  margin-inline-end:0.5em;
}
.b-grid-header-text > .b-grid-header-text-content.b-vertical-text{
  display:flex;
  align-items:center;
}
.b-grid-header-children{
  display:flex;
  flex-direction:column;
}
.b-grid-header-children > *{
  width:inherit;
}
.b-grid-header{
  -webkit-user-select:none;
  user-select:none;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:center;
  flex-shrink:0;
  position:relative;
  overflow:hidden;
  color:#757575;
  outline:none;
  border-inline-end:1px solid transparent;
  text-transform:none;
}
.b-grid-header:not(.b-depth-0){
  overflow:visible;
}
.b-grid-header.b-depth-0{
  padding-inline:0.5em 0.5em;
  width:0;
}
.b-grid-header.b-depth-0 .b-grid-header-text{
  border-bottom:none;
  transition:background-color 0.2s;
  flex-direction:row;
}
.b-grid-header.b-sortable{
  cursor:pointer;
}
.b-grid-header.b-grid-header-parent{
  border-inline-end:none;
  flex-basis:auto;
  padding-inline:0;
}
.b-grid-header.b-grid-header-parent > .b-grid-header-text{
  padding-inline:0.5em 0.5em;
  border-inline-end:1px solid transparent;
  flex:1 1 auto;
}
.b-grid-header .b-grid-header-resize-handle{
  display:none;
}
.b-grid-header-parent > .b-grid-header-children{
  border-top:1px solid transparent;
  flex-flow:row nowrap;
  flex:1 1 auto;
}
.b-grid-header .b-button:not(.b-text){
  min-width:0;
  min-height:0;
  padding:0 0.35em;
}
.b-grid-header .b-button[data-ref=collapseExpand]{
  inset-inline-end:0.5em;
  min-width:2em;
  min-height:2em;
}
.b-grid-header .b-button[data-ref=collapseExpand]:hover{
  background-color:transparent;
}
.b-groupbar{
  display:flex;
  flex:1;
  align-self:center;
  gap:2em;
  margin-inline-start:0.3em;
  height:2.5em;
  overflow:hidden;
}
.b-groupbar .b-chip{
  position:relative;
  padding-block:0.5em;
  padding-inline:1em;
  outline:none !important;
  cursor:pointer;
  white-space:nowrap;
}
.b-groupbar .b-chip .b-close-icon{
  margin-inline-start:1em;
}
.b-groupbar.b-chips-closable .b-chip{
  padding-inline-end:0.6em;
}
.b-groupbar .b-chip.b-drop-target{
  padding-inline-end:3em;
  opacity:0.5;
}
.b-groupbar .b-chip.b-drop-target .b-icon, .b-groupbar .b-chip.b-drop-target .b-indicator.b-constraint-type-muststarton, .b-groupbar .b-chip.b-drop-target .b-indicator.b-constraint-type-mustfinishon, .b-groupbar .b-chip.b-drop-target .b-indicator.b-deadline-date, .b-groupbar .b-chip.b-drop-target .b-icon-version{
  display:none;
}
.b-treegroup .b-groupbar .b-chip:not(:last-child):after{
  content:"\f105";
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  font-style:normal;
  text-decoration:none;
  position:absolute;
  right:-1.25em;
}
.b-rtl .b-treegroup .b-groupbar .b-chip:not(:last-child):after{
  content:"\f104";
  right:unset;
  left:-1.25em;
}
.b-gridbase.b-dragging-header:not(.b-treegroup) .b-groupbar:hover .b-chip:not([data-id=placeholder]){
  display:none;
}
.b-gridbase.b-dragging-header:not(.b-treegroup) .b-groupbar:not(:hover) .b-chip[data-id=placeholder]{
  display:none;
}
.b-grid-reordering-columns-with-groupbar.b-grid-header.b-drag-proxy{
  border-radius:1em;
  min-width:10em !important;
  padding-inline:1em;
}
.b-grid-reordering-columns-with-groupbar.b-grid-header.b-drag-proxy .b-grid-header-text{
  padding:0.5em 0;
}
.b-grid-reordering-columns-with-groupbar.b-grid-header.b-drag-proxy, .b-grid-reordering-columns-with-groupbar.b-grid-header.b-drag-proxy .b-grid-header-text-content{
  width:auto !important;
}
.b-grid-reordering-columns-with-groupbar.b-grid-header.b-drag-proxy.b-drag-invalid{
  overflow:visible;
}
.b-grid-reordering-columns-with-groupbar.b-grid-header.b-drag-proxy.b-drag-invalid:before{
  content:"\f05e";
  position:absolute;
  top:-0.5em;
  inset-inline-end:-0.5em;
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  padding:0.25em;
  outline:inherit;
  border-radius:50%;
  font-size:0.8em;
  background:inherit;
}
.b-checklistfiltercombo-picker{
  display:flex;
  flex:1;
  align-self:center;
  align-items:stretch;
  justify-content:stretch;
  flex-flow:column;
  padding:0;
  background:#fff;
  gap:0;
  width:25rem;
}
.b-checklistfiltercombo-picker .b-toolbar{
  --toolbar-content-padding:0;
}
.b-checklistfiltercombo-picker .b-panel-content{
  padding:0;
}
.b-checklistfiltercombo-picker,
.b-checklistfiltercombo-picker.b-content-element.b-flex-row{
  align-items:stretch;
}
.b-checklistfiltercombo-picker .b-list{
  flex:1;
  background:#fff;
}
.b-checklistfiltercombo-picker .b-list .b-list-item{
  display:flex;
}
.b-checklistfiltercombo-picker .b-list .b-list-item .b-checklistfiltercombo-item-text{
  flex-grow:1;
}
.b-checklistfiltercombo-picker [data-ref=bbar] .b-toolbar-content{
  justify-content:space-between;
  padding:0;
}
.b-checklistfiltercombo-picker [data-ref=bbar] .b-toolbar-content::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:0;
  border-block-end:0.5px solid #bdbdbd;
}
.b-checklistfiltercombo-picker [data-ref=bbar] .b-toolbar-content button{
  padding:1rem;
}
.b-checklistfiltercombo-picker [data-ref=searchField]{
  flex:1;
  padding:0;
  border-radius:0;
}
.b-checklistfiltercombo-picker [data-ref=searchField] .b-field-inner{
  border:none;
  border-radius:0;
}
.b-icon-column-move-left:before{
  content:"\f060";
}
.b-icon-column-move-right:before{
  content:"\f061";
}
.b-icon-group-collapse:before{
  content:"\f0d7";
  width:0.6em;
  text-align:center;
}
.b-icon-group-expand:before{
  content:"\f0da";
  width:0.6em;
  text-align:center;
}
.b-icon-sort-asc:before{
  content:"\f062";
}
.b-icon-sort-desc:before{
  content:"\f063";
}
.b-columndragtoolbar .b-target-button{
  text-transform:uppercase;
  width:7.5em;
}
.b-columndragtoolbar .b-target-button[data-button-id^=multisort].b-hover:not([data-disabled=true]){
  background-color:rgb(44.1, 155.25, 243.6);
}
.b-columndragtoolbar .b-target-button[data-button-id^=multisort].b-hover:not([data-disabled=true]) i{
  color:#fff;
}
.b-gridbase .b-grid-cell,
.b-gridbase .b-grid-merged-cells{
  border-right-color:transparent;
}
.b-grid-header:not(.b-grid-header-parent) .b-grid-header-text > .b-grid-header-text-content{
  flex:0 1 auto;
  width:auto;
  max-width:100%;
}
.b-grid-header-align-center .b-grid-header-text{
  justify-content:center;
}
.b-grid-header-align-right .b-grid-header-text,
.b-grid-header-align-end .b-grid-header-text{
  justify-content:flex-end;
}
.b-grid-footer-scroller{
  background:#fafafa;
}
.b-grid-header .b-button[data-ref=collapseExpand]{
  position:absolute;
  right:0;
}
.b-filter-bar-field{
  margin:0 0 1em 0;
}
.b-row-editor :is(.b-panel-overlay-right, .b-panel-overlay-left) .b-toolbar-content *{
  flex:0 1 8em;
}
.b-sch-vertical .b-sch-event-wrap.b-milestone-wrap{
  transform:translateY(-50%);
  margin-inline-start:0;
  height:1em;
}
.b-sch-vertical .b-sch-event-wrap.b-milestone-wrap .b-sch-event{
  padding-inline-start:0;
  width:100%;
}
.b-sch-vertical .b-sch-event-wrap.b-milestone-wrap .b-sch-event .b-sch-event-content{
  justify-content:center;
  margin:0;
}
.b-sch-vertical .b-sch-event-wrap.b-milestone-wrap .b-sch-event .b-sch-event-content label{
  left:unset;
  top:105%;
}
.b-sch-canvas{
  position:absolute;
  inset:0;
  pointer-events:none;
  height:max(1px, 100%);
  overflow:hidden;
  overflow:clip;
  contain:strict;
  width:max(var(--total-column-width, 100%), 100%);
}
.b-sch-foreground-canvas{
  z-index:9;
}
.b-row-reordering .b-sch-foreground-canvas *{
  pointer-events:none !important;
}
.b-sch-top-canvas{
  z-index:1000;
}
.b-timelinebase .b-grid-splitter{
  z-index:12;
}
.b-schedulerbase > .b-editor{
  z-index:5;
}
.b-sch-event.b-milestone label,
.b-sch-event .b-sch-event-content,
.b-sch-event-wrap:not(.b-milestone-wrap) .b-sch-event{
  font-size:14px;
}
.b-sch-event-wrap{
  position:absolute;
  z-index:9;
  justify-content:center;
  align-items:center;
  pointer-events:all;
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s;
  contain:layout style;
}
.b-animating:not(.b-eventbuffer-transition, .b-subgrid-width-transition) .b-sch-event-wrap:not(.b-dragging, .b-sch-event-wrap-resizing, .b-reusing-own){
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s, inset 0.2s, left 0.2s, top 0.2s, transform 0.2s, width 0.2s, height 0.2s, font-size 0.2s;
}
.b-toggling-node .b-sch-event-wrap{
  transition:none;
}
.b-timelinebase:not(.b-sch-vertical.b-eventlayout-mixed) .b-sch-event-wrap.b-sch-event-hover, .b-timelinebase:not(.b-sch-vertical.b-eventlayout-mixed) .b-sch-event-wrap:focus{
  z-index:109 !important;
}
.b-sch-vertical.b-eventlayout-mixed .b-sch-event-wrap:focus{
  z-index:109 !important;
}
.b-sch-event-wrap:focus{
  outline:none;
}
.b-scrolling .b-sch-event-wrap:not(.b-aborting){
  transition:none !important;
}
.b-scrolling .b-sch-event-wrap:not(.b-aborting) .b-sch-event{
  transition:none !important;
}
.b-grid-body-container.b-scrolling .b-sch-event-wrap{
  pointer-events:none;
}
.b-sch-event-wrap.b-milestone-wrap{
  z-index:8;
}
.b-sch-event-wrap.b-milestone-wrap .b-sch-event{
  overflow:visible;
  box-shadow:none;
  background-color:transparent;
  width:1em;
}
.b-sch-event-wrap.b-milestone-wrap .b-sch-event:not(.b-sch-event-withicon) .b-sch-event-content{
  transition:background-color 0.2s, border 0.2s;
}
.b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-sch-event-withicon{
  justify-content:center;
}
.b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-sch-event-withicon .b-sch-event-content{
  font-size:inherit;
  justify-content:center;
  background-color:transparent;
}
.b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-sch-event-withicon i{
  margin-inline-end:0;
  color:#777;
  line-height:1em;
}
.b-sch-event-wrap.b-milestone-wrap .b-sch-event label{
  position:absolute;
  left:calc(100% + 0.5em);
}
.b-sch-event-wrap.b-milestone-wrap .b-sch-event-content{
  display:flex;
  align-items:center;
}
.b-sch-event-wrap.b-milestone-wrap .b-fa, .b-sch-event-wrap.b-milestone-wrap .b-icon, .b-sch-event-wrap.b-milestone-wrap .b-indicator.b-constraint-type-muststarton, .b-sch-event-wrap.b-milestone-wrap .b-indicator.b-constraint-type-mustfinishon, .b-sch-event-wrap.b-milestone-wrap .b-indicator.b-deadline-date, .b-sch-event-wrap.b-milestone-wrap .b-icon-version{
  margin-inline-end:1em;
  color:#777;
  font-size:inherit;
}
.b-labels-topbottom .b-sch-event-wrap.b-milestone-wrap .b-sch-event:not(.b-sch-event-withicon){
  font-size:40%;
}
.b-sch-event-wrap.b-milestone-wrap .b-sch-event:not(.b-sch-event-withicon) .b-sch-event-content{
  font-size:inherit;
}
.b-sch-event-wrap.b-milestone-wrap .b-sch-event:not(.b-sch-event-withicon) .b-sch-event-content::before{
  position:absolute;
  left:0.1464465em;
  content:" ";
  height:0.707107em;
  width:0.707107em;
  transform-origin:50% 50%;
  rotate:45deg;
  background-color:inherit;
}
.b-using-keyboard .b-sch-event-wrap.b-milestone-wrap.b-active .b-sch-event.b-sch-event-withicon{
  outline:2px solid #2196f3;
  outline-offset:3px;
}
.b-using-keyboard .b-sch-event-wrap.b-milestone-wrap.b-active .b-sch-event:not(.b-sch-event-withicon) .b-sch-event-content:before{
  outline:2px solid #2196f3;
  outline-offset:3px;
}
.b-sch-event-wrap.b-milestone-wrap.b-measure{
  height:1em;
  position:fixed;
  top:-10000px;
  left:-10000px;
  visibility:hidden;
}
.b-sch-event-wrap.b-milestone-wrap.b-measure label{
  font-weight:400;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap{
  margin:0;
  min-width:0;
  flex-direction:row;
}
.b-using-keyboard .b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap.b-active{
  outline:2px solid #2196f3;
  outline-offset:3px;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap.b-active .b-sch-event.b-milestone,
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap.b-active .b-sch-event.b-milestone:before{
  outline:none;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-milestone{
  font-size:inherit;
  left:0.5em;
  width:calc(100% - 1em);
  min-width:0;
  padding:0;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-milestone .b-sch-event-content{
  background-color:transparent;
  font-size:14px;
  justify-content:center;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-milestone .b-sch-event-content::before{
  content:none;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-milestone::before, .b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-milestone::after{
  background:inherit;
  position:absolute;
  content:" ";
  height:0.707107em;
  width:0.707107em;
  z-index:0;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-milestone::before{
  top:50%;
  left:0;
  transform-origin:50% 50%;
  transform:translate(-50%, -50%) rotate(45deg);
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap .b-sch-event.b-milestone::after{
  right:0;
  transform:rotate(-45deg);
  transform-origin:100% 0;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-milestone-wrap.b-measure .b-sch-event.b-milestone{
  width:calc(100% + 1em);
}
.b-sch-event{
  -webkit-user-select:none;
  user-select:none;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  cursor:pointer;
  overflow:hidden;
  overflow:clip;
  white-space:nowrap;
  width:calc(100% - 1px);
  text-align:left;
  min-width:5px;
  min-height:5px;
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s;
  position:relative;
}
.b-toggling-node .b-sch-event{
  transition:none;
}
.b-sch-event label{
  color:#888;
}
.b-sch-event:not(.b-milestone) .b-fa, .b-sch-event:not(.b-milestone) .b-icon, .b-sch-event:not(.b-milestone) .b-indicator.b-constraint-type-muststarton, .b-sch-event:not(.b-milestone) .b-indicator.b-constraint-type-mustfinishon, .b-sch-event:not(.b-milestone) .b-indicator.b-deadline-date, .b-sch-event:not(.b-milestone) .b-icon-version{
  margin-inline-end:0.75em;
  line-height:inherit;
}
.b-sch-event:before{
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
}
.b-sch-event.b-sch-event-resizing, .b-sch-event:hover{
  z-index:10;
}
.b-sch-event.b-sch-event-selected{
  z-index:10;
}
.b-sch-event.b-sch-event-selected, .b-sch-event.b-sch-event-selected *{
  font-weight:500;
}
.b-sch-event.b-sch-event-assign-selected{
  animation-name:instance-selected;
  animation-duration:0.2s;
  animation-iteration-count:3;
  animation-timing-function:ease-in-out;
}
.b-sch-event.b-milestone{
  transition:background 0s;
}
.b-sch-event-wrap:not(.b-milestone-wrap){
  min-width:6px;
  min-height:6px;
}
.b-using-keyboard .b-sch-event-wrap:not(.b-milestone-wrap).b-active .b-sch-event{
  outline:2px solid #2196f3;
  outline-offset:3px;
}
.b-timeaxissubgrid.b-is-highlighting .b-sch-canvas > .b-sch-event-wrap > .b-sch-event:not(.b-highlighted){
  transition:opacity 0.4s;
  opacity:0.2;
}
.b-initial-zoom-in .b-sch-event-wrap .b-sch-event{
  animation-name:initial-zoom-in;
  animation-duration:0.4s;
  animation-timing-function:ease-in;
}
.b-sch-event-content{
  z-index:1;
}
.b-milestone .b-sch-event-content{
  flex:1;
}
.b-sch-event:not(.b-milestone) .b-sch-event-content{
  margin:0 0.5em 0 0.75em;
  text-overflow:ellipsis;
  overflow:hidden;
  overflow:clip;
  display:flex;
  min-width:0;
}
.b-sch-event:not(.b-milestone) .b-sch-event-content > :not(i){
  text-overflow:ellipsis;
  overflow:hidden;
  overflow:clip;
  min-width:0;
}
.b-verticaltimeaxis-row .b-sch-event:not(.b-milestone) .b-sch-event-content{
  flex-direction:column;
}
.b-prevent-event-transitions .b-sch-event-wrap{
  transition:none !important;
}
.b-sch-event-wrap{
  display:grid;
  grid-template-columns:1fr;
  grid-template-rows:1fr;
}
.b-sch-event-wrap .b-sch-event{
  height:100%;
  grid-area:body;
}
.b-sch-horizontal .b-sch-event-wrap, .b-sch-event-wrap.b-sch-horizontal{
  grid-template-areas:"top    top    top    top    top" "before start  body   end  after" "bottom bottom bottom bottom bottom";
  grid-template-columns:0 auto 1fr auto 0;
  grid-template-rows:min-content auto min-content;
}
.b-sch-event-wrap.b-sch-vertical{
  grid-template-areas:"start" "body" "end";
  grid-template-rows:auto 1fr auto;
}
.b-sch-event-wrap.b-sch-vertical .b-sch-event-narrow{
  justify-content:center;
  padding-inline-start:0;
  padding-inline-end:0;
}
.b-sch-event-wrap.b-sch-vertical .b-sch-event-narrow .b-sch-event-content{
  flex-direction:column;
  align-items:center;
}
.b-sch-event-wrap.b-sch-vertical .b-sch-event-narrow i{
  margin-inline-end:0;
  align-self:center;
}
.b-sch-event-wrap.b-sch-vertical .b-sch-event-narrow .b-event-text-wrap{
  writing-mode:vertical-rl;
}
.b-sch-event-wrap.b-sch-vertical .b-sch-event{
  grid-column:1;
}
.b-sch-horizontal.b-eventbuffer-transition.b-animating .b-sch-event-wrap:not(.b-dragging):not(.b-sch-event-wrap-resizing){
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s, height 0.2s, font-size 0.2s;
}
.b-sch-vertical.b-eventbuffer-transition.b-animating .b-sch-event-wrap:not(.b-dragging):not(.b-sch-event-wrap-resizing){
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s, width 0.2s, font-size 0.2s;
}
.b-sch-event-wrap, .b-gantt-task-wrap{
  --event-primary-color-h:122.8235294118deg;
  --event-primary-color-s:38.4615384615%;
  --event-primary-color-l:56.6666666667%;
  --event-primary-color:hsl(var(--event-primary-color-h), var(--event-primary-color-s), var(--event-primary-color-l));
}
.b-sch-event-wrap > .b-sch-event:hover, .b-sch-event-wrap > .b-sch-event.b-sch-event-selected, .b-sch-event-wrap > .b-sch-event.b-sch-event-resizing,
.b-sch-event-wrap > .b-segmented > .b-sch-event-segments > .b-sch-event:hover,
.b-sch-event-wrap > .b-segmented > .b-sch-event-segments > .b-sch-event.b-sch-event-selected,
.b-sch-event-wrap > .b-segmented > .b-sch-event-segments > .b-sch-event.b-sch-event-resizing{
  --event-s-factor:var(--event-hover-s-factor);
  --event-l-factor:var(--event-hover-l-factor);
  --event-a:var(--event-hover-a);
  --event-color:var(--event-hover-color);
  --event-opacity:var(--event-hover-opacity);
}
.b-sch-event-wrap > .b-sch-event.b-sch-event-selected:hover,
.b-sch-event-wrap > .b-segmented > .b-sch-event-segments > .b-sch-event.b-sch-event-selected:hover{
  --event-s-factor:var(--event-selected-hover-s-factor);
  --event-l-factor:var(--event-selected-hover-l-factor);
  --event-a:var(--event-selected-hover-a);
}
.b-sch-event-wrap > .b-sch-event-selected > .b-sch-event-segments > .b-sch-event.b-sch-event-segment{
  --event-s-factor:var(--event-hover-s-factor);
  --event-l-factor:var(--event-hover-l-factor);
  --event-a:var(--event-hover-a);
  --event-color:var(--event-hover-color);
  --event-opacity:var(--event-hover-opacity);
}
.b-sch-color-none{
  --event-primary-color-h:null;
  --event-primary-color-s:null;
  --event-primary-color-l:null;
  --event-primary-color:null;
}
.b-sch-event,
.b-gantt-task,
.b-task-rollup[class*=b-sch-color-],
.b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-background-h:var(--event-primary-color-h);
  --event-background-s:var(--event-primary-color-s);
  --event-background-l:var(--event-primary-color-l);
  --event-s-factor:1;
  --event-l-factor:1;
  --event-a:1;
  --event-hover-s-factor:1;
  --event-hover-l-factor:1;
  --event-hover-a:1;
  --event-selected-hover-s-factor:1;
  --event-selected-hover-l-factor:1;
  --event-selected-hover-a:1;
  --event-background-color:hsla(
          var(--event-background-h),
          calc(var(--event-background-s) * var(--event-s-factor)),
          calc(var(--event-background-l) * var(--event-l-factor)),
          var(--event-a)
  );
  --event-border-color:var(--event-primary-color);
  --event-border-width:0px;
  --event-border-style:solid;
  --event-border-radius:0;
  --event-color:#fff;
  --event-hover-color:#fff;
  --event-opacity:1;
  --event-hover-opacity:1;
  --event-font-weight:400;
  color:var(--event-color);
  background-color:var(--event-background-color);
  border-color:var(--event-border-color);
  border-width:var(--event-border-width);
  border-style:var(--event-border-style);
  border-radius:var(--event-border-radius);
  font-weight:var(--event-font-weight);
  opacity:var(--event-opacity);
}
.b-sch-event.b-sch-event-startsoutside,
.b-gantt-task.b-sch-event-startsoutside,
.b-task-rollup[class*=b-sch-color-].b-sch-event-startsoutside,
.b-sch-event > .b-sch-event-segments > .b-sch-event.b-sch-event-startsoutside{
  border-inline-start:none;
}
.b-sch-event-wrap.b-milestone-wrap > .b-sch-event.b-milestone{
  border-width:0;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event.b-milestone{
  background-color:var(--event-background-color);
  border-color:var(--event-border-color);
  border-width:var(--event-border-width) 0 var(--event-border-width) 0;
  opacity:var(--event-opacity);
  border-style:var(--event-border-style);
  font-weight:var(--event-font-weight);
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event.b-milestone::before{
  --event-border-width:inherit;
  --event-border-radius:inherit;
  border-style:var(--event-border-style);
  border-color:var(--event-border-color);
  border-top-width:0;
  border-inline-end-width:0;
  border-bottom-width:var(--event-border-width);
  border-inline-start-width:var(--event-border-width);
  border-bottom-left-radius:var(--event-border-radius);
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event.b-milestone::after{
  --event-border-width:inherit;
  --event-border-radius:inherit;
  border-style:var(--event-border-style);
  border-color:var(--event-border-color);
  border-top-width:0;
  border-inline-end-width:var(--event-border-width);
  border-inline-start-width:0;
  border-bottom-width:var(--event-border-width);
  border-bottom-right-radius:var(--event-border-radius);
  top:calc(var(--event-border-width) * -1);
}
.b-sch-event.b-milestone, .b-gantt-task.b-milestone{
  border-radius:0;
}
.b-sch-event.b-milestone .b-gantt-task-content,
.b-sch-event.b-milestone .b-sch-event-content, .b-gantt-task.b-milestone .b-gantt-task-content,
.b-gantt-task.b-milestone .b-sch-event-content{
  background-color:var(--event-background-color);
}
.b-sch-event.b-milestone .b-gantt-task-content::before,
.b-sch-event.b-milestone .b-sch-event-content::before, .b-gantt-task.b-milestone .b-gantt-task-content::before,
.b-gantt-task.b-milestone .b-sch-event-content::before{
  border-width:var(--event-border-width);
  border-radius:var(--event-border-radius);
  border-color:var(--event-border-color);
  opacity:var(--event-opacity);
  border-style:var(--event-border-style);
}
.b-gantt-task,
.b-sch-style-none .b-sch-event{
  --event-background-image:none;
}
.b-gantt-task.b-task-selected, .b-gantt-task.b-sch-event-selected,
.b-sch-style-none .b-sch-event.b-task-selected,
.b-sch-style-none .b-sch-event.b-sch-event-selected{
  --event-background-image:linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
}
.b-gantt-task.b-task-selected:hover, .b-gantt-task.b-sch-event-selected:hover,
.b-sch-style-none .b-sch-event.b-task-selected:hover,
.b-sch-style-none .b-sch-event.b-sch-event-selected:hover{
  --event-background-image:linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}
.b-gantt-task.b-task-selected .b-sch-event-segment, .b-gantt-task.b-sch-event-selected .b-sch-event-segment,
.b-sch-style-none .b-sch-event.b-task-selected .b-sch-event-segment,
.b-sch-style-none .b-sch-event.b-sch-event-selected .b-sch-event-segment{
  --event-background-image:linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
}
.b-gantt-task.b-task-selected .b-sch-event-segment:hover, .b-gantt-task.b-sch-event-selected .b-sch-event-segment:hover,
.b-sch-style-none .b-sch-event.b-task-selected .b-sch-event-segment:hover,
.b-sch-style-none .b-sch-event.b-sch-event-selected .b-sch-event-segment:hover{
  --event-background-image:linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}
.b-gantt-task:hover,
.b-sch-style-none .b-sch-event:hover{
  --event-background-image:linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}
.b-gantt-task:not(.b-milestone),
.b-sch-style-none .b-sch-event:not(.b-milestone){
  background-image:var(--event-background-image);
}
.b-gantt-task.b-milestone > .b-gantt-task-content::before, .b-gantt-task.b-milestone > .b-sch-event-content::before,
.b-sch-style-none .b-sch-event.b-milestone > .b-gantt-task-content::before,
.b-sch-style-none .b-sch-event.b-milestone > .b-sch-event-content::before{
  background-image:var(--event-background-image);
}
.b-gantt-task-hover .b-gantt-task{
  --event-background-image:linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}
.b-sch-vertical .b-sch-event{
  align-items:flex-start;
  padding-inline:0.75em;
  white-space:normal;
}
.b-sch-vertical .b-sch-event .b-sch-event-content{
  margin:0.75em 0 0.5em 0;
}
.b-sch-vertical:not(.b-masked).b-grid-empty .b-grid-subgrid:first-child::before{
  content:"";
  display:none;
}
.b-sch-vertical:not(.b-masked).b-grid-empty .b-timeline-subgrid::before{
  color:#262626;
  content:attr(data-empty-text);
  padding:1em;
}
.b-sch-vertical .b-grid-row{
  border-bottom:none;
}
.b-sch-vertical.b-eventlayout-mixed .b-sch-event{
  opacity:0.8;
}
.b-timelinebase.b-overlay-scrollbar .b-virtual-scrollers{
  z-index:100;
}
.b-sch-layout-milestone .b-milestone-wrap{
  min-width:1em;
}
.b-timeline-loading-indicator-wrap{
  position:absolute;
  bottom:0;
  display:flex;
  width:100%;
  height:2px;
  z-index:100;
  background:rgba(76, 175, 80, 0.2);
}
.b-timeline-loading-indicator{
  background:#4caf50;
  opacity:0.6;
  animation:line-loop 3s linear infinite;
}
@keyframes line-loop{
  0%{
    width:0;
    margin-inline-start:0;
  }
  50%{
    width:100%;
    margin-inline-start:0;
  }
  100%{
    width:100%;
    margin-inline-start:100%;
  }
}
.b-scale-cell{
  padding-right:0 !important;
  padding-left:0 !important;
}
.b-scale-cell .b-scale{
  background-color:transparent;
  font-weight:300;
}
.b-scale-cell .b-scale-tick-label{
  font-size:70%;
}
.b-schedulerbase.b-animating .b-grid-row{
  transition:height 0.2s, transform 0.2s;
}
.b-grid-footer-container .b-sch-timeaxiscolumn{
  padding:0;
}
.b-sch-timeaxis-cell{
  padding:0;
  flex:none !important;
  align-items:baseline;
  border-inline-end:none;
}
.b-gridbase .b-timeline-subgrid .b-grid-row.b-selected:not(.b-group-row){
  background-color:transparent;
}
.b-gridbase .b-timeline-subgrid .b-grid-row.b-selected .b-grid-cell.b-sch-timeaxis-cell.b-selected{
  background-color:transparent;
}
.b-stripe .b-timeline-subgrid .b-grid-row.b-selected.b-odd,
.b-stripe .b-timeline-subgrid .b-grid-row.b-odd,
.b-gridbase.b-stripe .b-timeline-subgrid .b-grid-row.b-selected.b-odd,
.b-gridbase.b-stripe .b-timeline-subgrid .b-grid-row.b-odd{
  background-color:rgba(244.4, 244.4, 244.4, 0.8);
}
.b-stripe .b-timeline-subgrid .b-grid-row.b-selected.b-even,
.b-stripe .b-timeline-subgrid .b-grid-row.b-even,
.b-gridbase.b-stripe .b-timeline-subgrid .b-grid-row.b-selected.b-even,
.b-gridbase.b-stripe .b-timeline-subgrid .b-grid-row.b-even{
  background-color:rgba(255, 255, 255, 0.8);
}
.b-stripe .b-timeline-subgrid .b-grid-row.b-selected .b-grid-cell.b-selected{
  background-color:transparent;
}
.b-timeline-subgrid{
  -webkit-user-select:none;
  user-select:none;
}
.b-timeline-subgrid .b-grid-row{
  z-index:1;
}
.b-timeline-subgrid .b-grid-row.b-group-row, .b-timeline-subgrid .b-grid-row.b-group-row.b-selected{
  z-index:7;
  background-color:rgba(255, 255, 255, 0.8);
}
.b-resource-info{
  flex:1;
  height:100%;
  display:flex;
  flex-direction:row;
  align-items:center;
  overflow:hidden;
}
.b-resource-info dl{
  overflow:hidden;
  gap:0.2em;
}
.b-resource-info dt{
  font-weight:600;
  overflow:hidden;
  text-overflow:ellipsis;
}
.b-resource-info.b-no-avatar dt{
  margin-inline-start:0.6em;
}
.b-resource-info dd{
  margin:0;
  font-size:0.8em;
  color:#9e9e9e;
  overflow:hidden;
  text-overflow:ellipsis;
}
.b-resource-info .b-resource-avatar{
  margin-inline-end:0.5em;
}
.b-resourcecollapse-cell .b-icon, .b-resourcecollapse-cell .b-indicator.b-constraint-type-muststarton, .b-resourcecollapse-cell .b-indicator.b-constraint-type-mustfinishon, .b-resourcecollapse-cell .b-indicator.b-deadline-date, .b-resourcecollapse-cell .b-icon-version{
  background:transparent;
  border:none;
  transition:transform 0.2s !important;
  cursor:pointer;
}
.b-resourcecollapse-cell .b-icon.b-flip, .b-resourcecollapse-cell .b-flip.b-indicator.b-constraint-type-muststarton, .b-resourcecollapse-cell .b-flip.b-indicator.b-constraint-type-mustfinishon, .b-resourcecollapse-cell .b-flip.b-indicator.b-deadline-date, .b-resourcecollapse-cell .b-flip.b-icon-version{
  transform:rotate(180deg);
}
.b-column-lines-canvas{
  z-index:2;
}
.b-columnlines .b-grid-cell:not(:last-child){
  border-inline-end:1px solid #e0e0e0;
}
.b-columnlines .b-group-row .b-grid-cell{
  border-inline-end-color:transparent;
}
.b-column-line,
.b-column-line-major{
  height:100%;
  position:absolute;
  border-left-width:1px;
  border-left-style:solid;
}
.b-column-line{
  border-color:rgb(239.5, 239.5, 239.5);
}
.b-column-line-major{
  border-color:#e0e0e0;
  z-index:1;
}
.b-sch-vertical .b-column-line:not(.b-resource-column-line),
.b-sch-vertical .b-column-line-major{
  height:auto;
  width:100%;
  position:absolute;
  border-left:none;
  border-top-width:1px;
  border-top-style:solid;
}
.b-sch-vertical .b-resource-group-divider{
  border-color:transparent;
}
.b-animating .b-resource-column-line{
  transition:left 0.2s linear;
}
.b-sch-foreground-canvas{
  --scheduler-dependency-terminal-offset:0px;
  --scheduler-dependency-terminal-size:12px;
}
svg.b-sch-dependencies-canvas{
  --scheduler-dependency-marker:url("#arrowEnd");
  contain:unset;
  overflow:visible;
  z-index:8;
}
.b-sch-dependency-arrow path{
  fill:#ccc;
  fill:context-stroke;
}
.b-sch-dependency{
  pointer-events:visibleStroke;
  fill:transparent;
  stroke:#ccc;
  stroke-width:1;
  transition:stroke-width 0.2s linear, stroke 0.2s linear;
}
.b-sch-dependency.b-sch-dependency-over{
  stroke-width:2;
  stroke-dasharray:0;
}
.b-sch-dependency.b-sch-released{
  display:none;
}
.b-sch-dependency.b-click-area{
  stroke:transparent;
  stroke-dasharray:none !important;
  marker-end:none;
}
.b-sch-dependency{
  marker-end:var(--scheduler-dependency-marker);
}
.b-sch-dependency.b-sch-bidirectional-line{
  marker-start:var(--scheduler-dependency-marker);
}
.b-sch-dependency.b-sch-dependency-markerless{
  marker-end:none;
}
.b-dependencies .b-sch-event-hover{
  z-index:110;
}
.b-dependencies .b-sch-event.b-sch-terminals-visible,
.b-dependencies .b-gantt-task.b-sch-terminals-visible{
  overflow:visible;
}
.b-dependencies.b-highlighting .b-sch-event-wrap .b-sch-event,
.b-dependencies.b-highlighting .b-sch-dependency{
  opacity:0.3;
}
.b-dependencies.b-highlighting .b-sch-event-wrap .b-sch-event.b-highlight,
.b-dependencies.b-highlighting .b-sch-dependency.b-highlight{
  opacity:1;
}
.b-dependencies.b-highlighting .b-sch-resourcetimerange{
  opacity:0.3;
}
.b-sch-terminal{
  width:var(--scheduler-dependency-terminal-size);
  height:var(--scheduler-dependency-terminal-size);
  background-color:#fff;
  border-width:1px;
  border-style:solid;
  border-color:inherit;
  border-radius:50%;
  position:absolute;
  z-index:2;
  cursor:pointer;
  --terminal-start-end-offset:80%;
}
@media (pointer: coarse){
  .b-sch-terminal{
    --terminal-start-end-offset:115%;
  }
  .b-sch-terminal::after{
    content:"";
    height:calc(var(--scheduler-dependency-terminal-size) * 2);
    width:calc(var(--scheduler-dependency-terminal-size) * 2);
    border-radius:50%;
    position:absolute;
    transform:translate(calc(var(--scheduler-dependency-terminal-size) * -0.5 - 1), calc(var(--scheduler-dependency-terminal-size) * -0.5 - 1));
  }
}
.b-sch-terminal.b-sch-terminal:hover{
  background-color:rgb(229.5, 229.5, 229.5);
}
.b-dragging .b-sch-terminal, .b-sch-event-resizing .b-sch-terminal{
  display:none;
}
.b-creating-dependency .b-sch-terminal:hover,
.b-creating-dependency .b-sch-terminal-active{
  background-color:rgb(229.5, 229.5, 229.5);
}
.b-creating-dependency .b-sch-terminal:hover.b-valid,
.b-creating-dependency .b-sch-terminal-active.b-valid{
  border-color:#4caf50;
  background-color:rgb(181.0956175299, 222.9043824701, 182.7848605578);
}
.b-creating-dependency .b-sch-terminal:hover.b-invalid,
.b-creating-dependency .b-sch-terminal-active.b-invalid{
  border-color:#f44336;
  background-color:rgb(251.9386792453, 202.679245283, 199.0613207547);
}
.b-creating-dependency *{
  touch-action:none;
}
.b-sch-terminal-top{
  top:var(--scheduler-dependency-terminal-offset);
  left:50%;
  transform:translateX(-50%) translateY(-80%);
}
.b-sch-terminal-bottom{
  bottom:var(--scheduler-dependency-terminal-offset);
  left:50%;
  transform:translateX(-50%) translateY(80%);
}
.b-sch-terminal-start{
  left:var(--scheduler-dependency-terminal-offset);
  top:50%;
  transform:translateX(calc(var(--terminal-start-end-offset) * -1 * var(--rtl-negate))) translateY(-50%);
}
.b-rtl .b-sch-terminal-start{
  left:auto;
  right:0;
}
.b-sch-terminal-end{
  right:var(--scheduler-dependency-terminal-offset);
  top:50%;
  transform:translateX(calc(var(--terminal-start-end-offset) * var(--rtl-negate))) translateY(-50%);
}
.b-rtl .b-sch-terminal-end{
  right:auto;
  left:0;
}
.b-sch-terminal-hover-area{
  grid-area:body;
  width:calc(100% + var(--scheduler-dependency-terminal-offset) * -2 + var(--scheduler-dependency-terminal-size) * 0.8);
  height:calc(100% + var(--scheduler-dependency-terminal-offset) * -2 + var(--scheduler-dependency-terminal-size) * 0.8);
  justify-self:center;
}
.b-labels-topbottom .b-schedulerbase:not(.b-sch-layout-milestones) .b-milestone:not(.b-sch-event-withicon) .b-sch-terminal-start,
.b-labels-topbottom .b-gantt:not(.b-sch-layout-milestones) .b-milestone:not(.b-gantt-task-withicon) .b-sch-terminal-start{
  transform:translate(calc(-0.35em * var(--rtl-negate)), -50%);
}
.b-labels-topbottom .b-schedulerbase:not(.b-sch-layout-milestones) .b-milestone:not(.b-sch-event-withicon) .b-sch-terminal-end,
.b-labels-topbottom .b-gantt:not(.b-sch-layout-milestones) .b-milestone:not(.b-gantt-task-withicon) .b-sch-terminal-end{
  transform:translate(calc(0.35em * var(--rtl-negate)), -50%);
}
.b-sch-dependency-connector{
  position:absolute;
  contain:strict;
  border-top:2px dashed #ccc;
  z-index:10;
  transform-origin:0 0;
  pointer-events:none;
}
.b-sch-dependency-connector.b-removing{
  transition:width 0.2s ease-out;
}
.b-sch-dependency-connector.b-valid{
  border-color:#4caf50;
  border-top-style:solid;
}
.b-sch-dependency-creation-tooltip.b-popup{
  max-width:none;
}
.b-sch-dependency-creation-tooltip .b-popup-header{
  padding:0.5em 0.075em;
  background-color:#4caf50;
}
.b-safari .b-sch-dependency-creation-tooltip .b-popup-header, .b-firefox .b-sch-dependency-creation-tooltip .b-popup-header{
  width:1.5em;
}
.b-sch-dependency-creation-tooltip .b-popup-header i{
  margin-bottom:0.5em;
}
.b-sch-dependency-creation-tooltip.b-rtl .b-popup-header i{
  margin-bottom:0;
  margin-top:0.5em;
}
.b-sch-dependency-creation-tooltip.b-invalid .b-popup-header{
  background-color:#f44336;
}
.b-sch-dependency-creation-tooltip.b-checking .b-popup-header{
  background-color:#9e9e9e;
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-panel-header{
  color:#fff;
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content{
  display:grid;
  grid-template-columns:auto auto auto;
  grid-column-gap:0.5em;
  align-items:center;
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content label{
  font-size:0.8em;
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box{
  width:12px;
  height:8px;
  border:1px solid #ccc;
  display:none;
  position:relative;
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-start, :is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-end, :is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-right, :is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-left, :is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-top, :is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-bottom{
  display:block;
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box:after{
  content:"";
  width:3px;
  height:3px;
  border-radius:50%;
  background-color:#fff;
  position:absolute;
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-end:after, :is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-right:after{
  right:-2px;
  top:50%;
  transform:translateY(-50%);
}
.b-rtl :is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-end:after{
  right:auto;
  left:-2px;
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-start:after, :is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-left:after{
  left:-2px;
  top:50%;
  transform:translateY(-50%);
}
.b-rtl :is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-start:after{
  left:auto;
  right:-2px;
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-top:after{
  top:-2px;
  left:50%;
  transform:translateX(-50%);
}
:is(.b-sch-dependency-creation-tooltip, .b-sch-dependency-tooltip) .b-tooltip-content .b-sch-box.b-bottom:after{
  bottom:-2px;
  left:50%;
  transform:translateX(-50%);
}
.b-predecessor-list{
  display:flex;
  flex-direction:column;
}
.b-predecessor-list > *{
  flex:0 0 auto;
  align-self:stretch;
  width:auto;
}
.b-predecessor-list > .b-list-item .b-predecessor-item-text{
  flex:1;
}
.b-predecessor-list > .b-list-item .b-sch-box{
  width:1.2em;
  height:0.9em;
  border:1px solid #ccc;
  margin-inline-start:0.5em;
  position:relative;
}
.b-predecessor-list > .b-list-item .b-sch-box:after{
  content:"";
  width:0.5em;
  height:0.5em;
  border-radius:50%;
  background-color:rgb(42.5, 42.5, 42.5);
  position:absolute;
  border:1px solid #ccc;
  display:none;
}
.b-predecessor-list > .b-list-item.b-selected .b-sch-box{
  background-color:#4caf50;
}
.b-predecessor-list > .b-list-item.b-selected.b-fs .b-sch-box.b-from::after{
  right:-0.25em;
  top:50%;
  transform:translateY(-50%);
  display:block;
}
.b-predecessor-list > .b-list-item.b-selected.b-fs .b-sch-box.b-to::after{
  left:-0.25em;
  top:50%;
  transform:translateY(-50%);
  display:block;
}
.b-predecessor-list > .b-list-item.b-selected.b-sf .b-sch-box.b-from::after{
  left:-0.25em;
  top:50%;
  transform:translateY(-50%);
  display:block;
}
.b-predecessor-list > .b-list-item.b-selected.b-sf .b-sch-box.b-to::after{
  right:-0.25em;
  top:50%;
  transform:translateY(-50%);
  display:block;
}
.b-predecessor-list > .b-list-item.b-selected.b-ss .b-sch-box.b-from::after{
  left:-0.25em;
  top:50%;
  transform:translateY(-50%);
  display:block;
}
.b-predecessor-list > .b-list-item.b-selected.b-ss .b-sch-box.b-to::after{
  left:-0.25em;
  top:50%;
  transform:translateY(-50%);
  display:block;
}
.b-predecessor-list > .b-list-item.b-selected.b-ff .b-sch-box.b-from::after{
  right:-0.25em;
  top:50%;
  transform:translateY(-50%);
  display:block;
}
.b-predecessor-list > .b-list-item.b-selected.b-ff .b-sch-box.b-to::after{
  right:-0.25em;
  top:50%;
  transform:translateY(-50%);
  display:block;
}
.b-sch-dependency-selected{
  stroke:#f44336;
  stroke-width:2;
}
.b-sch-dependency-remove-icon{
  position:absolute;
  height:1em;
  width:1em;
  display:flex;
  translate:-50% -50%;
  pointer-events:all;
  color:#f44336;
  cursor:pointer;
  z-index:1000;
  animation:b-anim-show-dependency-remove-icon 0.2s ease-in-out 1;
}
.b-sch-dependency-remove-icon:before{
  border-radius:50%;
  background-color:#fff;
}
.b-sch-dependency-remove-icon.b-removing{
  animation:b-anim-hide-dependency-remove-icon 0.15s linear 1;
}
@keyframes b-anim-show-dependency-remove-icon{
  0%{
    scale:0;
    opacity:0;
  }
  100%{
    scale:1;
    opacity:1;
  }
}
@keyframes b-anim-hide-dependency-remove-icon{
  0%{
    scale:1;
    opacity:1;
  }
  100%{
    scale:0;
    opacity:0;
  }
}
.b-dependencyeditor.b-popup{
  width:29em;
}
.b-dependencyeditor.b-popup .b-popup-content{
  padding:1em 1em 0 1em;
}
.b-dependencyeditor.b-popup .b-popup-content .b-textfield label,
.b-dependencyeditor.b-popup .b-popup-content .b-checkbox label{
  flex:1 0 4em;
}
.b-dependencyeditor.b-popup .b-popup-content .b-textfield .b-checkbox-label,
.b-dependencyeditor.b-popup .b-popup-content .b-checkbox .b-checkbox-label{
  text-align:start;
}
.b-dependencyeditor.b-popup .b-bottom-toolbar{
  padding:1em 1em 0.4em 1em;
}
.b-dependencyeditor.b-popup .b-bottom-toolbar .b-label-filler{
  display:none;
}
.b-dependencyeditor.b-popup .b-bottom-toolbar > button{
  flex:1;
  margin-inline-end:0.5em;
}
.b-dependencyeditor.b-popup .b-bottom-toolbar > button:last-child{
  margin-inline-end:0;
}
.b-dragselect-rect{
  position:absolute;
  left:0;
  top:0;
  transform-origin:0 0;
  pointer-events:none;
  z-index:100;
  border:1px dashed #424242;
}
.b-cut-item{
  opacity:0.4;
}
.b-schedulerbase.b-dragging-event{
  -webkit-user-select:none;
  user-select:none;
}
.b-sch-event-wrap.b-aborting, .b-sch-event-wrap.b-drag-unified-animation{
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s, transform 0.2s, left 0.2s, top 0.2s;
}
.b-sch-event-wrap.b-dragging{
  z-index:200;
}
.b-sch-event-wrap.b-dragging.b-drag-main{
  z-index:201;
}
.b-sch-event-wrap.b-dragging .b-sch-event{
  outline:none;
}
.b-sch-event-wrap.b-dragging .b-sch-event.b-sch-style-plain .b-sch-event-wrap.b-dragging .b-sch-event, .b-sch-event-wrap.b-dragging .b-sch-event.b-sch-style-border .b-sch-event-wrap.b-dragging .b-sch-event, .b-sch-event-wrap.b-dragging .b-sch-event.b-sch-style-colored .b-sch-event-wrap.b-dragging .b-sch-event{
  box-shadow:0 3px 6px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.24);
}
.b-sch-event-wrap.b-hidden{
  display:none !important;
}
.b-float-root > .b-tooltip.b-eventdrag-tooltip{
  pointer-events:none;
}
.b-sch-tip-message{
  margin-top:0.5em;
}
.b-sch-tip-invalid .b-sch-tip-message{
  color:#EF5350;
}
.b-sch-tip-message .b-icon:first-child, .b-sch-tip-message .b-indicator.b-constraint-type-muststarton:first-child, .b-sch-tip-message .b-indicator.b-constraint-type-mustfinishon:first-child, .b-sch-tip-message .b-indicator.b-deadline-date:first-child, .b-sch-tip-message .b-icon-version:first-child{
  margin-inline-end:0.4em;
}
.b-sch-tip-message:empty{
  display:none;
}
.b-timelinebase.b-dragcreating{
  -webkit-user-select:none;
  user-select:none;
}
.b-timelinebase.b-dragcreating .b-sch-timeaxis-cell,
.b-timelinebase.b-dragcreating .b-sch-event-wrap,
.b-timelinebase.b-dragcreating .b-gantt-task-wrap{
  pointer-events:none;
}
.b-timelinebase.b-dragcreating *{
  transition:none;
}
.b-sch-dragcreating.b-too-narrow{
  opacity:0.25;
}
.b-sch-dragcreate-tooltip.b-too-narrow .b-sch-tooltip-startdate,
.b-sch-dragcreate-tooltip.b-too-narrow .b-sch-tooltip-enddate{
  color:#f44336;
}
.b-sch-dragcreate-tooltip.b-too-narrow .b-sch-tooltip-startdate .b-sch-clock,
.b-sch-dragcreate-tooltip.b-too-narrow .b-sch-tooltip-enddate .b-sch-clock{
  border-color:#f44336;
}
.b-eventeditor.b-panel:not(.b-panel-collapsible){
  width:min(100%, 16em + var(--date-time-length));
  min-width:min(100%, 16em + var(--date-time-length));
  flex:unset;
}
.b-eventeditor.b-panel .b-eventeditor-content.b-eventeditor-content .b-field > label{
  flex:0 0 5em;
}
.b-eventeditor.b-panel .b-eventeditor-content.b-eventeditor-content [data-ref=startDateField], .b-eventeditor.b-panel .b-eventeditor-content.b-eventeditor-content [data-ref=endDateField]{
  flex:1 0 calc(55.5% + var(--date-width-difference) - 0.6em / 2);
}
.b-eventeditor.b-panel .b-eventeditor-content.b-eventeditor-content [data-ref=startTimeField], .b-eventeditor.b-panel .b-eventeditor-content.b-eventeditor-content [data-ref=endTimeField]{
  flex:1 0 calc(44.5% - var(--date-width-difference) - 0.6em / 2);
}
.b-eventeditor.b-panel .b-bottom-toolbar{
  background:transparent;
}
.b-eventeditor.b-panel .b-bottom-toolbar > .b-toolbar-content > button{
  flex:1;
  margin-inline-end:0.5em;
  min-width:0;
}
.b-eventeditor.b-panel .b-bottom-toolbar > .b-toolbar-content > button:last-child{
  margin-inline-end:0;
}
.b-panel.b-floating > .b-eventeditor-body-wrap{
  padding-top:1em;
}
.b-panel.b-floating > .b-eventeditor-body-wrap > .b-panel-content{
  padding-block:0;
}
.b-panel.b-floating > .b-eventeditor-body-wrap > .b-bottom-toolbar .b-toolbar-content{
  padding-top:1em;
}
.b-mobile .b-panel.b-floating > .b-eventeditor-body-wrap > .b-bottom-toolbar .b-toolbar-content{
  padding-block:0 1em;
}
.b-readonly.b-panel.b-floating > .b-eventeditor-body-wrap{
  padding-bottom:1em;
}
.b-sch-event-wrap .b-sch-nonworkingtime{
  z-index:0;
}
.b-dragging-event .b-sch-event-wrap.b-dragging .b-sch-nonworkingtime{
  display:none;
}
.b-animating .b-sch-event-wrap .b-sch-timerange{
  transition:none;
}
.b-sch-vertical .b-sch-event-wrap .b-sch-nonworkingtime{
  left:0;
}
.b-sch-event-resizable-true, .b-sch-event-resizable-start, .b-sch-event-resizable-end{
  --handle-size:0.5em;
}
@media (pointer: coarse){
  .b-sch-event-resizable-true, .b-sch-event-resizable-start, .b-sch-event-resizable-end{
    --handle-size:1em;
  }
}
.b-sch-event-resizable-true::before, .b-sch-event-resizable-true::after, .b-sch-event-resizable-start::before, .b-sch-event-resizable-start::after, .b-sch-event-resizable-end::before, .b-sch-event-resizable-end::after{
  --handle-width:9px;
  --handle-height:50%;
  --handle-inset:3px;
  --handle-align-inset:25%;
  --gradient-dir:to right;
  --handle-opacity:0.7;
  --clip-path:inset(0 0 0 var(--handle-inset));
  position:absolute;
  clip-path:var(--clip-path);
  left:0;
  top:var(--handle-align-inset);
  width:var(--handle-width);
  height:var(--handle-height);
  opacity:var(--handle-opacity);
  background:linear-gradient(var(--gradient-dir), #fff 1px, transparent 1px);
  background-size:2px;
  background-position:var(--handle-inset);
}
@media (pointer: coarse){
  .b-sch-event-resizable-true::before, .b-sch-event-resizable-true::after, .b-sch-event-resizable-start::before, .b-sch-event-resizable-start::after, .b-sch-event-resizable-end::before, .b-sch-event-resizable-end::after{
    --handle-width:1.7em;
    --handle-inset:0.7em;
  }
}
.b-sch-event-resizable-true::after, .b-sch-event-resizable-start::after, .b-sch-event-resizable-end::after{
  --clip-path:inset(0 var(--handle-inset) 0 0);
  left:auto;
  right:0;
}
.b-sch-vertical .b-sch-event-resizable-true::before, .b-sch-vertical .b-sch-event-resizable-true::after, .b-sch-vertical .b-sch-event-resizable-start::before, .b-sch-vertical .b-sch-event-resizable-start::after, .b-sch-vertical .b-sch-event-resizable-end::before, .b-sch-vertical .b-sch-event-resizable-end::after{
  background-size:100% 2px;
  top:0;
  left:var(--handle-align-inset);
  --handle-width:50%;
  --handle-height:0.7em;
  --gradient-dir:to bottom;
  --clip-path:inset(var(--handle-inset) 0 0 0);
}
@media (pointer: coarse){
  .b-sch-vertical .b-sch-event-resizable-true::before, .b-sch-vertical .b-sch-event-resizable-true::after, .b-sch-vertical .b-sch-event-resizable-start::before, .b-sch-vertical .b-sch-event-resizable-start::after, .b-sch-vertical .b-sch-event-resizable-end::before, .b-sch-vertical .b-sch-event-resizable-end::after{
    --handle-height:1.7em;
  }
}
.b-sch-vertical .b-sch-event-resizable-true::after, .b-sch-vertical .b-sch-event-resizable-start::after, .b-sch-vertical .b-sch-event-resizable-end::after{
  --clip-path:inset(0 0 var(--handle-inset) 0);
  top:auto;
  bottom:0;
}
.b-eventresize:not(.b-readonly):not(.b-creating-dependency){
  --handle-cursor:ew-resize;
}
.b-eventresize:not(.b-readonly):not(.b-creating-dependency).b-sch-vertical{
  --handle-cursor:ns-resize;
}
.b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event-wrap.b-sch-event-hover:not(.b-sch-style-line) > .b-sch-event:not(.b-segmented).b-sch-event-resizable-start:before, .b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event-wrap.b-sch-event-hover:not(.b-sch-style-line) > .b-sch-event:not(.b-segmented).b-sch-event-resizable-end:after, .b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event-wrap.b-sch-event-hover:not(.b-sch-style-line) > .b-sch-event:not(.b-segmented).b-sch-event-resizable-true:before, .b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event-wrap.b-sch-event-hover:not(.b-sch-style-line) > .b-sch-event:not(.b-segmented).b-sch-event-resizable-true:after,
.b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event-wrap:not(.b-sch-style-line) .b-sch-event-resizing.b-sch-event-resizable-start:before,
.b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event-wrap:not(.b-sch-style-line) .b-sch-event-resizing.b-sch-event-resizable-end:after,
.b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event-wrap:not(.b-sch-style-line) .b-sch-event-resizing.b-sch-event-resizable-true:before,
.b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event-wrap:not(.b-sch-style-line) .b-sch-event-resizing.b-sch-event-resizable-true:after{
  content:"";
}
.b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event.b-resize-handle{
  cursor:var(--handle-cursor);
}
.b-eventresize:not(.b-readonly):not(.b-creating-dependency).b-resizing-event, .b-eventresize:not(.b-readonly):not(.b-creating-dependency) .b-sch-event-resizing{
  -webkit-user-select:none;
  user-select:none;
  cursor:var(--handle-cursor) !important;
}
.b-sch-event-wrap.b-sch-event-wrap-resizing{
  z-index:11;
}
.b-schedulerbase.b-resizing-event .b-sch-timeaxis-cell,
.b-schedulerbase.b-resizing-event .b-sch-event-wrap{
  pointer-events:none;
}
.b-popup.b-sch-event-tooltip{
  max-width:30em;
  display:flex;
  flex-direction:column;
}
.b-popup.b-sch-event-tooltip .b-sch-event-title{
  font-weight:600;
}
.b-eventtip-content{
  gap:0.5em;
}
.b-timeaxis-group-summary{
  display:flex;
  flex-direction:row;
  width:100%;
  height:100%;
}
.b-timeaxis-group-summary .b-timeaxis-tick{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:center;
}
.b-timeaxis-group-summary .b-timeaxis-summary-value{
  text-align:center;
}
.b-gridbase.b-schedulerbase .b-timeline-subgrid .b-grid-row.b-group-footer.b-hover .b-grid-cell,
.b-gridbase.b-schedulerbase .b-timeline-subgrid .b-grid-row.b-group-footer.b-hover .b-grid-cell:hover{
  background-color:#fafafa;
}
.b-header-drag-selection-rect{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  transform-origin:0 0;
  pointer-events:none;
  z-index:100;
  background:rgba(160.5, 210, 250, 0.3);
}
.b-sch-event-wrap .b-sch-label, .b-gantt-task-wrap .b-sch-label{
  font-size:12px;
  text-align:center;
  white-space:nowrap;
  color:#888;
  font-weight:400;
  z-index:1;
  min-width:1em;
  pointer-events:all;
  -webkit-user-select:none;
  user-select:none;
}
.b-sch-event-wrap .b-sch-label-top, .b-gantt-task-wrap .b-sch-label-top{
  grid-area:top;
  justify-self:center;
  margin-bottom:0.2em;
}
.b-sch-event-wrap .b-sch-label-bottom, .b-gantt-task-wrap .b-sch-label-bottom{
  grid-area:bottom;
  justify-self:center;
  margin-top:0.2em;
}
.b-sch-event-wrap .b-sch-label-before, .b-gantt-task-wrap .b-sch-label-before{
  grid-area:before;
  justify-self:end;
  margin-inline-end:1.5em;
}
.b-sch-event-wrap .b-sch-label-after, .b-gantt-task-wrap .b-sch-label-after{
  grid-area:after;
  justify-self:start;
  margin-inline-start:1.5em;
}
.b-sch-event-wrap.b-measure-label{
  height:1em;
  position:fixed;
  top:-10000px;
  left:-10000px;
  visibility:hidden;
}
.b-sch-event-wrap.b-measure-label label{
  padding-inline-start:1.5em;
  grid-area:none;
}
.b-pan .b-timeline-subgrid{
  cursor:move;
}
.b-resource-time-range-canvas{
  z-index:5;
}
.b-sch-canvas.b-interactive .b-sch-resourcetimerange{
  pointer-events:auto;
}
.b-sch-resourcetimerange{
  display:flex;
  position:absolute;
  left:0;
  background-color:rgba(253, 216, 53, 0.2);
  color:rgb(227.3625, 185.695875, 2.1375);
  justify-content:center;
  align-items:flex-end;
}
.b-sch-resourcetimerange [data-task-feature]{
  display:flex;
  height:100%;
  align-items:center;
  font-size:12px;
}
.b-animating .b-sch-resourcetimerange{
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s, transform 0.2s, left 0.2s, right 0.2s, width 0.2s, height 0.2s, font-size 0.2s;
}
.b-sch-resourcetimerange .b-sch-event-withicon .b-fa{
  margin-inline-end:0.4em;
  line-height:inherit;
}
.b-sch-resourcetimerange .b-sch-event-content{
  margin:3px;
}
.b-sch-vertical .b-sch-resourcetimerange{
  justify-content:center;
  align-items:flex-start;
}
.b-sch-color-red.b-sch-resourcetimerange{
  background-color:rgba(239, 83, 80, 0.2);
  color:rgb(220.2102094241, 22.8354588561, 19.0397905759);
}
.b-sch-color-pink.b-sch-resourcetimerange{
  background-color:rgba(236, 64, 122, 0.2);
  color:rgb(205.6607142857, 19.3392857143, 82.1686046512);
}
.b-sch-color-purple.b-sch-resourcetimerange{
  background-color:rgba(171, 71, 188, 0.2);
  color:rgb(131.0812123302, 49.2590139442, 144.9909860558);
}
.b-sch-color-violet.b-sch-resourcetimerange{
  background-color:rgba(126, 87, 194, 0.2);
  color:rgb(91.2698103293, 53.3317139738, 157.4182860262);
}
.b-sch-color-indigo.b-sch-resourcetimerange{
  background-color:rgba(92, 107, 192, 0.2);
  color:rgb(56.407300885, 71.4351106195, 156.592699115);
}
.b-sch-color-blue.b-sch-resourcetimerange{
  background-color:rgba(66, 165, 245, 0.2);
  color:rgb(11.1350502513, 127.8222572359, 222.1149497487);
}
.b-sch-color-cyan.b-sch-resourcetimerange{
  background-color:rgba(38, 198, 218, 0.2);
  color:rgb(26.5700787402, 150.0010498688, 165.4299212598);
}
.b-sch-color-teal.b-sch-resourcetimerange{
  background-color:rgba(38, 166, 154, 0.2);
  color:rgb(27.075, 125.925, 116.6578125);
}
.b-sch-color-green.b-sch-resourcetimerange{
  background-color:rgba(102, 187, 106, 0.2);
  color:rgb(63.3576923077, 153.3923076923, 67.5946153846);
}
.b-sch-color-lime.b-sch-resourcetimerange{
  background-color:rgba(212, 225, 87, 0.2);
  color:rgb(184.6205533597, 200.3181818182, 33.6818181818);
}
.b-sch-color-yellow.b-sch-resourcetimerange{
  background-color:rgba(253, 216, 53, 0.2);
  color:rgb(227.3625, 185.695875, 2.1375);
}
.b-sch-color-orange.b-sch-resourcetimerange{
  background-color:rgba(255, 167, 38, 0.2);
  color:rgb(219.75, 130.6347926267, 0);
}
.b-sch-color-deep-orange.b-sch-resourcetimerange{
  background-color:rgba(255, 112, 67, 0.2);
  color:rgb(241.5, 57.8058510638, 0);
}
.b-sch-color-gray.b-sch-resourcetimerange{
  background-color:rgba(160, 160, 160, 0.2);
  color:#7e7272;
}
.b-sch-color-gantt-green.b-sch-resourcetimerange{
  background-color:rgba(165, 216, 167, 0.2);
  color:rgb(95.1566860465, 190.5933139535, 98.8992989056);
}
.b-schedule-selected-tick{
  position:absolute;
  background-color:rgba(170, 170, 170, 0.1);
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}
.b-schedule-selected-tick.b-widget, .b-schedule-selected-tick .b-contains-widget{
  z-index:7;
}
.b-schedule-selected-tick:not(.b-widget, .b-contains-widget){
  pointer-events:none;
}
.b-sch-scheduletip{
  min-width:10em;
}
.b-sch-scheduletip.b-panel .b-panel-content{
  padding-block:0.3em;
  margin-block:0.5em;
}
.b-sch-scheduletip.b-nonworking-time{
  opacity:0;
  pointer-events:none;
}
.b-scrollbuttons .b-timeaxissubgrid .b-scrollbuttons-canvas{
  width:100%;
  height:100%;
  position:sticky;
  z-index:9;
  pointer-events:none;
  inset-inline-start:100%;
  translate:-100%;
  margin-inline-end:-100%;
}
.b-scrollbuttons .b-timeaxissubgrid.b-rtl .b-scrollbuttons-canvas{
  translate:100%;
}
.b-scrollbuttons .b-timeaxissubgrid .b-scroll-buttons-container{
  height:100%;
  display:flex;
  width:100%;
  pointer-events:none;
  align-items:center;
  position:absolute;
}
.b-scrollbuttons .b-timeaxissubgrid .b-scroll-button-wrap{
  display:flex;
  flex-direction:row;
  align-items:baseline;
  justify-content:center;
  border-radius:0.3em;
  gap:0.5em;
  border:1px solid var(--scrollbutton-color);
  padding:0.1em 0.5em;
  pointer-events:all;
  cursor:pointer;
  background:var(--scrollbutton-background-color);
  transition:color 0.2s, background-color 0.2s;
  color:var(--scrollbutton-color);
  min-width:3.1em;
  font-size:0.8em;
}
.b-scrollbuttons .b-timeaxissubgrid .b-scroll-button-wrap:hover{
  --scrollbutton-color:var(--scrollbutton-hover-color);
}
.b-scrollbuttons .b-timeaxissubgrid .b-scroll-button-wrap label{
  font-size:0.9em;
  font-weight:500;
}
.b-scrollbuttons .b-timeaxissubgrid .b-scroll-button-wrap.b-scroll-backward{
  margin-inline-start:1em;
}
.b-scrollbuttons .b-timeaxissubgrid .b-scroll-button-wrap.b-scroll-forward{
  margin-inline-start:auto;
  margin-inline-end:1em;
}
.b-simpleeventeditor{
  z-index:15;
}
.b-simpleeventeditor .b-field{
  align-items:stretch;
}
.b-sch-horizontal .b-simpleeventeditor .b-field{
  height:100%;
}
.b-stickyevents:where(.b-sch-horizontal) .b-sch-event-wrap:where(:not(.b-disable-sticky, .b-milestone-wrap)),
.b-stickyevents:where(.b-sch-horizontal) .b-sch-resourcetimerange{
  overflow:visible;
}
.b-stickyevents:where(.b-sch-horizontal) .b-sch-event-wrap:where(:not(.b-disable-sticky, .b-milestone-wrap)) .b-sch-event-content,
.b-stickyevents:where(.b-sch-horizontal) .b-sch-resourcetimerange .b-sch-event-content{
  position:sticky;
  left:0.75em;
}
.b-stickyevents:where(.b-sch-horizontal) .b-sch-event-wrap:where(:not(.b-disable-sticky, .b-milestone-wrap)) .b-sch-event,
.b-stickyevents:where(.b-sch-horizontal) .b-sch-resourcetimerange .b-sch-event{
  overflow:visible;
}
.b-stickyevents:where(.b-sch-horizontal) .b-sch-resourcetimerange{
  justify-content:flex-start;
}
.b-stickyevents:where(.b-sch-horizontal) .b-sch-resourcetimerange > div{
  overflow:visible;
  width:100%;
}
.b-rtl.b-stickyevents.b-sch-horizontal .b-sch-event-wrap:not(.b-disable-sticky, .b-milestone-wrap) .b-sch-event-content,
.b-rtl.b-stickyevents.b-sch-horizontal .b-sch-resourcetimerange .b-sch-event-content{
  right:0.75em;
}
.b-firefox.b-stickyevents.b-sch-horizontal .b-sch-foreground-canvas{
  contain:none;
}
.b-sch-summarybar{
  padding:0;
  flex-direction:row;
  border-inline-end:none;
  justify-content:flex-start;
  flex-grow:unset !important;
}
.b-sch-summarybar .b-timeaxis-tick{
  display:flex;
  flex-direction:column;
  text-align:center;
  overflow:hidden;
  justify-content:center;
  align-items:stretch;
}
.b-sch-summarybar:not(.b-sch-vertical) .b-timeaxis-tick{
  padding:0.5em 0;
}
.b-sch-summarybar:not(.b-sch-vertical) .b-timeaxis-tick:not(:last-child){
  border-inline-end:1px solid transparent;
}
.b-sch-vertical .b-sch-summarybar{
  flex-direction:column;
  align-items:stretch;
  background:#fafafa !important;
  color:#757575;
}
.b-sch-vertical .b-sch-summarybar .b-timeaxis-tick{
  padding:0 0.5em;
}
.b-sch-vertical .b-sch-summarybar .b-timeaxis-tick:not(:last-child){
  border-bottom:1px solid transparent;
}
.b-timeaxis-summary-tip{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
}
.b-timeaxis-summary-tip header{
  width:100%;
  text-align:center;
  font-weight:700;
  margin-bottom:1em;
}
.b-timeaxis-summary-tip label{
  flex:1 1 50%;
}
.b-timeaxis-summary-tip .b-timeaxis-summary-value{
  flex:0 0 auto;
}
.b-sch-tick-cell{
  position:absolute;
  contain:strict;
  display:grid;
  align-items:center;
  justify-content:center;
  pointer-events:all;
  font-size:14px;
}
.b-sch-timeaxis-menu-daterange-popup{
  width:21em;
  background-color:#fff;
}
.b-sch-timeaxis-menu-daterange-popup .b-panel-body-wrap{
  background-color:transparent;
}
.b-sch-timeaxis-menu-daterange-popup .b-left-nav-btn,
.b-sch-timeaxis-menu-daterange-popup .b-right-nav-btn{
  max-width:2.5em;
}
.b-eventfilter-menu .b-panel-content{
  padding:0.25em 0;
}
.b-float-root > .b-floating.b-interaction-tooltip{
  pointer-events:none;
}
.b-sch-line{
  margin-inline-start:-1px;
}
.b-timeranges-canvas{
  display:contents;
}
.b-sch-timerange{
  display:flex;
  flex-direction:row;
  align-items:center;
  position:absolute;
  inset-inline-start:0;
  overflow:hidden;
  justify-content:center;
  color:#aaa;
  z-index:6;
  cursor:pointer;
}
.b-sch-timerange.b-over-resize-handle{
  cursor:ew-resize;
}
.b-timelinebase:not(.b-dragging-timerange) .b-sch-timerange:hover{
  z-index:9;
}
.b-sch-timerange label{
  font-size:0.8em;
  color:inherit;
  white-space:nowrap;
  cursor:inherit;
  text-overflow:ellipsis;
  overflow:hidden;
  padding:0.3em;
}
.b-sch-timerange i{
  margin-inline-end:0.5em;
}
.b-timeranges-body-canvas .b-sch-timerange.b-narrow-range label{
  writing-mode:tb;
  padding-inline-start:1em;
}
.b-sch-current-time{
  pointer-events:none;
}
.b-animating .b-sch-timerange{
  transition:inset 0.3s, width 0.3s, height 0.3s;
}
.b-timeline-subgrid .b-sch-timerange{
  height:100%;
  align-items:flex-start;
  min-width:1px;
  color:#aaa;
  font-size:14px;
}
.b-timeline-subgrid .b-sch-timerange:not(.b-sch-line) label{
  overflow:visible;
}
.b-timeline-subgrid .b-sch-timerange:not(.b-sch-line) label.b-vertical{
  -webkit-writing-mode:vertical-lr;
  writing-mode:vertical-lr;
  -ms-writing-mode:tb-lr;
}
.b-timeline-subgrid .b-sch-timerange.b-sch-line{
  width:1px;
  overflow:visible;
}
.b-timeline-subgrid .b-sch-timerange.b-sch-line:before{
  display:none;
}
.b-timeline-subgrid .b-sch-range{
  background-color:rgba(240, 240, 240, 0.5);
  pointer-events:none;
}
.b-timeline-subgrid div.b-sch-line{
  border-inline-start:2px solid #fab005;
  color:#fff;
  padding:0;
  z-index:10;
}
.b-timeline-subgrid div.b-sch-line label{
  background-color:#fab005;
  padding:0.3em;
  white-space:nowrap;
}
.b-timeline-subgrid div.b-sch-current-time{
  border-inline-start-color:#fa5252;
}
.b-timeline-subgrid div.b-sch-current-time label{
  background-color:#fa5252;
}
.b-timelinebase:not(.b-sch-vertical) .b-timeline-subgrid .b-sch-line{
  flex-direction:column;
  justify-content:flex-start;
}
.b-timelinebase:not(.b-sch-vertical) .b-timeline-subgrid .b-sch-line label{
  margin-top:0.5em;
}
.b-sch-vertical .b-sch-timerange{
  inset-inline-start:auto;
  inset-block-start:0;
  justify-content:flex-start;
}
.b-sch-vertical .b-sch-timerange label{
  -webkit-writing-mode:vertical-lr;
  writing-mode:vertical-lr;
  -ms-writing-mode:tb-lr;
  transform:rotate(180deg);
}
.b-sch-vertical .b-sch-timerange.b-over-resize-handle{
  cursor:ns-resize;
}
.b-sch-vertical .b-timeline-subgrid .b-sch-timerange{
  height:auto;
  width:inherit;
}
.b-sch-vertical .b-timeline-subgrid .b-sch-line{
  border-top:2px solid #fab005;
  color:#fff;
  padding:0;
  height:1px;
}
.b-sch-vertical .b-timeline-subgrid .b-sch-line label{
  background-color:#fab005;
  padding:0.3em;
  white-space:nowrap;
}
.b-timeranges-header-canvas .b-sch-timerange{
  pointer-events:all;
}
.b-grid-header .b-sch-timerange{
  flex-direction:row;
  justify-content:center;
  bottom:0;
  background-color:rgb(160.5, 210, 250);
  color:#fff;
  line-height:1em;
  padding:0.5em 0;
  -webkit-user-select:none;
  user-select:none;
}
.b-grid-header .b-sch-timerange.b-sch-line{
  padding:0.5em;
  background-color:#fab005;
  z-index:10;
}
.b-grid-header .b-sch-timerange.b-sch-current-time{
  background-color:#fa5252;
}
.b-grid-header .b-sch-timerange:before{
  margin-inline-end:0.5em;
}
.b-grid-header .b-sch-timerange label{
  padding:0;
}
.b-grid-header.b-sch-timeaxiscolumn-levels-1 .b-sch-range{
  height:100%;
}
.b-grid-header.b-sch-timeaxiscolumn-levels-2 .b-sch-range{
  height:calc(50% + 1px);
}
.b-grid-header.b-sch-timeaxiscolumn-levels-3 .b-sch-range{
  height:calc(33.3333333333% + 1px);
}
.b-grid-header.b-sch-timeaxiscolumn-levels-4 .b-sch-range{
  height:calc(25% + 1px);
}
.b-grid-header.b-sch-timeaxiscolumn-levels-5 .b-sch-range{
  height:calc(20% + 1px);
}
.b-grid-header .b-sch-line{
  border-bottom-right-radius:5px;
  border-top-right-radius:5px;
}
.b-grid-header .b-sch-line.b-rtl{
  border-bottom-right-radius:0;
  border-top-right-radius:0;
  border-bottom-left-radius:5px;
  border-top-left-radius:5px;
}
.b-grid-header .b-sch-line.b-sch-timerange-with-headerlabel label{
  inset-inline-start:-2px;
}
.b-sch-vertical .b-grid-subgrid-locked .b-sch-timerange{
  flex-direction:column;
  justify-content:center;
  inset-inline-end:0;
  background-color:rgb(160.5, 210, 250);
  color:#fff;
  width:2em;
  -webkit-user-select:none;
  user-select:none;
}
.b-sch-vertical .b-grid-subgrid-locked .b-sch-timerange:before{
  margin-bottom:0.5em;
}
.b-sch-vertical .b-grid-subgrid-locked .b-sch-line{
  border-bottom-left-radius:5px;
  border-bottom-right-radius:5px;
}
.b-sch-vertical .b-grid-subgrid-locked .b-sch-line.b-sch-timerange-with-headerlabel label{
  inset-block-start:-2px;
}
.b-sch-timeranges-with-headerelements .b-timeline-subgrid .b-sch-range:before{
  display:none;
}
.b-dragging-timerange .b-sch-timerange:not(.b-dragging){
  pointer-events:none;
}
.b-locked-rows-clone .b-sch-timerange label{
  display:none;
}
.b-sch-timeaxiscolumn .b-selected-time-span,
.b-verticaltimeaxiscolumn .b-selected-time-span{
  background:#42A5F5;
  color:#fff;
  justify-content:space-between;
  padding:0.4em;
  opacity:1;
}
.b-sch-timeaxiscolumn .b-selected-time-span span,
.b-verticaltimeaxiscolumn .b-selected-time-span span{
  white-space:nowrap;
  overflow:hidden;
}
.b-sch-timeaxiscolumn .b-selected-time-span .b-selection-start,
.b-sch-timeaxiscolumn .b-selected-time-span .b-selection-end,
.b-verticaltimeaxiscolumn .b-selected-time-span .b-selection-start,
.b-verticaltimeaxiscolumn .b-selected-time-span .b-selection-end{
  align-self:flex-end;
}
.b-sch-timeaxiscolumn .b-selected-time-span .b-icon-close, .b-sch-timeaxiscolumn .b-selected-time-span .b-popup-close:before,
.b-verticaltimeaxiscolumn .b-selected-time-span .b-icon-close,
.b-verticaltimeaxiscolumn .b-selected-time-span .b-popup-close:before{
  position:absolute;
  top:0.2em;
  right:0.4em;
  cursor:pointer;
}
.b-timelinebase.b-rtl .b-sch-timeaxiscolumn .b-selected-time-span .b-icon-close, .b-timelinebase.b-rtl .b-sch-timeaxiscolumn .b-selected-time-span .b-popup-close:before,
.b-timelinebase.b-rtl .b-verticaltimeaxiscolumn .b-selected-time-span .b-icon-close,
.b-timelinebase.b-rtl .b-verticaltimeaxiscolumn .b-selected-time-span .b-popup-close:before{
  left:0.4em;
  right:auto;
}
.b-sch-timeaxiscolumn .b-selected-time-span{
  font-size:0.7em;
}
.b-verticaltimeaxiscolumn .b-selected-time-span{
  width:calc(100% - 2em);
}
.b-verticaltimeaxiscolumn .b-selected-time-span span{
  font-size:0.7em;
}
.b-verticaltimeaxiscolumn .b-selected-time-span .b-icon-close, .b-verticaltimeaxiscolumn .b-selected-time-span .b-popup-close:before{
  left:0.4em;
}
.b-grid-header .b-selected-time-span,
.b-timeline-subgrid .b-selected-time-span,
.b-verticaltimeaxiscolumn .b-selected-time-span{
  transition:none;
  z-index:10;
}
.b-timeline-subgrid .b-selected-time-span{
  background:rgba(160.5, 210, 250, 0.2);
}
.b-treesummary .b-tick-cell-canvas{
  z-index:5;
}
.b-sch-tick-summary-cell{
  position:absolute;
  contain:strict;
  align-items:center;
  justify-content:center;
  pointer-events:all;
}
.b-sch-tick-summary-cell .b-tree-summary-cell{
  font-size:14px;
}
.b-sch-tick-summary-cell > div{
  height:100%;
}
.b-tree-summary-cell{
  display:flex;
  flex:1;
  justify-content:center;
  height:100%;
  gap:1px;
  align-items:center;
  font-weight:400;
}
.b-tree-summary-cell:empty{
  visibility:hidden;
}
.b-timeranges-header-canvas .b-sch-nonworkingtime{
  background-color:rgba(240, 213, 213, 0.3);
  z-index:5;
  pointer-events:none;
}
.b-sch-nonworkingtime{
  z-index:3;
}
.b-timelinebase-ui-plain .b-timeranges-header-canvas .b-sch-nonworkingtime{
  background-color:transparent;
}
.b-sch-clockwrap{
  display:flex;
}
.b-sch-clockwrap:not(:first-child){
  margin-top:0.3em;
}
.b-sch-clock{
  position:relative;
  height:21px;
  width:21px;
  min-width:21px;
  white-space:nowrap;
}
.b-sch-clock .b-sch-hour-indicator{
  border-top:2px solid transparent;
  border-bottom:6px solid #777;
}
.b-sch-clock .b-sch-minute-indicator{
  border-top:8px solid #777;
}
.b-sch-clock .b-sch-minute-indicator,
.b-sch-clock .b-sch-hour-indicator{
  position:absolute;
  left:50%;
  top:1px;
  width:2px;
  height:8px;
  overflow:hidden;
  margin-inline-start:-1px;
  transform-origin:50% 100%;
}
.b-sch-clock-hour .b-sch-clock{
  border:2px solid #2196f3;
  background-color:#fff;
  border-radius:100%;
}
.b-sch-clock-hour .b-sch-clock-dot{
  position:absolute;
  left:50%;
  top:50%;
  width:4px;
  height:4px;
  margin-inline-start:-2px;
  margin-top:-2px;
  background:#777;
  border-radius:3px;
  z-index:2;
}
.b-sch-clock-day .b-sch-clock{
  background-color:#fff;
  border:none;
  border-radius:2px;
}
.b-sch-clock-day .b-sch-clock .b-sch-hour-indicator{
  width:inherit;
  position:static !important;
  background-color:#2196f3;
  border-top-left-radius:2px;
  border-top-right-radius:2px;
  font-size:7px;
  line-height:8px;
  text-align:center;
  color:#fff;
  height:9px;
  text-indent:0;
  margin-top:-1px;
  margin-inline-start:0;
  border:0 none;
  transform:none !important;
}
.b-sch-clock-day .b-sch-clock .b-sch-minute-indicator{
  width:inherit;
  color:#555;
  position:static !important;
  height:16px;
  background-color:transparent;
  font-size:10px;
  text-align:center;
  text-indent:0;
  line-height:12px;
  border:none;
  margin-inline-start:0;
  transform:none !important;
}
.b-sch-clock-day .b-sch-clock-dot{
  display:none;
}
.b-sch-clock-text{
  margin-inline-start:8px;
  padding-top:1px;
  white-space:nowrap;
  width:100%;
}
.b-sticky-headers .b-grid-header,
.b-sticky-headers .b-timeaxis,
.b-sticky-headers .b-sticky-header,
.b-sticky-headers .b-sch-header-timeaxis-cell,
.b-sticky-headers .b-resourceheader,
.b-sticky-headers .b-resourceheader-group-cell,
.b-sticky-headers .b-resourceheader-group-text-wrap{
  overflow:visible;
}
.b-sticky-headers .b-sch-header-text.b-sticky-header{
  position:sticky;
}
.b-sticky-headers .b-horizontaltimeaxis .b-sch-header-text.b-sticky-header{
  inset-inline-start:0;
  padding-inline:0.75em;
}
.b-sticky-headers .b-resourceheader-group-cell .b-resourceheader-group-text-wrap > span{
  position:sticky;
  inset-inline-start:0;
  padding-inline:0.75em;
}
.b-sticky-headers .b-verticaltimeaxis .b-sch-header-text.b-sticky-header{
  top:0.15em;
}
.b-sticky-headers .b-verticaltimeaxis .b-sch-header-row-0 .b-sch-header-text.b-sticky-header{
  padding-top:0.5em;
}
.b-sticky-headers .b-verticaltimeaxis .b-sch-header-row.b-lowest .b-sch-header-text.b-sticky-header{
  padding-bottom:0.5em;
}
body:not(.b-using-keyboard) .b-sch-timeaxis-cell:focus, body:not(.b-using-keyboard) .b-sch-timeaxis-cell:focus-within{
  outline:none !important;
}
.b-sch-header-timeaxis-cell{
  align-items:center;
}
.b-timelinebase:not(.b-column-resizing):not(.b-row-reordering) .b-grid-header-container:not(.b-dragging-header) .b-sch-timeaxiscolumn:hover, .b-timelinebase:not(.b-column-resizing):not(.b-row-reordering) .b-grid-header-container:not(.b-dragging-header) .b-sch-timeaxiscolumn:focus{
  background:transparent;
}
.b-timelinehistogram .b-grid-row{
  z-index:3;
}
.b-timelinehistogram .b-timelinehistogram-cell{
  padding:0;
  border-inline-end-width:0;
}
.b-timelinehistogram .b-timeline-subgrid .b-grid-cell.b-focused::after{
  display:none;
}
.b-timelinehistogram-histogram{
  padding:0;
  background-color:transparent;
}
.b-sch-column.b-grid-header{
  padding:0;
}
.b-grid-header-container .b-sch-timeaxiscolumn{
  -webkit-user-select:none;
  user-select:none;
  padding:0;
  flex-grow:unset !important;
  background-color:#fafafa;
  border-inline-end:0 none;
}
.b-grid-header-container .b-sch-timeaxiscolumn .b-sch-header-timeaxis-cell:hover{
  background-color:rgb(237.25, 237.25, 237.25);
}
.b-timelinebase-ui-plain .b-grid-header-container .b-sch-timeaxiscolumn{
  background-color:transparent;
}
.b-horizontaltimeaxis{
  flex-direction:column;
  flex:1 0 100%;
}
.b-horizontaltimeaxis .b-sch-header-row{
  flex:1 0 2em;
}
.b-horizontaltimeaxis .b-sch-header-row.b-sch-header-row-0.b-lowest{
  flex:1;
}
.b-horizontaltimeaxis .b-sch-header-timeaxis-cell{
  height:100%;
  border-inline-start:1px solid transparent;
}
.b-horizontaltimeaxis .b-sch-header-timeaxis-cell:hover{
  cursor:pointer;
  background-color:rgb(237.25, 237.25, 237.25);
}
.b-horizontaltimeaxis .b-sch-header-timeaxis-cell.b-last .b-sch-header-text{
  overflow:hidden;
}
.b-sch-timeaxiscolumn-levels-1{
  min-height:1.5em;
}
.b-sch-timeaxiscolumn-levels-2{
  min-height:3em;
}
.b-sch-timeaxiscolumn-levels-3{
  min-height:4.5em;
}
.b-sch-header-row{
  position:relative;
  contain:strict;
}
.b-sch-header-row:last-child .b-sch-header-timeaxis-cell{
  border-bottom:none;
}
.b-sch-header-timeaxis-cell{
  display:flex;
  justify-content:center;
  position:absolute;
  color:#757575;
  border-bottom:1px solid transparent;
  overflow:hidden;
  transition:background-color 0.2s;
  font-size:1em;
  font-weight:500;
  padding:0.5em 0 0.5em 0;
  white-space:nowrap;
  contain:strict;
  -webkit-user-select:none;
  user-select:none;
}
.b-sch-header-timeaxis-cell.b-align-start .b-sch-header-text, .b-sch-header-timeaxis-cell.b-align-end .b-sch-header-text{
  padding-inline-start:0.75em;
  padding-inline-end:0.5em;
  text-align:end;
}
.b-sch-header-timeaxis-cell.b-align-start{
  justify-content:flex-start;
}
.b-sch-header-timeaxis-cell.b-align-end{
  justify-content:flex-end;
}
.b-schedulerbase.b-fill-last-column .b-sch-timeaxiscolumn:last-child{
  border-inline-end-color:transparent;
}
.b-sch-header-timeaxis-cell[data-tick-index="0"]{
  border-inline-start:0;
}
.b-timelinebase:not(.b-sch-vertical) .b-grid-header-container{
  border-bottom:0;
}
.b-timelinebase:not(.b-sch-vertical) .b-header:not(.b-grid-header-scroller-normal) .b-grid-headers,
.b-timelinebase:not(.b-sch-vertical) .b-horizontaltimeaxis{
  border-bottom:1px solid transparent;
}
.b-timelinebase-ui-plain .b-sch-timeaxiscolumn{
  background-color:transparent;
}
.b-timelinebase-ui-plain .b-sch-header-timeaxis-cell{
  border-bottom-color:transparent;
  border-inline-start-color:transparent;
}
.b-verticaltimeaxiscolumn{
  flex-flow:column nowrap;
  align-items:stretch;
  padding:0;
  border-inline-end:none;
  background-color:rgb(250.15, 250.15, 250.15) !important;
}
.b-verticaltimeaxiscolumn.b-grid-cell.b-focused:after{
  display:none;
}
.b-verticaltimeaxis{
  flex:1 0 100%;
  contain:strict;
}
.b-verticaltimeaxis .b-sch-header-row{
  flex-direction:column;
  flex:1;
}
.b-verticaltimeaxis .b-sch-header-timeaxis-cell{
  width:100%;
  text-transform:none;
  padding:0;
  border-inline-start:0 none;
}
.b-verticaltimeaxis .b-sch-header-row.b-lowest .b-sch-header-timeaxis-cell{
  border-inline-end:none;
  border-bottom:none;
  justify-content:flex-end;
  align-items:flex-start;
  contain:unset;
  overflow:visible;
}
.b-verticaltimeaxis .b-sch-header-row.b-lowest .b-sch-header-timeaxis-cell .b-sch-header-text{
  padding-inline-end:0.5em;
}
body:not(.b-export) .b-verticaltimeaxis .b-sch-header-row.b-lowest .b-sch-header-timeaxis-cell .b-sch-header-text{
  margin-top:-0.75em;
}
.b-verticaltimeaxis .b-sch-header-row.b-lowest .b-sch-header-timeaxis-cell:hover{
  background-color:#fafafa;
}
.b-verticaltimeaxis .b-sch-header-row:not(.b-lowest){
  flex:0 0 2em;
}
.b-verticaltimeaxis .b-sch-header-row:not(.b-lowest) .b-sch-header-timeaxis-cell{
  align-items:flex-start;
  border-inline-end:1px solid transparent;
}
.b-verticaltimeaxis .b-sch-header-row:not(.b-lowest) .b-sch-header-text{
  padding-bottom:0.75em;
  writing-mode:vertical-lr;
  -ms-writing-mode:tb-lr;
  transform:rotate(180deg);
}
.b-sch-vertical .b-sticky-headers .b-grid-vertical-scroller,
.b-sch-vertical .b-sticky-headers .b-content-element,
.b-sch-vertical .b-sticky-headers .b-grid-subgrid-locked,
.b-sch-vertical .b-sticky-headers .b-verticaltimeaxis-row,
.b-sch-vertical .b-sticky-headers .b-verticaltimeaxiscolumn,
.b-sch-vertical .b-sticky-headers .b-verticaltimeaxis,
.b-sch-vertical .b-sticky-headers .b-sch-header-row,
.b-sch-vertical .b-sticky-headers .b-sch-header-timeaxis-cell{
  overflow:visible;
}
.b-sch-vertical .b-sch-timeaxiscolumn{
  flex-direction:row;
  min-height:3em;
}
.b-resourceheader{
  flex:1;
  position:relative;
  contain:strict;
}
.b-resourceheader.b-has-images{
  min-height:3em;
}
.b-resourceheader.b-grouped{
  height:6em;
}
.b-firefox .b-sticky-headers .b-resourceheader{
  contain:style paint layout;
}
.b-resourceheader-group-cell{
  position:absolute;
  display:flex;
  align-items:stretch;
  flex-direction:column;
  height:100%;
}
.b-resourceheader-group-cell > div.b-resourceheader-group-text-wrap{
  padding:0.5em 0;
  display:flex;
  width:100%;
  justify-content:center;
  align-items:center;
  border-bottom:1px solid transparent;
  border-inline-end:1px solid transparent;
}
.b-resourceheader-group-cell .b-resourceheader-group-children{
  position:relative;
  height:100%;
}
.b-resourceheader-cell{
  position:absolute;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#757575;
  border-inline-end:1px solid transparent;
  overflow:hidden;
  transition:background-color 0.2s;
  font-size:1em;
  font-weight:500;
  padding:0.5em;
  white-space:nowrap;
  contain:strict;
  height:100%;
  -webkit-user-select:none;
  user-select:none;
}
.b-animating .b-resourceheader-cell{
  transition:width 0.2s, left 0.2s, right 0.2s;
}
.b-resourceheader-cell:hover{
  cursor:pointer;
  background-color:rgb(237.25, 237.25, 237.25);
}
.b-resourceheader-cell:focus-visible{
  outline:2px solid #2196f3;
  outline-offset:-2px;
}
.b-resourceheader-cell.b-align-start, .b-resourceheader-cell.b-align-end{
  padding-inline:0.3em;
}
.b-resourceheader-cell.b-align-start{
  justify-content:flex-start;
}
.b-resourceheader-cell.b-align-end{
  justify-content:flex-end;
}
.b-resourceheader-cell i{
  margin-inline-end:0.5em;
}
.b-resourceheader-cell .b-resource-name{
  overflow:hidden;
}
.b-resourceheader-cell .b-resource-avatar{
  margin-inline-end:1em;
}
.b-recurrenceconfirmationpopup.b-popup{
  width:29em;
  max-width:none;
}
.b-recurrenceconfirmationpopup.b-popup .b-recurrenceconfirmationpopup-header,
.b-recurrenceconfirmationpopup.b-popup .b-recurrenceconfirmationpopup-content{
  padding:0.65em;
}
.b-recurrenceconfirmationpopup.b-popup .b-bottom-toolbar > button{
  margin-inline-end:0.5em;
}
.b-recurrenceconfirmationpopup.b-popup .b-bottom-toolbar > button:last-child{
  margin-inline-end:0;
}
button.b-button.b-recurrencelegendbutton{
  white-space:normal;
}
.b-recurrenceeditor .b-panel{
  --panel-background-color:inherit;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content{
  padding:0;
  column-gap:1em;
  display:grid;
  grid-template-columns:auto 1fr 1fr;
  justify-content:normal;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content > .b-field:not(.b-no-span):not(.b-label-with-checkbox):not(.b-buttongroup){
  display:contents;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content > .b-field:not(.b-no-span):not(.b-label-with-checkbox):not(.b-buttongroup):not(.b-no-inner-span) .b-field-inner{
  grid-column:span 2;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content > .b-field[data-ref=emptyMonthsHiddenField] .b-field-inner{
  border-width:0;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-recurrencedayscombo, .b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-recurrencepositionscombo{
  width:auto;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-buttongroup{
  gap:0.5em;
  grid-column:span 2;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-buttongroup.b-recurrencedaysbuttongroup .b-button{
  flex:1 1 100%;
  min-width:auto;
  padding-inline:0;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-buttongroup.b-recurrencemonthsbuttongroup{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-buttongroup.b-recurrencemonthdaysbuttongroup{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-buttongroup.b-recurrencemonthdaysbuttongroup .b-button{
  min-height:2em;
  min-width:0;
  padding:0;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-space-above{
  margin-block-start:1.5em;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-space-below{
  margin-block-end:1.5em;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-button-group-label{
  margin-inline-end:1em;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-checkbox.b-label-with-checkbox .b-field-inner{
  justify-content:flex-end;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-checkbox.b-label-with-checkbox .b-label{
  flex:1 1 100%;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-content.b-panel-content .b-combo-picker .b-recurrencepositions-split{
  border-top-style:solid;
  border-top-color:#212121;
}
.b-recurrenceeditor .b-bottom-toolbar .b-label-filler{
  display:none;
}
.b-recurrenceeditor .b-bottom-toolbar button{
  flex:1;
}
.b-schedulerpro-taskeditor .b-recurrenceeditor .b-buttongroup{
  font-size:0.8em;
}
.b-daybuttons .b-button.b-pressed{
  box-shadow:none;
}
.b-daybuttons .b-button.b-pressed.b-raised{
  background-image:none;
}
.b-daybuttons .b-button.b-raised{
  border:0 solid rgb(var(--widget-primary-color-rgb));
}
.b-datepicker .b-icon-circle{
  font-size:50%;
  color:#2196f3;
  margin-top:1px;
}
.b-datepicker .b-selected-date .b-icon-circle{
  color:#fff;
}
.b-datepicker .b-cell-events-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:80%;
  background-color:#f44336;
  color:#fff;
  width:1.3em;
  height:1.3em;
}
.b-datepicker-with-events .b-calendar-weekdays{
  padding-bottom:4px;
}
.b-datepicker-with-events .b-calendar-week .b-calendar-cell{
  margin:1px 1px;
  justify-content:flex-start;
}
.b-datepicker-with-events .b-calendar-week .b-calendar-cell .b-datepicker-cell-inner{
  margin-bottom:0.4em;
}
.b-datepicker-with-events .b-show-events-heatmap .b-datepicker-1-to-3-events .b-datepicker-cell-inner{
  background-color:#f9f69e;
}
.b-datepicker-with-events .b-show-events-heatmap .b-datepicker-4-to-6-events .b-datepicker-cell-inner{
  background-color:#f9d49e;
}
.b-datepicker-with-events .b-show-events-heatmap .b-datepicker-7-or-more-events .b-datepicker-cell-inner{
  background-color:#f9bdb3;
}
.b-resourcecombo .b-resource-icon{
  display:none;
  margin-inline:0.5em 0;
}
.b-resourcecombo.b-show-event-color:not(.b-uses-chipview) .b-resource-icon{
  display:block;
}
.b-resourcecombo-picker .b-icon, .b-resourcecombo-picker .b-indicator.b-constraint-type-muststarton, .b-resourcecombo-picker .b-indicator.b-constraint-type-mustfinishon, .b-resourcecombo-picker .b-indicator.b-deadline-date, .b-resourcecombo-picker .b-icon-version{
  display:none;
  margin-inline-end:0.5em;
}
.b-resourcecombo-picker.b-multiselect .b-icon, .b-resourcecombo-picker.b-multiselect .b-indicator.b-constraint-type-muststarton, .b-resourcecombo-picker.b-multiselect .b-indicator.b-constraint-type-mustfinishon, .b-resourcecombo-picker.b-multiselect .b-indicator.b-deadline-date, .b-resourcecombo-picker.b-multiselect .b-icon-version, .b-resourcecombo-picker.b-show-event-color .b-icon, .b-resourcecombo-picker.b-show-event-color .b-indicator.b-constraint-type-muststarton, .b-resourcecombo-picker.b-show-event-color .b-indicator.b-constraint-type-mustfinishon, .b-resourcecombo-picker.b-show-event-color .b-indicator.b-deadline-date, .b-resourcecombo-picker.b-show-event-color .b-icon-version{
  display:block;
}
.b-resourcecombo-picker.b-multiselect .b-selected .b-icon-square:before, .b-resourcecombo-picker.b-show-event-color .b-selected .b-icon-square:before{
  content:"\f14a";
}
.b-theme-material .b-resourcecombo .b-resource-icon{
  margin-inline:0 0.5em;
}
.b-resourcefilter .b-list-item{
  border:0 none;
  border-radius:0;
  padding-inline:0.5em;
}
.b-resourcefilter.b-list.b-multiselect .b-selected-icon{
  background:transparent;
  opacity:0.6;
  font-size:80%;
  visibility:visible;
  --widget-primary-color-rgb:inherit;
  --checkbox-background-color:hsl(var(--event-primary-color-h, 0deg), var(--event-primary-color-s, 0%), var(--event-primary-color-l, 25.8823529412%));
  --checkbox-checked-background-color:var(--checkbox-background-color);
  --checkbox-unchecked-background-color:var(--checkbox-background-color);
  --checkbox-checked-check-color:var(--color-white);
  --checkbox-unchecked-check-color:transparent;
}
.b-resourcefilter.b-list.b-multiselect .b-selected .b-selected-icon{
  visibility:visible;
  opacity:1;
}
.b-sch-red{
  background-color:#EF5350;
}
.b-sch-foreground-red{
  color:#EF5350;
}
.b-sch-pink{
  background-color:#EC407A;
}
.b-sch-foreground-pink{
  color:#EC407A;
}
.b-sch-purple{
  background-color:#AB47BC;
}
.b-sch-foreground-purple{
  color:#AB47BC;
}
.b-sch-deep-purple{
  background-color:#4527a0;
}
.b-sch-foreground-deep-purple{
  color:#4527a0;
}
.b-sch-violet{
  background-color:#7E57C2;
}
.b-sch-foreground-violet{
  color:#7E57C2;
}
.b-sch-magenta{
  background-color:#ff4dff;
}
.b-sch-foreground-magenta{
  color:#ff4dff;
}
.b-sch-indigo{
  background-color:#5C6BC0;
}
.b-sch-foreground-indigo{
  color:#5C6BC0;
}
.b-sch-blue{
  background-color:#42A5F5;
}
.b-sch-foreground-blue{
  color:#42A5F5;
}
.b-sch-light-blue{
  background-color:#8ac2e3;
}
.b-sch-foreground-light-blue{
  color:#8ac2e3;
}
.b-sch-cyan{
  background-color:#26C6DA;
}
.b-sch-foreground-cyan{
  color:#26C6DA;
}
.b-sch-teal{
  background-color:#26A69A;
}
.b-sch-foreground-teal{
  color:#26A69A;
}
.b-sch-green{
  background-color:#66BB6A;
}
.b-sch-foreground-green{
  color:#66BB6A;
}
.b-sch-light-green{
  background-color:#a5d8a7;
}
.b-sch-foreground-light-green{
  color:#a5d8a7;
}
.b-sch-lime{
  background-color:#D4E157;
}
.b-sch-foreground-lime{
  color:#D4E157;
}
.b-sch-gantt-green{
  background-color:#a5d8a7;
}
.b-sch-foreground-gantt-green{
  color:#a5d8a7;
}
.b-sch-yellow{
  background-color:#FDD835;
}
.b-sch-foreground-yellow{
  color:#FDD835;
}
.b-sch-orange{
  background-color:#FFA726;
}
.b-sch-foreground-orange{
  color:#FFA726;
}
.b-sch-amber{
  background-color:#ff8f00;
}
.b-sch-foreground-amber{
  color:#ff8f00;
}
.b-sch-deep-orange{
  background-color:#ff7043;
}
.b-sch-foreground-deep-orange{
  color:#ff7043;
}
.b-sch-light-gray{
  background-color:#e0e0e7;
}
.b-sch-foreground-light-gray{
  color:#e0e0e7;
}
.b-sch-gray{
  background-color:#a0a0a0;
}
.b-sch-foreground-gray{
  color:#a0a0a0;
}
.b-sch-black{
  background-color:#000;
}
.b-sch-foreground-black{
  color:#000;
}
.b-sch-color-red{
  --event-primary-color-h:1.1320754717deg;
  --event-primary-color-s:83.2460732984%;
  --event-primary-color-l:62.5490196078%;
}
.b-sch-color-pink{
  --event-primary-color-h:339.7674418605deg;
  --event-primary-color-s:81.9047619048%;
  --event-primary-color-l:58.8235294118%;
}
.b-sch-color-purple{
  --event-primary-color-h:291.2820512821deg;
  --event-primary-color-s:46.6135458167%;
  --event-primary-color-l:50.7843137255%;
}
.b-sch-color-deep-purple{
  --event-primary-color-h:254.8760330579deg;
  --event-primary-color-s:60.8040201005%;
  --event-primary-color-l:39.0196078431%;
}
.b-sch-color-violet{
  --event-primary-color-h:261.8691588785deg;
  --event-primary-color-s:46.7248908297%;
  --event-primary-color-l:55.0980392157%;
}
.b-sch-color-indigo{
  --event-primary-color-h:231deg;
  --event-primary-color-s:44.2477876106%;
  --event-primary-color-l:55.6862745098%;
}
.b-sch-color-blue{
  --event-primary-color-h:206.8156424581deg;
  --event-primary-color-s:89.9497487437%;
  --event-primary-color-l:60.9803921569%;
}
.b-sch-color-light-blue{
  --event-primary-color-h:202.2471910112deg;
  --event-primary-color-s:61.3793103448%;
  --event-primary-color-l:71.568627451%;
}
.b-sch-color-cyan{
  --event-primary-color-h:186.6666666667deg;
  --event-primary-color-s:70.8661417323%;
  --event-primary-color-l:50.1960784314%;
}
.b-sch-color-magenta{
  --event-primary-color-h:300deg;
  --event-primary-color-s:100%;
  --event-primary-color-l:65.0980392157%;
}
.b-sch-color-teal{
  --event-primary-color-h:174.375deg;
  --event-primary-color-s:62.7450980392%;
  --event-primary-color-l:40%;
}
.b-sch-color-green{
  --event-primary-color-h:122.8235294118deg;
  --event-primary-color-s:38.4615384615%;
  --event-primary-color-l:56.6666666667%;
}
.b-sch-color-light-green{
  --event-primary-color-h:122.3529411765deg;
  --event-primary-color-s:39.5348837209%;
  --event-primary-color-l:74.7058823529%;
}
.b-sch-color-lime{
  --event-primary-color-h:65.652173913deg;
  --event-primary-color-s:69.696969697%;
  --event-primary-color-l:61.1764705882%;
}
.b-sch-color-yellow{
  --event-primary-color-h:48.9deg;
  --event-primary-color-s:98.0392156863%;
  --event-primary-color-l:60%;
}
.b-sch-color-amber{
  --event-primary-color-h:33.6470588235deg;
  --event-primary-color-s:100%;
  --event-primary-color-l:50%;
}
.b-sch-color-orange{
  --event-primary-color-h:35.668202765deg;
  --event-primary-color-s:100%;
  --event-primary-color-l:57.4509803922%;
}
.b-sch-color-deep-orange{
  --event-primary-color-h:14.3617021277deg;
  --event-primary-color-s:100%;
  --event-primary-color-l:63.137254902%;
}
.b-sch-color-gray{
  --event-primary-color-h:0deg;
  --event-primary-color-s:0%;
  --event-primary-color-l:62.7450980392%;
}
.b-sch-color-light-gray{
  --event-primary-color-h:240deg;
  --event-primary-color-s:12.7272727273%;
  --event-primary-color-l:89.2156862745%;
}
.b-sch-color-gantt-green{
  --event-primary-color-h:122.3529411765deg;
  --event-primary-color-s:39.5348837209%;
  --event-primary-color-l:74.7058823529%;
}
.b-sch-color-black{
  --event-primary-color-h:0deg;
  --event-primary-color-s:0%;
  --event-primary-color-l:0%;
}
.b-sch-style-interday > .b-sch-event,
.b-sch-style-interday > .b-sch-event > .b-sch-event-segments > .b-sch-event,
.b-sch-style-plain > .b-sch-event,
.b-sch-style-plain > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-s-factor:1;
  --event-l-factor:1;
  --event-hover-s-factor:1.3;
  --event-hover-l-factor:0.6;
  --event-selected-hover-s-factor:1.4;
  --event-selected-hover-l-factor:0.55;
}
.b-sch-style-interday .b-sch-event{
  opacity:0.8;
  border-radius:3px;
}
.b-sch-style-interday .b-sch-event-content{
  font-weight:400;
}
.b-sch-style-plain.b-sch-custom-color > .b-sch-event:not(.b-milestone){
  background-color:currentColor;
}
.b-sch-style-plain.b-sch-custom-color > .b-sch-event:not(.b-milestone):hover, .b-sch-style-plain.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected, .b-sch-style-plain.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected:hover{
  background-color:currentColor;
  background-image:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
.b-sch-style-plain.b-sch-custom-color > .b-sch-event:not(.b-milestone) > .b-sch-event-content{
  color:#fff;
}
.b-sch-style-plain.b-sch-custom-color > .b-sch-event.b-milestone .b-sch-event-content::before{
  background-color:currentColor;
}
.b-sch-style-plain.b-sch-custom-color > .b-sch-event.b-milestone:hover .b-sch-event-content::before, .b-sch-style-plain.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected .b-sch-event-content::before, .b-sch-style-plain.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected:hover .b-sch-event-content::before{
  background-image:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
.b-sch-layout-milestone-text-position-inside .b-sch-event-wrap.b-milestone-wrap .b-milestone{
  display:flex;
  justify-content:center;
  align-items:center;
}
.b-sch-layout-milestone-text-position-inside .b-sch-event-wrap.b-milestone-wrap .b-milestone label{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  color:inherit;
}
.b-sch-style-border > .b-sch-event,
.b-sch-style-border > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-border-color:hsl(
          var(--event-background-h),
          var(--event-background-s),
          calc(var(--event-background-l) * 0.7)
  );
  --event-hover-color:#fff;
  --event-hover-l-factor:0.7;
  --event-selected-hover-l-factor:0.6;
  --event-border-style:solid;
  --event-border-radius:3px;
  --event-border-width:1px;
  --event-opacity:.8;
  --event-hover-opacity:1;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-sch-style-border > .b-sch-event.b-milestone > .b-sch-event-content{
  font-size:12px;
}
.b-sch-style-border.b-sch-custom-color > .b-sch-event:not(.b-milestone){
  background-color:currentColor;
  background-image:linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  border-color:currentColor;
}
.b-sch-style-border.b-sch-custom-color > .b-sch-event:not(.b-milestone) .b-sch-event-content{
  color:#fff;
}
.b-sch-style-border.b-sch-custom-color > .b-sch-event:not(.b-milestone):hover, .b-sch-style-border.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-resizing, .b-sch-style-border.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected, .b-sch-style-border.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected:hover{
  background-color:currentColor;
  background-image:none;
  border-color:currentColor;
}
.b-sch-style-border.b-sch-custom-color > .b-sch-event.b-milestone .b-sch-event-content::before{
  background-color:currentColor;
  background-image:linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  border-color:currentColor;
}
.b-sch-style-hollow > .b-sch-event,
.b-sch-style-hollow > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-s-factor:0;
  --event-l-factor:2;
  --event-a:0.2;
  --event-hover-s-factor:1;
  --event-hover-l-factor:1;
  --event-hover-a:1;
  --event-selected-hover-l-factor:0.8;
  --event-color:var(--event-primary-color);
  --event-hover-color:#fff;
  --event-border-width:2px;
  --event-border-radius:3px;
  --event-opacity:.8;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-sch-style-hollow > .b-sch-event.b-milestone > .b-sch-event-content{
  font-size:12px;
  font-weight:500;
}
.b-sch-style-hollow.b-sch-custom-color > .b-sch-event{
  border-color:currentColor;
}
.b-sch-style-hollow.b-sch-custom-color > .b-sch-event:not(.b-milestone):hover, .b-sch-style-hollow.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected, .b-sch-style-hollow.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-resizing, .b-sch-style-hollow.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected:hover{
  background-color:currentColor;
}
.b-sch-style-hollow.b-sch-custom-color > .b-sch-event:not(.b-milestone):hover .b-sch-event-content, .b-sch-style-hollow.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected .b-sch-event-content, .b-sch-style-hollow.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-resizing .b-sch-event-content, .b-sch-style-hollow.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected:hover .b-sch-event-content{
  color:#fff;
}
.b-sch-style-hollow.b-sch-custom-color > .b-sch-event.b-milestone .b-sch-event-content::before{
  background-color:rgba(255, 255, 255, 0.5);
}
.b-sch-style-hollow.b-sch-custom-color > .b-sch-event.b-milestone:hover .b-sch-event-content::before, .b-sch-style-hollow.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected .b-sch-event-content::before, .b-sch-style-hollow.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-resizing .b-sch-event-content::before, .b-sch-style-hollow.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected:hover .b-sch-event-content::before{
  background-color:currentColor;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event,
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event,
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event,
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-background-l:90%;
  --event-border-width:3px;
  --event-color:hsl(var(--event-primary-color-h), var(--event-primary-color-s), calc(var(--event-primary-color-l) * 0.8));
  --event-border-color:hsl(var(--event-primary-color-h), var(--event-primary-color-s), calc(var(--event-primary-color-l) * 0.9));
  --event-opacity:0.8;
  --event-selected-hover-l-factor:0.8;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event:hover,
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event:hover,
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event:hover,
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event:hover{
  --event-background-l:85%;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event.b-sch-event-selected,
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-sch-event-selected,
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event.b-sch-event-selected,
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-sch-event-selected{
  --event-background-l:var(--event-primary-color-l);
  --event-color:#fff;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event:not(.b-milestone),
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone),
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event:not(.b-milestone),
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone){
  border-block-width:0;
  border-inline-end-width:0;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event.b-milestone,
.b-schedulerbase.b-sch-layout-milestones .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-milestone,
.b-schedulerbase.b-sch-layout-milestones .b-sch-style-colored.b-sch-event-wrap > .b-sch-event.b-milestone,
.b-schedulerbase.b-sch-layout-milestones .b-sch-style-colored.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-milestone{
  --event-border-width:0px;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event.b-milestone::before,
.b-schedulerbase.b-sch-layout-milestones .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-milestone::before,
.b-schedulerbase.b-sch-layout-milestones .b-sch-style-colored.b-sch-event-wrap > .b-sch-event.b-milestone::before,
.b-schedulerbase.b-sch-layout-milestones .b-sch-style-colored.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-milestone::before{
  --event-border-width:3px;
}
.b-sch-vertical .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event:not(.b-milestone),
.b-sch-vertical .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone),
.b-sch-vertical .b-sch-style-colored.b-sch-event-wrap > .b-sch-event:not(.b-milestone),
.b-sch-vertical .b-sch-style-colored.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone){
  border-top-width:3px;
  border-inline-width:0;
}
.b-sch-style-calendar.b-sch-custom-color > .b-sch-event,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event{
  border-color:currentColor;
}
.b-sch-style-calendar.b-sch-custom-color > .b-sch-event:not(.b-milestone),
.b-sch-style-colored.b-sch-custom-color > .b-sch-event:not(.b-milestone){
  background-color:currentColor;
  background-image:linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}
.b-sch-style-calendar.b-sch-custom-color > .b-sch-event:not(.b-milestone):hover, .b-sch-style-calendar.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-resizing, .b-sch-style-calendar.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event:not(.b-milestone):hover,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-resizing,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected{
  background-color:currentColor;
  background-image:linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4));
}
.b-sch-style-calendar.b-sch-custom-color > .b-sch-event:not(.b-milestone):hover .b-sch-event-content, .b-sch-style-calendar.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-resizing .b-sch-event-content, .b-sch-style-calendar.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected .b-sch-event-content,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event:not(.b-milestone):hover .b-sch-event-content,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-resizing .b-sch-event-content,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected .b-sch-event-content{
  color:#fff;
}
.b-sch-style-calendar.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected, .b-sch-style-calendar.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected:hover,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected:hover{
  background-color:currentColor;
  background-image:none;
}
.b-sch-style-calendar.b-sch-custom-color > .b-sch-event.b-milestone .b-sch-event-content::before,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event.b-milestone .b-sch-event-content::before{
  background-color:currentColor;
  background-image:linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}
.b-sch-style-calendar.b-sch-custom-color > .b-sch-event.b-milestone:hover .b-sch-event-content::before, .b-sch-style-calendar.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-resizing .b-sch-event-content::before, .b-sch-style-calendar.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected .b-sch-event-content::before,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event.b-milestone:hover .b-sch-event-content::before,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-resizing .b-sch-event-content::before,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected .b-sch-event-content::before{
  background-image:linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4));
}
.b-sch-style-calendar.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected .b-sch-event-content::before, .b-sch-style-calendar.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected:hover .b-sch-event-content::before,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected .b-sch-event-content::before,
.b-sch-style-colored.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected:hover .b-sch-event-content::before{
  background-image:none;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event, .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-background-l:97%;
  --event-selected-hover-l-factor:1;
  opacity:1;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event:hover, .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event:hover{
  --event-background-l:89%;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event.b-sch-event-selected, .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-sch-event-selected{
  --event-background-l:84%;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event.b-sch-event-selected .b-sch-event-content *, .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-sch-event-selected .b-sch-event-content *{
  font-weight:400;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event .b-sch-event-content *, .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event .b-sch-event-content *{
  font-weight:400;
  color:#606060;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event.b-sch-event-selected .b-sch-event-content *, .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-sch-event-selected .b-sch-event-content *{
  color:#606060;
}
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event:not(.b-milestone) .b-sch-event-content, .b-sch-style-calendar.b-sch-event-wrap > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone) .b-sch-event-content{
  margin:0;
  padding:0.3em;
}
.b-sch-event-wrap.b-sch-style-line > .b-sch-event,
.b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-background-color:transparent;
  --event-border-color:hsl(var(--event-primary-color-h), var(--event-primary-color-s), calc(var(--event-primary-color-l) * var(--event-l-factor)));
  --event-color:#777;
  --event-hover-color:#777;
  --event-border-width:5px;
  --event-hover-l-factor:0.8;
  --event-selected-hover-l-factor:0.7;
  justify-content:center;
  overflow:visible;
  height:auto !important;
}
.b-sch-event-wrap.b-sch-style-line > .b-sch-event .b-sch-event-content,
.b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event .b-sch-event-content{
  padding:0;
}
.b-sch-event-wrap.b-sch-style-line > .b-sch-event.b-active,
.b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-active{
  outline-offset:5px;
}
.b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone),
.b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone){
  align-self:center;
}
.b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::before, .b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::after,
.b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::before,
.b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::after{
  content:"";
  border-color:inherit;
  border-style:solid;
  border-width:0;
  position:absolute;
  border-radius:2px;
  --handle-width:unset;
  --handle-height:unset;
  --handle-inset:unset;
  --handle-opacity:unset;
  --clip-path:unset;
}
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::before, .b-sch-horizontal .b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::after,
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::before,
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::after{
  top:-9px;
  height:13px;
  border-inline-start-width:5px;
}
.b-sch-vertical .b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::before, .b-sch-vertical .b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::after,
.b-sch-vertical .b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::before,
.b-sch-vertical .b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::after{
  left:-9px;
  width:13px;
  border-top-width:5px;
}
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::before,
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::before{
  left:0;
}
.b-sch-vertical .b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::before,
.b-sch-vertical .b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::before{
  border-inline-start-width:5px;
  top:0;
}
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::after,
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::after{
  top:-9px;
  right:0;
  height:13px;
}
.b-sch-vertical .b-sch-event-wrap.b-sch-style-line > .b-sch-event:not(.b-milestone)::after,
.b-sch-vertical .b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone)::after{
  bottom:0;
}
.b-sch-event-wrap.b-sch-style-line > .b-sch-event.b-milestone,
.b-sch-event-wrap.b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-milestone{
  top:initial;
}
.b-sch-style-line.b-sch-custom-color > .b-sch-event{
  border-color:currentColor;
  opacity:0.8;
}
.b-sch-style-line.b-sch-custom-color > .b-sch-event:hover, .b-sch-style-line.b-sch-custom-color > .b-sch-event.b-sch-event-selected, .b-sch-style-line.b-sch-custom-color > .b-sch-event.b-sch-event-resizing, .b-sch-style-line.b-sch-custom-color > .b-sch-event.b-sch-event-selected:hover{
  border-color:currentColor;
  opacity:1;
}
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event,
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-background-color:transparent;
  --event-border-color:hsl(var(--event-primary-color-h), var(--event-primary-color-s), calc(var(--event-primary-color-l) * var(--event-l-factor)));
  --event-color:#777;
  --event-hover-color:#777;
  --event-border-width:5px;
  --event-border-style:dashed;
  --event-hover-l-factor:0.8;
  --event-selected-hover-l-factor:0.7;
  justify-content:center;
  overflow:visible;
}
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-dashed > .b-sch-event,
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-dashed > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  padding:5px 0 3px 0;
}
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event .b-sch-event-content,
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event > .b-sch-event-segments > .b-sch-event .b-sch-event-content{
  padding:0;
}
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event:not(.b-milestone),
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone){
  align-self:center;
}
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event.b-milestone,
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-milestone{
  top:initial;
}
.b-sch-style-dashed.b-sch-custom-color > .b-sch-event{
  border-color:currentColor;
  opacity:0.8;
}
.b-sch-style-dashed.b-sch-custom-color > .b-sch-event:hover, .b-sch-style-dashed.b-sch-custom-color > .b-sch-event.b-sch-event-selected, .b-sch-style-dashed.b-sch-custom-color > .b-sch-event.b-sch-event-resizing, .b-sch-style-dashed.b-sch-custom-color > .b-sch-event.b-sch-event-selected:hover{
  border-color:currentColor;
  opacity:1;
}
.b-sch-event-wrap.b-sch-style-minimal > .b-sch-event, .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-background-color:transparent;
  --event-border-color:hsl(var(--event-primary-color-h), var(--event-primary-color-s), calc(var(--event-primary-color-l) * var(--event-l-factor)));
  --event-color:#777;
  --event-hover-color:#777;
  --event-border-width:1px;
  --event-hover-l-factor:0.8;
  --event-selected-hover-l-factor:0.7;
  overflow:visible;
  padding:0;
}
.b-sch-event-wrap.b-sch-style-minimal > .b-sch-event:not(.b-milestone), .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone){
  font-size:10px;
}
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event:not(.b-milestone), .b-sch-horizontal .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone){
  border-width:0 0 var(--event-border-width) 0;
  align-items:flex-end;
}
.b-sch-vertical .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event:not(.b-milestone), .b-sch-vertical .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event > .b-sch-event-segments > .b-sch-event:not(.b-milestone){
  border-width:0;
  border-inline-start-width:var(--event-border-width);
  align-items:flex-start;
  padding-inline-start:0.75em;
}
.b-sch-event-wrap.b-sch-style-minimal > .b-sch-event.b-milestone .b-sch-event-content, .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-milestone .b-sch-event-content{
  font-size:20px;
  left:10px;
  position:relative;
}
.b-sch-event-wrap.b-sch-style-minimal > .b-sch-event.b-milestone .b-sch-event-content label, .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-milestone .b-sch-event-content label{
  font-size:10px;
  left:70%;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event.b-milestone{
  height:20px;
  font-size:20px;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-sch-style-minimal > .b-sch-event.b-milestone .b-sch-event-content{
  font-size:10px;
  left:0;
}
.b-sch-style-minimal.b-sch-custom-color > .b-sch-event{
  border-color:currentColor;
  opacity:0.8;
}
.b-sch-style-minimal.b-sch-custom-color > .b-sch-event .b-sch-event-content{
  color:#777;
}
.b-sch-style-minimal.b-sch-custom-color > .b-sch-event:hover, .b-sch-style-minimal.b-sch-custom-color > .b-sch-event.b-sch-event-selected, .b-sch-style-minimal.b-sch-custom-color > .b-sch-event.b-sch-event-resizing, .b-sch-style-minimal.b-sch-custom-color > .b-sch-event.b-sch-event-selected:hover{
  border-color:currentColor;
  opacity:1;
}
.b-sch-horizontal .b-sch-style-line > .b-sch-event,
.b-sch-horizontal .b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event,
.b-sch-horizontal .b-sch-style-dashed > .b-sch-event,
.b-sch-horizontal .b-sch-style-dashed > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  top:5px;
  height:auto !important;
  border-width:5px 0 0 0;
}
.b-sch-vertical .b-sch-style-line > .b-sch-event,
.b-sch-vertical .b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event,
.b-sch-vertical .b-sch-style-dashed > .b-sch-event,
.b-sch-vertical .b-sch-style-dashed > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  left:0;
  border-width:0 0 0 5px;
  flex-direction:column;
}
.b-sch-vertical .b-sch-style-line > .b-sch-event .b-sch-event-content,
.b-sch-vertical .b-sch-style-line > .b-sch-event > .b-sch-event-segments > .b-sch-event .b-sch-event-content,
.b-sch-vertical .b-sch-style-dashed > .b-sch-event .b-sch-event-content,
.b-sch-vertical .b-sch-style-dashed > .b-sch-event > .b-sch-event-segments > .b-sch-event .b-sch-event-content{
  margin:0;
}
.b-sch-event-wrap.b-sch-style-rounded > .b-sch-event, .b-sch-event-wrap.b-sch-style-rounded > .b-sch-event > .b-sch-event-segments > .b-sch-event{
  --event-background-l:80%;
  --event-a:0.6;
  --event-hover-a:1;
  --event-hover-l-factor:0.8;
  --event-selected-hover-l-factor:0.9;
  --event-color:hsl(var(--event-primary-color-h), var(--event-primary-color-s), calc(var(--event-primary-color-l) * 0.3));
  --event-border-color:var(--event-primary-color);
  --event-border-radius:2em;
}
.b-sch-event-wrap.b-sch-style-rounded > .b-sch-event.b-sch-event-selected, .b-sch-event-wrap.b-sch-style-rounded > .b-sch-event > .b-sch-event-segments > .b-sch-event.b-sch-event-selected{
  --event-background-l:var(--event-primary-color-l);
  --event-a:1;
  --event-color:#fff;
}
.b-sch-event-wrap.b-sch-style-rounded > .b-sch-event.b-milestone{
  --event-border-radius:1em;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-sch-style-rounded .b-sch-event.b-milestone{
  --event-border-radius:3px;
  --event-a:1;
  --event-background-l:85%;
}
.b-schedulerbase.b-sch-layout-milestones .b-sch-event-wrap.b-sch-style-rounded .b-sch-event.b-milestone > .b-sch-event-content{
  font-size:11px;
}
.b-sch-horizontal .b-sch-event-wrap.b-sch-style-rounded:not(.b-milestone) .b-sch-event-content{
  margin:0 1em;
}
.b-sch-vertical .b-sch-event-wrap.b-sch-style-rounded:not(.b-milestone) .b-sch-event-content{
  margin:1em 0;
}
.b-sch-event-wrap.b-sch-style-rounded.b-sch-custom-color > .b-sch-event:not(.b-milestone){
  background-color:currentColor;
  background-image:linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}
.b-sch-event-wrap.b-sch-style-rounded.b-sch-custom-color > .b-sch-event:not(.b-milestone):hover{
  background-color:currentColor;
  background-image:linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6));
}
.b-sch-event-wrap.b-sch-style-rounded.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected{
  background-image:none;
}
.b-sch-event-wrap.b-sch-style-rounded.b-sch-custom-color > .b-sch-event:not(.b-milestone).b-sch-event-selected .b-sch-event-content{
  color:#fff;
}
.b-sch-event-wrap.b-sch-style-rounded.b-sch-custom-color > .b-sch-event.b-milestone .b-sch-event-content{
  background-color:currentColor;
  background-image:linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}
.b-sch-event-wrap.b-sch-style-rounded.b-sch-custom-color > .b-sch-event.b-milestone:hover .b-sch-event-content{
  background-image:linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6));
}
.b-sch-event-wrap.b-sch-style-rounded.b-sch-custom-color > .b-sch-event.b-milestone.b-sch-event-selected .b-sch-event-content{
  background-image:none;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-body-wrap .b-recurrenceeditorpanel-content.b-panel-content > div.b-widget.b-field:not(.b-label-with-checkbox + .b-field):not(.b-buttongroup), .b-recurrenceeditor .b-recurrenceeditorpanel-body-wrap .b-recurrenceeditorpanel-content.b-panel-content .b-button-group-label:not(.b-buttongroup), .b-recurrenceeditor .b-recurrenceeditorpanel-body-wrap .b-recurrenceeditorpanel-content.b-panel-content .b-buttongroup:not(.b-buttongroup){
  display:inline-flex;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-body-wrap .b-recurrenceeditorpanel-content.b-panel-content > div.b-widget.b-field:not(.b-label-with-checkbox + .b-field):not(.b-label-with-checkbox):not(.b-recurrencedayscombo), .b-recurrenceeditor .b-recurrenceeditorpanel-body-wrap .b-recurrenceeditorpanel-content.b-panel-content .b-button-group-label:not(.b-label-with-checkbox):not(.b-recurrencedayscombo), .b-recurrenceeditor .b-recurrenceeditorpanel-body-wrap .b-recurrenceeditorpanel-content.b-panel-content .b-buttongroup:not(.b-label-with-checkbox):not(.b-recurrencedayscombo){
  grid-column:1/-1;
  width:auto;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-body-wrap .b-recurrenceeditorpanel-content.b-panel-content .b-button-group-label{
  margin-block-start:0.5em;
}
.b-recurrenceeditor .b-recurrenceeditorpanel-body-wrap .b-recurrenceeditorpanel-content.b-panel-content .b-buttongroup{
  margin-block-start:0;
}
.b-sch-highlighted-calendar-range{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(49, 131, 254, 0.5333333333);
  background:rgba(49, 131, 254, 0.0705882353);
  border:2px dashed rgba(49, 131, 254, 0.2);
  animation-name:fadeInOpacity;
  animation-duration:0.2s;
  overflow:hidden;
}
.b-sch-highlighted-calendar-range .b-sch-event-content{
  font-size:14px;
  padding:0.5em;
  text-align:center;
}
svg.b-sch-dependencies-canvas .b-sch-dependency.b-inactive{
  stroke-dasharray:9 3;
}
.b-eventbuffer .b-sch-event{
  width:100%;
}
.b-eventbuffer .b-sch-event-buffer-before{
  grid-area:start;
}
.b-eventbuffer .b-sch-event-buffer-after{
  grid-area:end;
}
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer, .b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer{
  height:5px;
  background:repeating-linear-gradient(180deg, transparent, transparent 30%, #ccc 30%, #ccc 70%, transparent 70%, transparent 100%);
}
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before, .b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-before{
  flex-direction:row;
  justify-content:flex-end;
}
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before .b-buffer-label, .b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-before .b-buffer-label{
  margin-inline-end:auto;
  padding-inline-end:0.5em;
}
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before .b-buffer-label,
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before i, .b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-before .b-buffer-label,
.b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-before i{
  transform:translate(0.1em, -1.25em);
}
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-before i, .b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-before i{
  margin-inline-end:0.5em;
}
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after, .b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-after{
  flex-direction:row-reverse;
  justify-content:flex-end;
}
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after .b-buffer-label,
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after i, .b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-after .b-buffer-label,
.b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-after i{
  transform:translate(-0.1em, -1.25em);
}
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after .b-buffer-label, .b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-after .b-buffer-label{
  text-align:right;
  margin-inline-start:0.5em;
}
.b-eventbuffer.b-sch-horizontal .b-sch-event-wrap .b-sch-event-buffer-after i, .b-eventbuffer.b-sch-horizontal.b-sch-event-wrap .b-sch-event-buffer-after i{
  margin-inline-start:auto;
  padding-inline-start:0.5em;
}
.b-eventbuffer.b-sch-vertical .b-sch-event-wrap, .b-eventbuffer.b-sch-vertical.b-sch-event-wrap{
  contain:size layout;
}
.b-eventbuffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer, .b-eventbuffer.b-sch-vertical.b-sch-event-wrap .b-sch-event-buffer{
  width:5px;
  justify-self:center;
  background:repeating-linear-gradient(90deg, transparent, transparent 30%, #ccc 30%, #ccc 70%, transparent 70%, transparent 100%);
}
.b-eventbuffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer-before, .b-eventbuffer.b-sch-vertical.b-sch-event-wrap .b-sch-event-buffer-before{
  flex-direction:column;
  justify-content:flex-end;
}
.b-eventbuffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer-before .b-buffer-label, .b-eventbuffer.b-sch-vertical.b-sch-event-wrap .b-sch-event-buffer-before .b-buffer-label{
  margin-inline-end:0.5em;
}
.b-eventbuffer.b-sch-vertical .b-sch-event-wrap .b-buffer-label,
.b-eventbuffer.b-sch-vertical .b-sch-event-wrap i, .b-eventbuffer.b-sch-vertical.b-sch-event-wrap .b-buffer-label,
.b-eventbuffer.b-sch-vertical.b-sch-event-wrap i{
  margin-inline-end:-1.3em;
  writing-mode:vertical-rl;
}
.b-eventbuffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer-after, .b-eventbuffer.b-sch-vertical.b-sch-event-wrap .b-sch-event-buffer-after{
  flex-direction:column-reverse;
  justify-content:flex-end;
}
.b-eventbuffer.b-sch-vertical .b-sch-event-wrap .b-sch-event-buffer-after .b-buffer-label, .b-eventbuffer.b-sch-vertical.b-sch-event-wrap .b-sch-event-buffer-after .b-buffer-label{
  margin-inline-start:0.5em;
}
.b-eventbuffer .b-sch-event-buffer{
  display:flex;
  color:#aaa;
  white-space:nowrap;
  font-size:10px;
}
.b-animating .b-sch-event-buffer{
  transition:width 0.2s;
}
.b-schedulerprobase{
  --schedulerpro-nested-event-header-height:20px;
}
.b-sch-event-wrap.b-nested-events-parent > .b-sch-event:not(.b-milestone){
  flex-direction:column;
  width:100%;
}
.b-sch-event-wrap.b-nested-events-parent > .b-sch-event:not(.b-milestone) > .b-sch-event-content{
  padding-block:0.1em;
  flex:0 0 var(--schedulerpro-nested-event-header-height);
  min-height:0;
}
.b-sch-event-wrap.b-nested-events-parent > .b-sch-event:not(.b-milestone)::before, .b-sch-event-wrap.b-nested-events-parent > .b-sch-event:not(.b-milestone)::after{
  display:none;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-plain > .b-sch-event:not(.b-milestone), .b-sch-event-wrap.b-nested-events-parent.b-sch-style-colored > .b-sch-event:not(.b-milestone), .b-sch-event-wrap.b-nested-events-parent.b-sch-style-rounded > .b-sch-event:not(.b-milestone){
  color:#666;
  background-color:transparent;
  border-left:none;
  border-radius:0;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-plain > .b-sch-event:not(.b-milestone).b-sch-event-selected > .b-sch-event-content, .b-sch-event-wrap.b-nested-events-parent.b-sch-style-plain > .b-sch-event:not(.b-milestone).b-sch-event-selected > .b-sch-event-content > *, .b-sch-event-wrap.b-nested-events-parent.b-sch-style-colored > .b-sch-event:not(.b-milestone).b-sch-event-selected > .b-sch-event-content, .b-sch-event-wrap.b-nested-events-parent.b-sch-style-colored > .b-sch-event:not(.b-milestone).b-sch-event-selected > .b-sch-event-content > *, .b-sch-event-wrap.b-nested-events-parent.b-sch-style-rounded > .b-sch-event:not(.b-milestone).b-sch-event-selected > .b-sch-event-content, .b-sch-event-wrap.b-nested-events-parent.b-sch-style-rounded > .b-sch-event:not(.b-milestone).b-sch-event-selected > .b-sch-event-content > *{
  color:#555;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-plain > .b-sch-event:not(.b-milestone).b-sch-event-selected:hover, .b-sch-event-wrap.b-nested-events-parent.b-sch-style-colored > .b-sch-event:not(.b-milestone).b-sch-event-selected:hover, .b-sch-event-wrap.b-nested-events-parent.b-sch-style-rounded > .b-sch-event:not(.b-milestone).b-sch-event-selected:hover{
  background-color:rgba(221, 221, 221, 0.5647058824);
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-plain.b-sch-event-hover > .b-sch-event:not(.b-milestone), .b-sch-event-wrap.b-nested-events-parent.b-sch-style-colored.b-sch-event-hover > .b-sch-event:not(.b-milestone), .b-sch-event-wrap.b-nested-events-parent.b-sch-style-rounded.b-sch-event-hover > .b-sch-event:not(.b-milestone){
  background-color:rgba(221, 221, 221, 0.5647058824);
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-plain .b-nested-events-container, .b-sch-event-wrap.b-nested-events-parent.b-sch-style-colored .b-nested-events-container, .b-sch-event-wrap.b-nested-events-parent.b-sch-style-rounded .b-nested-events-container{
  background-color:rgba(221, 221, 221, 0.5647058824);
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-border > .b-sch-event:not(.b-milestone){
  background-image:linear-gradient(rgba(221, 221, 221, 0.5647058824), rgba(221, 221, 221, 0.5647058824));
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-style-hollow:hover > .b-sch-event{
  background-image:linear-gradient(rgba(255, 255, 255, 0.3137254902), rgba(255, 255, 255, 0.3137254902));
}
.b-nested-events-container{
  position:relative;
  align-self:flex-start;
  flex:1;
  width:100%;
  overflow:visible;
  transition:background 0.2s;
}
.b-nested-events-container .b-sch-event:not(.b-milestone){
  width:100%;
}
.b-nested-events-container .b-sch-style-border{
  transform:translateX(-1px);
}
.b-nested-events-container .b-sch-style-hollow{
  transform:translateX(-2px);
}
.b-nested-events-container.b-nested-events-layout-stack{
  overflow-y:auto;
  overflow-x:hidden;
}
.b-dependencies:not(.b-dependency-only-parent) .b-nested-events-container.b-nested-events-layout-stack{
  overflow:visible;
}
.b-dependencies:not(.b-dependency-only-parent) .b-nested-event.b-sch-event-hover{
  z-index:9;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-vertical > .b-sch-event:not(.b-milestone){
  flex-direction:row;
  padding:0;
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-vertical > .b-sch-event:not(.b-milestone) > .b-sch-event-content{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
}
.b-sch-event-wrap.b-nested-events-parent.b-sch-vertical .b-nested-events-container{
  height:100%;
}
.b-nestedevents .b-sch-dependencies-canvas{
  z-index:10;
}
.b-percentbar .b-sch-event-wrap{
  overflow:visible;
}
.b-percentbar .b-sch-event-wrap .b-sch-event{
  overflow:visible;
}
.b-task-percent-bar-resizing-task .b-gantt-task{
  overflow:visible;
}
.b-task-percent-bar-outer{
  position:absolute;
  left:0;
  height:100%;
  width:100%;
  overflow:hidden;
  transition:background-color 0.2s;
  border-radius:inherit;
}
.b-sch-style-rounded .b-sch-event.b-sch-event-selected:hover .b-task-percent-bar-outer, .b-sch-style-rounded .b-sch-event-selected .b-task-percent-bar-outer{
  background-color:rgba(255, 255, 255, 0.4);
}
.b-task-percent-bar{
  background-color:rgba(0, 0, 0, 0.15);
  border-start-start-radius:inherit;
  border-end-start-radius:inherit;
  z-index:0;
  box-sizing:content-box;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  transition:color 0.2s, background-color 0.2s, opacity 0.2s;
  line-height:initial;
}
.b-sch-horizontal .b-task-percent-bar, .b-gantt .b-task-percent-bar{
  height:100%;
  max-width:100%;
  text-align:right;
}
.b-sch-vertical .b-task-percent-bar{
  width:100%;
  max-height:100%;
}
.b-animating .b-task-percent-bar{
  transition:color 0.2s, width 0.2s, height 0.2s;
}
.b-task-percent-bar-resizing-task .b-task-percent-bar{
  transition:background-color 0.2s;
}
.b-sch-event-selected .b-task-percent-bar{
  background-color:rgba(0, 0, 0, 0.2);
}
.b-sch-style-rounded .b-task-percent-bar{
  background-color:currentColor;
  mix-blend-mode:overlay;
  opacity:0.5;
}
.b-sch-style-rounded .b-sch-event:hover .b-task-percent-bar{
  mix-blend-mode:darken;
  opacity:0.4;
}
.b-sch-style-rounded .b-sch-event.b-sch-event-selected:hover .b-task-percent-bar, .b-sch-style-rounded .b-sch-event-selected .b-task-percent-bar{
  background-color:rgba(0, 0, 0, 0.4);
  mix-blend-mode:darken;
  opacity:0.4;
}
.b-task-percent-bar-handle{
  position:absolute;
  width:0;
  height:0;
  display:flex;
  justify-content:center;
  z-index:1000;
  border-color:#fff;
  border-right-color:transparent;
  border-left-color:transparent;
  border-width:0 5px 6px 5px;
  border-style:solid;
  opacity:1;
}
.b-sch-horizontal .b-task-percent-bar-handle, .b-gantt .b-task-percent-bar-handle{
  cursor:ew-resize !important;
  bottom:0;
  margin-inline-start:-5px;
}
.b-gantt-task-parent .b-task-percent-bar-handle{
  bottom:8px;
}
.b-sch-vertical .b-task-percent-bar-handle{
  cursor:ns-resize !important;
  left:0;
  margin-top:-4px;
  transform:rotate(90deg);
}
.b-sch-horizontal .b-sch-event .b-task-percent-bar-handle{
  margin-inline-start:-8px;
  border-width:0 6px 7px 7px;
}
.b-sch-vertical .b-sch-event .b-task-percent-bar-handle{
  margin-inline-start:-3px;
  border-width:0 6px 7px 7px;
}
.b-sch-event.b-sch-event-selected .b-task-percent-bar-handle{
  z-index:1000;
}
.b-sch-style-rounded .b-task-percent-bar-handle{
  border-block-color:#333;
}
.b-task-percent-bar-handle::after{
  margin-top:10px;
  font-size:0.8em;
  color:#212121;
}
.b-task-percent-bar-show-percentage:not(.b-resizing-event):not(.b-dragging-event).b-task-percent-bar-resizing-task .b-task-percent-bar-handle::after,
.b-task-percent-bar-show-percentage:not(.b-resizing-event):not(.b-dragging-event) .b-sch-event-hover .b-task-percent-bar-handle::after{
  position:absolute;
  content:attr(data-percent) "%";
}
.b-sch-vertical .b-task-percent-bar-handle::after{
  margin-top:-2em;
  transform:rotate(-90deg);
}
.b-task-percent-bar-resizing-task .b-sch-event,
.b-task-percent-bar-resizing-task .b-gantt-task,
.b-task-percent-bar-resizing-event .b-sch-event,
.b-task-percent-bar-resizing-event .b-gantt-task{
  -webkit-user-select:none;
  user-select:none;
  cursor:ew-resize !important;
}
.b-task-percent-bar-drag-disabled .b-task-percent-bar-handle,
.b-readonly .b-task-percent-bar-handle{
  display:none !important;
}
.b-resource-non-working-time-canvas{
  z-index:4;
}
.b-sch-resourcenonworkingtime{
  background-color:rgba(240, 240, 240, 0.5);
}
.b-popup.b-taskeditor .b-bottom-toolbar > button, .b-popup.b-schedulerpro-taskeditor .b-bottom-toolbar > button{
  flex:none;
  width:10em;
  margin-inline-end:0.5em;
  min-height:2.5em;
}
.b-popup.b-taskeditor .b-bottom-toolbar > button:last-child, .b-popup.b-schedulerpro-taskeditor .b-bottom-toolbar > button:last-child{
  margin-inline-end:0;
}
.b-popup.b-taskeditor .b-chip, .b-popup.b-schedulerpro-taskeditor .b-chip{
  font-size:0.9em;
}
.b-schedulerpro-taskeditor .b-watermark{
  display:none;
}
.b-sch-highlight-container{
  position:absolute;
  top:0;
  inset-inline-start:0;
  pointer-events:none;
}
.b-sch-highlight-container .b-unavailable{
  background:rgba(200, 200, 200, 0.1882352941);
}
.b-sch-highlighted-range{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(49, 131, 254, 0.5333333333);
  font-size:14px;
}
.b-sch-highlighted-range-name{
  text-overflow:ellipsis;
  overflow:hidden;
}
.b-sch-highlighted-range-default{
  background:rgba(49, 131, 254, 0.0705882353);
  border:2px dashed rgba(49, 131, 254, 0.2);
  animation-name:fadeInOpacity;
  animation-duration:0.2s;
}
.b-timelinebase.b-transition-highlight .b-sch-highlighted-range{
  transition-property:opacity;
  transition-duration:0.3s;
}
.b-timelinebase.b-transition-highlight .b-sch-highlighted-range[data-sync-id]{
  transition-property:width, height, inset-inline-start, top, opacity;
}
.b-calendareditor .b-tabpanel{
  height:100%;
  background:transparent;
}
.b-calendareditor .b-tabpanel .b-tabpanel-item:first-child{
  overflow-y:auto;
}
.b-calendareditor .b-tabpanel .b-tabpanel-body{
  padding-right:0;
  padding-bottom:0;
  background:transparent;
}
.b-calendareditor .b-tabpanel .b-panel,
.b-calendareditor .b-tabpanel .b-calendarpanel .b-panel-body-wrap,
.b-calendareditor .b-tabpanel .b-panel-content,
.b-calendareditor .b-tabpanel .b-toolbar.b-tabbar,
.b-calendareditor .b-tabpanel .b-tabpanel-body-wrap{
  background:var(--panel-background-color);
}
.b-calendareditor [data-ref=generalTab] [data-ref=nameField]{
  margin-inline-end:0.5em;
}
.b-calendareditor [data-ref=generalTab] [data-ref=parentField]{
  margin-inline-end:0.5em;
}
.b-calendareditor [data-ref=generalTab] [data-ref=unspecifiedTimeIsWorkingField]{
  margin-inline-start:4.7em;
}
.b-calendareditor [data-ref=generalTab] hr{
  border:none;
  border-top:1px solid inherit;
}
.b-calendareditor .b-widget.b-html{
  user-select:none;
}
.b-calendareditor .b-calendareditor-content{
  padding-bottom:0;
}
.b-calendareditor .b-checkbox .b-field-inner .b-checkbox-label{
  text-transform:none;
}
.b-calendareditoravailabilityrangecontainer .b-availability-range{
  flex:1 0 100%;
  align-items:center;
}
.b-calendareditoravailabilityrangecontainer .b-availability-range .b-timefield{
  width:6em;
}
.b-calendareditoravailabilityrangecontainer .b-availability-range [data-ref=removeRangeButton]{
  display:inherit;
}
.b-calendareditoravailabilityrangecontainer .b-availability-range [data-ref=addRangeButton]{
  margin-inline-start:auto;
  display:inherit;
}
.b-calendareditoravailabilityrangecontainer .b-availability-range:only-child [data-ref=removeRangeButton]{
  display:none;
}
.b-calendareditoravailabilityrangecontainer .b-availability-range:not(:first-child) [data-ref=addRangeButton]{
  display:none;
}
.b-calendareditor-content .b-calendareditordateinfo{
  display:block;
}
.b-calendareditordateinfo{
  padding:0.4em;
}
.b-calendareditordateinfo .b-time-ranges{
  padding-inline-start:2em;
}
.b-calendareditordateinfo .b-intervals{
  padding-inline-start:0.8em;
}
.b-calendareditordateinfo .b-intervals li{
  list-style:none outside none;
}
.b-calendareditordateinfo .b-intervals li.b-interval:hover{
  cursor:pointer;
  text-decoration:underline;
}
.b-calendareditordateinfo .b-intervals li:before{
  content:"\f0c8";
  text-align:center;
  margin-top:0.2em;
  margin-inline-end:0.7em;
  border:none;
}
.b-calendareditordateinfo .b-intervals li.b-interval:before{
  color:var(--interval-badge-color);
  display:inline-block;
}
.b-calendareditordateinfo .b-intervals li.b-interval:hover:before{
  text-decoration:none;
}
.b-calendareditordateinfo .b-date-text{
  font-weight:bold;
}
.b-calendareditordatepicker .b-calendar-cell:not(.b-selected-date) .b-datepicker-cell-inner.b-nonworking-day{
  background-color:rgba(240, 213, 213, 0.3);
}
.b-calendareditordatepicker .b-calendar-cell:not(.b-selected-date) .b-datepicker-cell-inner.b-working-day{
  background-color:#fff;
}
.b-calendareditordatepicker .b-calendar-cell .b-datepicker-cell-inner .b-interval-badges{
  position:absolute;
  bottom:0;
  inset-inline-start:0.4em;
  display:flex;
}
.b-calendareditordatepicker .b-calendar-cell .b-datepicker-cell-inner .b-interval-badges .b-interval-badge:before{
  content:" ";
  min-width:0.5em;
  min-height:0.5em;
  font-size:0.5em;
  z-index:5;
  display:flex;
  justify-content:center;
  align-items:center;
  background-color:var(--interval-badge-color);
}
.b-calendareditorlegend{
  display:block;
  padding:0;
  padding-inline-start:0.5em;
}
.b-calendareditorlegend > ul{
  padding:0;
  margin-top:0;
}
.b-calendareditorlegend > ul li{
  display:flex;
  align-items:center;
  margin-bottom:0.5em;
}
.b-calendareditorlegend > ul li.b-interval-legend:hover{
  cursor:pointer;
  text-decoration:underline;
}
.b-calendareditorlegend > ul li:before{
  content:"";
  display:inline-block;
  text-align:center;
  margin-inline-end:1em;
  width:1.5em;
  height:1.5em;
  line-height:1.5em;
  background:currentColor;
  border-radius:0.25em;
  vertical-align:middle;
}
.b-calendareditorlegend > ul li.b-working-day, .b-calendareditorlegend > ul li.b-nonworking-day{
  line-height:2em;
}
.b-calendareditorlegend > ul li.b-working-day{
  margin-bottom:0.8em;
}
.b-calendareditorlegend > ul li.b-nonworking-day{
  margin-bottom:1.5em;
}
.b-calendareditorlegend > ul li.b-nonworking-day:before, .b-calendareditorlegend > ul li.b-working-day:before{
  border:solid 1px #bbb;
  border-radius:50%;
}
.b-calendareditorlegend > ul li.b-nonworking-day:before{
  background-color:rgba(240, 213, 213, 0.3);
}
.b-calendareditorlegend > ul li.b-working-day:before{
  background-color:#fff;
}
.b-calendareditorlegend > ul li.b-interval-legend:before{
  color:var(--interval-badge-color);
  display:inline-block;
}
.b-calendareditorlegend > ul li.b-interval-legend:hover:before{
  text-decoration:none;
}
.b-calendareditorexceptiontab .b-calendareditor-form .b-field.b-slidetoggle.b-slidetoggle-splitter{
  display:grid;
  grid-template-columns:1fr auto auto 1fr;
  margin-block-start:0;
}
.b-calendareditorexceptiontab .b-calendareditor-form .b-field.b-slidetoggle.b-slidetoggle-splitter::before, .b-calendareditorexceptiontab .b-calendareditor-form .b-field.b-slidetoggle.b-slidetoggle-splitter::after{
  content:"";
  height:1px;
  background:inherit;
}
.b-calendareditorexceptiontab .b-calendareditor-form .b-field.b-slidetoggle.b-slidetoggle-splitter label{
  margin-inline-start:1em;
}
.b-calendareditorexceptiontab .b-calendareditor-form .b-field.b-slidetoggle.b-slidetoggle-splitter .b-field-inner{
  margin-inline-end:0.6em;
}
.b-calendareditorexceptiontab .b-calendareditor-form .b-calendareditoravailabilityrangecontainer{
  padding-inline-start:4.5em;
}
.b-calendareditorexceptiontab .b-calendareditor-form .b-calendareditoravailabilityrangecontainer .b-availability-range .b-timefield{
  width:11em;
}
.b-calendareditorexceptiontab .b-calendareditor-form .b-recurrenceeditor .b-recurrencemonthdaysbuttongroup{
  margin-block-start:0;
}
.b-calendareditorexceptiontab .b-divider{
  margin-block:1.5em 1em;
}
.b-calendareditorbasetab{
  flex-flow:nowrap;
}
.b-calendareditorbasetab .b-grid[data-ref=grid]{
  flex:0 0 15em;
  border:0 0 1px 0 solid inherit;
  border-radius:0;
}
.b-calendareditorbasetab .b-grid[data-ref=grid] .b-toolbar-content{
  padding:0;
}
.b-calendareditorbasetab .b-grid[data-ref=grid] .b-grid-row.b-invalid .b-grid-cell{
  color:#f44336;
}
.b-calendareditorbasetab .b-grid[data-ref=grid] .b-grid-cell.b-color-cell .b-color-cell-inner{
  border-radius:0.3em;
}
.b-calendareditorbasetab .b-grid[data-ref=grid] .b-grid-cell[data-column=name]{
  padding:0;
}
.b-calendareditorbasetab .b-calendareditor-form{
  display:grid;
  grid-template-columns:max-content 1fr 4em max-content 1fr 4em;
  flex:1 1 0;
}
.b-calendareditorbasetab .b-calendareditor-form [data-ref=nameField] .b-field-inner{
  grid-column:span 4;
}
.b-calendareditorbasetab .b-calendareditor-form [data-ref=exceptionStartDateField] .b-field-inner,
.b-calendareditorbasetab .b-calendareditor-form [data-ref=exceptionEndDateField] .b-field-inner,
.b-calendareditorbasetab .b-calendareditor-form [data-ref=startDateField] .b-field-inner,
.b-calendareditorbasetab .b-calendareditor-form [data-ref=endDateField] .b-field-inner{
  grid-column:span 2;
}
.b-calendareditorbasetab .b-calendareditor-form [data-ref=isWorkingField] .b-radiogroup-body-wrap{
  grid-column:span 5;
}
.b-calendareditorbasetab .b-calendareditor-form > .b-field{
  display:contents;
}
.b-calendareditorbasetab .b-calendareditor-form .b-span-row{
  grid-column:1/-1;
}
.b-calendareditorbasetab .b-calendareditor-form .b-has-label.b-label-before .b-label{
  margin-inline:0.5em;
}
.b-calendareditorbasetab .b-widget[data-ref=panel]{
  padding-inline-start:0.5em;
  overflow-y:auto;
  flex:1 1 0;
  row-gap:1em;
}
.b-calendareditorbasetab .b-colorfield input{
  display:none;
}
.b-calendareditorweekgrid.b-invalid{
  border-style:solid;
  border-width:1px;
  border-color:#f44336;
}
.b-fade{
  animation-name:b-fade;
  animation-delay:0s;
  animation-direction:normal;
  animation-duration:1s;
  animation-iteration-count:2;
  animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1);
}
@keyframes b-fade{
  50%{
    opacity:0.4;
  }
}
.b-calendareditorweektab .b-divider{
  margin-bottom:0;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-calendareditoravailabilityrangecontainer{
  flex:1 0 100%;
}
.b-calendareditorweektab [data-ref=weekContainer].b-copying .b-availability-day.b-copied button.b-day-copy{
  display:inherit;
}
.b-calendareditorweektab [data-ref=weekContainer].b-copying .b-availability-day.b-copied button.b-day-paste{
  display:none;
}
.b-calendareditorweektab [data-ref=weekContainer].b-copying .b-availability-day:not(.b-copied) button.b-day-copy{
  display:none;
}
.b-calendareditorweektab [data-ref=weekContainer].b-copying .b-availability-day:not(.b-copied) button.b-day-paste{
  display:inherit;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-availability-day{
  margin-bottom:0.5em;
  justify-content:start;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-availability-day > div:first-child{
  justify-content:space-between;
  padding-top:0.9em;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-availability-day .b-slidetoggle{
  height:1.5em;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-availability-day button.b-day-copy{
  display:inherit;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-availability-day button.b-day-copy.b-pressed{
  color:#2196f3;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-availability-day button.b-day-paste{
  display:none;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-availability-day .b-availability-day-actions{
  margin-top:0.2em;
  align-self:start;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-availability-day.b-margin-top{
  margin-top:0.5em;
}
.b-calendareditorweektab [data-ref=weekContainer] .b-availability-day.b-disabled .b-availability-range, .b-calendareditorweektab [data-ref=weekContainer] .b-availability-day.b-disabled .b-availability-day-actions{
  display:none;
}
.b-versiongrid-property-update-desc{
  display:flex;
  gap:0.4em;
  align-items:baseline;
  font-size:90%;
  flex-wrap:wrap;
  max-width:100%;
}
.b-versiongrid-property-name::after{
  content:":";
}
.b-versiongrid-property-before,
.b-versiongrid-property-after{
  padding:0.2em 0.4em;
  border-radius:0.1em;
  background:#f0f0f0;
}
.b-versiongrid-empty-value{
  opacity:0.5;
}
.b-versiongrid-value-object{
  flex-basis:100%;
  white-space:pre;
  overflow:auto;
  max-height:11.5em;
}
.b-versiongrid .b-tree-cell.b-tree-parent-cell{
  font-weight:400;
}
.b-icon-version::before{
  content:"\e5a0";
}
.b-versiongrid-highlighted-entity{
  font-weight:700;
}
.b-versiongrid-comparing{
  background:#2196f3;
}
.b-versiongrid .b-grid-row .b-tree-leaf-cell[data-column=description] .b-tree-cell-value{
  max-width:100%;
}
.b-versiongrid .b-grid-row .b-tree-leaf-cell[data-column=description] .b-tree-cell-inner{
  align-items:baseline;
  max-width:100%;
}
.b-calendarfield .b-field-inner .b-widget.b-fieldtrigger[data-ref=calendarEditor]{
  border-left-style:solid;
  border-left-width:1px;
  border-left-color:inherit;
  height:2.9em;
  padding-inline-start:0.6em;
}
.b-taskeditorbase.b-schedulerpro-taskeditor .b-taskeditorbase-content{
  padding:1em;
  flex-direction:column;
}
.b-schedulerpro-taskeditor .b-tabpanel-body{
  padding-bottom:0;
}
.b-schedulerpro-taskeditor .b-tabpanel-tab-title.b-invalid{
  white-space:nowrap;
}
.b-schedulerpro-taskeditor .b-tabpanel-tab-title.b-invalid .b-icon, .b-schedulerpro-taskeditor .b-tabpanel-tab-title.b-invalid .b-indicator.b-constraint-type-muststarton, .b-schedulerpro-taskeditor .b-tabpanel-tab-title.b-invalid .b-indicator.b-constraint-type-mustfinishon, .b-schedulerpro-taskeditor .b-tabpanel-tab-title.b-invalid .b-indicator.b-deadline-date, .b-schedulerpro-taskeditor .b-tabpanel-tab-title.b-invalid .b-icon-version{
  color:#f44336;
  display:inline-block;
  margin-inline-end:0.5em;
}
.b-schedulerpro-taskeditor .b-tabpanel-item{
  align-content:flex-start;
}
.b-schedulerpro-taskeditor > .b-panel-body-wrap > .b-bottom-toolbar button{
  flex:none;
  min-width:9em;
  margin-inline-end:0.5em;
}
.b-schedulerpro-taskeditor > .b-panel-body-wrap > .b-bottom-toolbar button:last-child{
  margin-inline-end:0;
}
.b-schedulerpro-taskeditor .b-toolbar.b-compact-bbar{
  font-size:0.8em;
  min-height:2.5em;
}
.b-schedulerpro-taskeditor .b-toolbar.b-compact-bbar > .b-toolbar-content{
  padding:0;
}
.b-schedulerpro-taskeditor .b-toolbar.b-compact-bbar .b-button{
  border:none;
}
.b-toolbar.occurrence-info-toolbar{
  font-size:0.9em;
  background-color:#ffeeee;
}
.b-toolbar.occurrence-info-toolbar .b-toolbar-content{
  padding-inline:1.1111111111em;
  min-height:0;
}
.b-toolbar.occurrence-info-toolbar .b-button{
  min-height:0;
  padding-block:0.5em;
}
.b-visible-scrollbar .b-schedulerpro-taskeditor .b-tabpanel-content > .b-container:not(.b-panel-body).b-vertical-overflow{
  padding-right:0.5em;
}
.b-taskeditorbase > .b-panel-body-wrap > .b-bottom-toolbar .b-toolbar-content{
  padding-top:0;
}
.b-advanced-tab{
  justify-content:space-between;
}
.b-advanced-tab .b-checkbox > label{
  white-space:normal;
}
.b-advanced-tab .b-enforced-sch-direction label::after{
  content:"\f059";
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  position:relative;
  top:-1em;
}
.b-dependencytab .b-grid .b-grid-row.b-invalid{
  border-bottom:1px dotted #f44336;
}
.b-dependencytab .b-grid .b-grid-row.b-invalid .b-icon-warning{
  color:#f44336;
}
.b-dependencytab .b-grid .b-grid-row .b-grid-cell.b-inactive{
  text-decoration:line-through;
}
.b-notestab .b-taskeditor-notes-field{
  height:100%;
}
.b-notestab .b-taskeditor-notes-field .b-field-inner{
  align-self:stretch;
}
.b-notestab .b-taskeditor-notes-field .b-field-inner textarea{
  resize:none;
}
.b-timeline{
  background:#fff;
  overflow:visible;
}
.b-timeline .b-grid-panel-body{
  padding:2em 10em 4em 10em;
}
.b-timeline .b-virtual-scrollers, .b-timeline .b-yscroll-pad{
  display:none !important;
}
.b-timeline .b-sch-header-row:not(:first-child){
  display:none;
}
.b-timeline .b-grid-header-container .b-header{
  box-shadow:none;
}
.b-timeline .b-grid-header-container .b-header .b-timeaxis{
  border-bottom:none;
}
.b-timeline .b-grid-row{
  background:transparent;
  border-bottom:1px solid transparent;
}
.b-timeline .b-grid-cell{
  border-block:1px solid #e0e0e0;
}
.b-timeline .b-sch-event-wrap:not(.b-milestone-wrap) .b-sch-event{
  opacity:1;
  font-weight:400;
  font-size:12px;
}
.b-timeline .b-milestone-wrap.b-sch-event-wrap{
  z-index:14;
}
.b-timeline .b-milestone-wrap.b-sch-event-wrap .b-sch-event:not(.b-sch-event-withicon) .b-sch-event-content{
  background-color:rgb(121.8, 192, 247.8);
}
.b-timeline .b-milestone-wrap.b-sch-event-wrap label{
  font-weight:400;
  font-size:12px;
}
.b-timeline .b-sch-header-timeaxis-cell{
  justify-content:flex-start;
  color:rgb(198.5, 198.5, 198.5);
  padding:0 0 0.5em 0.5em;
  font-weight:400;
}
.b-timeline .b-sch-header-timeaxis-cell:before{
  content:" ";
  position:absolute;
  left:0;
  bottom:0;
  height:0.7em;
  border-left:1px solid #e0e0e0;
}
.b-timeline .b-schedulerbase,
.b-timeline .b-grid-body-container,
.b-timeline .b-grid-vertical-scroller,
.b-timeline .b-grid-subgrid,
.b-timeline .b-sch-foreground-canvas{
  overflow:visible !important;
  contain:none !important;
}
.b-timeline.b-gridbase.b-firefox .b-grid-subgrid.b-grid-horizontal-scroller{
  overflow:visible !important;
}
.b-timeline .b-grid-header-container,
.b-timeline .b-grid-header-container.b-grid-vertical-overflow,
.b-timeline .b-sch-header-timeaxis-cell,
.b-timeline .b-grid-header-container .b-sch-timeaxiscolumn,
.b-timeline .b-grid-header-container .b-sch-timeaxiscolumn:hover{
  background:transparent !important;
  box-shadow:none;
  border:none;
}
.b-timeline .b-grid-header{
  min-height:1.5em;
}
.b-timeline .b-grid-vertical-overflow .b-grid-header-scroller:last-child{
  border-right:none;
}
.b-timeline .b-timeline-startdate{
  left:-1em;
  transform:translateX(-100%);
}
.b-timeline .b-timeline-enddate{
  right:-1em;
  transform:translateX(100%);
}
.b-timeline .b-timeline-startdate,
.b-timeline .b-timeline-enddate{
  position:absolute;
  top:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgb(198.5, 198.5, 198.5);
  min-width:6em;
  font-size:1em;
  font-weight:400;
}
.b-schedulerpro-issueresolutionpopup{
  width:clamp(400px, 45%, 100%);
  max-width:80%;
}
.b-schedulerpro-issueresolutionpopup .b-error-description,
.b-schedulerpro-issueresolutionpopup .b-invalid-dependencies-description{
  display:block;
  margin-bottom:1em;
  line-height:1.5em;
}
.b-schedulerpro-issueresolutionpopup .b-radio{
  margin-bottom:1em;
}
.b-schedulerpro-issueresolutionpopup .b-radio .b-field-inner .b-checkbox-label{
  text-transform:none;
  font-size:1em;
}
.b-schedulerpro-issueresolutionpopup .b-dependency-field{
  width:33em;
}
.b-schedulerpro-issueresolutionpopup .b-radiogroup-body-wrap{
  background:transparent;
}
.b-histogram-bar-tooltip span.b-underallocated{
  color:rgb(163.2, 214.2, 165.6);
}
.b-histogram-bar-tooltip span.b-overallocated{
  color:rgb(245.4, 151.8, 150);
}
.b-resourcehistogram-histogram{
  padding:0;
  background-color:transparent;
}
.b-resourcehistogram-histogram .b-bar-legend{
  font-size:75%;
  pointer-events:none;
}
.b-resourcehistogram-histogram rect,
.b-resourcehistogram-histogram rect.b-series-index-0{
  fill:rgb(209.1, 234.6, 210.3);
}
.b-resourcehistogram-histogram rect.b-underallocated,
.b-resourcehistogram-histogram rect.b-series-index-0.b-underallocated{
  fill:rgb(163.2, 214.2, 165.6);
}
.b-resourcehistogram-histogram rect.b-underallocated:hover,
.b-resourcehistogram-histogram rect.b-series-index-0.b-underallocated:hover{
  fill:rgb(147.9, 207.4, 150.7);
}
.b-resourcehistogram-histogram rect.b-overallocated,
.b-resourcehistogram-histogram rect.b-series-index-0.b-overallocated{
  fill:rgb(245.4, 151.8, 150);
}
.b-resourcehistogram-histogram rect.b-overallocated:hover,
.b-resourcehistogram-histogram rect.b-series-index-0.b-overallocated:hover{
  fill:rgb(243.8, 134.6, 132.5);
}
.b-resourcehistogram-histogram rect:hover,
.b-resourcehistogram-histogram rect.b-series-index-0:hover{
  fill:rgb(193.8, 227.8, 195.4);
}
.b-resourceutilization .b-resourceutilization-cell{
  padding:0;
  border-inline-end-width:0;
}
.b-resourceutilization-histogram{
  padding:0;
  background-color:transparent;
}
.b-resourceutilization-histogram svg g text.b-bar-legend{
  font-size:90%;
  fill:#212121;
  writing-mode:lr;
  alignment-baseline:middle;
  text-anchor:middle;
  pointer-events:none;
}
.b-resourceutilization-histogram rect{
  fill:rgb(209.1, 234.6, 210.3);
}
.b-resourceutilization-histogram rect.b-series-index-0{
  fill:rgb(209.1, 234.6, 210.3);
}
.b-resourceutilization-histogram rect.b-series-index-0.b-underallocated, .b-resourceutilization-histogram rect.b-underallocated{
  fill:rgb(163.2, 214.2, 165.6);
}
.b-resourceutilization-histogram rect.b-series-index-0.b-underallocated:hover, .b-resourceutilization-histogram rect.b-underallocated:hover{
  fill:rgb(147.9, 207.4, 150.7);
}
.b-resourceutilization-histogram rect.b-series-index-0.b-overallocated, .b-resourceutilization-histogram rect.b-overallocated{
  fill:rgb(245.4, 151.8, 150);
}
.b-resourceutilization-histogram rect.b-series-index-0.b-overallocated:hover, .b-resourceutilization-histogram rect.b-overallocated:hover{
  fill:rgb(243.8, 134.6, 132.5);
}
.b-resourceutilization-histogram rect.b-series-index-0:hover, .b-resourceutilization-histogram rect:hover{
  fill:rgb(193.8, 227.8, 195.4);
}
.b-resource-row .b-resourceutilization-histogram svg g text.b-bar-legend{
  font-size:90%;
  fill:#212121;
}
.b-resource-row .b-resourceutilization-histogram rect{
  fill:rgb(209.1, 234.6, 210.3);
}
.b-resource-row .b-resourceutilization-histogram rect.b-underallocated{
  fill:rgb(163.2, 214.2, 165.6);
}
.b-resource-row .b-resourceutilization-histogram rect.b-underallocated:hover{
  fill:rgb(147.9, 207.4, 150.7);
}
.b-resource-row .b-resourceutilization-histogram rect.b-overallocated{
  fill:rgb(245.4, 151.8, 150);
}
.b-resource-row .b-resourceutilization-histogram rect.b-overallocated:hover{
  fill:rgb(243.8, 134.6, 132.5);
}
.b-resource-row .b-resourceutilization-histogram rect:hover{
  fill:rgb(193.8, 227.8, 195.4);
}
.b-assignment-row .b-resourceutilization-histogram svg g text.b-bar-legend{
  font-size:90%;
  fill:#212121;
}
.b-assignment-row .b-resourceutilization-histogram rect{
  fill:transparent;
}
.b-assignment-row .b-resourceutilization-histogram rect.b-underallocated{
  fill:transparent;
}
.b-assignment-row .b-resourceutilization-histogram rect.b-underallocated:hover{
  fill:transparent;
}
.b-assignment-row .b-resourceutilization-histogram rect.b-overallocated{
  fill:transparent;
}
.b-assignment-row .b-resourceutilization-histogram rect.b-overallocated:hover{
  fill:transparent;
}
.b-assignment-row .b-resourceutilization-histogram rect:hover{
  fill:transparent;
}
.b-calculation-progress-wrap{
  position:absolute;
  bottom:0;
  display:flex;
  width:100%;
  height:2px;
  z-index:100;
}
.b-calculation-progress{
  background:#4caf50;
  opacity:0.3;
}
.b-sch-event.b-segmented, .b-sch-event.b-segmented:hover{
  overflow:visible;
  background-image:none;
  border-width:0;
  background-color:transparent;
  box-shadow:none;
}
.b-sch-event .b-sch-event-segments{
  position:absolute;
  top:0;
  width:100%;
  height:calc(50% + 0.5px);
  border-bottom:1px dashed;
  border-color:#999;
  pointer-events:none;
}
.b-sch-event .b-sch-event-segments .b-sch-event-segment{
  pointer-events:all;
  position:absolute;
  display:flex;
  align-items:center;
}
.b-sch-event-wrap:not(.b-milestone-wrap) .b-sch-event.b-sch-event-selected.b-segmented, .b-sch-event-wrap:not(.b-milestone-wrap) .b-sch-event.b-sch-event-selected.b-segmented:hover, .b-sch-event-wrap:not(.b-milestone-wrap) .b-sch-event:hover.b-segmented, .b-sch-event-wrap:not(.b-milestone-wrap) .b-sch-event:hover.b-segmented:hover, .b-sch-event-wrap:not(.b-milestone-wrap) .b-sch-event.b-sch-event-selected:hover.b-segmented, .b-sch-event-wrap:not(.b-milestone-wrap) .b-sch-event.b-sch-event-selected:hover.b-segmented:hover{
  background-image:none;
  border-width:0;
  background-color:transparent;
  box-shadow:none;
}
.b-using-keyboard .b-sch-event-wrap:not(.b-milestone-wrap).b-active .b-sch-event-segment{
  outline:none;
}
.b-popup.b-schedulerpro-taskeditor .b-divider{
  display:none !important;
}
.b-popup.b-schedulerpro-taskeditor .b-tabpanel-body{
  padding-bottom:0;
}
.b-popup.b-schedulerpro-taskeditor .b-tabpanel-tab{
  min-width:3em;
}
.b-popup.b-schedulerpro-taskeditor .b-advanced-tab .b-checkbox:not(.b-last-row){
  margin-top:1em;
}
.b-calendareditor [data-ref=generalTab] [data-ref=unspecifiedTimeIsWorkingField]{
  margin-inline-start:0;
}
.b-calendareditor .b-calendareditorbasetab .b-grid[data-ref=grid]{
  border:1px solid #9e9e9e;
}
.b-calendareditor .b-calendareditorbasetab.b-calendareditorweektab .b-divider{
  margin-bottom:1em;
}
.b-calendareditor .b-calendareditorbasetab.b-calendareditorweektab .b-calendareditor-form.b-content-element{
  grid-template-columns:1fr 5em 1fr 5em;
}
.b-calendareditor .b-calendareditorbasetab.b-calendareditorweektab .b-calendareditor-form.b-content-element [data-ref=nameField]{
  grid-column:span 3;
}
.b-calendareditor .b-calendareditorbasetab.b-calendareditorweektab .b-calendareditor-form.b-content-element [data-ref=startDateField],
.b-calendareditor .b-calendareditorbasetab.b-calendareditorweektab .b-calendareditor-form.b-content-element [data-ref=endDateField]{
  grid-column:span 2;
}
.b-calendareditor .b-calendareditorbasetab .b-calendareditor-form.b-content-element{
  grid-template-columns:auto auto;
}
.b-calendareditor .b-calendareditorbasetab .b-calendareditor-form.b-content-element > .b-field:not(.b-slidetoggle.b-slidetoggle-splitter){
  display:inline-flex;
  width:auto;
}
.b-calendareditor .b-calendareditorbasetab .b-calendareditor-form.b-content-element .b-span{
  grid-column:1/-1;
}
.b-calendareditor .b-calendareditorbasetab .b-calendareditor-form.b-content-element .b-fieldset.b-radiogroup{
  margin-block-start:2em;
}
.b-calendareditor .b-calendareditorbasetab .b-calendareditor-form.b-content-element .b-fieldset.b-radiogroup .b-label{
  font-size:1em;
}
.b-calendareditor .b-calendareditorbasetab .b-calendareditor-form.b-content-element .b-slidetoggle.b-slidetoggle-splitter::before, .b-calendareditor .b-calendareditorbasetab .b-calendareditor-form.b-content-element .b-slidetoggle.b-slidetoggle-splitter::after{
  background:#9e9e9e;
}
.b-calendarfield .b-field-inner .b-widget.b-fieldtrigger[data-ref=calendarEditor]{
  margin-inline-start:0.3em;
}
:root, :host{
  --b-fa-style-family-classic:"Font Awesome 6 Free";
  --b-fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free";
}
@font-face{
  font-family:"Font Awesome 6 Free";
  font-style:normal;
  font-weight:900;
  font-display:block;
  src:url("/assets/fa-solid-900.1761736823161.woff2") format("woff2"), url("/assets/fa-solid-900.1761736823161.ttf") format("truetype");
}
.fas,
.b-fa-solid{
  font-weight:900;
}
.b-content-icon, .b-gridbase.b-columnresize.b-touch.b-column-resizing .b-grid-header.b-resizing::before, .b-group-state-icon{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:inline-block;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  line-height:1;
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
  vertical-align:0;
}
.b-theme-info:before{
  content:'{"name":"Material"}';
}
.b-new-column-column *{
  height:100%;
  width:100%;
}
.b-resourceassignment-cell{
  padding-block:0.4em;
}
.b-resourceassignment-cell .b-resource-avatar-container{
  display:flex;
  align-items:center;
  height:100%;
}
.b-resourceassignment-cell .b-resource-avatar-container .b-resource-avatar{
  margin-inline-end:2px;
  height:100%;
  width:auto;
}
.b-resourceassignment-cell .b-resource-avatar-container .b-resource-avatar.b-drag-original{
  opacity:0.5;
}
.b-resourceassignment-cell .b-resource-avatar-container:empty{
  height:2.2em;
}
.b-draggable-resource-avatars .b-resource-avatar-container > .b-resource-avatar{
  cursor:pointer;
}
.b-resource-initials:not([class*=b-sch-]){
  background:rgb(121.8, 192, 247.8);
}
.b-overflow-img{
  overflow:hidden;
  position:relative;
}
.b-overflow-img .b-resource-avatar{
  filter:brightness(60%);
  margin-inline-end:0;
}
.b-overflow-img .b-overflow-count{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  color:#fff;
  pointer-events:none;
}
.b-baseline-wrap{
  display:flex;
  flex-direction:column;
  position:absolute;
  transition:none;
  z-index:9;
  top:0.4em;
  height:0.6em;
}
.b-task-baseline{
  font-size:14px;
  position:relative;
  flex:0.5;
  border:0 solid orange;
  transition:flex 0.3s, border-width 0.3s, font-size 0.3s;
  background-color:#ddd;
  margin-top:1px;
  pointer-events:all;
}
.b-animating .b-task-baseline{
  transition:flex 0.3s, border-width 0.3s, font-size 0.3s, width 0.3s, left 0.3s;
}
.b-task-baseline:not(.b-milestone-wrap){
  min-width:6px;
}
.b-baselines .b-gantt-task-wrap.b-has-baselines{
  height:0.4em;
}
.b-baselines .b-gantt-task-wrap.b-has-baselines.b-milestone-wrap{
  font-size:60%;
  transition:flex 0.3s, font-size 0.3s;
}
.b-task-baseline-milestone{
  border:none;
  font-size:30%;
}
.b-task-baseline-milestone::before{
  position:absolute;
  top:50%;
  left:50%;
  content:" ";
  height:0.707107em;
  width:0.707107em;
  transform-origin:50% 50%;
  transform:translate(-50%, -50%) rotate(45deg);
  background-image:inherit;
  background-color:inherit;
}
.b-ganttbase .b-sch-terminal{
  cursor:pointer !important;
}
.b-ganttbase svg.b-sch-dependencies-canvas .b-sch-dependency:not(.b-click-area){
  marker-end:none;
  marker-start:var(--scheduler-dependency-marker);
}
.b-ganttbase svg.b-sch-dependencies-canvas .b-sch-dependency:not(.b-click-area).b-sch-dependency-markerless, .b-ganttbase svg.b-sch-dependencies-canvas .b-sch-dependency:not(.b-click-area).b-sch-dependency-ends-outside{
  marker-start:none;
}
.b-gantt-task-wrap:not(.b-gantt-task-hover) .b-sch-terminal{
  display:none;
}
.b-indicator{
  position:absolute;
  pointer-events:all;
  z-index:10;
  overflow:visible;
  white-space:nowrap;
  transition:color 0.2s, border-color 0.2s;
  color:#ccc;
}
.b-indicator.b-has-icon{
  display:flex;
  justify-content:center;
  align-items:center;
}
.b-animating .b-indicator{
  transition:all 0.2s;
}
.b-indicator i{
  font-size:0.6em;
  color:#ccc;
}
.b-indicator:hover{
  z-index:7;
  color:#999;
  border-color:#999;
}
.b-indicator.b-has-icon::before{
  top:90%;
}
.b-indicator.b-bottom{
  margin-top:calc(1em + 4px);
}
.b-indicator.b-early-dates, .b-indicator.b-late-dates{
  height:6px !important;
  border-width:1px;
  border-style:solid;
  border-top:none;
  border-color:#ccc;
}
.b-indicator.b-early-dates:hover, .b-indicator.b-late-dates:hover{
  border-color:#999;
}
.b-indicator.b-deadline-date{
  width:auto;
  margin-inline-start:-2.5px;
}
.b-indicator.b-deadline-date::before{
  content:"\f024";
  color:#f44336;
  font-size:12px;
  vertical-align:top;
  position:relative;
  top:-2px;
  transition:color 0.2s;
}
.b-timeaxissubgrid.b-rtl .b-indicator.b-deadline-date::before{
  transform:rotateY(180deg);
}
.b-indicator.b-deadline-date:hover::before{
  color:rgb(226.0301886792, 26.9886792453, 12.3698113208);
}
.b-indicator.b-constraint-date{
  width:6px;
}
.b-indicator.b-constraint-date::before{
  transition:border-color 0.2s, background-color 0.2s;
}
.b-indicator.b-constraint-date:hover::before{
  border-color:#999;
}
.b-indicator.b-constraint-type-muststarton, .b-indicator.b-constraint-type-mustfinishon{
  border:none;
  width:auto;
  margin-inline-start:-4.5px;
}
.b-indicator.b-constraint-type-muststarton::before, .b-indicator.b-constraint-type-mustfinishon::before{
  content:"\f08d";
  font-size:12px;
  vertical-align:top;
  position:relative;
  top:-2px;
}
.b-indicator.b-constraint-type-startnoearlierthan, .b-indicator.b-constraint-type-startnolaterthan{
  width:5px;
  height:10px !important;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
  border:1px solid #ccc;
  background-color:#ccc;
}
.b-timeaxissubgrid.b-rtl .b-indicator.b-constraint-type-startnoearlierthan, .b-timeaxissubgrid.b-rtl .b-indicator.b-constraint-type-startnolaterthan{
  border-top-right-radius:initial;
  border-bottom-right-radius:initial;
  border-top-left-radius:10px;
  border-bottom-left-radius:10px;
}
.b-indicator.b-constraint-type-startnolaterthan{
  background-color:transparent;
}
.b-indicator.b-constraint-type-startnoearlierthan:hover{
  background-color:#999;
}
.b-indicator.b-constraint-type-finishnoearlierthan, .b-indicator.b-constraint-type-finishnolaterthan{
  margin-inline-start:-5px;
  width:5px;
  height:10px !important;
  border-top-left-radius:10px;
  border-bottom-left-radius:10px;
  border:1px solid #ccc;
  background-color:#ccc;
}
.b-timeaxissubgrid.b-rtl .b-indicator.b-constraint-type-finishnoearlierthan, .b-timeaxissubgrid.b-rtl .b-indicator.b-constraint-type-finishnolaterthan{
  border-top-left-radius:initial;
  border-bottom-left-radius:initial;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
}
.b-indicator.b-constraint-type-finishnolaterthan{
  background-color:transparent;
}
.b-indicator.b-constraint-type-finishnoearlierthan:hover{
  background-color:#999;
}
.b-parent-area{
  position:absolute;
  z-index:4;
  background:rgba(136, 136, 136, 0.1450980392);
  pointer-events:none;
}
.b-animating .b-parent-area{
  transition:left 0.2s, top 0.2s, width 0.2s;
}
.b-progress-line-canvas{
  z-index:129;
}
.b-gantt-progress-line{
  stroke:#f44336;
}
.b-scrollbuttons{
  --scrollbutton-color:rgb(198.5, 198.5, 198.5);
  --scrollbutton-background-color:#fff;
  --scrollbutton-hover-color:rgb(147.5, 147.5, 147.5);
}
.b-scrollbuttons .b-timeaxissubgrid .b-grid-row,
.b-scrollbuttons .b-timeaxissubgrid .b-grid-cell{
  z-index:2;
  overflow:unset;
}
.b-scrollbuttons .b-timeaxissubgrid .b-column-lines-canvas{
  z-index:0;
}
.b-scrollbuttons .b-timeaxissubgrid svg.b-sch-dependencies-canvas{
  z-index:1;
}
.b-scrollbuttons .b-timeaxissubgrid .b-scroll-button-wrap{
  border:none;
  background:none;
  font-size:0.9em;
  color:var(--color-dark-gray);
  margin-inline-start:1em;
}
.b-scrollbuttons .b-timeaxissubgrid i.b-scroll-button{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:0.5em;
  width:2em;
  height:2em;
  width:1.8em;
  height:1.8em;
  margin:0.1em 0;
  background:var(--scrollbutton-background-color);
  border-radius:50%;
  transition:all 0.2s !important;
  cursor:pointer;
  color:var(--scrollbutton-color);
  border:2px solid var(--scrollbutton-color);
  pointer-events:all;
}
.b-scrollbuttons .b-timeaxissubgrid i.b-scroll-button:hover{
  --scrollbutton-color:var(--scrollbutton-hover-color);
}
.b-scrollbuttons .b-timeaxissubgrid i.b-scroll-button.b-task-visible{
  opacity:0;
  pointer-events:none;
}
.b-ganttbase.b-dragging-task{
  -webkit-user-select:none;
  user-select:none;
}
.b-ganttbase.b-dragging-task .b-gantt-task,
.b-ganttbase.b-dragging-task .b-sch-dependency{
  pointer-events:none;
}
.b-gantt-task-wrap.b-aborting{
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s, transform 0.2s;
}
.b-gantt-taskdrag-tooltip{
  pointer-events:none !important;
}
.b-gantt-taskdrag-tooltip .b-sch-tip-message{
  display:none;
}
.b-gantt-task-tooltip{
  max-width:30em;
}
.b-gantt-task-tooltip .b-sch-clockwrap{
  margin-top:0.5em;
}
.b-gantt-task-tooltip .b-sch-clockwrap:first-child{
  margin-top:0;
}
.b-gantt-task-tooltip .b-gantt-task-title{
  font-weight:600;
}
.b-gantt-task-tooltip table{
  border:0;
  border-spacing:0;
}
.b-gantt-task-tooltip table, .b-gantt-task-tooltip tr, .b-gantt-task-tooltip td{
  padding:0;
}
.b-gantt-task-tooltip td{
  padding-top:3px;
}
.b-gantt-task-tooltip td:last-child{
  text-align:right;
}
.b-gantt-task-tooltip .b-sch-clock{
  display:none;
}
.b-timeline-overlay-chart{
  position:absolute;
  pointer-events:none;
}
.b-timeline-overlay-chart .b-timeline-chart-axis{
  stroke:black;
  stroke-width:1px;
  opacity:0.2;
}
.b-timeline-overlay-chart .b-timeline-chart-path{
  fill:none;
  stroke:red;
  stroke-width:2px;
}
.b-timeline-overlay-chart .b-timeline-chart-point{
  pointer-events:all;
  fill:red;
  r:3;
  transition:r 0.3s;
}
.b-timeline-overlay-chart .b-timeline-chart-point:hover{
  r:5;
}
.b-tasknonworkingtime{
  display:flex;
  position:absolute;
  background-color:rgba(240, 240, 240, 0.5);
  z-index:5;
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s;
  justify-content:center;
  align-items:center;
  padding:3px;
  font-size:0.5em;
  pointer-events:all;
  gap:0.5em;
  overflow:hidden;
}
.b-tasknonworkingtime [data-task-feature]{
  font-size:12px;
}
.b-animating .b-tasknonworkingtime{
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s, transform 0.2s, width 0.2s, height 0.2s, font-size 0.2s;
}
.b-tasknonworkingtime.b-released{
  display:none;
  transition:none;
}
.b-gantt-task > .b-tasknonworkingtime{
  top:0;
  height:100%;
  font-size:0.8em;
  color:#555;
  pointer-events:none;
}
.b-gantt-task > .b-tasknonworkingtime i.b-fa{
  margin-inline-end:0;
}
.b-ganttbase.b-gantt-critical-paths{
}
.b-ganttbase.b-gantt-critical-paths marker#arrowEndCritical{
  fill:rgb(234.6, 81.6, 81.6);
}
.b-ganttbase.b-gantt-critical-paths marker#arrowEndCritical path{
  fill:rgb(234.6, 81.6, 81.6);
  stroke:rgb(234.6, 81.6, 81.6);
}
.b-ganttbase.b-gantt-critical-paths .b-gantt-task-parent .b-gantt-task.b-critical{
  background-color:rgb(201.72, 76.8, 99.12);
}
.b-ganttbase.b-gantt-critical-paths .b-gantt-task.b-critical{
  background-color:rgb(218.8844621514, 86.3155378486, 66.7099601594);
}
.b-ganttbase.b-gantt-critical-paths .b-gantt-task.b-critical .b-sch-event-segments .b-sch-event-segment{
  background-color:rgb(218.8844621514, 86.3155378486, 66.7099601594);
}
.b-ganttbase.b-gantt-critical-paths .b-gantt-task.b-critical.b-segmented, .b-ganttbase.b-gantt-critical-paths .b-gantt-task.b-critical.b-segmented.b-task-selected, .b-ganttbase.b-gantt-critical-paths .b-gantt-task.b-critical.b-segmented:hover{
  background-color:transparent;
}
.b-ganttbase.b-gantt-critical-paths .b-milestone-wrap .b-gantt-task.b-critical:not(.b-gantt-task-withicon){
  background-color:transparent;
}
.b-ganttbase.b-gantt-critical-paths .b-milestone-wrap .b-gantt-task.b-critical:not(.b-gantt-task-withicon) .b-gantt-task-content{
  background-color:rgb(218.8844621514, 86.3155378486, 66.7099601594);
}
.b-ganttbase.b-gantt-critical-paths .b-milestone-wrap .b-gantt-task.b-critical:not(.b-gantt-task-withicon) .b-gantt-task-content:hover{
  background-color:rgb(218.8844621514, 86.3155378486, 66.7099601594);
}
.b-ganttbase.b-gantt-critical-paths svg.b-sch-dependencies-canvas .b-sch-dependency.b-critical:not(.b-click-area){
  stroke:rgb(234.6, 81.6, 81.6);
  stroke-width:2;
  marker-start:url("#arrowEndCritical");
}
.b-ganttbase.b-gantt-critical-paths :not(.b-timeaxissubgrid) > .b-grid-row.b-critical .b-grid-cell{
  background-color:#ffcccc;
}
.b-ganttbase.b-gantt-critical-paths :not(.b-timeaxissubgrid) > .b-grid-row.b-critical .b-grid-cell.b-selected{
  background-color:#ff9999;
}
.b-ganttbase.b-gantt-critical-paths :not(.b-timeaxissubgrid) > .b-grid-row.b-critical.b-selected .b-grid-cell{
  background-color:#ff9999;
}
.b-task-rollup-wrap{
  display:block;
  align-self:stretch;
  position:relative;
  min-height:3px;
  height:0.2em;
  margin-top:0.15em;
  grid-area:rollup;
}
.b-task-rollup{
  background-color:var(--event-background-color);
  position:absolute;
  height:100%;
  opacity:0.8;
}
.b-task-rollup.b-inactive{
  filter:grayscale(1);
  opacity:0.5;
}
.b-rollups .b-baseline-wrap{
  top:0.6em;
}
.b-rollups .b-gantt-task-parent:not(.b-milestone-wrap) .b-gantt-task{
  min-height:1em;
}
.b-task-rollup.b-milestone{
  top:50%;
  width:0.275em;
  height:0.275em;
  transform:translateY(-50%) translateX(-50%) rotate(45deg);
  transform-origin:50% 50%;
  z-index:2;
  background-color:rgb(121.8, 192, 247.8);
  opacity:0.9;
}
.b-gantt-rollups-tooltip .b-gantt-task-title:not(:first-child){
  margin-top:1em;
}
.b-gantt-rollups-tooltip td:last-child{
  padding-inline-start:1em;
}
.b-sch-event.b-fx-highlight, .b-gantt-task.b-fx-highlight{
  outline:5px solid rgba(125, 125, 230, 0.4666666667);
  animation:beacon-pulse-animation 2.4s ease 0s 1;
}
@keyframes beacon-pulse-animation{
  0%{
    outline-offset:0;
  }
  100%{
    outline-offset:20px;
    outline-width:1px;
    outline-color:rgba(125, 125, 230, 0.0666666667);
  }
}
.b-sch-style-plain.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone), .b-sch-style-plain.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone).b-sch-event-selected,
.b-sch-style-border.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone),
.b-sch-style-border.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone).b-sch-event-selected,
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone),
.b-sch-style-colored.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone).b-sch-event-selected,
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone),
.b-sch-style-calendar.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone).b-sch-event-selected,
.b-sch-style-hollow.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone),
.b-sch-style-hollow.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone).b-sch-event-selected,
.b-sch-style-line.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone),
.b-sch-style-line.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone).b-sch-event-selected,
.b-sch-style-dashed.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone),
.b-sch-style-dashed.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone).b-sch-event-selected,
.b-sch-style-minimal.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone),
.b-sch-style-minimal.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone).b-sch-event-selected,
.b-sch-style-rounded.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone),
.b-sch-style-rounded.b-sch-event-wrap > .b-sch-event.b-segmented:not(.b-milestone).b-sch-event-selected{
  border-width:0;
  background-color:transparent;
}
.b-sch-event-wrap.b-sch-style-line > .b-sch-event.b-segmented::before, .b-sch-event-wrap.b-sch-style-line > .b-sch-event.b-segmented::after,
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event.b-segmented::before,
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event.b-segmented::after{
  content:unset;
}
.b-sch-event-wrap.b-sch-style-line > .b-sch-event.b-segmented .b-sch-event,
.b-sch-event-wrap.b-sch-style-dashed > .b-sch-event.b-segmented .b-sch-event{
  top:0;
}
.b-sch-style-minimal .b-sch-event .b-sch-event-segments{
  height:100%;
}
.b-event-segment-renamer{
  z-index:15;
}
.b-gantt > .b-editor{
  z-index:5;
}
.b-gantt-task.b-milestone label,
.b-gantt-task .b-gantt-task-content,
.b-gantt-task-wrap:not(.b-milestone-wrap) .b-gantt-task{
  font-size:14px;
}
.b-gantt-task-wrap{
  position:absolute;
  z-index:9;
  justify-content:center;
  align-items:center;
  pointer-events:all;
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s;
  contain:layout style;
}
.b-animating:not(.b-eventbuffer-transition, .b-subgrid-width-transition) .b-gantt-task-wrap:not(.b-dragging, .b-gantt-task-wrap-resizing, .b-reusing-own){
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s, inset 0.2s, left 0.2s, top 0.2s, transform 0.2s, width 0.2s, height 0.2s, font-size 0.2s;
}
.b-toggling-node .b-gantt-task-wrap{
  transition:none;
}
.b-timelinebase:not(.b-sch-vertical.b-eventlayout-mixed) .b-gantt-task-wrap.b-sch-event-hover, .b-timelinebase:not(.b-sch-vertical.b-eventlayout-mixed) .b-gantt-task-wrap:focus{
  z-index:109 !important;
}
.b-sch-vertical.b-eventlayout-mixed .b-gantt-task-wrap:focus{
  z-index:109 !important;
}
.b-gantt-task-wrap:focus{
  outline:none;
}
.b-scrolling .b-gantt-task-wrap:not(.b-aborting){
  transition:none !important;
}
.b-scrolling .b-gantt-task-wrap:not(.b-aborting) .b-gantt-task{
  transition:none !important;
}
.b-grid-body-container.b-scrolling .b-gantt-task-wrap{
  pointer-events:none;
}
.b-gantt-task-wrap.b-milestone-wrap{
  z-index:8;
}
.b-gantt-task-wrap.b-milestone-wrap .b-gantt-task{
  overflow:visible;
  box-shadow:none;
  background-color:transparent;
  width:1em;
}
.b-gantt-task-wrap.b-milestone-wrap .b-gantt-task:not(.b-gantt-task-withicon) .b-gantt-task-content{
  transition:background-color 0.2s, border 0.2s;
}
.b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-gantt-task-withicon{
  justify-content:center;
}
.b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-gantt-task-withicon .b-gantt-task-content{
  font-size:inherit;
  justify-content:center;
  background-color:transparent;
}
.b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-gantt-task-withicon i{
  margin-inline-end:0;
  color:rgb(121.8, 192, 247.8);
  line-height:1em;
}
.b-gantt-task-wrap.b-milestone-wrap .b-gantt-task label{
  position:absolute;
  left:calc(100% + 0.5em);
}
.b-gantt-task-wrap.b-milestone-wrap .b-gantt-task-content{
  display:flex;
  align-items:center;
}
.b-gantt-task-wrap.b-milestone-wrap .b-fa, .b-gantt-task-wrap.b-milestone-wrap .b-icon, .b-gantt-task-wrap.b-milestone-wrap .b-icon-version, .b-gantt-task-wrap.b-milestone-wrap .b-indicator.b-deadline-date, .b-gantt-task-wrap.b-milestone-wrap .b-indicator.b-constraint-type-muststarton, .b-gantt-task-wrap.b-milestone-wrap .b-indicator.b-constraint-type-mustfinishon{
  margin-inline-end:1em;
  color:rgb(121.8, 192, 247.8);
  font-size:inherit;
}
.b-labels-topbottom .b-gantt-task-wrap.b-milestone-wrap .b-gantt-task:not(.b-gantt-task-withicon){
  font-size:40%;
}
.b-gantt-task-wrap.b-milestone-wrap .b-gantt-task:not(.b-gantt-task-withicon) .b-gantt-task-content{
  font-size:inherit;
}
.b-gantt-task-wrap.b-milestone-wrap .b-gantt-task:not(.b-gantt-task-withicon) .b-gantt-task-content::before{
  position:absolute;
  left:0.1464465em;
  content:" ";
  height:0.707107em;
  width:0.707107em;
  transform-origin:50% 50%;
  rotate:45deg;
  background-color:inherit;
}
.b-using-keyboard .b-gantt-task-wrap.b-milestone-wrap.b-active .b-gantt-task.b-gantt-task-withicon{
  outline:2px solid #2196f3;
  outline-offset:3px;
}
.b-using-keyboard .b-gantt-task-wrap.b-milestone-wrap.b-active .b-gantt-task:not(.b-gantt-task-withicon) .b-gantt-task-content:before{
  outline:2px solid #2196f3;
  outline-offset:3px;
}
.b-gantt-task-wrap.b-milestone-wrap.b-measure{
  height:1em;
  position:fixed;
  top:-10000px;
  left:-10000px;
  visibility:hidden;
}
.b-gantt-task-wrap.b-milestone-wrap.b-measure label{
  font-weight:400;
}
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap{
  margin:0;
  min-width:0;
  flex-direction:row;
}
.b-using-keyboard .b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap.b-active{
  outline:2px solid #2196f3;
  outline-offset:3px;
}
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap.b-active .b-gantt-task.b-milestone,
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap.b-active .b-gantt-task.b-milestone:before{
  outline:none;
}
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-milestone{
  font-size:inherit;
  left:0.5em;
  width:calc(100% - 1em);
  min-width:0;
  padding:0;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
}
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-milestone .b-gantt-task-content{
  background-color:transparent;
  font-size:14px;
  justify-content:center;
}
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-milestone .b-gantt-task-content::before{
  content:none;
}
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-milestone::before, .b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-milestone::after{
  background:inherit;
  position:absolute;
  content:" ";
  height:0.707107em;
  width:0.707107em;
  z-index:0;
}
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-milestone::before{
  top:50%;
  left:0;
  transform-origin:50% 50%;
  transform:translate(-50%, -50%) rotate(45deg);
}
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap .b-gantt-task.b-milestone::after{
  right:0;
  transform:rotate(-45deg);
  transform-origin:100% 0;
}
.b-gantt.b-gantt-layout-milestones .b-gantt-task-wrap.b-milestone-wrap.b-measure .b-gantt-task.b-milestone{
  width:calc(100% + 1em);
}
.b-gantt-task{
  -webkit-user-select:none;
  user-select:none;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  cursor:pointer;
  overflow:hidden;
  overflow:clip;
  white-space:nowrap;
  width:calc(100% - 1px);
  text-align:left;
  padding-inline-start:0;
  min-width:5px;
  min-height:5px;
  transition:background-color 0.2s, color 0.2s, opacity 0.2s, font-weight 0.2s, border 0.2s;
  position:relative;
}
.b-toggling-node .b-gantt-task{
  transition:none;
}
.b-gantt-task label{
  color:#888;
}
.b-gantt-task:not(.b-milestone) .b-fa, .b-gantt-task:not(.b-milestone) .b-icon, .b-gantt-task:not(.b-milestone) .b-icon-version, .b-gantt-task:not(.b-milestone) .b-indicator.b-deadline-date, .b-gantt-task:not(.b-milestone) .b-indicator.b-constraint-type-muststarton, .b-gantt-task:not(.b-milestone) .b-indicator.b-constraint-type-mustfinishon{
  margin-inline-end:0.75em;
  line-height:inherit;
}
.b-gantt-task:before{
  font-family:"Font Awesome 6 Free", FontAwesome6Free;
  font-weight:900;
}
.b-gantt-task.b-gantt-event-resizing, .b-gantt-task:hover{
  z-index:10;
}
.b-gantt-task.b-gantt-task-selected{
  z-index:10;
}
.b-gantt-task.b-gantt-task-selected, .b-gantt-task.b-gantt-task-selected *{
  font-weight:500;
}
.b-gantt-task.b-gantt-task-assign-selected{
  animation-name:instance-selected;
  animation-duration:0.2s;
  animation-iteration-count:3;
  animation-timing-function:ease-in-out;
}
.b-gantt-task.b-milestone{
  transition:background 0s;
}
.b-gantt-task-wrap:not(.b-milestone-wrap){
  min-width:6px;
  min-height:6px;
}
.b-using-keyboard .b-gantt-task-wrap:not(.b-milestone-wrap).b-active .b-gantt-task{
  outline:2px solid #2196f3;
  outline-offset:3px;
}
.b-timeaxissubgrid.b-is-highlighting .b-sch-canvas > .b-gantt-task-wrap > .b-gantt-task:not(.b-highlighted){
  transition:opacity 0.4s;
  opacity:0.2;
}
@keyframes instance-selected{
  0%{
    top:-2px;
  }
  50%{
    top:2px;
  }
  100%{
    top:0;
  }
}
.b-initial-fade-in .b-sch-dependency,
.b-initial-fade-in .b-sch-event-wrap{
  opacity:0;
  animation-name:initial-fade-in;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}
@keyframes initial-fade-in{
  0%{
    opacity:0;
  }
  100%{
    opacity:1;
  }
}
.b-initial-zoom-in .b-sch-event-wrap .b-gantt-task{
  animation-name:initial-zoom-in;
  animation-duration:0.4s;
  animation-timing-function:ease-in;
}
@keyframes initial-zoom-in{
  0%{
    transform:scale(0.01);
  }
  100%{
    transform:scale(1);
  }
}
.b-initial-slide-from-left .b-sch-event-wrap{
  transform:translateX(-100vw);
  animation-name:initial-slide-from-left;
  animation-duration:0.7s;
  animation-fill-mode:forwards;
}
@keyframes initial-slide-from-left{
  100%{
    transform:translateX(0);
  }
}
.b-initial-slide-from-top .b-sch-event-wrap{
  transform:translateY(-100vh);
  animation-name:initial-slide-from-top;
  animation-duration:0.7s;
  animation-fill-mode:forwards;
}
@keyframes initial-slide-from-top{
  100%{
    transform:translateY(0);
  }
}
.b-gantt-task.b-segmented, .b-gantt-task.b-segmented:hover{
  overflow:visible;
  background-image:none;
  border-width:0;
  background-color:transparent;
  box-shadow:none;
}
.b-gantt-task .b-sch-event-segments{
  position:absolute;
  top:0;
  width:100%;
  height:calc(50% + 0.5px);
  border-bottom:1px dashed;
  border-color:#999;
  pointer-events:none;
}
.b-gantt-task .b-sch-event-segments .b-sch-event-segment{
  pointer-events:all;
  position:absolute;
  display:flex;
  align-items:center;
}
.b-gantt-task-wrap:not(.b-milestone-wrap) .b-gantt-task.b-gantt-task-selected.b-segmented, .b-gantt-task-wrap:not(.b-milestone-wrap) .b-gantt-task.b-gantt-task-selected.b-segmented:hover, .b-gantt-task-wrap:not(.b-milestone-wrap) .b-gantt-task:hover.b-segmented, .b-gantt-task-wrap:not(.b-milestone-wrap) .b-gantt-task:hover.b-segmented:hover, .b-gantt-task-wrap:not(.b-milestone-wrap) .b-gantt-task.b-gantt-task-selected:hover.b-segmented, .b-gantt-task-wrap:not(.b-milestone-wrap) .b-gantt-task.b-gantt-task-selected:hover.b-segmented:hover{
  background-image:none;
  border-width:0;
  background-color:transparent;
  box-shadow:none;
}
.b-using-keyboard .b-gantt-task-wrap:not(.b-milestone-wrap).b-active .b-sch-event-segment{
  outline:none;
}
.b-gantt-task-wrap{
  display:grid;
  height:1em;
  grid-template-areas:"top    top    top   " "before body   after " "void1  rollup void2" "bottom bottom bottom";
  grid-template-columns:0 1fr 0;
  grid-template-rows:min-content minmax(0, 100%) min-content min-content;
}
.b-gantt-task-wrap.b-inactive .b-gantt-task{
  filter:grayscale(1);
  opacity:0.5;
}
.b-gantt-task-wrap.b-inactive .b-sch-label{
  color:rgb(195.5, 195.5, 195.5);
}
.b-gantt-task-wrap.b-gantt-task-parent .b-gantt-task{
  align-self:center;
  height:100%;
}
.b-gantt-task-wrap.b-gantt-task-parent .b-active .b-gantt-task{
  outline:none;
}
.b-gantt-task-wrap.b-milestone-wrap{
  margin-inline-start:0;
}
.b-gantt-task{
  align-self:stretch;
  width:100%;
  grid-area:body;
}
.b-using-keyboard .b-gantt-task-wrap.b-unscheduled.b-active .b-gantt-task{
  outline:none;
}
.b-gantt-task-wrap.b-unscheduled .b-gantt-task{
  background-color:transparent;
  background-image:none;
  transition:background-color 0s;
}
.b-gantt-task-wrap.b-unscheduled .b-gantt-task .b-sch-terminal{
  border-color:rgb(147.5, 147.5, 147.5);
}
.b-gantt-task-wrap.b-unscheduled .b-gantt-task .b-gantt-task-content{
  width:auto;
  padding:0;
}
.b-gantt-task-wrap.b-unscheduled .b-gantt-task .b-gantt-task-content .b-icon-calendar{
  color:rgb(147.5, 147.5, 147.5);
  margin:0;
  font-size:18px;
}
.b-gantt-task-content{
  padding:0 0.4em;
  font-size:0.8em;
  width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  z-index:1;
}
.b-gantt-task-parent:not(.b-milestone-wrap) .b-gantt-task{
  overflow:visible;
  border-radius:0 0;
  flex:1 1 0;
  max-height:2em;
  min-height:1.3em;
  clip-path:polygon(-20px 0, calc(100% + 20px) 0, calc(100% + 20px) 100%, 100% 100%, calc(100% - 8px) calc(100% - 8px), 8px calc(100% - 8px), 0 100%, -20px 100%);
}
.b-using-keyboard .b-gantt-task-wrap.b-gantt-task-parent.b-active::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  outline:2px solid #2196f3;
  outline-offset:3px;
}
.b-gantt .b-gantt-task-wrap.b-over-resize-handle .b-gantt-task{
  cursor:ew-resize !important;
}
.b-gantt .b-gantt-task-wrap .b-sch-event-segment.b-over-resize-handle{
  cursor:ew-resize !important;
}
.b-gantt.b-resizing-event *{
  -webkit-user-select:none;
  user-select:none;
  cursor:ew-resize !important;
}
.b-new-column-column .b-grid-header-text{
  display:none;
}
.b-new-column-combo .b-field-inner{
  background-color:transparent;
  border:0 none;
}
.b-new-column-combo .b-field-inner input{
  padding:0;
}
.b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=name], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=startDate], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=endDate], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=earlyStartDate], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=earlyEndDate], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=lateStartDate], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=lateEndDate], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=wbsValue], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=fullDuration], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=fullEffort], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=schedulingMode], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=constraintType], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=calendar], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=deadline], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=totalSlack], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=note], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=predecessors], .b-gantt .b-grid-subgrid-locked .b-grid-row.b-inactive .b-grid-cell[data-column=successors]{
  text-decoration:line-through;
  color:#aaa;
}
.b-sch-color-none.b-gantt-task-wrap,
.b-sch-color-none.b-gantt-task-wrap > .b-gantt-task,
.b-sch-color-none.b-gantt-task-wrap > .b-gantt-task > .b-sch-event-segments > .b-gantt-task.b-sch-color-none{
  --event-background-color:rgb(164.7111553785, 215.7888446215, 166.7749003984);
  border-color:rgb(164.7111553785, 215.7888446215, 166.7749003984);
}
.b-sch-color-none.b-gantt-task-wrap.b-milestone,
.b-sch-color-none.b-gantt-task-wrap > .b-gantt-task.b-milestone,
.b-sch-color-none.b-gantt-task-wrap > .b-gantt-task > .b-sch-event-segments > .b-gantt-task.b-sch-color-none.b-milestone{
  --event-background-color:rgb(121.8, 192, 247.8);
  border-color:rgb(121.8, 192, 247.8);
}
.b-sch-color-none.b-gantt-task-wrap.b-gantt-task-parent:not(.b-milestone-wrap) .b-gantt-task{
  --event-background-color:rgb(121.8, 192, 247.8);
  border-color:rgb(121.8, 192, 247.8);
}
.b-dependency-list .b-list-item[data-index="0"]{
  border-top:none;
}
.b-dependency-list-filter{
  position:sticky;
  top:0;
  z-index:1;
  border-bottom:1px solid #757575;
  border-radius:0;
  background-color:hsl(0, 0%, 105%);
}
.b-dependency-list-filter .b-field-inner{
  border:none;
}
.b-theme-material .b-dependency-list-filter .b-icon-filter{
  margin-inline-start:0.5em;
}
.b-theme-material .b-dependency-list-filter .b-icon-remove{
  margin-inline-end:0.5em;
}
.b-assignmentfield .b-assignment-chipview{
  flex-flow:row nowrap !important;
  overscroll-behavior:contain auto;
}
.b-assignmentfield .b-chip{
  font-size:0.9em;
  white-space:nowrap;
  padding-inline-start:0.45em;
}
.b-resourceassignment-cell{
  align-items:center;
}
.b-resourceassignment-cell .b-assignment-chipview-wrap{
  overflow:hidden;
}
.b-resourceassignment-cell .b-assignment-chipview-wrap .b-assignment-chipview{
  display:flex;
  overflow-x:auto;
}
.b-resourceassignment-cell .b-assignment-chipview-wrap .b-assignment-chipview .b-chip{
  font-size:0.9em;
  padding:0.45em;
  margin-bottom:0;
}
.b-resourceassignment-cell .b-assignment-chipview-wrap .b-assignment-chipview .b-chip:first-child{
  margin-inline-start:0;
}
.b-assignmentgrid-assign-all-column .b-grid-header-text{
  display:none;
}
.b-assignmentgrid-assign-all-column .b-checkbox{
  justify-content:center;
}
.b-assignmentgrid-assign-all-column .b-checkbox .b-field-inner{
  flex:none;
}
.b-assignmentgrid-assign-all-column .b-checkbox label.b-checkbox-label:before{
  margin:0;
}
.b-assignmentgrid-resource-column{
  flex-direction:row;
}
.b-assignmentgrid-resource-column.b-grid-header.b-depth-0{
  padding-top:0.3em;
  padding-bottom:0.3em;
}
.b-assignmentgrid-resource-column .b-filter-bar-field{
  margin-bottom:0;
}
.b-assignmentgrid-resource-column .b-grid-header-text,
.b-assignmentgrid-resource-column .b-grid-header-text-content{
  display:none;
}
.b-assignmentpicker .b-panel-content{
  padding:0;
  background-color:transparent;
}
.b-assignmentpicker .b-assignmentgrid{
  flex:1 1 auto;
}
.b-assignmentpicker .b-bottom-toolbar .b-toolbar-content{
  justify-content:flex-end;
}
.b-assignmentpicker .b-bottom-toolbar .b-toolbar-content > button{
  min-width:10em;
  margin-inline-end:0.5em;
}
.b-assignmentpicker .b-bottom-toolbar .b-toolbar-content > button.b-last-visible-child{
  margin-inline-end:0;
}
@keyframes fadeInOpacity{
  0%{
    opacity:0;
  }
  100%{
    opacity:1;
  }
}
.b-projecteditor .b-projecteditor-content{
  padding:1em;
  flex-direction:column;
  min-height:22em;
}
.b-projecteditor .b-schedule-from{
  flex:1;
  margin-block:0.5em;
}
.b-projecteditor .b-schedule-from .b-radiogroup-content{
  flex-direction:column;
}
.b-projecteditor .b-schedule-from .b-radiogroup-content .b-radio:not(:first-child){
  margin-inline-start:0;
}
.b-projecteditor .b-field[data-ref=descriptionField]{
  align-self:stretch;
}
/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
  /* Gantt Chart Variables */
  --task-background-color: #7699CB;
  --white-color: #FFFFFF;
  --hover-background-color: #141F6C;
  --icon-color: var(--primary2);
  --gantt-row: #F7F8FD05;
  --gantt-task-hover: #F7F8FD;

  /* Gantt Dashboard Variables */
  --gantt-row-height: 50em;
  --gantt-bar-margin: 20em;
  --task-border-radius: 15em;
  --taskname-color: #627DA4;
  --project-dot-link-color: #F06022;
  --shot-link-color: var(--secondary);

  /* Floating Toolbar Variables */
  --toolbar-button-text-color: var(--primary2);
  --toolbar-button-text-color-hover: var(--primary2);
  --toolbar-today-button-color: #414F6C;
  --toolbar-today-button-hover-color: #2E3B55;
}
:root[data-theme="dark"] {
  --white-color: #25262B;
  --task-background-color: #5075AC;
  --toolbar-today-button-color: #8697C8;
  --toolbar-today-button-hover-color: #788dcb;
}
/* ==========================================================================
   GANTT CHART STYLES
   ========================================================================== */
.b-panel {
  border-radius: 0 0 8px 8px;
  --panel-background-color: var(--white-color);
}
.b-grid-footer-scroller,
.b-grid-header-scroller {
  height: 52px;
}
.b-grid-subgrid-locked .b-grid-row {
  background: var(--white-color);
  border-bottom: 1px solid var(--border);
}
.b-grid-row {
  border-bottom: 1px dashed var(--border);
}
.b-grid-header-container .b-header {
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
.b-grid-header-resize-handle:after {
  content: '';
  border-left: 2px solid var(--primary);
  width: 2px;
  height: 40%;
  top: 50%;
  position: absolute;
  transform: translate(1px, -50%);
  visibility: hidden;
  opacity: 0.5;
}
.b-grid-header-resizable:hover .b-grid-header-resize-handle:after {
  visibility: visible;
}
.b-grid-splitter .b-grid-splitter-buttons {
  display: flex !important;
}
.b-gantt-task {
  border-radius: var(--task-border-radius);
  background-color: var(--task-background-color);
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-collapse,
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-expand {
  flex: 1;
  cursor: pointer;
  background: var(--white-color);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-expand:hover {
  background: var(--toolbar-today-button-color) !important;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  color: var(--white-color);
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-collapse .b-grid-splitter-button-icon,
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-expand .b-grid-splitter-button-icon {
  fill: var(--icon-color);
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-collapse:hover .b-grid-splitter-button-icon,
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-expand:hover .b-grid-splitter-button-icon {
  fill: var(--white-color);
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-buttons .b-grid-splitter-button-collapse svg,
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-buttons .b-grid-splitter-button-expand svg {
  display: none;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-buttons .b-grid-splitter-button-collapse:before {
  content: '\e913';
  font-family: 'atlas';
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-buttons .b-grid-splitter-button-expand:before {
  content: '\e914';
  font-family: 'atlas';
}
.b-grid-cell.b-timeaxis-cell.b-widget-cell.b-sch-timeaxis-cell {
  background: var(--gantt-row);
}
.b-grid-cell.b-timeaxis-cell.b-widget-cell.b-sch-timeaxis-cell:hover {
  background: var(--gantt-task-hover);
}
.b-gridbase .b-grid-row.b-selected .b-row-number-cell,
.b-gridbase .b-grid-row .b-grid-cell.b-selected.b-row-number-cell,
.b-gridbase .b-grid-row.b-selected .b-sequence-cell,
.b-gridbase .b-grid-row .b-grid-cell.b-selected.b-sequence-cell {
  background-color: var(--gantt-task-hover);
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell.b-row-number-cell,
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row) .b-grid-cell.b-row-number-cell.b-hover,
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell.b-sequence-cell,
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row) .b-grid-cell.b-sequence-cell.b-hover,
.b-grid-row.b-hover,
.b-grid-cell.b-timeaxis-cell.b-widget-cell.b-sch-timeaxis-cell:hover {
  background-color: var(--gantt-task-hover);
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-collapse {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: -2px 2px 8px rgb(0 0 0 / 30%);
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-expand {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background: var(--toolbar-today-button-color) !important;
  color: var(--white-color);
}
.b-gantt-task-wrap {
  height: 1.5em;
}
.b-gantt-task-content {
  padding: 0;
}
.taskName {
  padding: 0 .6em;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 500;
}
.b-gantt-task.b-milestone label,
.b-gantt-task .b-gantt-task-content,
.b-gantt-task-wrap:not(.b-milestone-wrap) .b-gantt-task {
  font-size: 12px;
}
/* To avoid Loading Jerk */
.b-grid-header-scroller-locked,
.b-grid-subgrid-locked {
  transition: all 0.3s ease-in-out;
}
.b-horizontaltimeaxis .b-sch-header-timeaxis-cell.b-last .b-sch-header-text {
  overflow: initial;
}
.b-gantt .b-grid-row {
  border-bottom: none !important;
}
.b-task-segment,
.b-gantt-task {
  height: 20px !important;
}
.b-gantt-task .b-sch-event-segments {
  height: 15px;
  border: none;
}
.b-gantt-task .b-sch-event-segments:before {
  content: '';
  border-bottom: 1px dashed rgb(158, 156, 156);
  width: 100%;
  display: block;
  height: 1px;
  position: absolute;
  bottom: -1px;
}
.b-grid-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid var(--border);
  pointer-events: none;
}
.b-timeline-subgrid .b-grid-row::after {
  border-bottom: 1px dashed var(--border);
}
.b-gridbase.b-outer:has(.b-timeaxissubgrid.b-grid-subgrid-collapsed)~.gantt-floating-toolbar-container {
  display: none;
}
.b-grid-header .b-sch-timerange.b-sch-current-time {
  background-color: var(--buttonBG);
  border-radius: 5px;
  line-height: 1;
  padding: 0;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  cursor: default;
}
.b-sch-timerange.b-sch-current-time {
  border-left: 0.8px dotted var(--buttonBG) !important;
}
.b-sch-timerange.b-sch-timeranges.b-sch-line.b-sch-current-time label {
  color: transparent;
  position: relative;
  width: 26px;
  height: 26px;
}
.b-sch-timerange.b-sch-timeranges.b-sch-line.b-sch-current-time label::before {
  content: "T";
  font-size: 14px;
  color: var(--white-color);
  text-align: center;
  line-height: 26px;
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
}
/* ==========================================================================
   GANTT DASHBOARD STYLES
   ========================================================================== */
.task-container {
  font-family: Albert Sans, sans-serif;
  width: 147px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.taskname {
  color: var(--taskname-color);
  font-size: 14px;
  width: 51px;
  height: 17px;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}
.project-dot-link {
  color: var(--project-dot-link-color);
  font-size: 12px;
  width: 131px;
  height: 14px;
  text-align: left;
  vertical-align: bottom;
}
.shot-link {
  color: var(--shot-link-color);
  font-size: 12px;
}
.project-dot-link span {
  color: var(--shot-link-color);
}
.black-dot {
  color: var(--shot-link-color);
}
.b-panel .b-panel-body-wrap {
  background-color: var(--white-color);
}
.b-widget {
  font-family: Albert Sans, sans-serif;
}
.b-grid-header-text {
  padding: 1em 0 1em 0;
}
.b-grid-header-text>.b-grid-header-text-content {
  font-size: 12px;
  font-weight: 500;
}
.b-grid-headers-locked .b-grid-header.b-depth-0[data-column="task"] {
  padding-left: 101px;
}
.b-grid-panel-body {
  background-color: transparent;
  height: calc(100% - 4px);
}
.thumbnail-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-grid-header-container {
  background-color: var(--white-color);
}
.b-grid-header-container .b-grid-headers-locked {
  background-color: var(--tableHeader);
}
.b-grid-header .b-icon:before {
  font-weight: initial !important;
  color: var(--grey) !important;
}
.b-grid-header-container .b-sch-timeaxiscolumn {
  background-color: var(--white-color);
}
.b-sch-header-timeaxis-cell {
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.b-horizontaltimeaxis .b-sch-header-timeaxis-cell {
  border-inline-start: 1px solid var(--border);
}
.b-sticky-headers .b-horizontaltimeaxis .b-sch-header-text.b-sticky-header {
  height: 7px;
}
.b-react-portal-container {
  width: 100%;
}
.b-react-portal-container .task-content {
  width: calc(100% - 85px);
}
.gantt-task-name {
  color: var(--primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.b-grid-cell {
  border-right: none !important;
  font-size: 12px;
  font-weight: 400;
  padding: 0 16px;
  color: var(--secondary);
}
.b-grid-header:not(.b-grid-header-parent) .b-grid-header-text>.b-grid-header-text-content {
  color: var(--tableHeaderText);
}
.b-startdate-cell,
.b-enddate-cell,
.b-grid-cell[data-column="taskComment"],
.b-grid-cell[data-column="totalwork"],
.b-grid-cell[data-column="allocation"] {
  color: var(--secondary);
}
/* Only for startdate and enddate cells — since others don't use background-color */
.b-grid-cell[data-column="taskComment"],
.b-grid-cell[data-column="totalwork"],
.b-grid-cell[data-column="allocation"] {
  background-color: unset;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled),
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-inner {
  background: transparent;
  flex: 0 0 1px;
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-inner,
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled).b-hover .b-grid-splitter-inner {
  width: 1px;
  left: calc((1px - 1px) / -.5);
}
.b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-inner:before {
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  background: linear-gradient(to right, rgb(251 251 251 / 28%) 0%, rgb(229 229 229 / 56%) 100%);
  position: absolute;
  right: 0;
}
.b-grid-headers-locked .b-grid-header.b-depth-0 {
  padding-inline: 1em 1em;
}
.b-gridbase.b-sort .b-grid-header .b-sort-icon {
  display: initial;
}
.b-gridbase:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-depth-0:focus,
.b-gridbase:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-depth-0.b-check-header-with-checkbox:focus-within {
  background-color: transparent;
}
.b-gridbase.b-columnresize .b-grid-header.b-resizing {
  background: #eaeffa;
}
.b-gridbase.b-sort.b-sort-hover-icon:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-grid-header.b-sortable.b-depth-0:hover:not(.b-sort):not(.b-group) .b-grid-header-text .b-sort-icon::before,
.b-gridbase.b-sort.b-sort-hover-icon:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-grid-header.b-sortable.b-depth-0:focus:not(.b-sort):not(.b-group) .b-grid-header-text .b-sort-icon::before {
  font-family: "atlas" !important;
  content: "\e9b4";
}
.b-gridbase.b-sort .b-grid-header.b-sort .b-grid-header-text .b-sort-icon::before {
  content: "\e9b5";
  font-family: "atlas" !important;
}
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row).b-hover,
.b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell,
.b-grid-row.b-selected,
.b-gridbase .b-timeline-subgrid .b-grid-row.b-selected:not(.b-group-row) {
  background-color: var(--rowHover);
}
.b-sch-header-text {
  height: 20px;
  color: #66707B;
}
.b-gantt-task-wrap {
  height: 2.2em;
  margin-top: -6px;
}
.b-gridbase:not(.b-column-resizing, .b-row-reordering, .b-dragging-header) .b-grid-header-container .b-depth-0:hover,
.b-grid-header-container .b-sch-timeaxiscolumn .b-sch-header-timeaxis-cell:hover {
  background-color: transparent;
}
.b-timeranges-header-canvas .b-sch-nonworkingtime,
.b-timeline-subgrid .b-sch-range {
  background-color: rgb(128 113 202 / 8%);
}
.taskInfo .MuiPaper-root {
  border-radius: 8px;
  pointer-events: auto;
}
.taskInfoWrapper {
  padding: 24px;
  width: 340px;
}
.taskInfoHeaderSection {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.taskInfoHeaderSection .taskInfoThumbnail {
  width: 70px;
  height: 40px;
}
.taskInfoHeaderWrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: calc(100% - 86px);
}
.taskInfoProjectName {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.taskInfoTaskName,
.taskInfoProjectName {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.taskInfoTagsWrap {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.taskInfoTagsWrap .assigneeName {
  background-color: var(--ActiveMenu);
  color: var(--secondary);
}
.taskInfoTagsWrap .chip {
  font-size: 0.7rem;
  height: 22px;
}
.taskInfoDatesWrap {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.taskInfoDatesWrap .taskInfoDatesRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
}
.taskInfoDatesRow .callIcon {
  font-size: 24px;
  color: var(--primary2);
}
/* ==========================================================================
   FLOATING TOOLBAR STYLES
   ========================================================================== */
.gantt-floating-toolbar-container {
  position: absolute;
  bottom: 18px;
  right: 15px;
  z-index: 1000;
}
.gantt-floating-toolbar {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px;
  width: 220px;
}
.gantt-floating-toolbar .toolbar-button {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--toolbar-button-text-color);
  border-radius: 4px;
  cursor: pointer;
  font-size: 24px;
  border: 1px solid transparent;
}
.gantt-floating-toolbar .toolbar-button:hover {
  border: 1px solid var(--border);
}
.gantt-floating-toolbar .toolbar-button-active {
  color: #F06022 !important;
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid #F06022 !important;
}
.gantt-floating-toolbar .toolbar-button-active:hover {
  background-color: rgba(255, 0, 0, 0.15);
}
.toolbar-today-button {
  background-color: var(--toolbar-today-button-color);
  color: var(--white-color);
  border: none;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  width: 48px;
  height: 24px;
}
.toolbar-today-button:hover {
  background-color: var(--toolbar-today-button-hover-color);
}
.toolbar-today-button-active {
  background-color: #F06022 !important;
  color: var(--white-color) !important;
  border: 1px solid #F06022 !important;
}
.toolbar-today-button-active:hover {
  background-color: #F06022 !important;
}
.container {
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: Albert Sans, sans-serif;
}
.gantt-floating-settings {
  width: 100%;
  position: absolute;
  bottom: 44px;
  right: 0;
  background-color: var(--white-color);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}
.gantt-floating-settings-Wrapper {
  width: 100%;
}
.gantt-floating-settings .settings-title,
.gantt-floating-settings .settings-title.Mui-focused {
  width: 100%;
  font-size: 11px;
  color: var(--black-color);
  font-weight: 500;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}
.gantt-floating-settings-Wrapper .settings-content {
  padding: 8px 0;
}
.settings-content .settingItem {
  margin: 0;
  gap: 4px;
  padding: 0 16px 0 12px;
  height: 26px;
}
.settings-content .settingItem:hover {
  background-color: var(--rowHover);
}
.settings-content .settingButton {
  padding: 0;
}
.settings-content .settingButton>span:before {
  content: "\e944";
  font-family: "atlas";
  font-size: 20px;
}
.settings-content .settingButton.Mui-checked {
  color: var(--secondary);
}
.settingButton .PrivateSwitchBase-input~span svg {
  display: none;
}
.settings-content .settingButton.Mui-checked>span::before {
  content: "\e9b7";
  font-family: "atlas";
}
.settings-content .MuiFormControlLabel-label {
  font-size: 12px;
  color: var(--secondary);
}
.settings-content .settingButton .MuiTouchRipple-root {
  display: none;
}
.gantt-settings-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 100;
}
.b-grid-body-container:has(.b-grid-subgrid-collapsed) .b-grid-splitter-collapsed .b-grid-splitter-button-collapse {
  background: var(--toolbar-today-button-color) !important;
  color: var(--white-color);
}
@media (min-width: 1800px) {

  .b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-buttons {
    height: 3em;

  }

}
/*# sourceMappingURL=GanttDashboard.css.map */.DrawerWrapper .MuiDrawer-paper {
    min-width: 380px;
    width: 30%;
    border-radius: 8px 0 0 8px;
    background-image: none;
    background: var(--white-color);
    border: none;
}

.drawer-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.drawer-header {
    padding: 8px 12px 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);

    @media (min-width:1800px) {
        padding: 12px 24px;
    }
}

.drawer-header button .Icon {
    color: var(--primary2);
}

.drawer-body {
    height: calc(100% - 57px);
}

.drawerbody-Scroll {
    height: 100%;
    overflow: auto;
}

.fleld-setting-listitem {
    padding: 8px 24px;
}

.fleld-setting-listitem:hover {
    background-color: var(--rowHover);
}

.fleld-setting-listitem .MuiListItemSecondaryAction-root {
    position: initial;
    transform: translateY(0%);
}

.switch-wrapper:has(.Mui-disabled) .MuiSwitch-switchBase.Mui-checked.Mui-disabled {
    opacity: 1;
}

.switch-wrapper:has(.Mui-disabled) .onoff-wrapper span {
    color: var(--white-color);
}

.switch-wrapper:has(.Mui-disabled) .onoff-wrapper .labelOn {
    color: var(--white-color);
}

.switch-wrapper:has(.Mui-disabled) .MuiSwitch-switchBase.Mui-checked+.MuiSwitch-track {
    background: var(--iconBG);
    border: 1px solid var(--border);
}

.filterPanel .drawer-body {
    display: flex;
    flex-direction: column;
}

.selectedFilters-wrapper {
    padding: 10px 24px;
    border-bottom: 1px solid var(--border);
    min-height: 114px;
    max-height: 114px;
    overflow: auto;
    scrollbar-gutter: stable;
}

.selectedFilters-wrapper::-webkit-scrollbar {
    width: 6px;
}

.selectedFilters-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.selectedFilters-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.selectedFilters-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.selectedFilters-Container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.filter-category {
    padding: 5px 8px 5px 24px;
    border-bottom: 1px solid var(--border);
}

.filter-category:hover {
    background-color: var(--rowHover);
}

.filter-category:has(.MuiCollapse-entered):hover {
    background-color: transparent;
}

.filter-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-category .expandButton {
    color: var(--primary2);
}

.filter-category .MuiCollapse-wrapperInner {
    padding-left: 2px
}

.filter-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.filter-list .filter-list-LI {
    padding-right: 12px;

}

.filter-list .filter-list-LI .filter-listItem-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px dashed var(--border);
}

.filter-list li:last-child .filter-listItem-wrap {
    border-bottom: none;
}

.filter-list .filter-list-LI .filter-Item-label {
    margin-left: -8px;
    overflow: hidden;
    white-space: nowrap;
}

.filter-listItem-wrap .filter-Item-label .filter-label {
    text-overflow: ellipsis;
    overflow: hidden;
}

.filter-list .filter-list-LI .filter-Item-label .filter-Item-checkbox {
    color: #414F6C;
    font-size: 24px;
    margin-left: -4px;
}

.filter-list .filter-list-LI .filter-Item-label .filter-Item-checkbox.Mui-checked:before {
    content: '\e9b7';
}

.filter-list .filter-list-LI .filter-Item-label svg {
    display: none;
}

.filter-list .filter-count {
    color: var(--orange);
    font-weight: 300;
    width: 40px;
    text-align: right;
    font-size: 0.750rem;
}

.filter-category .filter-divider {
    border-top: 1px solid var(--border);
    margin: 0 12px 0 0;
}

.filter-category .showMoreWrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 12px;
}

.filter-category .show-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--orange);
    font-weight: 300;
    text-align: right;
    font-size: 0.750rem;
    cursor: pointer;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.filter-chips .chipStyle {
    display: inline-flex;
    align-items: center;
    border-radius: 16px;
    padding-left: 16px;
    padding-right: 8px;
    color: var(--white-color);
    background-color: var(--task-background-color);
}

.filter-chips .chipStyle .chipText {
    font-size: 0.7rem;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-body-scroll {
    margin-bottom: 8px;
    flex-grow: 1;
    overflow: auto;
}


.calendarControlWrap {
    margin-right: 8px;
    margin-bottom: 16px;
    border-radius: 8px;
}

.DatePickerWrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.DatePickerWrapper .datePicker {
    width: 32%;
    flex: inherit;
}

.datePicker .MuiButtonBase-root {
    color: transparent;
    width: 100%;
    position: absolute;
    left: 0;
}

.datePicker .MuiButtonBase-root:hover {
    background: transparent;
}

.datePicker .MuiFormLabel-root {
    font-size: 13px;
    color: var(--secondary);
    transform: translate(14px, 9px);
}

.datePicker .MuiFormLabel-root.Mui-focused,
.datePicker .MuiFormLabel-root.MuiInputLabel-shrink {
    transform: translate(14px, -9px);
}

.datePicker .MuiPickersInputBase-root {
    color: var(--primary);
}

.datePicker .MuiPickersInputBase-sectionsContainer {
    padding: 8px 0;
    font-size: 13px;
    color: var(--secondary);
}

.DatePickerWrapper .doneButton {
    background-color: var(--orange);
    text-transform: none;
    color: var(--white-color);
    margin-left: auto;
    width: 90px;
}

.DatePickerWrapper .doneButton:hover {
    background-color: var(--orangeHover);
}

.DatePickerWrapper .doneButton.Mui-disabled {
    background-color: var(--disabled);
    color: var(--white-color);
}

.MuiPickerPopper-paper {
    background-color: var(--rowHover) !important;
    border-radius: 8px !important;
}

.MuiPickerPopper-paper .MuiPickersCalendarHeader-root {
    border-bottom: 1px dashed var(--border);
}

.MuiPickerPopper-paper .MuiPickersCalendarHeader-root .MuiPickersCalendarHeader-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.MuiPickersCalendarHeader-root .MuiIconButton-sizeSmall:before {
    content: '\e916';
    font-family: 'atlas';
    font-size: 24px;
    color: var(--secondary);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.MuiPickersCalendarHeader-root .MuiIconButton-sizeSmall svg {
    display: none;
}

.MuiPickerPopper-paper .MuiPickersCalendarHeader-root:has(.MuiPickersArrowSwitcher-root[style*="visibility: hidden"]) .MuiIconButton-sizeSmall:before {
    transform: rotate(180deg);
}

.MuiPickersCalendarHeader-root .MuiPickersArrowSwitcher-root .MuiPickersArrowSwitcher-previousIconButton,
.MuiPickersCalendarHeader-root .MuiPickersArrowSwitcher-root .MuiPickersArrowSwitcher-nextIconButton {
    font-family: 'atlas';
    font-size: 24px;
}

.MuiPickersCalendarHeader-root .MuiPickersArrowSwitcher-root .MuiPickersArrowSwitcher-previousIconButton::before {
    content: '\e913';
}

.MuiPickersCalendarHeader-root .MuiPickersArrowSwitcher-root .MuiPickersArrowSwitcher-nextIconButton::before {
    content: '\e914';
}

.MuiPickersCalendarHeader-root .MuiPickersArrowSwitcher-root .MuiPickersArrowSwitcher-previousIconButton svg,
.MuiPickersCalendarHeader-root .MuiPickersArrowSwitcher-root .MuiPickersArrowSwitcher-nextIconButton svg {
    display: none;
}

.MuiPickerPopper-paper .MuiPickersCalendarHeader-root:has(.MuiPickersArrowSwitcher-root[style*="visibility: hidden"]) .MuiPickersCalendarHeader-label,
.MuiPickerPopper-paper .MuiPickersCalendarHeader-root:has(.MuiPickersArrowSwitcher-root[style*="visibility: hidden"]) .MuiIconButton-sizeSmall:before {
    color: var(--light-blue);
}

.MuiYearCalendar-root .MuiYearCalendar-button {
    border-radius: 6px;
    color: var(--secondary);
    font-size: .75rem;
}

.MuiYearCalendar-root .MuiYearCalendar-button.Mui-selected[aria-checked="true"] {
    background-color: var(--light-blue);
    color: var(--white-color);
}

.MuiYearCalendar-root .MuiYearCalendar-button[aria-current="date"] {
    border: 1px solid  var(--light-blue);
    background: var(--ActiveMenu);
}

.MuiDayCalendar-weekDayLabel[aria-label="Sunday"],
.MuiDayCalendar-weekDayLabel[aria-label="Saturday"],
.MuiPickersDay-root[aria-colindex="1"],
.MuiPickersDay-root[aria-colindex="7"] {
    color: var(--orange);
}

.MuiPickersLayout-root .MuiPickersDay-root {
    border-radius: 6px;
}

.MuiPickersLayout-root .MuiPickersDay-root.MuiPickersDay-today {
    border: 1px solid var(--secondary);
    background: var(--ActiveMenu);
}

.MuiPickersLayout-root .MuiButtonBase-root.MuiPickersDay-root.Mui-selected {
    background: var(--light-blue);
    color: var(--white-color);
}

.MuiButtonBase-root.MuiPickersDay-root:hover {
    background: var(--ActiveMenu);
}html,
body {
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-weight: 300;
}

:root {
  --border: #dcdfec;
  --orange: #F06022;
  --orangeHover: #da4100;
  --primary: #627DA4;
  --secondary: #535E6C;
  --tableHeader: #F5F7FC;
  --rowHover: #f7f8fd;
  --background-default: #E7ECF7;
  --primary2: #67708C;
  --tableHeaderText: #66707B;
  --light-blue: #7699CB;
  --soft-blue: #F0F8FF;
  --cobalt-blue: #64B0EC;
  --FineText: #434852;
  --greyColor: #747474;
  --disabledColor: #C4CBE1;
  --panelBG: #FCFCFE;
  --buttonBG: #414F6C;
  --disabled: #A5ABBE;
  --ActiveMenu: #E7ECF7;
  --deep-blue: #3664A9;
  --deep-black: #011426;
  --subjectColor: #828C99;
  --noteType: #D8E3FD;
  --border2: #e5e7eb;
  --Hover2: #f3f4f6;
  --iconBG: #E3E7F2;
  --SP-blue: #558BDA;
  --black-color: #000;

  --alert-error: #FDE9E7;
  --alert-error-border: #E02A01;
  --alert-warning: #FEF8E6;
  --alert-warning-border: #CB8702;
  --alert-success: #EDF6EA;
  --alert-success-border: #00A737;
  --alert-info: #F4F7FF;
  --alert-info-border: #2345FF;
}

:root[data-theme="dark"] {
  --border: #67707e66;
  --orange: #F16537;
  --orangeHover: #da4100;
  --primary: #ffffff;
  --secondary: #FFFFFF;
  --tableHeader: #222327;
  --rowHover: #303238;
  --background-default: #151719;
  --primary2: #ffffff;
  --tableHeaderText: #E9ECF1;
  --light-blue: #506583;
  --soft-blue: #F0F8FF;
  --cobalt-blue: #64B0EC;
  --FineText: #E7ECF7;
  --greyColor: #747474;
  --disabledColor: #404248;
  --panelBG: #37383E;
  --buttonBG: #5C6787;
  --disabled: rgba(255, 255, 255, 0.75);
  --ActiveMenu: #45464E;
  --deep-blue: #3664A9;
  --deep-black: #011426;
  --subjectColor: #828C99;
  --noteType: #24242B;
  --border2: #414F6C;
  --Hover2: #313236;
  --iconBG: #3D434A;
  --SP-blue: #78A5E6;
  --black-color: #fff;

  --dashboardHeading: #ACB5C8;
  --barColour: #5075AC;
  --darkDisabledIcon: #45464E;
  --gGanttBarCopy: #C5D6ED;
  --darkBorder: #32343F;
  --darkHeadings: #97A4C7;
  --border3: rgba(61, 67, 74, 0.7);
  --tableBG: #25262B;
  --panelBGDark: #2B2C31;
  --iconSelectedBG: #67707E;
  --darkDotColor: #747478;
  --grayscale-10: #B2B6BD;
  --grayscale-40: #7B8596;
  --grayscale-55: #3D434A;
  --grayscale-60: #525964;

}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: none !important;
}

::-webkit-scrollbar-thumb {
  background: #C4CBE1 !important;
  border-radius: 10px;
  min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a3a9bd !important;
}

::-webkit-scrollbar-thumb:active {
  background: #9196a7 !important;
}

::-webkit-scrollbar-corner {
  background: none;
}

.Waiting {
  position: fixed;
  bottom: 8px;
  left: 50%;
  width: 40px;
  z-index: 99999;
  transform: translate(-50%, 0px);
}

.loader {
  color: var(--primary);
  font-size: 7px;
  position: relative;
  margin: auto;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
  top: -8px;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}

.loader:before {
  left: -12px;
  animation-delay: -0.32s;
}

.loader:after {
  left: 12px;
}

@keyframes bblFadInOut {

  0%,
  80%,
  100% {
    box-shadow: 0 8px 0 -4px
  }

  40% {
    box-shadow: 0 8px 0 0
  }
}

.MuiPopover-root .MuiPaper-root {
  background-image: none;
  outline: 1px solid var(--border);
}

.MuiPopover-root .MuiPaper-root .MuiMenuItem-root {
  color: var(--secondary);
}

.MuiPopover-root .MuiPaper-root .MuiMenuItem-root:hover {
  background-color: var(--rowHover);
}

.MuiPopover-root .MuiPaper-root .MuiMenuItem-root.Mui-selected {
  background-color: var(--ActiveMenu);
}

.ERP-Root {
  width: 100%;
  height: 100%;
}

.ERP-Main-Container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.Main-Header {
  position: relative;
}

.Main-Header:before {
  content: '';
  background: #ff4000;
  width: 143px;
  height: 143px;
  display: block;
  position: fixed;
  right: -50px;
  top: -50px;
  filter: blur(75px);
}

.Main-Header .Main-Header-innerWrap {
  display: flex;
  justify-content: center;
  min-height: 56px;
}

@media (min-width: 1800px) {
  .Main-Header .Main-Header-innerWrap {
    min-height: 64px;
  }
}

.header-leftWrap {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 24px;
}

.SidebarHeader .MenuICon,
.header-leftWrap .MenuICon {
  padding: 0;
  margin-left: -10px;
}

.SidebarHeader .MenuICon .Icon,
.header-leftWrap .MenuICon .Icon {
  font-size: 40px;
  color: var(--primary2);
}


.header-rightWrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.themeIconWrap {
  color: var(--theme-color);
  height: 56px;
  width: 56px;
}

.notificationWrap .notifications-badge {
  color: #fff;
  background-color: #FF4500;
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 30px;
}

.notifications-badge .MuiBadge-anchorOriginTopRight {
  transform: scale(1) translate(0%, 0%);
}

.notificationWrap .Icon {
  font-size: 40px;
}

.ERP-Body-Container {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  padding: 0 24px 8px 24px;
}

.ERP-InnerBody-Container {
  width: 100%;
  height: 100%;
}

.ERP-Container {
  height: 100%;
  border-radius: 8px;
  background-color: var(--white-color);
}

.ERP-Container .dashboardsContainer {
  border-radius: 8px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  background-color: var(--white-color);
  background-image: none;
  border: 0.6px solid var(--border);
}

.ERP-Footer-Container {
  display: flex;
  align-items: center;
  padding: 0 0 16px 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary);
}

.ERP-Footer-Container .registeredIcon {
  font-size: 24px;
}

.profile-picture-Wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 16px 24px;
}

.profile-picture {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  position: relative;
  border: 2px solid var(--primary2);
}

.profile-picture .avatar {
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: var(--primary2);
}

.profile-picture .avatar svg {
  width: 110%;
  height: 110%;
  margin-top: 20px;
}

.profile-picture .camera-button {
  position: absolute;
  bottom: 0;
  right: -2px;
  padding: 0px;
  font-size: 24px;
  background: var(--white-color);
  border: 1px solid var(--primary2);
  color: var(--primary);
  display: none;
}

.themeSwitch-wrapper {
  padding: 6px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.profiletabs-wrapper {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.profiletabs-wrapper .profileTabButton {
  padding: 0px 12px;
  font-weight: 300;
  box-shadow: none;
}

.profiletabs-wrapper .profileTabButton:hover {
  box-shadow: none;
}

.profiletabs-wrapper .profileTabButton.MuiButton-contained {
  background-color: var(--orange);
  border: 1px solid transparent;
}

.profiletabs-wrapper .profileTabButton.MuiButton-outlined {
  border-color: var(--border);
  color: var(--secondary);
}

.profile-Body {
  padding: 24px 12px 24px 24px;
  scrollbar-gutter: stable;
  overflow: auto;
}

.profile-content-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 16px;
  column-gap: 12px;
  word-break: break-word;
  color: var(--secondary);
}

.profile-Setting-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-Setting-wrap .MuiSelect-icon {
  color: transparent;
  display: block;
  border-right: 2px solid var(--primary2);
  transform: rotate(45deg);
  border-bottom: 2px solid var(--primary2);
  width: 12px;
  height: 12px;
  margin: 2px 7px 0 0;
}

.logoutButton {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border: 1px solid var(--border);
  color: var(--secondary);
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  margin: 24px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  width: calc(100% - 48px);
}


html[data-theme="dark"] .logoutButton:hover,
.logoutButton:hover {
  background-color: var(--rowHover);
}

.ERP-InnerBody-Container .fallbackAlert {
  position: fixed;
  left: 40px;
  bottom: 65px;
  border-radius: 8px;
  font-weight: 400;
  color: var(--alert-error-border);
  background-color: var(--alert-error);
  border: 1px solid var(--alert-error-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.noOptionsText {
  font-size: 0.775rem;
  color: var(--secondary);
}

.MuiAutocomplete-paper {
  margin-left: 24px;
  width: 100%;
  border: 1px solid var(--border);
}

.MuiAutocomplete-paper .MuiAutocomplete-listbox {
  padding: 0;
}

.MuiAutocomplete-paper .MuiAutocomplete-listbox .MuiAutocomplete-option {
  color: var(--secondary);
  font-size: 12px;
  padding: 12px 16px;
}

.MuiAutocomplete-paper .MuiAutocomplete-listbox .MuiAutocomplete-option.Mui-focused {
  background-color: var(--rowHover);
}

.ERP-Root .userIndicator {
  padding: 0;
  background-color: var(--white-color);
  /* outline: 1px solid var(--border); */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: fixed;
  z-index: 9999;
  user-select: none;
  border-radius: 8px;
  min-width: 200px;
}

.userIndicator .dragIcon {
  cursor: move;
  font-size: 20px;
  color: var(--greyColor);
  opacity: .5;
  ;
  padding-left: 4px;
}

.userIndicatorMessage {
  color: var(--secondary);
}

.userIndicatorMessage .currentUser {
  font-weight: 600;
}

.userIndicator .userSwitchBackButton {
  background-color: var(--light-blue);
  color: var(--white-color);
  border-radius: 0;
  font-weight: 500;
  text-transform: none;
  font-size: 12px;
}

.groupBy-popupOuter.groupBy-popup {
  width: 190px;
  border-radius: 8px;
  background-image: none;
}

.groupBy-header {
  padding: 8px 16px;
  display: flex;
  border-bottom: 1px solid var(--border);
}

.groupBy-options {
  display: flex;
  flex-direction: column;
}

.groupBy-list {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.groupBy-list:hover {
  background-color: var(--rowHover);
}

.groupBy-list .groupBy-checkBox {
  padding: 0px 8px 0px 12px;
  font-size: 24px;
}

.groupBy-list .groupBy-checkBox svg {
  display: none;
}

.groupBy-list .groupBy-checkBox:before {
  content: '\e944';
  font-family: 'atlas';
  color: var(--secondary);
}

.groupBy-list .groupBy-checkBox.Mui-checked:before {
  content: '\e9b7';
}

.groupBy-footer {
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.groupBy-footer .groupBy-Botton {
  background-color: var(--background-default);
  border-color: var(--background-default);
  color: var(--primary2);
  border-radius: 4px;
  font-weight: 500;
  text-transform: none;
  font-size: 12px;
  height: 28px;
  transition: all 0.3s ease;
}

.groupBy-footer .groupBy-Botton:hover {
  background-color: var(--light-blue);
  color: var(--white-color);
}

.groupBy-footer .groupBy-Botton.groupBy-applyButton {
  background-color: var(--buttonBG);
  color: var(--white-color);

  display: none;
  /* will remove this once view more is implemented */
}

.searchSuggestionPopper {
  width: 100%;
  z-index: 9999;
  transform: translate3d(0, 32px, 0px) !important;
}

.searchSuggestionPopper .searchSuggestionPaper {
  background-image: none;
  margin-top: 4px;
  border-radius: 8px;
  max-height: 460px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.searchSuggestionScroll {
  flex: 1;
  overflow-y: auto;
  max-height: 400px;
  margin-right: 3px;
  margin-bottom: 8px;
}

.searchSuggestionContainer {
  display: flex;
  flex-direction: column;
}

.searchResultsSection {
  display: flex;
  flex-direction: column;
  border-bottom: 1px dashed var(--border);
}

.searchResultsCategory {
  padding: 12px 16px 0 16px;
  color: var(--disabled);
}

.searchResultsList {
  display: flex;
  flex-direction: column;
}

.searchResultsListItem {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
}

.searchResultsListItem:hover {
  background-color: var(--rowHover);
}

.searchResultsListItemText {
  color: var(--secondary);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.searchEmptyState {
  padding: 16px;
  font-size: 0.75rem;
  color: var(--disabled);
  text-align: center;
}

.searchResultsFooter {
  padding: 12px 16px;
  font-size: 0.75rem;
  text-align: right;
  background: var(--rowHover);
  border-radius: 0 0 8px 8px;
}

.searchResultsFooter span {
  color: var(--orange);
}

.fallbackAlert-Success .MuiAlert-colorSuccess {
  border: 1px solid #00A737;
  background: #EDF6EA;
  color: #00A737;
  border-radius: 6px;
}
.ag-theme-alpine-dark {
    --ag-background-color: var(--panelBGDark);
    --ag-odd-row-background-color: var(--iconBG);
    --ag-header-background-color: var(--tableHeader);
    --ag-row-hover-color: var(--rowHover);
}

html[data-theme="dark"] {

    /* General backgrounds */
    .loading-spinner-container {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .search-container {
        background: var(--background-default);
    }

    .shortcutWrap .shortcutIcon {
        background-color: var(--panelBG);
        color: var(--tableHeaderText);
    }

    .searchSuggestionPopper .searchSuggestionPaper {
        background: var(--panelBG);
        border: 1px solid rgba(68, 70, 77, 0.6);
    }

    .searchResultsCategory {
        color: var(--grayscale-40);
    }

    .searchResultsFooter {
        background: var(--darkDisabledIcon);
    }

    .searchResultsSection {
        border-color: var(--border);
    }

    .help-footer-logo {
        filter: brightness(4);
    }

    .gantt-floating-toolbar,
    .gantt-floating-settings {
        background: var(--panelBG);
    }

    .b-grid-header .b-sch-timerange.b-sch-current-time {
        background-color: var(--task-background-color);
    }

    .b-sch-timerange.b-sch-current-time {
        border-left: 0.8px dotted var(--task-background-color) !important;
    }

    .b-sch-timerange.b-sch-timeranges.b-sch-line.b-sch-current-time label::before {
        color: var(--black-color);
    }

    /* Scrollbar */
    ::-webkit-scrollbar-thumb {
        background: #3D434A !important;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #657384 !important;
    }

    ::-webkit-scrollbar-thumb:active {
        background: #7e92a9 !important;
    }

    /* Modal/Backdrop */
    .MuiBackdrop-root.MuiModal-backdrop {
        background: rgba(10, 11, 13, 0.6);
    }

    .taskInfo .MuiBackdrop-root.MuiModal-backdrop {
        background: transparent;
    }

    .MuiPopover-root[class*="filterPopoverBG"] .MuiBackdrop-root.MuiModal-backdrop,
    .MuiPopover-root[class*="versionDDOverlay"] .MuiBackdrop-root.MuiModal-backdrop,
    .MuiPopover-root:has(div[class*="popoverPaperAttachment"]) .MuiBackdrop-root.MuiModal-backdrop {
        background: rgb(22 22 24 / 10%);
    }

    /* Menu & submenu  popoverPaperAttachment */
    .sidebar .sidebarPaper {
        background-color: var(--panelBGDark);
    }

    .footer {
        border-top: 1px solid var(--grayscale-55);
    }

    .sliding-panel {
        box-shadow: 6px 0px 8px rgb(8 9 14 / 40%);
    }

    /* Profile tabs */
    .profiletabs-wrapper .profileTabButton.MuiButton-outlined {
        border-color: var(--border);
        color: var(--disabled);
    }

    .profiletabs-wrapper .profileTabButton:hover {
        background-color: var(--rowHover);
    }

    /* Switch user footer */
    .switchDD .MuiAutocomplete-paper {
        background: var(--ActiveMenu);
    }

    .switchDD .MuiAutocomplete-clearIndicator {
        color: var(--disabled);
    }

    .switchuserFooter .proceedButton,
    .switchuserFooter .proceedButtonDisabled {
        background: var(--barColour) !important;
        border: 1px solid var(--barColour) !important;
        color: var(--FineText) !important;
    }

    .switchuserFooter .proceedButtonDisabled {
        opacity: .5;
    }

    .switchuserFooter .switchBackButton,
    .switchuserFooter .switchBackButtonDisabled {
        background: var(--darkDisabledIcon) !important;
        border: 1px solid var(--darkDisabledIcon) !important;
        color: var(--disabled) !important;
    }

    .switchuserFooter .switchBackButtonDisabled {
        opacity: .5;
    }

    .switchuserFooter .switchBackButton:hover {
        background: var(--rowHover) !important;
        border: 1px solid var(--border) !important;
    }


    /* Drawers */
    .DrawerWrapper .MuiDrawer-paper {
        background: var(--panelBGDark);
    }

    .drawer-header {
        border-bottom: 1px solid var(--border3);
    }

    .drawer-content hr,
    .filter-category {
        border-color: var(--border3);
    }

    .filter-category .expandButton {
        color: var(--tableHeaderText);
    }

    /* dashboards */
    .b-panel .b-panel-body-wrap,
    .b-grid-subgrid-locked .b-grid-row {
        background: var(--tableBG);
    }

    .b-grid-header-container {
        background-color: var(--tableHeader);
    }

    .b-grid-header-container .b-sch-timeaxiscolumn {
        background: var(--tableHeader);
    }

    .b-sch-header-text {
        color: var(--primary);
    }

    .b-gantt-task {
        color: var(--primary);
    }

    /* Grid splitter */
    .b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-inner:before {
        background: linear-gradient(to right, rgb(38 38 38 / 0%) 0%, rgb(0 0 0 / 25%) 100%);
    }

    .b-grid-body-container:has(.b-grid-subgrid-collapsed) .b-grid-splitter-collapsed .b-grid-splitter-button-collapse {
        color: var(--white-color) !important;
    }

    .b-gridbase.b-split .b-grid-splitter:not(.b-disabled) .b-grid-splitter-button-collapse {
        color: var(--FineText);
    }

    .b-grid-cell.b-timeaxis-cell.b-widget-cell.b-sch-timeaxis-cell {
        background: var(--tableBG);
    }

    /* Grid lines */
    .b-column-line,
    .b-column-line-major {
        border-color: var(--border);
    }

    /* Popover menu */
    .MuiPopover-root .MuiPaper-root .MuiMenuItem-root:hover,
    .MuiPopover-root .MuiPaper-root .MuiMenuItem-root.Mui-selected {
        background: var(--Hover2);
    }

    .MuiPopover-root .MuiPaper-root {
        background: var(--panelBG);
    }

    /* Grid row hover/selected */
    .b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell.b-row-number-cell,
    .b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row) .b-grid-cell.b-row-number-cell.b-hover,
    .b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell.b-sequence-cell,
    .b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-timeaxissubgrid) .b-grid-row:not(.b-group-row) .b-grid-cell.b-sequence-cell.b-hover,
    .b-grid-row.b-hover,
    .b-hover,
    .b-hover .b-grid-cell.b-timeaxis-cell.b-widget-cell.b-sch-timeaxis-cell,
    .b-grid-cell.b-timeaxis-cell.b-widget-cell.b-sch-timeaxis-cell:hover {
        background: var(--Hover2);
    }

    .b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row).b-hover,
    .b-gridbase:not(.b-moving-splitter) .b-grid-subgrid:not(.b-hide-row-hover) .b-grid-row:not(.b-group-row).b-hover .b-grid-cell,
    .b-grid-row.b-selected,
    .b-gridbase .b-timeline-subgrid .b-grid-row.b-selected:not(.b-group-row),
    .b-selected .b-sch-timeaxis-cell {
        background: var(--Hover2) !important;
    }

    .b-gridbase.b-columnresize .b-grid-header.b-resizing {
        background: #202026;
    }

    .b-grid-header-resize-handle:after,
    .atlasDashboard .ag-header-cell-resize::after {
        opacity: 1;
    }

    .b-grid-header .b-icon:before {
        color: var(--primary) !important;
    }

    .userIndicator .userSwitchBackButton {
        background-color: var(--toolbar-today-button-color);
    }

    /* Scrollbar padding */
    .b-visible-scrollbar .b-show-yscroll-padding>.b-yscroll-pad {
        border-inline-start: 1px solid transparent;
    }

    /* Task info tags */
    .taskInfoTagsWrap .assigneeName {
        background: var(--darkDisabledIcon);
    }

    /* Switch wrapper */
    .switch-wrapper:has(.Mui-disabled) .MuiSwitch-switchBase.Mui-checked+.MuiSwitch-track {
        background: var(--iconBG);
    }

    .switch-wrapper:has(.Mui-disabled) .onoff-wrapper .labelOn {
        color: var(--disabled);
    }

    .switch-wrapper:has(.Mui-disabled) .onoff-wrapper .thumbon {
        background: var(--disabled);
    }

    .switch-wrapper .MuiSwitch-switchBase .onoff-wrapper .thumbon {
        background: var(--tableHeaderText);
    }

    .switch-wrapper .MuiSwitch-switchBase .onoff-wrapper .labelOff {
        color: var(--disabled);
    }

    .switch-wrapper .MuiSwitch-switchBase .onoff-wrapper .labelOn {
        color: var(--tableHeaderText);
    }

    /* Field/filter hover */
    .fleld-setting-listitem:hover,
    .filter-category:hover {
        background: var(--Hover2);
    }

    /* Filter chips */

    .filter-chips .chipStyle .chipText,
    .filter-chips .chipStyle button {
        color: var(--primary);
    }

    .filter-chips .filter-chips-category {
        color: var(--disabled);
    }

    /* Filter category collapse hover */
    .filter-category:has(.MuiCollapse-entered):hover {
        background: transparent;
    }

    .dashboard-header-rightControls .MyTaskSwitch {
        background: var(--panelBG);
    }

    .MyTaskSwitch .MyTaskSwitchLabel.Mui-checked {
        color: var(--primary);
    }

    .dashboard-header {
        background: var(--panelBGDark);
        border-radius: 8px 8px 0 0;
    }

    .ProjectCount {
        color: var(--grayscale-40);
    }

    .dashboard-header-rightControls .icons {
        background-color: var(--panelBG);
        border: 1px solid var(--grayscale-55);
    }

    .dashboard-header-rightControls .icons.active {
        background-color: var(--grayscale-60);
    }

    .dashboard-header-rightControls .icons.Mui-disabled {
        background: none;
    }

    .dashboard-header-rightControls:has(.groupBy-popper) .columnsIcon,
    .columnsIcon.has-checked {
        background-color: var(--grayscale-60);
    }

    .groupBy-popupOuter.groupBy-popup {
        background-color: var(--panelBG);
        border: thin solid var(--border);
    }

    .groupBy-header {
        border-bottom: 1px solid var(--border);
        color: var(--primary);
    }

    .groupBy-list {
        color: var(--secondary);
    }

    .groupBy-list:hover {
        background-color: var(--Hover2);
    }

    .ag-row-odd {
        background-color: var(--panelBGDark);
    }

    .atlasDashboard .ag-row-hover:not(.ag-full-width-row)::before,
    .atlasDashboard .ag-row-hover.ag-full-width-row.ag-row-group::before,
    .atlasDashboard .ag-row-group-expanded,
    .atlasDashboard .ag-row-group-contracted {
        background: var(--tableHeader);
    }

    .atlasDashboard .ag-row-hover:not(.ag-full-width-row)::before,
    .atlasDashboard .ag-row-hover.ag-full-width-row.ag-row-group::before {
        background-color: var(--Hover2);
    }

    .atlasDashboard .ag-header-cell.ag-column-resizing {
        background: #202026 !important;
    }

    .body-col .attachIcon {
        color: var(--secondary);
    }

    .filter-list .filter-list-LI .filter-Item-label .filter-Item-checkbox {
        color: var(--secondary);
    }

    .highlighted-row .highlightName,
    .highlighted-row .task-name {
        background-color: var(--iconSelectedBG);
    }

    .MuiTooltip-tooltip {
        background-color: #8697C8;
        color: #050506;
    }

    .MuiTooltip-tooltip .MuiTooltip-arrow {
        color: #8697C8;
    }

    .DBfolderIcon {
        color: var(--tableHeaderText);
    }

    .dashboard-count,
    .shots-count,
    .versions-count,
    .scans-count {
        color: var(--SP-blue);
    }

    .atlasDashboard .ag-pinned-left-header,
    .atlasDashboard .ag-pinned-left-cols-container {
        box-shadow: 4px 0px 6px rgb(0 0 0 / 35%);
    }

    .ERP-Footer-Container {
        color: var(--grayscale-40);
    }

    .VersionsLine1 {
        color: var(--SP-blue);
    }

    .gantt-task-name {
        color: var(--SP-blue);
    }

    .profile-picture {
        border: 2px solid var(--iconSelectedBG);
    }

    .profile-picture .avatar {
        color: var(--iconSelectedBG);
    }

    .slidepanel-header,
    .profile-picture-Wrapper,
    .profiletabs-wrapper {
        border-bottom: thin solid var(--border);
    }

    .calendarControlWrap .doneButton.Mui-disabled {
        background-color: var(--darkDisabledIcon);
        color: var(--iconSelectedBG);
    }

    .calendarControlWrap .doneButton {
        color: var(--black-color);
    }


    .MuiPickerPopper-paper {
        background: var(--tableBG);
        border: 1px solid var(--border);
    }

    .MuiPickerPopper-paper .MuiPickersCalendarHeader-label {
        color: var(--primary);
    }

    .MuiDayCalendar-weekContainer .MuiPickersDay-root {
        color: var(--primary);
    }

    .MuiPickersDay-root[aria-colindex="1"],
    .MuiPickersDay-root[aria-colindex="7"] {
        color: var(--orange);
    }

    .MuiYearCalendar-root .MuiYearCalendar-button {
        color: var(--primary);
    }

    .MuiPickersArrowSwitcher-root .MuiButtonBase-root {
        color: var(--black-color);
    }

    .dot {
        color: var(--darkDotColor);
    }

    .drawer-header button .Icon {
        color: var(--tableHeaderText);
    }

    .TicketsID .TicketsIDLink {
        color: var(--SP-blue);
    }

    .search-container .icon {
        color: var(--tableHeaderText);
    }

    .priorityIcon {
        color: var(--grayscale-40);
    }

    .MuiYearCalendar-root .MuiYearCalendar-button.Mui-selected[aria-checked="true"] {
        color: var(--primary);
    }

    .MuiPickerPopper-paper .MuiPickersCalendarHeader-root:has(.MuiPickersArrowSwitcher-root[style*="visibility: hidden"]) .MuiPickersCalendarHeader-label,
    .MuiPickerPopper-paper .MuiPickersCalendarHeader-root:has(.MuiPickersArrowSwitcher-root[style*="visibility: hidden"]) .MuiIconButton-sizeSmall:before {
        color: var(--primary);
    }

    .MuiPickersLayout-root .MuiButtonBase-root.MuiPickersDay-root.Mui-selected {
        color: var(--black-color);
    }

}