@import url('https://fonts.cdnfonts.com/css/verdana');@import url('https://fonts.cdnfonts.com/css/geneva');@import url('https://fonts.cdnfonts.com/css/roboto-slab-2');@import url('https://fonts.cdnfonts.com/css/roboto');@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* Works for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Works for Firefox */
input[type='number'] {
    -moz-appearance: textfield;
}
.progress-bar-wrapper {
    width: 100%;
    position: relative;
}

.MuiSwitch-root {
    width: 54px !important;
    height: 28px !important;
    padding: 0 !important;
    border-radius: 6px !important;
}

.MuiSwitch-root .MuiButtonBase-root,
.MuiSwitch-root .MuiButtonBase-root.Mui-checked {
    -webkit-transform: translateX(0) !important;
    -moz-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    transform: translateX(0) !important;
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
    height: 28px;
    padding: 0;
    top: 0;
    left: 0;
    padding: 0 2px;
    border-radius: 0;
}

.MuiSwitch-root .MuiButtonBase-root {
    flex-direction: row-reverse;
}

.MuiSwitch-root .MuiButtonBase-root:before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    top: 2px;
    left: 0;
    border-radius: 6px;
    -webkit-transform: translateX(2px);
    -moz-transform: translateX(2px);
    -ms-transform: translateX(2px);
    transform: translateX(2px);
    -webkit-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,-webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: 0px 2.4px 3.6px 0px #0000001A;
}

.MuiSwitch-root .MuiButtonBase-root.Mui-checked:before {
    -webkit-transform: translateX(28px);
    -moz-transform: translateX(28px);
    -ms-transform: translateX(28px);
    transform: translateX(28px);
}

.MuiSwitch-root .MuiButtonBase-root .MuiTypography-root {
    width: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.MuiSwitch-root .MuiButtonBase-root .MuiTypography-root * {
    font-size: 12px;
    line-height: 12px;
}
.confirmation-modal {
    border-radius: 12px;
    max-width: 350px;
}

.confirmation-modal .close {
    display: flex;
    flex-direction: row-reverse;
}

.confirmation-modal .close button {
    font-size: 18px;
    padding: 0;
    line-height: 24px;
    min-width: auto;
    width: 24px;
    height: 24px;
}

.confirmation-modal .body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.confirmation-modal .body .icon {
    padding: 10.67px;
    border-radius: 10.67px;
}

.confirmation-modal .body .question {
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
}

.confirmation-modal .body .details {
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
}

.confirmation-modal .actions {
    padding: 26px 30px 0 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.confirmation-modal .actions button {
    flex-grow: 1;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.scrollbar-container {
  position: relative;
  height: 100%; }

/*# sourceMappingURL=styles.css.map*/.information-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px 0;
}

.information-item-main-info {
    display: flex;
    align-items: flex-start;
    padding: 6px 24px;
    width: 100%;
    border-radius: 12px;
}

.information-item-label,
.information-item-value {
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    flex-basis: 50%;
}

.information-item-label {
    opacity: 0.7;
    align-self: flex-start;
}

.information-item-expandable .information-item-value  {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.information-item-expandable .information-item-show-more {
    padding: 0;
    opacity: 0.5;
}

.information-item-expandable .information-item-additional-info {
    display: none;
    padding: 6px 24px;
    width: 100%;
    border-radius: 12px;
    flex-basis: 100%;
    font-family: Inter;
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
    font-style: italic;
}

.information-item-expanded .information-item-additional-info {
    display: block;
}

@media (max-width: 720px) {
    .information-item-main-info {
        flex-direction: column;
    }

    .information-item-label {
        align-self: flex-start;
    }

    .information-item-label,
    .information-item-value {
        flex-basis: 100%;
        align-self: flex-start;
    }

    .information-item-expandable .information-item-show-more {
        display: none;
    }

    .information-item-expandable .information-item-additional-info {
        display: block;
    }
}
.labeled-progress-bar {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}

.label {
    font-family: Inter !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 20.8px;
    text-align: left;
}
.menu-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu-item .menu-item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: solid 4px transparent;
    height: 48px;
    padding-left: 40px;
    box-sizing: border-box;
    transition: border-color 0.1s ease-out;
    cursor: pointer;
    text-decoration: none !important;
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
}

.menu-item .menu-item {
    margin-top: 12px;
}

.menu-item.menu-item-folded .menu-item-link,
.menu-item.menu-item-folded .menu-item .menu-item-link {
    padding-left: 4px;
    justify-content: center;
}
.stepper-step {
    display: flex;
    cursor: pointer;
    align-items: center;
}

.stepper-step-horizontal {
    flex-direction: row;
    gap: 0 8px;
}

.stepper-step-vertical {
    flex-direction: column;
    gap: 8px 0;
}

.stepper-step-label {
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 25.2px;
    overflow: hidden;
    text-overflow: clip;
    text-wrap: nowrap;
}

.stepper-step-disabled {
    cursor: not-allowed;
}

.stepper-step-disabled .stepper-step-label {
    opacity: 0.5;
}

.stepper-step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    font-family: Inter;
    font-size: 12px;
    font-weight: 700;
    line-height: 14.4px;
    text-overflow: clip;
    text-wrap: nowrap;
    overflow: hidden;
    flex-shrink: 0;
}

.stepper-step.stepper-step-done .stepper-step-icon {
    font-size: 20px;
    font-size: 10px;
}

.stepper-step.stepper-step-done .stepper-step-icon .MuiTypography-root {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-sidebar {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    gap: 20px 0;
    z-index: 1200;
    position: absolute;
    top: 0;
    left: 0;
}

.modal-sidebar .ps__rail-y {
    margin-right: 4px;
}

.modal-sidebar-heading {
    position: relative;
}

.modal-sidebar-heading button {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 30px;
    min-width: auto;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-sidebar-logo {
    width: 100%;
    max-width: 150px;
    margin: 0px auto;
    height: 35px;
}

@media (min-width: 600px) {
    .modal-sidebar {
        width: 260px;
    }

    .modal-sidebar.l2df-sidebar-folded {
        width: 64px;
    }
}
.modal-sidebar-action {
    border-radius: 12px !important;
    font-family: Inter !important;
    line-height: 24px !important;
    min-width: auto !important;
}
@keyframes MoveUpDown {
    0%, 100% {
      transform: translateY(-30px);
    }
    50% {
      transform: translateY(-80px);
    }
  }.information-card,
.information-card * {
    box-sizing: border-box;
}

.information-card {
    padding: 24px 0;
    border-radius: 12px;
}

.information-card .heading {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 32px;
    border-left-style: solid;
    border-left-width: 2px;
    margin-bottom: 24px;
}

.information-card .heading .title {
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
}

.information-card .heading .action {
    height: 30px;
    padding-top: 4px;
    box-sizing: border-box;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
}

.information-card .heading .completion-feedback {
    flex-basis: 100%;
    font-family: Inter;
    font-size: 13px;
    font-weight: 500;
    line-height: 20.8px;
    opacity: 0.5;
}

.information-card .body {
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 2px 0;
}

@media (max-width: 720px) {
    .information-card .heading {
        flex-direction: column;
        border-left: none;
    }
    
    .information-card .heading .title {
        order: 1;
    }
    
    .information-card .heading .action {
        margin-top: 25px;
        order: 3;
    }
    
    .information-card .heading .completion-feedback {
        order: 2;
    }

    .information-card .body {
        gap: 10px 0;
    }
}
.l2df-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.l2df-footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px 32px;
    flex-wrap: wrap;
}

.l2df-footer ul li {
    display: block;
    padding: 0;
    width: auto;
}

.l2df-footer-logo {
    height: 32px;
}

.l2df-footer ul li p,
.l2df-footer ul li a {
    font-size: 12px;
    font-weight: 400;
    line-height: 21.6px;
    text-decoration: none;
}

@media (min-width: 600px) {
    .l2df-footer ul {
        padding: 40px 0;
    }

    .l2df-footer-logo {
        display: none;
    }
}
.l2df-sidebar {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    gap: 20px 0;
    z-index: 1200;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0px 7px 30px 0px rgba(90, 114, 123, 0.11);
}


.l2df-sidebar .ps__rail-y {
    margin-right: 4px;
}

.l2df-sidebar-heading {
    position: relative;
}

.l2df-sidebar-heading button {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    right: 30px;
    min-width: auto;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.l2df-sidebar-logo {
    width: 100%;
    max-width: 150px;
    margin: 0px auto;
    height: 35px;
}

@media (min-width: 600px) {
    .l2df-sidebar {
        width: 260px;
    }

    .l2df-sidebar.l2df-sidebar-folded {
        width: 64px;
    }
}
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-items li {
    padding: 0;
}
.l2df-sidebar-action {
    border-radius: 12px !important;
    font-family: Inter !important;
    line-height: 24px !important;
    min-width: auto !important;
}


.groupment-modal {
    border-radius: 12px;
    font-family: Inter;
    /* padding: 30px 30px; */
}
.groupment-modal .body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    font-family: Inter;
}

.groupment-modal .body .search {
    border-radius: 30px;
}

.groupment-modal .body .title {
    padding: 12px 0;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
}

.groupment-modal .actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.groupment-modal .actions .plus-btn {
    display: 'flex';
    align-items: 'baseline';
    margin-right: 10px;
}
.groupment-modal .actions .plus-label {
    font-family: Inter;
    padding: 22px 8px;
    font-size: 15px;
}

.groupment-modal .actions .submit-btn {
    padding: 14px 22px;
    border-radius: 12px;
    font-family: Inter;
}
/* Copyright 2014 Mozilla Foundation
 *
 * 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
 *
 *     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.
 */

:root {
  --react-pdf-text-layer: 1;
  --highlight-bg-color: rgba(180, 0, 170, 1);
  --highlight-selected-bg-color: rgba(0, 100, 0, 1);
}

@media screen and (forced-colors: active) {
  :root {
    --highlight-bg-color: Highlight;
    --highlight-selected-bg-color: ButtonText;
  }
}

[data-main-rotation='90'] {
  transform: rotate(90deg) translateY(-100%);
}
[data-main-rotation='180'] {
  transform: rotate(180deg) translate(-100%, -100%);
}
[data-main-rotation='270'] {
  transform: rotate(270deg) translateX(-100%);
}

.textLayer {
  position: absolute;
  text-align: initial;
  inset: 0;
  overflow: hidden;
  line-height: 1;
  text-size-adjust: none;
  forced-color-adjust: none;
  transform-origin: 0 0;
  z-index: 2;
}

.textLayer :is(span, br) {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  margin: 0;
  transform-origin: 0 0;
}

/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
 * the problem doesn't show up in "text" reference tests. */
.textLayer span.markedContent {
  top: 0;
  height: 0;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: var(--highlight-bg-color);
  border-radius: 4px;
}

.textLayer .highlight.appended {
  position: initial;
}

.textLayer .highlight.begin {
  border-radius: 4px 0 0 4px;
}

.textLayer .highlight.end {
  border-radius: 0 4px 4px 0;
}

.textLayer .highlight.middle {
  border-radius: 0;
}

.textLayer .highlight.selected {
  background-color: var(--highlight-selected-bg-color);
}

/* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
.textLayer br::selection {
  background: transparent;
}

.textLayer .endOfContent {
  display: block;
  position: absolute;
  inset: 100% 0 0;
  z-index: -1;
  cursor: default;
  user-select: none;
}

.textLayer.selecting .endOfContent {
  top: 0;
}

.hiddenCanvasElement {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  display: none;
}
/* Copyright 2014 Mozilla Foundation
 *
 * 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
 *
 *     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.
 */

:root {
  --react-pdf-annotation-layer: 1;
  --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
  --input-focus-border-color: Highlight;
  --input-focus-outline: 1px solid Canvas;
  --input-unfocused-border-color: transparent;
  --input-disabled-border-color: transparent;
  --input-hover-border-color: black;
  --link-outline: none;
}

@media screen and (forced-colors: active) {
  :root {
    --input-focus-border-color: CanvasText;
    --input-unfocused-border-color: ActiveText;
    --input-disabled-border-color: GrayText;
    --input-hover-border-color: Highlight;
    --link-outline: 1.5px solid LinkText;
  }
  .annotationLayer .textWidgetAnnotation :is(input, textarea):required,
  .annotationLayer .choiceWidgetAnnotation select:required,
  .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
    outline: 1.5px solid selectedItem;
  }

  .annotationLayer .linkAnnotation:hover {
    backdrop-filter: invert(100%);
  }
}

.annotationLayer {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform-origin: 0 0;
  z-index: 3;
}

.annotationLayer[data-main-rotation='90'] .norotate {
  transform: rotate(270deg) translateX(-100%);
}
.annotationLayer[data-main-rotation='180'] .norotate {
  transform: rotate(180deg) translate(-100%, -100%);
}
.annotationLayer[data-main-rotation='270'] .norotate {
  transform: rotate(90deg) translateY(-100%);
}

.annotationLayer canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.annotationLayer section {
  position: absolute;
  text-align: initial;
  pointer-events: auto;
  box-sizing: border-box;
  margin: 0;
  transform-origin: 0 0;
}

.annotationLayer .linkAnnotation {
  outline: var(--link-outline);
}

.textLayer.selecting ~ .annotationLayer section {
  pointer-events: none;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a:hover {
  opacity: 0.2;
  background: rgba(255, 255, 0, 1);
  box-shadow: 0 2px 10px rgba(255, 255, 0, 1);
}

.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea),
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  background-image: var(--annotation-unfocused-field-background);
  border: 2px solid var(--input-unfocused-border-color);
  box-sizing: border-box;
  font: calc(9px * var(--scale-factor)) sans-serif;
  height: 100%;
  margin: 0;
  vertical-align: top;
  width: 100%;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):required,
.annotationLayer .choiceWidgetAnnotation select:required,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
  outline: 1.5px solid red;
}

.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}

.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}

.annotationLayer .textWidgetAnnotation textarea {
  resize: none;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea)[disabled],
.annotationLayer .choiceWidgetAnnotation select[disabled],
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input[disabled] {
  background: none;
  border: 2px solid var(--input-disabled-border-color);
  cursor: not-allowed;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:hover {
  border: 2px solid var(--input-hover-border-color);
}
.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover {
  border-radius: 2px;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):focus,
.annotationLayer .choiceWidgetAnnotation select:focus {
  background: none;
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) :focus {
  background-image: none;
  background-color: transparent;
}

.annotationLayer .buttonWidgetAnnotation.checkBox :focus {
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.radioButton :focus {
  border: 2px solid var(--input-focus-border-color);
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  background-color: CanvasText;
  content: '';
  display: block;
  position: absolute;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  height: 80%;
  left: 45%;
  width: 1px;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before {
  transform: rotate(45deg);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  transform: rotate(-45deg);
}

.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}

.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}

.annotationLayer .textWidgetAnnotation input.comb:focus {
  /*
   * Letter spacing is placed on the right side of each character. Hence, the
   * letter spacing of the last character may be placed outside the visible
   * area, causing horizontal scrolling. We avoid this by extending the width
   * when the element has focus and revert this when it loses focus.
   */
  width: 103%;
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  appearance: none;
}

.annotationLayer .popupTriggerArea {
  height: 100%;
  width: 100%;
}

.annotationLayer .fileAttachmentAnnotation .popupTriggerArea {
  position: absolute;
}

.annotationLayer .popupWrapper {
  position: absolute;
  font-size: calc(9px * var(--scale-factor));
  width: 100%;
  min-width: calc(180px * var(--scale-factor));
  pointer-events: none;
}

.annotationLayer .popup {
  position: absolute;
  max-width: calc(180px * var(--scale-factor));
  background-color: rgba(255, 255, 153, 1);
  box-shadow: 0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor))
    rgba(136, 136, 136, 1);
  border-radius: calc(2px * var(--scale-factor));
  padding: calc(6px * var(--scale-factor));
  margin-left: calc(5px * var(--scale-factor));
  cursor: pointer;
  font: message-box;
  white-space: normal;
  word-wrap: break-word;
  pointer-events: auto;
}

.annotationLayer .popup > * {
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .popup h1 {
  display: inline-block;
}

.annotationLayer .popupDate {
  display: inline-block;
  margin-left: calc(5px * var(--scale-factor));
}

.annotationLayer .popupContent {
  border-top: 1px solid rgba(51, 51, 51, 1);
  margin-top: calc(2px * var(--scale-factor));
  padding-top: calc(2px * var(--scale-factor));
}

.annotationLayer .richText > * {
  white-space: pre-wrap;
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .freeTextAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .caretAnnotation,
.annotationLayer .inkAnnotation svg polyline,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}

.annotationLayer section svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .annotationTextContent {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: transparent;
  user-select: none;
  pointer-events: none;
}

.annotationLayer .annotationTextContent span {
  width: 100%;
  display: inline-block;
}
#env-ribbon {
    position: absolute;
    top: 15px;
    left: -35px;
    overflow: visible;
    /* so we can see the pseudo-elements we're going to add to the anchor */

    font-size: 18px;
    /* font-size and line-height must be equal so we can account for the height of the banner */

    line-height: 23px;
    text-align: center;

    color: rgba(0, 0, 0, 0.87);

    background-color: yellow;
    overflow: hidden;
    transform: rotate(-45deg);
    width: 130px;
    z-index: 1220;
}

#env-ribbon.folded {
    top: 5px;
    left: -50px;
}


#env-ribbon.dev {
    background-color: lime;
}
#env-ribbon.qual {
    background-color: orange;
}
#env-ribbon.preprod {
    background-color: red;
}
.stepper {
    display: flex;
}

.stepper li {
    display: flex;
    gap: 0 10px;
    align-items: center;
}

/* base styles */

._GzYRV {
  line-height: 1.2;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

._3eOF8 {
  margin-right: 5px;
  font-weight: bold;
}

._3eOF8 + ._3eOF8 {
  margin-left: -5px;
}

._1MFti {
  cursor: pointer;
}

._f10Tu {
  font-size: 1.2em;
  margin-right: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

._1UmXx::after {
  content: '\25B8';
}

._1LId0::after {
  content: '\25BE';
}

._1pNG9 {
  margin-right: 5px;
}

._1pNG9::after {
  content: '...';
  font-size: 0.8em;
}

._2IvMF {
  background: #eee;
}

._2bkNM {
  margin: 0 10px;
  padding: 0;
}

/* default light style */
._1MGIk {
  font-weight: 600;
  margin-right: 5px;
  color: #000000;
}

._2YKJg {
}

._3uHL6 {
  color: #000000;
}

._2T6PJ {
  color: #df113a;
}

._1Gho6 {
  color: #df113a;
}

._vGjyY {
  color: rgb(42, 63, 60);
}

._1bQdo {
  color: #0b75f5;
}

._3zQKs {
  color: rgb(70, 144, 56);
}

._1xvuR {
  color: #43413d;
}

._oLqym {
  color: #000000;
}

._2AXVT {
  color: #000000;
}

._2KJWg {
  color: #000000;
}

/* default dark style */
._11RoI {
  background: rgb(0, 43, 54);
}

._17H2C {
  color: rgb(253, 246, 227);
}

._3QHg2 {
  color: rgb(253, 246, 227);
}

._3fDAz {
  color: rgb(253, 246, 227);
}

._2bSDX {
  font-weight: bolder;
  margin-right: 5px;
  color: rgb(253, 246, 227);
}

._1RQEj {
}

._gsbQL {
  color: rgb(253, 246, 227);
}

._LaAZe {
  color: rgb(129, 181, 172);
}

._GTKgm {
  color: rgb(129, 181, 172);
}

._Chy1W {
  color: rgb(203, 75, 22);
}

._2bveF {
  color: rgb(211, 54, 130);
}

._2vRm- {
  color: rgb(174, 129, 255);
}

._1prJR {
  color: rgb(38, 139, 210);
}
.flexy-date-range-filter .daterange-filter-paper {
    box-shadow: none !important;
}

.flexy-date-range-filter hr,
.flexy-date-range-filter .date-range-subtitle {
    display: none;
}

.flexy-date-range-filter .date-range-calendar {
    flex-grow: 1;
}

.flexy-date-range-filter .date-range-ranges {
    padding: 0;
    width: 188px;
}

.flexy-date-range-filter .date-range-ranges ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.flexy-date-range-filter .date-range-ranges ul > div[role='button'] {
    padding: 4px 8px 4px 8px !important;
    display: inline;
    width: auto;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 20.8px;
    text-align: left;
}

.flexy-date-range-filter .date-range-ranges ul > div[role='button'] * {
    line-height: 20.8px;
    display: inline;
    width: auto;
}

@media (max-width: 600px) {
    .flexy-date-range-filter .daterange-filter-paper > .MuiGrid-container {
        flex-direction: column;
    }

    .flexy-date-range-filter .date-range-ranges {
        width: 100%;
    }

    .flexy-date-range-filter .date-range-ranges ul {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .flexy-date-range-filter .date-range-calendar > .MuiGrid-container {
        flex-direction: column;
    }
}
.flexy-datatable-pagination-pagination-list li button {
    height: 40px;
    min-width: 40px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
}

.flexy-datatable-pagination-pagination-list li:first-child {
    padding-right: 8px;
}

.flexy-datatable-pagination-pagination-list li:last-child {
    padding-left: 8px;
}

.flexy-datatable-pagination-pagination-list li:first-child button,
.flexy-datatable-pagination-pagination-list li:last-child button {
    min-width: auto;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 15px;
}

.flexy-datatable-pagination-pagination-list li:first-child button[disabled],
.flexy-datatable-pagination-pagination-list li:last-child button[disabled] {
    opacity: 0.4;
}
.SortableItem {
    display: flex;
    align-items: center;
}

.DragHandle {
    display: flex;
    width: 46px;
    padding: 15px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    touch-action: none;
    cursor: var(--cursor, grab);
    border-radius: 100px;
    border: none;
    outline: none;
    appearance: none;
}

.DragHandle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.DragHandle:focus-visible {
    box-shadow: 0 0px 0px 2px #4c9ffe;
}
.SortableList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    list-style: none;
}
