@charset "UTF-8";
.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  width: fit-content;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 38px;
  line-height: 36px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
}

.nice-select:hover {
  border-color: hsl(0, 0%, 85.9803921569%);
}

.nice-select:active, .nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open {
  border-color: #999;
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: rgb(237.1, 237.1, 237.1);
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #ccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .nice-select-dropdown {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .nice-select-dropdown {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 36px;
  line-height: 22px;
}

.nice-select .has-multiple span.current {
  border: 1px solid #ccc;
  background: #eee;
  padding: 0 10px;
  border-radius: 3px;
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 3px;
  margin-right: 3px;
}

.nice-select .has-multiple .multiple-options {
  display: block;
  line-height: 24px;
  padding: 0;
}

.nice-select .nice-select-search-box {
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
}

.nice-select .nice-select-search {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  color: #444;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  margin: 0 10px 0 0;
  width: 100%;
  min-height: 36px;
  line-height: 22px;
  height: auto;
  outline: 0 !important;
  font-size: 14px;
}

.nice-select .nice-select-dropdown {
  margin-top: 4px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(19px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  opacity: 0;
  max-height: 230px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.nice-select .list {
  border-radius: 5px;
  box-sizing: border-box;
  padding: 0;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: rgba(0, 0, 0, 0) !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #999;
  cursor: default;
}

.nice-select .extra {
  float: right;
}

.nice-select .optgroup {
  font-weight: bold;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}

.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.hidden-select {
  opacity: 0;
  width: 0;
  padding: 0;
  height: 0;
  font-size: 0;
  min-height: auto;
}

.select-selection-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.select-selection-list .select-selection {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 2px 5px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select-selection-list button.remove-select-selection {
  height: 15px;
  width: 15px;
  line-height: 15px;
  padding: 0px;
  background-color: #bd2919;
  border-radius: 20%;
} 
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.modal .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(83, 88, 98, 0.7);
  cursor: pointer;
}
.modal .modal_content {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 20px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  width: 480px;
}
.modal .modal_content .no-matches-found {
  text-align: center;
  margin: 24px 0;
}
.modal .modal_content .no-matches-found #add_new_facility_link {
  color: #ba9b51;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  font-weight: 500;
}
.modal .modal_content .no-matches-found #add_new_facility_link:hover {
  color: #998244;
}
.modal .modal_content .field-title {
  margin-bottom: 8px;
  padding-left: 3px;
}
.modal .modal_content .select_with_icon {
  position: relative;
}
.modal .modal_content .select_with_icon:after {
  content: "";
  background: url("../../ds-icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: absolute;
  right: 5px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
.modal .modal_content .select_with_icon select {
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  appearance: none;
  padding: 10px 38px 10px 14px;
  cursor: pointer;
  width: 100%;
}
.modal .modal_content .escalate-modal__note-wrap .select_with_icon {
  margin-top: 16px;
}
.modal .close_modal {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.modal .close_modal:hover {
  opacity: 1;
}
.modal.modal-slide-right {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.modal.modal-slide-right .overlay {
  backdrop-filter: none;
  background-color: rgba(0, 0, 0, 0.34);
}
.modal.modal-slide-right .modal_content {
  left: auto;
  top: 0;
  right: -100%;
  transform: none;
  border-radius: 0px;
  height: 100vh;
  max-height: 100vh;
  transition: right 0.3s ease;
}
.modal.modal-slide-right.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.modal.modal-slide-right.active .modal_content {
  right: 0;
}
.modal .facility-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 24px;
}
.modal .facility-modal-header .back_facility_modal_btn {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  margin: 0 12px;
}
.modal .facility-modal-header .close_modal {
  position: relative;
  right: auto;
  top: 0;
  margin: 0 12px;
  opacity: 1;
}
.modal .facility-modal-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 12px;
}
.modal .facility-modal-header__actions .apply_facility_to_request_btn {
  width: 100%;
  max-width: max-content;
  padding: 8px 20px;
  height: auto;
}
.modal .facility-modal-header .apply_facility_to_request_btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal#edit_status_modal .modal_content {
  overflow: visible;
}
.modal#edit_status_modal .modal_content .edit-status-modal__field {
  margin-bottom: 16px;
}
.modal#edit_status_modal .modal_content #edit_status_select {
  margin-top: 6px;
}
.modal#payment_edit_modal .modal_content {
  max-width: 520px;
  width: 100%;
}
.modal#payment_edit_modal .payment-edit-list {
  margin-bottom: 20px;
}
.modal#payment_edit_modal .payment-edit-list__empty {
  color: var(--ds-text-muted, #888);
  font-size: 14px;
  padding: 8px 0;
}
.modal#payment_edit_modal .payment-edit-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ds-border, #eee);
}
.modal#payment_edit_modal .payment-edit-list__item:last-child {
  border-bottom: none;
}
.modal#payment_edit_modal .payment-edit-list__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.modal#payment_edit_modal .payment-edit-list__amount {
  font-weight: 600;
  font-size: 15px;
}
.modal#payment_edit_modal .payment-edit-list__meta {
  font-size: 13px;
  color: var(--ds-text-muted, #888);
}
.modal#payment_edit_modal .payment-edit-list__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.modal#payment_edit_modal .payment-edit-form-section {
  border-top: 1px solid var(--ds-border, #eee);
  padding-top: 8px;
}
.modal#payment_edit_modal .payment-edit-form-section__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}
.modal#payment_edit_modal .payment-edit-form-section .inputs_wrapper {
  margin-top: 0px;
}
.modal#payment_edit_modal .payment-edit-form-section .inputs_wrapper input {
  height: 45px;
  padding: 8px 12px;
}
.modal#payment_edit_modal .payment-edit-form-section .inputs_wrapper .date-picker {
  margin-top: 0px;
}
.modal#payment_edit_modal .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid var(--ds-border, #e5e7eb);
  background: transparent;
  cursor: pointer;
  color: var(--ds-text-secondary, #555);
  transition: background 0.15s, color 0.15s;
}
.modal#payment_edit_modal .icon-btn:hover {
  background: var(--ds-bg-hover, #f3f4f6);
}
.modal#payment_edit_modal .icon-btn--danger:hover {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fca5a5;
}

.modal .modal_content .modal-loader {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  backdrop-filter: blur(2px);
}
.modal .modal_content .modal-loader:not([hidden]) {
  display: flex;
}
.modal .modal_content .modal-loader__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #E9EAEB;
  border-top-color: #B29B51;
  border-radius: 50%;
  animation: modal-loader-spin 0.75s linear infinite;
}
.modal .modal_content .modal-loader__text {
  font-size: 13px;
  font-weight: 500;
  color: #535862;
}

@keyframes modal-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
button.loading,
div.button.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
button.loading::after,
div.button.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: modal-loader-spin 0.65s linear infinite;
}
button.loading.white::after, button.loading.ghost::after,
div.button.loading.white::after,
div.button.loading.ghost::after {
  border-color: rgba(0, 0, 0, 0.15);
  border-top-color: #535862;
}

.modal .modal_content .invite_icon_container {
  position: relative;
}
.modal .modal_content .invite_icon_container .invite_icon {
  display: block;
}
.modal .modal_content .invite_icon_container .invite_bg {
  position: absolute;
  left: -24px;
  top: -24px;
  z-index: -1;
}
.modal .modal_content .invite_icon_container svg {
  width: fit-content;
  height: auto;
  border: 1px solid #d6d7da;
  border-radius: 5px;
  padding: 10px;
  stroke: #535862;
}
.modal .modal_content h2 {
  margin: 16px 0 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
}
.modal .modal_content p {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
.modal .modal_content form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal .modal_content form#request-upload-form .inputs_wrapper {
  margin-bottom: 16px;
}
.modal .modal_content form label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
.modal .modal_content form label span {
  color: #B29B51;
}
.modal .modal_content form input {
  width: 100%;
  height: 36px;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
}
.modal .modal_content form input:placeholder {
  color: #717680;
}
.modal .modal_content form#request_file_visibility_form .request-file-vis-checkboxes {
  flex-direction: column;
}
.modal .modal_content form#request_file_visibility_form .request-file-vis-checkboxes .request-file-vis-label input {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 6px;
}
.modal .modal_content form#request_file_visibility_form .request-file-vis-checkboxes .request-file-vis-label input:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
}
.modal .modal_content .modal-field-error {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.4;
}
.modal .modal_content .buttons_row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.modal .modal_content .buttons_row button {
  width: calc(50% - 6px);
}
.modal .modal_content input:focus {
  outline: none;
  border-color: #B29B51;
}
.modal .modal_content label {
  font-size: 14px;
  font-weight: 500;
  color: #535353;
}
.modal .modal_content textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D5D7DA;
  border-radius: 5px;
  font: inherit;
  font-size: 14px;
  color: #181D27;
  resize: vertical;
  min-height: 90px;
  transition: border-color 0.15s;
  margin-top: 12px;
}
.modal .modal_content textarea:focus {
  outline: none;
  border-color: #B29B51;
}
.modal .modal_content .inputs_wrapper {
  margin-top: 16px;
}
.modal .modal_content .inputs_wrapper label {
  margin-bottom: 6px;
  display: block;
}
.modal .modal_content .inputs_wrapper input:not([type=checkbox]) {
  width: 100%;
  height: 36px;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
}
.modal .modal_content .inputs_wrapper input:not([type=checkbox]):placeholder {
  color: #717680;
}
.modal .modal_content .inputs_wrapper input:not([type=checkbox]):focus {
  outline: none;
  border-color: #B29B51;
  box-shadow: 0 0 0 3px rgba(178, 155, 81, 0.12);
}
.modal .modal_content .inputs_wrapper input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal .modal_content .inputs_wrapper input[type=checkbox]:hover, .modal .modal_content .inputs_wrapper input[type=checkbox]:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
.modal .modal_content .inputs_wrapper input[type=checkbox]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
.modal .modal_content .inputs_wrapper input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
.modal .modal_content .inputs_wrapper input[type=checkbox]:focus-visible {
  outline: 2px solid #B29B51;
  outline-offset: 2px;
}
.modal .modal_content .inputs_wrapper .checkbox-label {
  cursor: pointer;
  display: flex;
  align-items: center;
}

textarea.input-error,
input.input-error {
  border-color: #f04438 !important;
  outline: none;
}
textarea.input-error:focus,
input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(240, 68, 56, 0.15);
}

#ds-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.ds-toast {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 320px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}
.ds-toast--visible {
  opacity: 1;
  transform: translateY(0);
}
.ds-toast--success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #a9efc5;
}
.ds-toast--error {
  background: #fef3f2;
  color: #b42318;
  border: 1px solid #fecdca;
}

.docx-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.docx-preview-modal--visible {
  opacity: 1;
}
.docx-preview-modal .docx-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.docx-preview-modal .docx-preview-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  margin: 24px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.18);
}
.docx-preview-modal .docx-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #E9EAEB;
  flex-shrink: 0;
  background: #fff;
}
.docx-preview-modal .docx-preview-header__title {
  font-size: 16px;
  font-weight: 600;
  color: #181D27;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 40px);
}
.docx-preview-modal .docx-preview-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.docx-preview-modal .docx-preview-close:hover {
  background: #F5F5F5;
}
.docx-preview-modal .docx-preview-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  background: #F9FAFB;
}
.docx-preview-modal .docx-preview-spinner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}
.docx-preview-modal .docx-preview-content {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.docx-preview-modal .docx-preview-content .docx-wrapper {
  background: #F9FAFB;
  padding: 20px;
}
.docx-preview-modal .docx-preview-content section.docx {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 0 auto 16px;
}
.docx-preview-modal .docx-preview-panel[data-preview-type=pdf] .docx-preview-body {
  padding: 0;
}
.docx-preview-modal .docx-preview-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
}
.docx-preview-modal .docx-preview-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.docx-preview-modal .docx-preview-unsupported {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 24px;
  text-align: center;
  color: #717680;
  font-size: 14px;
}
.docx-preview-modal .docx-preview-unsupported .button.gold {
  max-width: 180px;
}

#support_modal .modal_content {
  width: 480px;
}
#support_modal .modal_content .invite_icon_container {
  position: relative;
}
#support_modal .modal_content .invite_icon_container svg {
  display: block;
  color: #B29B51;
}
#support_modal .modal_content .invite_icon_container .invite_bg {
  position: absolute;
  left: -24px;
  top: -24px;
  z-index: -1;
}
#support_modal .modal_content h2 {
  margin: 16px 0 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
}
#support_modal .modal_content p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
#support_modal .modal_content form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#support_modal .modal_content form label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  margin-top: 6px;
}
#support_modal .modal_content form label span {
  color: #B29B51;
}
#support_modal .modal_content form input,
#support_modal .modal_content form select,
#support_modal .modal_content form textarea {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
  background: #fff;
  box-sizing: border-box;
  font-family: inherit;
}
#support_modal .modal_content form input:focus,
#support_modal .modal_content form select:focus,
#support_modal .modal_content form textarea:focus {
  outline: none;
  border-color: #B29B51;
  box-shadow: 0 0 0 3px rgba(178, 155, 81, 0.12);
}
#support_modal .modal_content form input::placeholder,
#support_modal .modal_content form select::placeholder,
#support_modal .modal_content form textarea::placeholder {
  color: #717680;
}
#support_modal .modal_content form select {
  height: 36px;
  cursor: pointer;
}
#support_modal .modal_content form textarea {
  resize: vertical;
  min-height: 100px;
}
#support_modal .modal_content form .buttons_row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}
#support_modal .modal_content form .buttons_row button {
  width: calc(50% - 6px);
}

.support-form-notice {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid;
}
.support-form-notice--success {
  background: #edf7ed;
  color: #1e5c21;
  border-color: #a8d5aa;
}
.support-form-notice--error {
  background: #fdecea;
  color: #b71c1c;
  border-color: #f5c6c2;
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: dm-spin 0.7s linear infinite;
  vertical-align: middle;
}
.btn-spinner--red {
  border-color: rgba(217, 45, 32, 0.25);
  border-top-color: #D92D20;
}
.btn-spinner--dark {
  border-color: rgba(0, 0, 0, 0.15);
  border-top-color: #333;
}

.delete-member-loading {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.delete-member-spinner {
  display: block;
  width: 40px;
  height: 40px;
  border: 3px solid #e4e7ec;
  border-top-color: #B29B51;
  border-radius: 50%;
  animation: dm-spin 0.7s linear infinite;
}

@keyframes dm-spin {
  to {
    transform: rotate(360deg);
  }
}
#delete_member_modal .modal_content {
  position: relative;
  max-width: 600px;
}
#delete_member_modal .delete-member-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  font-size: 14px;
  color: #78350f;
  margin-bottom: 16px;
}
#delete_member_modal .delete-member-warning svg {
  flex-shrink: 0;
  margin-top: 1px;
}
#delete_member_modal label[for=delete-member-transfer-to] {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #344054;
  margin-bottom: 6px;
}
#delete_member_modal label[for=delete-member-transfer-to] span {
  color: #D92D20;
}
#delete_member_modal #delete-member-transfer-to {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  font-size: 14px;
  color: #344054;
  background: #fff;
  appearance: auto;
}

.upload-feedback {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.upload-feedback--success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #a9efc5;
}
.upload-feedback--error {
  background: #fef3f2;
  color: #b42318;
  border: 1px solid #fecdca;
}

#edit_patient_details_modal .modal_content,
#edit_request_case_manager_modal .modal_content,
#edit_request_roi_specialist_modal .modal_content {
  width: 520px;
}

#edit_request_case_manager_modal .modal_content {
  overflow: visible;
}

.generate-docs-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
  width: 100%;
}
.generate-docs-list__item {
  border-radius: 6px;
  font-size: 14px;
  color: #344054;
  transition: background 0.15s, box-shadow 0.15s;
}
.generate-docs-list__item:nth-child(odd) {
  background: #f9fafb;
}
.generate-docs-list__item svg {
  flex-shrink: 0;
  color: #98a2b3;
}
.generate-docs-list__label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  user-select: none;
  width: 100%;
}
.generate-docs-list__name {
  flex: 1;
}
.generate-docs-list .generate-docs-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.generate-docs-list .generate-docs-checkbox:hover, .generate-docs-list .generate-docs-checkbox:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
.generate-docs-list .generate-docs-checkbox:checked {
  background: #B29B51;
  border-color: #B29B51;
}
.generate-docs-list .generate-docs-checkbox:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 4px;
  height: 9px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}

.generate-docs-list__error {
  text-align: left;
  font-size: 13px;
  color: #d92d20;
  margin: -12px 0 16px;
}

.report-problem-error {
  text-align: left;
  font-size: 13px;
  color: #d92d20;
  margin: -8px 0 16px;
}

.generate-docs-list--empty {
  font-size: 13px;
  color: #98a2b3;
  margin: 0 0 20px;
}

.flatpickr-calendar {
  z-index: 9999999 !important;
}

body.page-template-page-login .login-page,
body.page-template-page-forgot-password .login-page,
body.page-template-page-reset-password .login-page {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}
body.page-template-page-login .login-page .left_part,
body.page-template-page-forgot-password .login-page .left_part,
body.page-template-page-reset-password .login-page .left_part {
  width: 44.4444444444vw;
  height: 100vh;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
}
body.page-template-page-login .login-page .left_part .left_inner,
body.page-template-page-forgot-password .login-page .left_part .left_inner,
body.page-template-page-reset-password .login-page .left_part .left_inner {
  max-width: 360px;
  width: 100%;
  padding: 20px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
body.page-template-page-login .login-page .left_part .left_inner .logo,
body.page-template-page-forgot-password .login-page .left_part .left_inner .logo,
body.page-template-page-reset-password .login-page .left_part .left_inner .logo {
  display: flex;
  margin-bottom: 50px;
}
body.page-template-page-login .login-page .left_part .left_inner .brand-header,
body.page-template-page-forgot-password .login-page .left_part .left_inner .brand-header,
body.page-template-page-reset-password .login-page .left_part .left_inner .brand-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-template-page-login .login-page .left_part .left_inner .brand-header h1,
body.page-template-page-forgot-password .login-page .left_part .left_inner .brand-header h1,
body.page-template-page-reset-password .login-page .left_part .left_inner .brand-header h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2em;
  color: #181D27;
  margin: 0;
}
body.page-template-page-login .login-page .left_part .left_inner .brand-header p,
body.page-template-page-forgot-password .login-page .left_part .left_inner .brand-header p,
body.page-template-page-reset-password .login-page .left_part .left_inner .brand-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2em;
  color: #535862;
  margin: 0;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form #login-message,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form #login-message,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form #login-message {
  display: none;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form #login-message i,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form #login-message i,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form #login-message i {
  display: block;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form #login-message.error,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form #login-message.error,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form #login-message.error {
  background: rgba(244, 67, 54, 0.1254901961);
  color: #f44336;
  border-color: #f44336;
  padding: 16px;
  font-size: 14px;
  border-radius: 5px;
  border-left: 4px solid;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-group,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-group,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-group {
  margin: 0;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-group label,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-group label,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-group label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4em;
  color: #181D27;
  margin-bottom: 6px;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-group .form-control,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-group .form-control,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-group .form-control {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5em;
  color: #181D27;
  background-color: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  height: 44px;
  outline: none;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-group .form-control::placeholder,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-group .form-control::placeholder,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-group .form-control::placeholder {
  color: #414651;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-group .form-control:focus,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-group .form-control:focus,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-group .form-control:focus {
  outline: none;
  border-color: #9E8543;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-group .form-control:hover,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-group .form-control:hover,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-group .form-control:hover {
  border-color: rgb(185.8860759494, 189.1772151899, 194.1139240506);
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-options,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-options,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-options .remember-me,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-options .remember-me,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-options .remember-me input[type=checkbox],
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-options .remember-me input[type=checkbox],
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-options .remember-me input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #9E8543;
  cursor: pointer;
  padding: 0;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-options .remember-me label,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-options .remember-me label,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-options .remember-me label {
  font-size: 14px;
  color: #535862;
  margin: 0;
  cursor: pointer;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-options .forgot-password a,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-options .forgot-password a,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-options .forgot-password a {
  font-size: 14px;
  color: #9E8543;
  text-decoration: none;
  font-weight: 500;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .form-options .forgot-password a:hover,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .form-options .forgot-password a:hover,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .form-options .forgot-password a:hover {
  text-decoration: underline;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .sign-in-btn,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .sign-in-btn,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .sign-in-btn {
  position: relative;
  width: 100%;
  padding: 10px 16px;
  background-color: #0A0D12;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-family: "Inter";
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .sign-in-btn:hover,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .sign-in-btn:hover,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .sign-in-btn:hover {
  background-color: #9E8543;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .sign-in-btn:focus,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .sign-in-btn:focus,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .sign-in-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(24, 29, 39, 0.1);
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .sign-in-btn.loading,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .sign-in-btn.loading,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .sign-in-btn.loading {
  color: transparent;
  pointer-events: none;
}
body.page-template-page-login .login-page .left_part .left_inner .login-form .sign-in-btn.loading::after,
body.page-template-page-forgot-password .login-page .left_part .left_inner .login-form .sign-in-btn.loading::after,
body.page-template-page-reset-password .login-page .left_part .left_inner .login-form .sign-in-btn.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sign-in-spin 0.65s linear infinite;
}
@keyframes sign-in-spin {
  to {
    transform: rotate(360deg);
  }
}
body.page-template-page-login .login-page .left_part .left_inner .account-request,
body.page-template-page-login .login-page .left_part .left_inner .account-request-link,
body.page-template-page-forgot-password .login-page .left_part .left_inner .account-request,
body.page-template-page-forgot-password .login-page .left_part .left_inner .account-request-link,
body.page-template-page-reset-password .login-page .left_part .left_inner .account-request,
body.page-template-page-reset-password .login-page .left_part .left_inner .account-request-link {
  text-align: center;
}
body.page-template-page-login .login-page .left_part .left_inner .account-request p,
body.page-template-page-login .login-page .left_part .left_inner .account-request-link p,
body.page-template-page-forgot-password .login-page .left_part .left_inner .account-request p,
body.page-template-page-forgot-password .login-page .left_part .left_inner .account-request-link p,
body.page-template-page-reset-password .login-page .left_part .left_inner .account-request p,
body.page-template-page-reset-password .login-page .left_part .left_inner .account-request-link p {
  font-size: 14px;
  color: #535862;
  margin: 0;
}
body.page-template-page-login .login-page .left_part .left_inner .account-request p a,
body.page-template-page-login .login-page .left_part .left_inner .account-request-link p a,
body.page-template-page-forgot-password .login-page .left_part .left_inner .account-request p a,
body.page-template-page-forgot-password .login-page .left_part .left_inner .account-request-link p a,
body.page-template-page-reset-password .login-page .left_part .left_inner .account-request p a,
body.page-template-page-reset-password .login-page .left_part .left_inner .account-request-link p a {
  color: #9E8543;
  text-decoration: none;
  font-weight: 500;
}
body.page-template-page-login .login-page .left_part .left_inner .account-request p a:hover,
body.page-template-page-login .login-page .left_part .left_inner .account-request-link p a:hover,
body.page-template-page-forgot-password .login-page .left_part .left_inner .account-request p a:hover,
body.page-template-page-forgot-password .login-page .left_part .left_inner .account-request-link p a:hover,
body.page-template-page-reset-password .login-page .left_part .left_inner .account-request p a:hover,
body.page-template-page-reset-password .login-page .left_part .left_inner .account-request-link p a:hover {
  text-decoration: underline;
}
body.page-template-page-login .login-page .left_part .left_inner .back-to-login-request a,
body.page-template-page-forgot-password .login-page .left_part .left_inner .back-to-login-request a,
body.page-template-page-reset-password .login-page .left_part .left_inner .back-to-login-request a {
  font-size: 14px;
  position: relative;
  display: block;
  text-align: center;
  color: #9E8543;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
body.page-template-page-login .login-page .left_part .left_inner .back-to-login-request a:hover,
body.page-template-page-forgot-password .login-page .left_part .left_inner .back-to-login-request a:hover,
body.page-template-page-reset-password .login-page .left_part .left_inner .back-to-login-request a:hover {
  text-decoration: underline;
}
body.page-template-page-login .login-page .left_part .left_inner .requirements-links,
body.page-template-page-forgot-password .login-page .left_part .left_inner .requirements-links,
body.page-template-page-reset-password .login-page .left_part .left_inner .requirements-links {
  text-align: center;
  font-size: 13px;
  color: #535862;
}
body.page-template-page-login .login-page .left_part .left_inner .requirements-links a,
body.page-template-page-forgot-password .login-page .left_part .left_inner .requirements-links a,
body.page-template-page-reset-password .login-page .left_part .left_inner .requirements-links a {
  color: #9E8543;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s all;
}
body.page-template-page-login .login-page .left_part .left_inner .requirements-links a:hover,
body.page-template-page-forgot-password .login-page .left_part .left_inner .requirements-links a:hover,
body.page-template-page-reset-password .login-page .left_part .left_inner .requirements-links a:hover {
  color: #8c7a36;
}
body.page-template-page-login .login-page .left_part .copyright,
body.page-template-page-forgot-password .login-page .left_part .copyright,
body.page-template-page-reset-password .login-page .left_part .copyright {
  padding: 35px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2em;
  color: #535862;
  margin: 0 auto;
}
body.page-template-page-login .login-page .right_part,
body.page-template-page-forgot-password .login-page .right_part,
body.page-template-page-reset-password .login-page .right_part {
  width: 100%;
  width: 55.5555555556vw;
  position: sticky;
  top: 0;
  right: 0;
  height: 100vh;
  background: #F5F5F5;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  box-sizing: border-box;
  top: 0;
  overflow: hidden;
}
body.page-template-page-login .login-page .right_part img,
body.page-template-page-forgot-password .login-page .right_part img,
body.page-template-page-reset-password .login-page .right_part img {
  margin-top: auto;
  margin-bottom: auto;
  padding: 30px 0;
  width: 49.9305555556vw;
  height: auto;
  object-fit: contain;
  object-position: top right;
}

@media (max-width: 768px) {
  body.page-template-page-login .login-page {
    flex-direction: column;
  }
  body.page-template-page-login .login-page .left_part {
    width: 100%;
    height: auto;
    min-height: 100vh;
  }
  body.page-template-page-login .login-page .left_part .left_inner {
    max-width: 100%;
    padding: 32px;
  }
  body.page-template-page-login .login-page .right_part {
    display: none;
  }
}
.login-page .form-notice {
  border-radius: 5px;
  padding: 14px 18px;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 1.3;
  border-left: 4px solid;
}
.login-page .form-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}
.login-page .form-notice--success {
  background: #edf7ed;
  color: #1e5c21;
  border-color: #1e5c21;
}
.login-page .form-notice--success p {
  color: #1e5c21;
}
.login-page .form-notice--error {
  background: rgba(244, 67, 54, 0.1254901961);
  color: #f44336;
  border-color: #f44336;
}
.login-page .form-notice--error p {
  color: #f44336;
}
.login-page .otp-resend-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
}
.login-page .otp-resend-row .otp-resend-hint {
  color: #667085;
}
.login-page .otp-resend-row .otp-resend-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: #B29B51;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.15s;
}
.login-page .otp-resend-row .otp-resend-btn:hover:not(:disabled) {
  color: #8C7A36;
}
.login-page .otp-resend-row .otp-resend-btn:disabled {
  color: #A4A7AE;
  text-decoration: none;
  cursor: default;
}
.login-page .otp-resend-row .otp-resend-countdown {
  color: #A4A7AE;
  font-size: 12px;
}

.dashboard-wrapper {
  display: flex;
}
.dashboard-wrapper #header {
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100vh;
  flex-direction: column;
  min-height: 100vh;
  max-width: 300px;
  width: 100%;
  padding: 15px;
  border-right: 1px solid #E9EAEB;
}
.dashboard-wrapper #header a.logo {
  display: flex;
  margin: 9px 0 16px;
}
.dashboard-wrapper #header a.logo svg {
  width: 206px;
  height: auto;
}
.dashboard-wrapper #header nav {
  padding: 34px 0;
}
.dashboard-wrapper #header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.dashboard-wrapper #header nav ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: background 0.3s;
}
.dashboard-wrapper #header nav ul li a {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5em;
  color: #252B37;
  text-decoration: none;
}
.dashboard-wrapper #header nav ul li a i {
  color: #9E8543;
  font-size: 20px;
}
.dashboard-wrapper #header nav ul li.current_page_item {
  border-left: 2px solid #ba9b51;
}
.dashboard-wrapper #header nav ul li.has-submenu.current_page_item {
  border-left: none;
}
.dashboard-wrapper #header nav ul li.has-submenu.current_page_item > .menu-row {
  border-left: 2px solid #ba9b51;
}
.dashboard-wrapper #header nav ul li.has-submenu .menu-row {
  display: flex;
  align-items: center;
}
.dashboard-wrapper #header nav ul li.has-submenu .menu-row a {
  flex: 1 1 auto;
  min-width: 0;
}
.dashboard-wrapper #header nav ul li.has-submenu .submenu-toggle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 6px;
  border-radius: 6px;
  color: #717680;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.dashboard-wrapper #header nav ul li.has-submenu .submenu-toggle:hover {
  background: #f5f5f5;
  color: #252B37;
}
.dashboard-wrapper #header nav ul li.has-submenu .submenu-toggle svg {
  display: block;
}
.dashboard-wrapper #header nav ul li.has-submenu .submenu {
  margin-bottom: 0;
}
.dashboard-wrapper #header nav ul li.has-submenu .submenu li a {
  height: 36px;
  padding-left: 40px;
  font-weight: 500;
  font-size: 15px;
  color: #535862;
}
.dashboard-wrapper #header nav ul li.has-submenu .submenu li a:hover {
  color: #252B37;
}
.dashboard-wrapper #header nav ul li.has-submenu .submenu-state:checked ~ .menu-row .submenu-toggle {
  transform: rotate(180deg);
}
.dashboard-wrapper #header nav ul li.has-submenu .submenu-state:checked ~ .submenu {
  display: none;
}
.dashboard-wrapper #header nav ul {
  margin-bottom: 24px;
}
.dashboard-wrapper #header .sidebar-header-menu {
  font-size: 13px;
  font-weight: 500;
  color: #717680;
  text-transform: uppercase;
  padding-left: 6px;
  margin-bottom: 6px;
}
.dashboard-wrapper #header .dashboard_footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.dashboard-wrapper #header .dashboard_footer .button {
  margin-bottom: 16px;
}
.dashboard-wrapper #header .dashboard_footer nav {
  padding: 0;
}
.dashboard-wrapper #header .dashboard_footer .your_account {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px;
}
.dashboard-wrapper #header .dashboard_footer .your_account .avatar {
  width: 40px;
  min-width: 40px;
  height: 40px;
}
.dashboard-wrapper #header .dashboard_footer .your_account .avatar svg, .dashboard-wrapper #header .dashboard_footer .your_account .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
}
.dashboard-wrapper #header .dashboard_footer .your_account .user_info .name {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
}
.dashboard-wrapper #header .dashboard_footer .your_account .user_info .email {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard-wrapper .search-field {
  display: flex;
  appearance: none;
  padding: 7.5px 14px;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
  width: 350px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  flex-direction: row-reverse;
  align-items: center;
  gap: 6px;
}
.dashboard-wrapper .search-field input.search {
  display: flex;
  appearance: none;
  border: 0px;
  border-radius: 0;
  box-shadow: none;
  width: 400px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  outline: 0;
}
.dashboard-wrapper .main_content {
  width: 100%;
  max-width: min(100vw - 300px, 1480px);
  margin: 0 auto;
  padding: 32px;
}
.dashboard-wrapper .main_content .content_head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.dashboard-wrapper .main_content .content_head .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #181D27;
  margin: 0;
}
.dashboard-wrapper .main_content .content_head .title p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
}
.dashboard-wrapper .main_content .content_head .details {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dashboard-wrapper .main_content .content_head .details .filters {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 4px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  text-decoration: none;
  transition: background 0.3s;
}
.dashboard-wrapper .main_content .content_head .details .filters:hover {
  background: #eaeaea;
}
.dashboard-wrapper .main_content .requests-status-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.dashboard-wrapper .main_content .requests-status-filters .requests-status-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #d5d7da;
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #414651;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.dashboard-wrapper .main_content .requests-status-filters .requests-status-filter:hover {
  background: #f5f5f6;
}
.dashboard-wrapper .main_content .requests-status-filters .requests-status-filter.is-active {
  border-color: #ba9b51;
  background: #faf8f3;
  color: #252b37;
}
.dashboard-wrapper .main_content .requests-status-filters .requests-status-filter .requests-status-filter__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #e9eaeb;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #414651;
}
.dashboard-wrapper .main_content .requests-status-filters .requests-status-filter.is-active .requests-status-filter__count {
  background: #ba9b51;
  color: #fff;
}
.dashboard-wrapper .main_content .requests-status-filters .requests-status-filter.red {
  color: #c22b20;
  border-color: #c22b20;
}
.dashboard-wrapper .main_content .requests-status-filters .requests-status-filter.red span {
  background: #ffc3bf;
  color: #c22b20;
}
.dashboard-wrapper .main_content .requests-status-filters .requests-status-filter.red.is-active {
  border-color: #ba9b51;
  background: #faf8f3;
  color: #252b37;
}
.dashboard-wrapper .main_content .requests-status-filters .requests-status-filter.red.is-active span {
  background: #ba9b51;
  color: #fff;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper {
  overflow-x: scroll;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table {
  table-layout: auto; /* by default, sizes from content */
  width: 100%;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td {
  white-space: normal;
  max-width: 300px;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .date, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .date {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 4px 10px;
  border-radius: 5px;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .today,
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .overdue, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .today,
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .overdue {
  color: #ffffff;
  border: 1px solid;
  padding: 4px 10px;
  border-radius: 5px;
  background: #F44336;
  display: block;
  text-align: center;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .tomorrow, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .tomorrow {
  color: #ffffff;
  border: 1px solid;
  padding: 4px 10px;
  border-radius: 5px;
  background: #BA9B51;
  display: block;
  text-align: center;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .tat, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .tat {
  border: 1px solid;
  padding: 4px 10px;
  border-radius: 5px;
  display: block;
  text-align: center;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .tat.tat--ok, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .tat.tat--ok {
  border-color: #16b36a;
  color: #16b36a;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .tat.tat--warning, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .tat.tat--warning {
  border-color: #FF9800;
  color: #FF9800;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .tat .tat--overdue, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .tat .tat--overdue {
  color: #f44336;
  border-color: #f44336;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .request-rush-badge,
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .request-cancel-badge, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .request-rush-badge,
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .request-cancel-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  padding: 0px 6px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .request-rush-badge svg,
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .request-cancel-badge svg, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .request-rush-badge svg,
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .request-cancel-badge svg {
  max-width: 14px;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .request-rush-badge, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .request-rush-badge {
  background: #ba9b51;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table th .request-cancel-badge, .dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table td .request-cancel-badge {
  background: #e03131;
}
.dashboard-wrapper .main_content .table_wrapper.requests_table_wrapper table.requests_table tr:hover {
  background: #fafafa;
  cursor: pointer;
}
.dashboard-wrapper .main_content .table_wrapper {
  width: 100%;
  overflow: auto;
}
.dashboard-wrapper .main_content .table_wrapper.ds-requests-wrapper {
  position: relative;
}
.dashboard-wrapper .main_content .table_wrapper .ds-requests-loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  pointer-events: none;
}
.dashboard-wrapper .main_content .table_wrapper.is-loading .ds-requests-loader {
  display: block;
}
.dashboard-wrapper .main_content .table_wrapper .ds-requests-loader__inner {
  position: fixed;
  top: 50%;
  left: calc(50% + var(--ds-loader-left-offset, 0px));
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #344054;
  padding: 10px 14px;
}
.dashboard-wrapper .main_content .table_wrapper .ds-requests-loader__spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e4e7ec;
  border-top-color: #b29b51;
  animation: ds-requests-loader-spin 0.8s linear infinite;
}
.dashboard-wrapper .main_content .table_wrapper table.loading {
  opacity: 0.5;
  pointer-events: none;
  filter: blur(10px);
}
.dashboard-wrapper .main_content .table_wrapper table {
  transition: opacity 0.3s, filter 0.3s;
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
  border-radius: 12px;
  min-width: 100%;
  border-spacing: 0;
  min-width: 900px;
  width: 100%;
  border-collapse: separate;
  overflow: hidden;
}
.dashboard-wrapper .main_content .table_wrapper table.facilities_table {
  margin-top: 64px;
}
.dashboard-wrapper .main_content .table_wrapper table.main_table th:nth-child(2), .dashboard-wrapper .main_content .table_wrapper table.main_table td:nth-child(2) {
  min-width: fit-content;
}
.dashboard-wrapper .main_content .table_wrapper table.main_table th:nth-child(3), .dashboard-wrapper .main_content .table_wrapper table.main_table td:nth-child(3) {
  min-width: 300px;
}
.dashboard-wrapper .main_content .table_wrapper table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}
.dashboard-wrapper .main_content .table_wrapper table thead th {
  text-align: left;
  padding: 12px 12px;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: #717680;
  border-bottom: 1px solid #E9EAEB;
  background: #FAFAFA;
}
.dashboard-wrapper .main_content .table_wrapper table thead th.sortable {
  cursor: pointer;
}
.dashboard-wrapper .main_content .table_wrapper table thead th.sortable:hover {
  background: #eaeaea;
}
.dashboard-wrapper .main_content .table_wrapper table thead th.sortable[data-sort-dir=asc] svg .arrow-up {
  display: none;
}
.dashboard-wrapper .main_content .table_wrapper table thead th.sortable[data-sort-dir=asc] svg .arrow-down {
  display: block;
}
.dashboard-wrapper .main_content .table_wrapper table thead th.sortable[data-sort-dir=desc] svg .arrow-up {
  display: block;
}
.dashboard-wrapper .main_content .table_wrapper table thead th.sortable[data-sort-dir=desc] svg .arrow-down {
  display: none;
}
.dashboard-wrapper .main_content .table_wrapper table thead th:last-child {
  border-right: none;
}
.dashboard-wrapper .main_content .table_wrapper table thead th.dot_wrapper {
  width: 1%;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr:nth-last-child(2) td {
  border-bottom: none;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td {
  padding: 26px 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  border-bottom: 1px solid #E9EAEB;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td b {
  font-weight: 700;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td.dot_wrapper {
  width: fit-content;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td.dot_wrapper svg {
  height: 16px;
  width: auto;
  margin: 6px 0;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td.dot_wrapper.active svg circle.main {
  fill: #17B26A;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td.dot_wrapper.active svg circle:not(.main) {
  stroke: #17B26A;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td.actions_wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td.actions_wrapper .details_box_link {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #818487;
  text-decoration: none;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td.actions_wrapper .view_btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #BA9B51;
  border-radius: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td.actions_wrapper .view_btn:hover {
  background: #BA9B51;
  color: white;
}
.dashboard-wrapper .main_content .table_wrapper table tbody tr td:has(.request-rush-badge), .dashboard-wrapper .main_content .table_wrapper table tbody tr td:has(.request-cancel-badge), .dashboard-wrapper .main_content .table_wrapper table tbody tr td:has(.case-manager-view-request) {
  padding: 16px 12px;
}

@keyframes ds-requests-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
.details_box.active .intake-details {
  height: auto;
  max-height: 100%;
  overflow: visible;
  padding: 32px 40px;
}
.details_box:not(.active) td {
  border: none !important;
}
.details_box td {
  padding: 0 !important;
  margin: 0 !important;
}
.details_box .intake-details {
  background: #fff;
  border-radius: 12px;
  padding: 0 40px;
  margin: 0;
  font-size: 16px;
  height: 0px;
  overflow: hidden;
}
.details_box .intake-details__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 18px;
}
.details_box .intake-details__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.details_box .intake-details__item {
  min-width: 215px;
  max-width: 215px;
}
.details_box .intake-details__label {
  color: #888;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 8px;
}
.details_box .intake-details__value {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.details_box .intake-details__notes {
  margin-top: 12px;
}

.requests-filters-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 18, 0.45);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.requests-filters-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.requests-filters-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  z-index: 9998;
  background: #fff;
  box-shadow: -8px 0 24px rgba(16, 24, 40, 0.18);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.requests-filters-drawer.active {
  transform: translateX(0);
}
.requests-filters-drawer__head {
  padding: 18px 20px;
  border-bottom: 1px solid #eaecf0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.requests-filters-drawer__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #181d27;
}
.requests-filters-drawer__close {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #535862;
  cursor: pointer;
  padding: 0;
}
.requests-filters-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.requests-filters-drawer__foot {
  border-top: 1px solid #eaecf0;
  padding: 14px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.requests-filter-field {
  display: grid;
  gap: 6px;
}
.requests-filter-field label {
  font-size: 13px;
  font-weight: 600;
  color: #344054;
}
.requests-filter-field select {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  color: #101828;
}
.requests-filter-field .nice-select .nice-select-dropdown {
  width: 100%;
}

.simple-text-page .content_head {
  margin-bottom: 20px;
}
.simple-text-page__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e9eaeb;
  border-radius: 10px;
  padding: 6px;
  margin-bottom: 18px;
  background: #fff;
}
.simple-text-page__tabs span {
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #535862;
}
.simple-text-page__tabs span.is-active {
  background: #f5f5f6;
  color: #252b37;
  border: 1px solid #e4e7ec;
}
.simple-text-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}
.simple-text-page__card {
  max-width: 900px;
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  padding: 24px 28px;
}
.simple-text-page__activity {
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  overflow: hidden;
}
.simple-text-page__activity-head {
  padding: 16px;
  border-bottom: 1px solid #f2f4f7;
}
.simple-text-page__activity-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #181d27;
}
.simple-text-page__activity-list {
  padding: 8px 12px;
}
.simple-text-page__activity-item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 6px;
  border-bottom: 1px solid #f2f4f7;
}
.simple-text-page__activity-item:last-child {
  border-bottom: 0;
}
.simple-text-page__activity-item strong {
  display: block;
  font-size: 13px;
  color: #181d27;
  margin-bottom: 4px;
  line-height: 1.35;
}
.simple-text-page__activity-item small {
  display: block;
  font-size: 12px;
  color: #667085;
  line-height: 1.35;
}
.simple-text-page__activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #12b76a;
  margin-top: 6px;
}
.simple-text-page__activity-empty {
  padding: 14px 8px;
  color: #667085;
  font-size: 13px;
}
.simple-text-page__content {
  color: #344054;
  font-size: 16px;
  line-height: 1.65;
}
.simple-text-page__content h1, .simple-text-page__content h2, .simple-text-page__content h3, .simple-text-page__content h4, .simple-text-page__content h5, .simple-text-page__content h6 {
  color: #181d27;
  line-height: 1.3;
  margin: 0 0 14px;
}
.simple-text-page__content p {
  margin: 0 0 14px;
}
.simple-text-page__content ul, .simple-text-page__content ol {
  margin: 0 0 14px 24px;
}
.simple-text-page__content blockquote {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-left: 3px solid #ba9b51;
  background: #faf8f3;
  color: #475467;
}
.simple-text-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
}
.simple-text-page__content table th, .simple-text-page__content table td {
  border: 1px solid #eaecf0;
  padding: 10px 12px;
  text-align: left;
}
.simple-text-page__content table th {
  background: #f9fafb;
  color: #344054;
  font-weight: 600;
}
.simple-text-page__content > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 1150px) {
  .simple-text-page__layout {
    grid-template-columns: 1fr;
  }
}

.access-denied {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  gap: 16px;
}
.access-denied h1 {
  font-size: 28px;
  font-weight: 600;
  color: #181D27;
  margin: 0;
}
.access-denied p {
  font-size: 16px;
  color: #535862;
  margin: 0;
}
.access-denied .button {
  margin-top: 8px;
}

.file-preview-icon {
  margin-left: 8px;
  width: 40px;
  height: 40px;
  position: relative;
}
.file-preview-icon .filetype-text-title {
  position: absolute;
  left: -5px;
  font-size: 10px;
  background: red;
  line-height: 16px;
  padding: 0 3px;
  color: white !important;
  font-weight: 600;
  bottom: 5px;
}
.file-preview-icon svg {
  height: 40px;
  margin-left: auto;
}

.ecf_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1080px;
}
.ecf_form .form-section {
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}
.ecf_form .form-section .section-title {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ecf_form .form-section .section-title .title {
  padding: 0;
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
.ecf_form .form-section .section-title .title .required {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #B29B51;
}
.ecf_form .form-section .section-title .description {
  padding: 0;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
.ecf_form .form-section .inputs_wrapper {
  max-width: 512px;
  width: 100%;
}
.ecf_form .form-section .inputs_wrapper.repeater-wrapper input, .ecf_form .form-section .inputs_wrapper.repeater-wrapper textarea, .ecf_form .form-section .inputs_wrapper.repeater-wrapper select {
  margin-bottom: 16px;
}
.ecf_form .form-section .inputs_wrapper.repeater-wrapper .hint {
  margin-top: -8px;
  margin-bottom: 16px;
}
.ecf_form .form-section .inputs_wrapper .checkbox-group {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  height: 185px;
  overflow: auto;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 16px;
}
.ecf_form .form-section .inputs_wrapper .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ecf_form .form-section .inputs_wrapper .checkbox-group input {
  display: flex;
  align-items: center;
  margin: 0;
}
.ecf_form .form-section .inputs_wrapper .date-range-wrapper {
  display: flex;
  gap: 24px;
}
.ecf_form .form-section .inputs_wrapper .date-range-wrapper > * {
  width: calc(50% - 12px);
}
.ecf_form .form-section .inputs_wrapper .field-title, .ecf_form .form-section .inputs_wrapper label {
  display: block;
  margin: 0 0 6px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
.ecf_form .form-section .inputs_wrapper .field-title .required, .ecf_form .form-section .inputs_wrapper label .required {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #B29B51;
}
.ecf_form .form-section .inputs_wrapper.two-column {
  display: flex;
  flex-direction: row;
  gap: 0 24px;
  flex-wrap: wrap;
}
.ecf_form .form-section .inputs_wrapper.two-column input {
  width: calc(50% - 12px) !important;
}
.ecf_form .form-section .inputs_wrapper input:not([type=checkbox]):not([type=radio]), .ecf_form .form-section .inputs_wrapper textarea, .ecf_form .form-section .inputs_wrapper select {
  width: 100%;
  max-width: 512px;
  appearance: none;
  display: flex;
  padding: 10px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  /* Input with label */
  padding: 10px 14px;
  height: 44px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
}
.ecf_form .form-section .inputs_wrapper input[type=file] {
  background: #fff;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  width: 100%;
  min-height: 120px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 20px 16px;
  box-sizing: border-box;
  margin: 0 auto 16px auto;
  position: relative;
  transition: border-color 0.2s;
}
.ecf_form .form-section .inputs_wrapper .custom-treatment-dates-checkbox label, .ecf_form .form-section .inputs_wrapper .toggle-group label,
.ecf_form .form-section .inputs_wrapper .affidavit-checkbox-wrap label {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.ecf_form .form-section .inputs_wrapper .custom-treatment-dates-checkbox input[type=checkbox], .ecf_form .form-section .inputs_wrapper .toggle-group input[type=checkbox],
.ecf_form .form-section .inputs_wrapper .affidavit-checkbox-wrap input[type=checkbox] {
  margin: 0 8px 0 0;
}
.ecf_form .form-section .inputs_wrapper .affidavit-yesno-wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.ecf_form .form-section .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}
.ecf_form .form-section .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  margin: 0;
}
.ecf_form .form-section .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:hover, .ecf_form .form-section .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
.ecf_form .form-section .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
.ecf_form .form-section .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
.ecf_form .form-section .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:focus-visible {
  outline: 2px solid #B29B51;
  outline-offset: 2px;
}
.ecf_form .form-section .inputs_wrapper input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ecf_form .form-section .inputs_wrapper input[type=checkbox]:hover, .ecf_form .form-section .inputs_wrapper input[type=checkbox]:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
.ecf_form .form-section .inputs_wrapper input[type=checkbox]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
.ecf_form .form-section .inputs_wrapper input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
.ecf_form .form-section .inputs_wrapper input[type=checkbox]:focus-visible {
  outline: 2px solid #B29B51;
  outline-offset: 2px;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload .file-upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  padding: 16px 24px;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  box-sizing: border-box;
  position: relative;
  transition: border-color 0.2s;
  background: #fff;
  cursor: pointer;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload .file-upload-container:hover {
  border-color: #B29B51;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload .file-upload-container .file-upload-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05), inset 0px 0px 0px 1px rgba(10, 13, 18, 0.18), inset 0px -2px 0px rgba(10, 13, 18, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload .file-upload-container .file-upload-text .file-upload-text-title {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #B29B51;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload .file-upload-container .file-upload-text .file-upload-text-description {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload.has-file .file-preview {
  display: flex;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload.has-file .file-upload-container {
  display: none;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload .file-preview {
  display: none;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  height: 78px;
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  gap: 12px;
  margin-bottom: 12px;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload .file-preview .file-preview-text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
.ecf_form .form-section .inputs_wrapper .custom-file-upload .file-preview a.remove-file {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.ecf_form .form-section .inputs_wrapper textarea {
  height: 115px;
  resize: none;
}
.ecf_form .form-section .inputs_wrapper .hint {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  margin-top: 8px;
  margin-bottom: 0;
}
.ecf_form .form-section .action-buttons {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}
.ecf_form .form-section .add-repeater-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  gap: 4px;
  height: 40px;
  border: 1px solid #BA9B51;
  border-radius: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  background: #fff;
  color: #C8AD64;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.3s, background 0.3ss, color 0.3s;
}
.ecf_form .form-section .add-repeater-item:hover {
  background: #C8AD64;
  border-color: #C8AD64;
  color: #fff;
}
.ecf_form .form-section .remove-repeater-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  gap: 4px;
  height: 40px;
  border-radius: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  background: #fff;
  color: red;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.3s, background 0.3ss, color 0.3s;
  border: none;
}
.ecf_form .form-section .remove-repeater-item:hover {
  color: #cc0000;
}
.ecf_form .form-section .facility-search-wrap .facility-search-results .facility-search-results__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 12px 12px 14px;
  border: 1px solid #e9eaeb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 12px;
}
.ecf_form .form-section .facility-search-wrap .facility-search-results .facility-search-results__item:hover {
  background: #fffdf8;
  border-color: #b29b51;
}
.ecf_form .form-section .facility-search-wrap .facility-search-results .facility-search-results__item .name {
  font-weight: 600;
  font-size: 16px;
  color: #181d27;
}
.ecf_form .form-section .facility-search-wrap .facility-search-results .facility-search-results__item .info {
  font-size: 14px;
  color: #717680;
  word-break: break-word;
}
.ecf_form .form-section .facility-search-wrap .facility-search-selected .facility-search-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 12px 12px 14px;
  border: 1px solid #e9eaeb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 12px;
}
.ecf_form .form-section .facility-search-wrap .facility-search-selected .facility-search-cardname {
  font-weight: 600;
  font-size: 16px;
  color: #181d27;
}
.ecf_form .form-section .facility-search-wrap .facility-search-selected .facility-search-card__address {
  font-size: 14px;
  color: #717680;
  word-break: break-word;
}
.ecf_form .form-section .facility-search-wrap .facilities_not_found {
  margin-bottom: 16px;
  font-size: 15px;
}
.ecf_form .form-section .facility-search-wrap .facilities_not_found span {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #b29b51;
  cursor: pointer;
}
.ecf_form .form-section .facility-search-wrap .facilities_not_found span:hover {
  color: rgb(144.1912350598, 125.1314741036, 63.8087649402);
}

#request-upload-form .custom-file-upload .file-upload-container,
#ds_department_form .custom-file-upload .file-upload-container,
.payment-edit-modal .custom-file-upload .file-upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  padding: 16px 24px;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  box-sizing: border-box;
  position: relative;
  transition: border-color 0.2s;
  background: #fff;
  cursor: pointer;
}
#request-upload-form .custom-file-upload .file-upload-container:hover,
#ds_department_form .custom-file-upload .file-upload-container:hover,
.payment-edit-modal .custom-file-upload .file-upload-container:hover {
  border-color: #B29B51;
}
#request-upload-form .custom-file-upload .file-upload-container .file-upload-icon,
#ds_department_form .custom-file-upload .file-upload-container .file-upload-icon,
.payment-edit-modal .custom-file-upload .file-upload-container .file-upload-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05), inset 0px 0px 0px 1px rgba(10, 13, 18, 0.18), inset 0px -2px 0px rgba(10, 13, 18, 0.05);
  border-radius: 8px;
  margin-bottom: 12px;
}
#request-upload-form .custom-file-upload .file-upload-container .file-upload-text .file-upload-text-title,
#ds_department_form .custom-file-upload .file-upload-container .file-upload-text .file-upload-text-title,
.payment-edit-modal .custom-file-upload .file-upload-container .file-upload-text .file-upload-text-title {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #B29B51;
}
#request-upload-form .custom-file-upload .file-upload-container .file-upload-text .file-upload-text-description,
#ds_department_form .custom-file-upload .file-upload-container .file-upload-text .file-upload-text-description,
.payment-edit-modal .custom-file-upload .file-upload-container .file-upload-text .file-upload-text-description {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
#request-upload-form .custom-file-upload.has-file .file-preview,
#ds_department_form .custom-file-upload.has-file .file-preview,
.payment-edit-modal .custom-file-upload.has-file .file-preview {
  display: flex;
}
#request-upload-form .custom-file-upload.has-file .file-upload-container,
#ds_department_form .custom-file-upload.has-file .file-upload-container,
.payment-edit-modal .custom-file-upload.has-file .file-upload-container {
  display: none;
}
#request-upload-form .custom-file-upload .file-preview,
#ds_department_form .custom-file-upload .file-preview,
.payment-edit-modal .custom-file-upload .file-preview {
  display: none;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  height: 78px;
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  gap: 12px;
  margin-bottom: 12px;
}
#request-upload-form .custom-file-upload .file-preview .file-preview-text,
#ds_department_form .custom-file-upload .file-preview .file-preview-text,
.payment-edit-modal .custom-file-upload .file-preview .file-preview-text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
#request-upload-form .custom-file-upload .file-preview a.remove-file,
#ds_department_form .custom-file-upload .file-preview a.remove-file,
.payment-edit-modal .custom-file-upload .file-preview a.remove-file {
  margin-left: auto;
  display: flex;
  align-items: center;
}
#request-upload-form .dept-current-file,
#ds_department_form .dept-current-file,
.payment-edit-modal .dept-current-file {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  height: 78px;
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  gap: 12px;
  margin-bottom: 12px;
}
#request-upload-form .dept-current-file[hidden],
#ds_department_form .dept-current-file[hidden],
.payment-edit-modal .dept-current-file[hidden] {
  display: none;
}
#request-upload-form .dept-current-file .file-preview-text,
#ds_department_form .dept-current-file .file-preview-text,
.payment-edit-modal .dept-current-file .file-preview-text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  overflow: hidden;
}
#request-upload-form .dept-current-file .file-preview-text .file-preview-text-title,
#ds_department_form .dept-current-file .file-preview-text .file-preview-text-title,
.payment-edit-modal .dept-current-file .file-preview-text .file-preview-text-title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#request-upload-form .dept-current-file .dept-current-file__actions,
#ds_department_form .dept-current-file .dept-current-file__actions,
.payment-edit-modal .dept-current-file .dept-current-file__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
#request-upload-form .dept-current-file .dept-current-file__actions .preview_button,
#ds_department_form .dept-current-file .dept-current-file__actions .preview_button,
.payment-edit-modal .dept-current-file .dept-current-file__actions .preview_button {
  white-space: nowrap;
  font-size: 13px;
  height: auto;
  padding: 4px 12px;
}
#request-upload-form .dept-current-file .dept-current-file__actions a.remove-file,
#ds_department_form .dept-current-file .dept-current-file__actions a.remove-file,
.payment-edit-modal .dept-current-file .dept-current-file__actions a.remove-file {
  display: flex;
  align-items: center;
}

.enter_facility_form {
  margin-top: 20px;
  width: 50%;
}
.enter_facility_form.active {
  display: block;
}
.enter_facility_form .inputs_wrapper {
  max-width: 512px;
  width: 100%;
}
.enter_facility_form .inputs_wrapper.repeater-wrapper input, .enter_facility_form .inputs_wrapper.repeater-wrapper textarea, .enter_facility_form .inputs_wrapper.repeater-wrapper select {
  margin-bottom: 16px;
}
.enter_facility_form .inputs_wrapper.repeater-wrapper .hint {
  margin-top: -8px;
  margin-bottom: 16px;
}
.enter_facility_form .inputs_wrapper .checkbox-group {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  height: 185px;
  overflow: auto;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 16px;
}
.enter_facility_form .inputs_wrapper .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.enter_facility_form .inputs_wrapper .checkbox-group input {
  display: flex;
  align-items: center;
  margin: 0;
}
.enter_facility_form .inputs_wrapper .date-range-wrapper {
  display: flex;
  gap: 24px;
}
.enter_facility_form .inputs_wrapper .date-range-wrapper > * {
  width: calc(50% - 12px);
}
.enter_facility_form .inputs_wrapper .field-title, .enter_facility_form .inputs_wrapper label {
  display: block;
  margin: 0 0 6px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
.enter_facility_form .inputs_wrapper .field-title .required, .enter_facility_form .inputs_wrapper label .required {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #B29B51;
}
.enter_facility_form .inputs_wrapper.two-column {
  display: flex;
  flex-direction: row;
  gap: 0 24px;
  flex-wrap: wrap;
}
.enter_facility_form .inputs_wrapper.two-column input {
  width: calc(50% - 12px) !important;
}
.enter_facility_form .inputs_wrapper input:not([type=checkbox]):not([type=radio]), .enter_facility_form .inputs_wrapper textarea, .enter_facility_form .inputs_wrapper select {
  width: 100%;
  max-width: 512px;
  appearance: none;
  display: flex;
  padding: 10px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  /* Input with label */
  padding: 10px 14px;
  height: 44px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
}
.enter_facility_form .inputs_wrapper input[type=file] {
  background: #fff;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  width: 100%;
  min-height: 120px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 20px 16px;
  box-sizing: border-box;
  margin: 0 auto 16px auto;
  position: relative;
  transition: border-color 0.2s;
}
.enter_facility_form .inputs_wrapper .custom-treatment-dates-checkbox label, .enter_facility_form .inputs_wrapper .toggle-group label,
.enter_facility_form .inputs_wrapper .affidavit-checkbox-wrap label {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.enter_facility_form .inputs_wrapper .custom-treatment-dates-checkbox input[type=checkbox], .enter_facility_form .inputs_wrapper .toggle-group input[type=checkbox],
.enter_facility_form .inputs_wrapper .affidavit-checkbox-wrap input[type=checkbox] {
  margin: 0 8px 0 0;
}
.enter_facility_form .inputs_wrapper .affidavit-yesno-wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.enter_facility_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}
.enter_facility_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  margin: 0;
}
.enter_facility_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:hover, .enter_facility_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
.enter_facility_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
.enter_facility_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
.enter_facility_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:focus-visible {
  outline: 2px solid #B29B51;
  outline-offset: 2px;
}
.enter_facility_form .inputs_wrapper input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.enter_facility_form .inputs_wrapper input[type=checkbox]:hover, .enter_facility_form .inputs_wrapper input[type=checkbox]:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
.enter_facility_form .inputs_wrapper input[type=checkbox]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
.enter_facility_form .inputs_wrapper input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
.enter_facility_form .inputs_wrapper input[type=checkbox]:focus-visible {
  outline: 2px solid #B29B51;
  outline-offset: 2px;
}
.enter_facility_form .buttons_row {
  display: flex;
  column-gap: 15px;
  margin-top: 15px;
  justify-content: space-between;
}
.enter_facility_form .buttons_row .save_button {
  background-color: #B29B51 !important;
  border: none;
  cursor: pointer;
  max-width: 90px !important;
}
.enter_facility_form .buttons_row .save_as_new_button {
  border: 1px solid #D5D7DA !important;
}

.prepay_edit_form, .postpay_edit_form {
  display: none;
  margin-top: 20px;
}
.prepay_edit_form.active, .postpay_edit_form.active {
  display: block;
}
.prepay_edit_form .inputs_wrapper, .postpay_edit_form .inputs_wrapper {
  max-width: 512px;
  width: 100%;
}
.prepay_edit_form .inputs_wrapper.repeater-wrapper input, .prepay_edit_form .inputs_wrapper.repeater-wrapper textarea, .prepay_edit_form .inputs_wrapper.repeater-wrapper select, .postpay_edit_form .inputs_wrapper.repeater-wrapper input, .postpay_edit_form .inputs_wrapper.repeater-wrapper textarea, .postpay_edit_form .inputs_wrapper.repeater-wrapper select {
  margin-bottom: 16px;
}
.prepay_edit_form .inputs_wrapper.repeater-wrapper .hint, .postpay_edit_form .inputs_wrapper.repeater-wrapper .hint {
  margin-top: -8px;
  margin-bottom: 16px;
}
.prepay_edit_form .inputs_wrapper .checkbox-group, .postpay_edit_form .inputs_wrapper .checkbox-group {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  height: 185px;
  overflow: auto;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 16px;
}
.prepay_edit_form .inputs_wrapper .checkbox-group label, .postpay_edit_form .inputs_wrapper .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.prepay_edit_form .inputs_wrapper .checkbox-group input, .postpay_edit_form .inputs_wrapper .checkbox-group input {
  display: flex;
  align-items: center;
  margin: 0;
}
.prepay_edit_form .inputs_wrapper .date-range-wrapper, .postpay_edit_form .inputs_wrapper .date-range-wrapper {
  display: flex;
  gap: 24px;
}
.prepay_edit_form .inputs_wrapper .date-range-wrapper > *, .postpay_edit_form .inputs_wrapper .date-range-wrapper > * {
  width: calc(50% - 12px);
}
.prepay_edit_form .inputs_wrapper .field-title, .prepay_edit_form .inputs_wrapper label, .postpay_edit_form .inputs_wrapper .field-title, .postpay_edit_form .inputs_wrapper label {
  display: block;
  margin: 0 0 6px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
.prepay_edit_form .inputs_wrapper .field-title .required, .prepay_edit_form .inputs_wrapper label .required, .postpay_edit_form .inputs_wrapper .field-title .required, .postpay_edit_form .inputs_wrapper label .required {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #B29B51;
}
.prepay_edit_form .inputs_wrapper.two-column, .postpay_edit_form .inputs_wrapper.two-column {
  display: flex;
  flex-direction: row;
  gap: 0 24px;
  flex-wrap: wrap;
}
.prepay_edit_form .inputs_wrapper.two-column input, .postpay_edit_form .inputs_wrapper.two-column input {
  width: calc(50% - 12px) !important;
}
.prepay_edit_form .inputs_wrapper input:not([type=checkbox]):not([type=radio]), .prepay_edit_form .inputs_wrapper textarea, .prepay_edit_form .inputs_wrapper select, .postpay_edit_form .inputs_wrapper input:not([type=checkbox]):not([type=radio]), .postpay_edit_form .inputs_wrapper textarea, .postpay_edit_form .inputs_wrapper select {
  width: 100%;
  max-width: 512px;
  appearance: none;
  display: flex;
  padding: 10px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  /* Input with label */
  padding: 10px 14px;
  height: 44px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
}
.prepay_edit_form .inputs_wrapper input[type=file], .postpay_edit_form .inputs_wrapper input[type=file] {
  background: #fff;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  width: 100%;
  min-height: 120px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 20px 16px;
  box-sizing: border-box;
  margin: 0 auto 16px auto;
  position: relative;
  transition: border-color 0.2s;
}
.prepay_edit_form .inputs_wrapper input[type=date], .postpay_edit_form .inputs_wrapper input[type=date] {
  display: block;
}
.prepay_edit_form .inputs_wrapper .custom-treatment-dates-checkbox label, .prepay_edit_form .inputs_wrapper .toggle-group label,
.prepay_edit_form .inputs_wrapper .affidavit-checkbox-wrap label, .postpay_edit_form .inputs_wrapper .custom-treatment-dates-checkbox label, .postpay_edit_form .inputs_wrapper .toggle-group label,
.postpay_edit_form .inputs_wrapper .affidavit-checkbox-wrap label {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.prepay_edit_form .inputs_wrapper .custom-treatment-dates-checkbox input[type=checkbox], .prepay_edit_form .inputs_wrapper .toggle-group input[type=checkbox],
.prepay_edit_form .inputs_wrapper .affidavit-checkbox-wrap input[type=checkbox], .postpay_edit_form .inputs_wrapper .custom-treatment-dates-checkbox input[type=checkbox], .postpay_edit_form .inputs_wrapper .toggle-group input[type=checkbox],
.postpay_edit_form .inputs_wrapper .affidavit-checkbox-wrap input[type=checkbox] {
  margin: 0 8px 0 0;
}
.prepay_edit_form .inputs_wrapper .affidavit-yesno-wrap, .postpay_edit_form .inputs_wrapper .affidavit-yesno-wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.prepay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label, .postpay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}
.prepay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio], .postpay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  margin: 0;
}
.prepay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:hover, .prepay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:focus, .postpay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:hover, .postpay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
.prepay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:checked, .postpay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
.prepay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:checked::after, .postpay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
.prepay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:focus-visible, .postpay_edit_form .inputs_wrapper .affidavit-yesno-wrap .affidavit-yesno-label input[type=radio]:focus-visible {
  outline: 2px solid #B29B51;
  outline-offset: 2px;
}
.prepay_edit_form .inputs_wrapper input[type=checkbox], .postpay_edit_form .inputs_wrapper input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.prepay_edit_form .inputs_wrapper input[type=checkbox]:hover, .prepay_edit_form .inputs_wrapper input[type=checkbox]:focus, .postpay_edit_form .inputs_wrapper input[type=checkbox]:hover, .postpay_edit_form .inputs_wrapper input[type=checkbox]:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
.prepay_edit_form .inputs_wrapper input[type=checkbox]:checked, .postpay_edit_form .inputs_wrapper input[type=checkbox]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
.prepay_edit_form .inputs_wrapper input[type=checkbox]:checked::after, .postpay_edit_form .inputs_wrapper input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
.prepay_edit_form .inputs_wrapper input[type=checkbox]:focus-visible, .postpay_edit_form .inputs_wrapper input[type=checkbox]:focus-visible {
  outline: 2px solid #B29B51;
  outline-offset: 2px;
}
.prepay_edit_form .buttons_row, .postpay_edit_form .buttons_row {
  display: flex;
  column-gap: 15px;
  margin-top: 15px;
}
.prepay_edit_form .buttons_row .save_button, .postpay_edit_form .buttons_row .save_button {
  background-color: #B29B51 !important;
  border: none;
  cursor: pointer;
  max-width: 90px !important;
}
.prepay_edit_form .buttons_row .cancel_button, .postpay_edit_form .buttons_row .cancel_button {
  border: 1px solid #D5D7DA !important;
}

.edit-postpay, .edit-prepay {
  cursor: pointer;
}

.docuswift_portal_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0;
}
.docuswift_portal_pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}
.docuswift_portal_pagination ul li {
  display: flex;
  align-items: center;
}
.docuswift_portal_pagination ul li.prev_li {
  margin-right: auto;
}
.docuswift_portal_pagination ul li.next_li {
  margin-left: auto;
}
.docuswift_portal_pagination ul li.active span {
  background: #F5F5F5;
}
.docuswift_portal_pagination ul li.dots span {
  color: #B0B3B9;
  background: transparent;
  border: none;
  cursor: default;
  font-size: 18px;
  font-weight: 500;
  padding: 0 8px;
}
.docuswift_portal_pagination ul li a, .docuswift_portal_pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: #181D27;
  font-size: 14px;
  list-style: 20px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.docuswift_portal_pagination ul li a:hover, .docuswift_portal_pagination ul li span:hover {
  border-color: #B29B51;
}
.docuswift_portal_pagination ul li a.prev, .docuswift_portal_pagination ul li a.next {
  font-size: 18px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #D5D7DA;
  color: #181D27;
  font-size: 14px;
  list-style: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.docuswift_portal_pagination ul li a.prev:hover, .docuswift_portal_pagination ul li a.next:hover {
  border-color: #B29B51;
}
.docuswift_portal_pagination ul li a.prev.disabled, .docuswift_portal_pagination ul li a.next.disabled {
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .docuswift_portal_pagination ul {
    gap: 4px;
  }
  .docuswift_portal_pagination ul li a, .docuswift_portal_pagination ul li span {
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .docuswift_portal_pagination ul {
    flex-wrap: wrap;
    gap: 2px;
  }
  .docuswift_portal_pagination ul li a, .docuswift_portal_pagination ul li span {
    min-width: 26px;
    height: 26px;
    padding: 0 4px;
    font-size: 12px;
  }
  .docuswift_portal_pagination ul li.dots {
    display: none;
  }
}

.request_detail_overlay,
.cm-request-detail-overlay,
.company-admin-request-detail-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.34);
  z-index: 10;
  display: none;
}
.request_detail_overlay.active,
.cm-request-detail-overlay.active,
.company-admin-request-detail-overlay.active {
  display: block;
}

#request_detail,
#cm_request_detail,
#company_admin_request_detail {
  position: fixed;
  right: -200vw;
  top: 0;
  max-width: 1240px;
  width: 100%;
  height: 100vh;
  background: #FAFAFA;
  z-index: 10000;
  padding: 30px 45px;
  overflow: auto;
  transition: right 0.3s;
}
@media (max-width: 992px) {
  #request_detail,
  #cm_request_detail,
  #company_admin_request_detail {
    top: 60px;
  }
}
#request_detail.active,
#cm_request_detail.active,
#company_admin_request_detail.active {
  right: 0;
}
#request_detail h2,
#cm_request_detail h2,
#company_admin_request_detail h2 {
  margin: 0;
}
#request_detail .request_details_wrapper,
#cm_request_detail .request_details_wrapper,
#company_admin_request_detail .request_details_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
#request_detail .request_details_main,
#cm_request_detail .request_details_main,
#company_admin_request_detail .request_details_main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
#request_detail .request_details_main .request-step-panels .request-step-panel,
#cm_request_detail .request_details_main .request-step-panels .request-step-panel,
#company_admin_request_detail .request_details_main .request-step-panels .request-step-panel {
  display: none;
}
#request_detail .request_details_main .request-step-panels .request-step-panel.request-step-panel--active,
#cm_request_detail .request_details_main .request-step-panels .request-step-panel.request-step-panel--active,
#company_admin_request_detail .request_details_main .request-step-panels .request-step-panel.request-step-panel--active {
  display: block;
}
#request_detail .request_details_main button,
#cm_request_detail .request_details_main button,
#company_admin_request_detail .request_details_main button {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
#request_detail .request_details_main .request_details_header,
#cm_request_detail .request_details_main .request_details_header,
#company_admin_request_detail .request_details_main .request_details_header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
#request_detail .request_details_main .request_details_header .request_title,
#cm_request_detail .request_details_main .request_details_header .request_title,
#company_admin_request_detail .request_details_main .request_details_header .request_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}
#request_detail .request_details_main .request_details_header .request_title .edit-status-button,
#cm_request_detail .request_details_main .request_details_header .request_title .edit-status-button,
#company_admin_request_detail .request_details_main .request_details_header .request_title .edit-status-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #b29b51;
  cursor: pointer;
  transition: 0.2s all;
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
}
#request_detail .request_details_main .request_details_header .request_title .edit-status-button:hover,
#cm_request_detail .request_details_main .request_details_header .request_title .edit-status-button:hover,
#company_admin_request_detail .request_details_main .request_details_header .request_title .edit-status-button:hover {
  background: #8c7a36;
}
#request_detail .request_details_main .request_details_header .request_title .edit-status-button svg,
#cm_request_detail .request_details_main .request_details_header .request_title .edit-status-button svg,
#company_admin_request_detail .request_details_main .request_details_header .request_title .edit-status-button svg {
  flex-shrink: 0;
}
#request_detail .request_details_main .request_details_header .request_title .request-title-primary,
#cm_request_detail .request_details_main .request_details_header .request_title .request-title-primary,
#company_admin_request_detail .request_details_main .request_details_header .request_title .request-title-primary {
  display: flex;
  align-items: center;
  gap: 16px;
}
#request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-escalated-badge,
#request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-rush-badge,
#cm_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-escalated-badge,
#cm_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-rush-badge,
#company_admin_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-escalated-badge,
#company_admin_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-rush-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(220, 38, 38, 0.1254901961);
  color: #dc2626;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid;
}
#request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-escalated-badge svg,
#request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-rush-badge svg,
#cm_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-escalated-badge svg,
#cm_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-rush-badge svg,
#company_admin_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-escalated-badge svg,
#company_admin_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-rush-badge svg {
  flex-shrink: 0;
}
#request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-affidavit-badge,
#cm_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-affidavit-badge,
#company_admin_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-affidavit-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(124, 58, 237, 0.1254901961);
  color: #7c3aed;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid;
}
#request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-affidavit-badge svg,
#cm_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-affidavit-badge svg,
#company_admin_request_detail .request_details_main .request_details_header .request_title .request-title-primary .request-affidavit-badge svg {
  flex-shrink: 0;
}
#request_detail .request_details_main .request_details_header .request_title .request-record-type,
#cm_request_detail .request_details_main .request_details_header .request_title .request-record-type,
#company_admin_request_detail .request_details_main .request_details_header .request_title .request-record-type {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  color: #717680;
}
#request_detail .request_details_main .request_details_header .request_additional_info,
#cm_request_detail .request_details_main .request_details_header .request_additional_info,
#company_admin_request_detail .request_details_main .request_details_header .request_additional_info {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  width: 100%;
}
#request_detail .request_details_main .request_details_header .request_additional_info .request_info_left_column,
#cm_request_detail .request_details_main .request_details_header .request_additional_info .request_info_left_column,
#company_admin_request_detail .request_details_main .request_details_header .request_additional_info .request_info_left_column {
  width: 50%;
}
#request_detail .request_details_main .request_details_header .request_additional_info .request_info_right_column,
#cm_request_detail .request_details_main .request_details_header .request_additional_info .request_info_right_column,
#company_admin_request_detail .request_details_main .request_details_header .request_additional_info .request_info_right_column {
  width: 46%;
}
#request_detail .request_details_main .request_details_header .request_additional_info_item,
#cm_request_detail .request_details_main .request_details_header .request_additional_info_item,
#company_admin_request_detail .request_details_main .request_details_header .request_additional_info_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #717680;
}
#request_detail .request_details_main .request_details_header .request_additional_info_item span,
#cm_request_detail .request_details_main .request_details_header .request_additional_info_item span,
#company_admin_request_detail .request_details_main .request_details_header .request_additional_info_item span {
  font-weight: 600;
}
#request_detail .request_details_main .details_box.inline,
#cm_request_detail .request_details_main .details_box.inline,
#company_admin_request_detail .request_details_main .details_box.inline {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
#request_detail .request_details_main .details_box.inline h2,
#cm_request_detail .request_details_main .details_box.inline h2,
#company_admin_request_detail .request_details_main .details_box.inline h2 {
  margin-bottom: 0;
}
#request_detail .request_details_main .details_box h2,
#cm_request_detail .request_details_main .details_box h2,
#company_admin_request_detail .request_details_main .details_box h2 {
  margin: 0 0 15px;
}
#request_detail .request_details_main .details_box .client_details,
#cm_request_detail .request_details_main .details_box .client_details,
#company_admin_request_detail .request_details_main .details_box .client_details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#request_detail .request_details_main .details_box .client_details .client_details_item,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item {
  width: calc(33.3% - 13.3333333333px);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#request_detail .request_details_main .details_box .client_details .client_details_item:not(.full-width),
#cm_request_detail .request_details_main .details_box .client_details .client_details_item:not(.full-width),
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item:not(.full-width) {
  padding: 12px;
  background: #fafafa;
  border-radius: 5px;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .dashicons-edit,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .dashicons-edit,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .dashicons-edit {
  cursor: pointer;
  background: #B29B51;
  border-radius: 20px;
  color: #fff;
  transition: 0.2s all;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .dashicons-edit:hover,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .dashicons-edit:hover,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .dashicons-edit:hover {
  opacity: 0.8;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .title,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .title,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-prepay-button,
#request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-postpay-button,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-prepay-button,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-postpay-button,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-prepay-button,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-postpay-button {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  color: #b29b51;
  transition: 0.2s all;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-prepay-button:hover,
#request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-postpay-button:hover,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-prepay-button:hover,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-postpay-button:hover,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-prepay-button:hover,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-postpay-button:hover {
  color: #8c7a36;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-prepay-button svg,
#request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-postpay-button svg,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-prepay-button svg,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-postpay-button svg,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-prepay-button svg,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .title .edit-postpay-button svg {
  flex-shrink: 0;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .value,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .value,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .value {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
  margin-top: 8px;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .value.total,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .value.total,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .value.total {
  font-size: 32px;
  margin-top: 12px;
  font-weight: 700;
  opacity: 0.9;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .value.muted,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .value.muted,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .value.muted {
  font-size: 14px;
  opacity: 0.5;
  font-weight: 400;
}
#request_detail .request_details_main .details_box .client_details .client_details_item.full-width,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item.full-width,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item.full-width {
  width: 100%;
}
#request_detail .request_details_main .details_box .client_details .client_details_item.full-width .payments-history,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item.full-width .payments-history,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item.full-width .payments-history {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 16px;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .payments-history__delete-invoice-btn,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .payments-history__delete-invoice-btn,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .payments-history__delete-invoice-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #e02424;
  transition: 0.2s all;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .payments-history__delete-invoice-btn:hover,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .payments-history__delete-invoice-btn:hover,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .payments-history__delete-invoice-btn:hover {
  color: #b91c1c;
}
#request_detail .request_details_main .details_box .client_details .client_details_item .payments-history__delete-invoice-btn svg,
#cm_request_detail .request_details_main .details_box .client_details .client_details_item .payments-history__delete-invoice-btn svg,
#company_admin_request_detail .request_details_main .details_box .client_details .client_details_item .payments-history__delete-invoice-btn svg {
  flex-shrink: 0;
}
#request_detail .request_details_main .activity_and_notes h2,
#cm_request_detail .request_details_main .activity_and_notes h2,
#company_admin_request_detail .request_details_main .activity_and_notes h2 {
  margin: 0 0 15px;
}
#request_detail .request_details_main .activity_and_notes .add_note,
#cm_request_detail .request_details_main .activity_and_notes .add_note,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
#request_detail .request_details_main .activity_and_notes .add_note textarea,
#cm_request_detail .request_details_main .activity_and_notes .add_note textarea,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note textarea {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #181D27;
  width: 100%;
  height: 90px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  outline: none;
  resize: vertical;
}
#request_detail .request_details_main .activity_and_notes .add_note textarea:focus,
#cm_request_detail .request_details_main .activity_and_notes .add_note textarea:focus,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note textarea:focus {
  outline: none;
  border-color: #B29B51;
}
#request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons,
#cm_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
#request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .nice-select.ds-nice-select,
#cm_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .nice-select.ds-nice-select,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .nice-select.ds-nice-select {
  width: auto;
  min-width: 160px;
  height: 41px;
  line-height: 37px;
}
#request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label,
#cm_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 14px;
  color: #4d515a;
}
#request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label input[type=checkbox],
#cm_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label input[type=checkbox],
#company_admin_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label input[type=checkbox]:checked,
#cm_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label input[type=checkbox]:checked,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label input[type=checkbox]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
#request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label input[type=checkbox]:checked::after,
#cm_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label input[type=checkbox]:checked::after,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note .add_note_buttons .internal-note-label input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
#request_detail .request_details_main .activity_and_notes .add_note .button,
#cm_request_detail .request_details_main .activity_and_notes .add_note .button,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note .button {
  padding: 4px 14px;
  font-size: 14px;
  height: 41px;
  width: max-content;
  border: 1px solid #d6d7da;
  color: #4d515a;
  font-weight: 500;
  bottom: 4px;
  right: 4px;
  transition: 0.2s all;
}
#request_detail .request_details_main .activity_and_notes .add_note .button:hover,
#cm_request_detail .request_details_main .activity_and_notes .add_note .button:hover,
#company_admin_request_detail .request_details_main .activity_and_notes .add_note .button:hover {
  color: #B29B51;
  border-color: #B29B51;
}
#request_detail .request_details_main .activity_and_notes .notes_list,
#cm_request_detail .request_details_main .activity_and_notes .notes_list,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item.action .note_details .note_content,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item.action .note_details .note_content,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item.action .note_details .note_content {
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item img,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item img,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  flex-grow: 1;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .author,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .author,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .author {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .author .date,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .author .date,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .author .date {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #535862;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note_content_row,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note_content_row,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note_content_row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note_content,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note_content,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note_content {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  max-width: 520px;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .internal-note-badge,
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .message-note-badge,
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note-note-badge,
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .action-required-badge,
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .activity-type-badge,
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .system-activity-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .internal-note-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .message-note-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note-note-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .action-required-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .activity-type-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .system-activity-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .internal-note-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .message-note-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note-note-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .action-required-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .activity-type-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .system-activity-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.02em;
  background: #FDF3DC;
  color: #92700A;
  border: 1px solid #F0D98A;
  text-transform: uppercase;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .message-note-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .message-note-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .message-note-badge {
  background: #E4F1FF;
  color: #1D5EA8;
  border: 1px solid #B8D8FF;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note-note-badge,
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .activity-type-badge,
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .system-activity-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note-note-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .activity-type-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .system-activity-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .note-note-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .activity-type-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .system-activity-badge {
  background: #F5F5F5;
  color: #414651;
  border: 1px solid #E9EAEB;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .action-required-badge,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .action-required-badge,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .action-required-badge {
  background: #FEF0EE;
  color: #B42318;
  border: 1px solid #FDA29B;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short {
  display: flex;
  align-items: center;
  row-gap: 0;
  column-gap: 14px;
  color: #535862;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn-container,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn-container,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn-container {
  width: 100%;
  text-align: right;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 6px;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn,
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn {
  align-items: center;
  justify-content: center;
  padding: 2px;
  background: none;
  border: none;
  cursor: pointer;
  color: #A4A7AE;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
  width: fit-content;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn:disabled,
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn:disabled,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn:disabled,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn:disabled,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn:disabled,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn {
  margin-left: 0;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn:hover,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn:hover,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-edit-btn:hover {
  color: #2563eb;
  background: #dbeafe;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn {
  margin-left: 0;
}
#request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn:hover,
#cm_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn:hover,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list .note_item .note_details .date-short .activity-delete-btn:hover {
  color: #dc2626;
  background: #fee2e2;
}
#request_detail .request_details_main .activity_and_notes .notes_list button,
#cm_request_detail .request_details_main .activity_and_notes .notes_list button,
#company_admin_request_detail .request_details_main .activity_and_notes .notes_list button {
  height: auto;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
#request_detail .request_details_sidebar,
#cm_request_detail .request_details_sidebar,
#company_admin_request_detail .request_details_sidebar {
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 0;
}
#request_detail .request_details_sidebar .select_wrapper,
#cm_request_detail .request_details_sidebar .select_wrapper,
#company_admin_request_detail .request_details_sidebar .select_wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 12px;
}
#request_detail .request_details_sidebar .select_wrapper .title,
#cm_request_detail .request_details_sidebar .select_wrapper .title,
#company_admin_request_detail .request_details_sidebar .select_wrapper .title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
}
#request_detail .request_details_sidebar .select_wrapper .select_with_icon,
#cm_request_detail .request_details_sidebar .select_wrapper .select_with_icon,
#company_admin_request_detail .request_details_sidebar .select_wrapper .select_with_icon {
  position: relative;
  width: 100%;
}
#request_detail .request_details_sidebar .select_wrapper .select_with_icon:after,
#cm_request_detail .request_details_sidebar .select_wrapper .select_with_icon:after,
#company_admin_request_detail .request_details_sidebar .select_wrapper .select_with_icon:after {
  content: "";
  background: url("../../ds-icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: absolute;
  right: 5px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
#request_detail .request_details_sidebar .select_wrapper select,
#cm_request_detail .request_details_sidebar .select_wrapper select,
#company_admin_request_detail .request_details_sidebar .select_wrapper select {
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  appearance: none;
  padding: 6px 38px 6px 14px;
  cursor: pointer;
  width: 100%;
}
#request_detail .request_details_sidebar .follow_up_date_wrapper,
#cm_request_detail .request_details_sidebar .follow_up_date_wrapper,
#company_admin_request_detail .request_details_sidebar .follow_up_date_wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#request_detail .request_details_sidebar .follow_up_date_wrapper .title,
#cm_request_detail .request_details_sidebar .follow_up_date_wrapper .title,
#company_admin_request_detail .request_details_sidebar .follow_up_date_wrapper .title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
}
#request_detail .request_details_sidebar .follow_up_date_wrapper input,
#cm_request_detail .request_details_sidebar .follow_up_date_wrapper input,
#company_admin_request_detail .request_details_sidebar .follow_up_date_wrapper input {
  border: 1px solid #D5D7DA;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  appearance: none;
  padding: 4px 14px;
  max-width: 200px;
}
#request_detail .request_details_sidebar .requester_box,
#cm_request_detail .request_details_sidebar .requester_box,
#company_admin_request_detail .request_details_sidebar .requester_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#request_detail .request_details_sidebar .requester_box .requester_title,
#cm_request_detail .request_details_sidebar .requester_box .requester_title,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #181D27;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .cancel-pending-infobox,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .cancel-pending-infobox,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .cancel-pending-infobox {
  color: #f19f28 !important;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item.cancel .name,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item.cancel .name,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item.cancel .name {
  color: #F44336;
  cursor: pointer;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item.cancel:hover .name,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item.cancel:hover .name,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item.cancel:hover .name {
  color: #a7241b;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .name,
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item a,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .name,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item a,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .name,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item a {
  display: flex;
  align-items: center;
  gap: 4px;
  word-break: break-all;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  text-decoration: none;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .name img,
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item a img,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .name img,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item a img,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .name img,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item a img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ds-request-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.ds-request-lock-overlay--hard {
  background: rgba(0, 0, 0, 0.45);
}
.ds-request-lock-overlay--soft {
  background: rgba(0, 0, 0, 0.3);
}
.ds-request-lock-overlay__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  padding: 36px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ds-request-lock-overlay__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-request-lock-overlay--hard .ds-request-lock-overlay__icon {
  background: #FEF3F2;
}
.ds-request-lock-overlay--hard .ds-request-lock-overlay__icon svg {
  stroke: #B42318;
}
.ds-request-lock-overlay--soft .ds-request-lock-overlay__icon {
  background: #EFF8FF;
}
.ds-request-lock-overlay--soft .ds-request-lock-overlay__icon svg {
  stroke: #1849A9;
}
.ds-request-lock-overlay__title {
  font-size: 18px;
  font-weight: 600;
  color: #101828;
  margin: 0;
}
.ds-request-lock-overlay__desc {
  font-size: 14px;
  color: #475467;
  margin: 0;
  line-height: 1.5;
}
.ds-request-lock-overlay__desc strong {
  font-weight: 600;
  color: #344054;
}
.ds-request-lock-overlay__buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.ds-request-lock-overlay__buttons .button {
  min-width: 130px;
}

#request_upload_modal .modal_content,
#confirm_facility_modal .modal_content {
  width: 900px;
  top: 16px;
  transform: translate(-50%, 0%);
}

#escalate_request_modal .modal_content {
  width: 520px;
}

.ds-btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ds-spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes ds-spin {
  to {
    transform: rotate(360deg);
  }
}
#activity_edit_modal .modal_content {
  width: 560px;
}
#activity_edit_modal .activity-edit-form {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#activity_edit_modal .activity-edit-form .ds-textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 10px 14px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #101828;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
#activity_edit_modal .activity-edit-form .ds-textarea:focus {
  outline: none;
  border-color: #B29B51;
  box-shadow: 0 0 0 3px rgba(178, 155, 81, 0.1);
}
#activity_edit_modal .activity-edit-form .nice-select.ds-nice-select {
  width: auto;
  min-width: 180px;
}
#activity_edit_modal .activity-edit-form .activity-edit-internal-label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  color: #667085;
  cursor: pointer;
  user-select: none;
}
#activity_edit_modal .activity-edit-form .activity-edit-internal-label input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
#activity_edit_modal .activity-edit-form .activity-edit-internal-label input[type=checkbox]:hover, #activity_edit_modal .activity-edit-form .activity-edit-internal-label input[type=checkbox]:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
#activity_edit_modal .activity-edit-form .activity-edit-internal-label input[type=checkbox]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
#activity_edit_modal .activity-edit-form .activity-edit-internal-label input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
#activity_edit_modal .activity-edit-form .activity-edit-internal-label input[type=checkbox]:focus-visible {
  outline: 2px solid #B29B51;
  outline-offset: 2px;
}

.request_title {
  flex-wrap: wrap;
}
.request_title #breadcrumbs-one {
  background: transparent;
  border-width: 0px;
  border-style: none;
  border-color: transparent;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.request_title #breadcrumbs-one li {
  flex: 1 auto;
}
.request_title #breadcrumbs-one li:last-child span::before, .request_title #breadcrumbs-one li:last-child span::after {
  display: none;
}
.request_title #breadcrumbs-one span {
  padding: 0.7em 0.7em 0.7em 2em;
  float: left;
  text-decoration: none;
  color: #444;
  position: relative;
  background-color: #ddd;
  background-image: linear-gradient(to right, #f0f0f0, #ddd);
  font-size: 14px;
  width: 100%;
  text-align: center;
}
.request_title #breadcrumbs-one span,
.request_title #breadcrumbs-one li:first-child span {
  padding-left: 2em;
  border-radius: 5px 0 0 5px;
}
.request_title #breadcrumbs-one span:hover {
  background: #B29B51;
  color: #fff;
}
.request_title #breadcrumbs-one span::after,
.request_title #breadcrumbs-one span::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  border-top: 1.5em solid transparent;
  border-bottom: 1.5em solid transparent;
  border-left: 1em solid;
  right: -1em;
}
.request_title #breadcrumbs-one span::after {
  z-index: 2;
  border-left-color: #ddd;
}
.request_title #breadcrumbs-one span::before {
  border-left-color: #ccc;
  right: -1.1em;
  z-index: 1;
}
.request_title #breadcrumbs-one span:hover::after {
  border-left-color: #B29B51;
}
.request_title #breadcrumbs-one .active,
.request_title #breadcrumbs-one .active:hover {
  font-weight: bold;
  background: #B29B51;
  color: #fff;
}
.request_title #breadcrumbs-one .active::after,
.request_title #breadcrumbs-one .active::before {
  content: normal;
}
.request_title #breadcrumbs-one .active::before {
  content: "";
  border-left-color: #ccc;
  right: -1.1em;
  z-index: 1;
}
.request_title #breadcrumbs-one .active::after {
  border-left-color: #B29B51;
  content: "";
}
.request_title #breadcrumbs-one .current {
  background: #fff;
  color: #000;
}
.request_title #breadcrumbs-one .current::after {
  border-left-color: #fff;
  content: "";
}

#request_detail .details_box,
#cm_request_detail .details_box,
#company_admin_request_detail .details_box {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
#request_detail .details_box h3,
#cm_request_detail .details_box h3,
#company_admin_request_detail .details_box h3 {
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9EAEB;
}
#request_detail .details_box h3:has(.workflow_step_btn),
#cm_request_detail .details_box h3:has(.workflow_step_btn),
#company_admin_request_detail .details_box h3:has(.workflow_step_btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#request_detail .details_box h3 .workflow_step_btn_group,
#cm_request_detail .details_box h3 .workflow_step_btn_group,
#company_admin_request_detail .details_box h3 .workflow_step_btn_group {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: right;
  gap: 12px;
}
#request_detail .details_box h3 .workflow_step_btn--reset,
#cm_request_detail .details_box h3 .workflow_step_btn--reset,
#company_admin_request_detail .details_box h3 .workflow_step_btn--reset {
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #f44336;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: color 0.3s;
}
#request_detail .details_box h3 .workflow_step_btn--reset:hover,
#cm_request_detail .details_box h3 .workflow_step_btn--reset:hover,
#company_admin_request_detail .details_box h3 .workflow_step_btn--reset:hover {
  color: #a32a22;
}
#request_detail .details_box h3 #sync_qb_payment_btn,
#cm_request_detail .details_box h3 #sync_qb_payment_btn,
#company_admin_request_detail .details_box h3 #sync_qb_payment_btn {
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 5px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: color 0.3s;
  width: fit-content;
}
#request_detail .details_box .header_row,
#cm_request_detail .details_box .header_row,
#company_admin_request_detail .details_box .header_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
#request_detail .details_box .header_row .button.bordered,
#cm_request_detail .details_box .header_row .button.bordered,
#company_admin_request_detail .details_box .header_row .button.bordered {
  width: 100%;
  color: #414651;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
  border: 1px solid #D5D7DA !important;
  padding: 6px 12px !important;
}
#request_detail .details_box .header_row .button.bordered:hover,
#cm_request_detail .details_box .header_row .button.bordered:hover,
#company_admin_request_detail .details_box .header_row .button.bordered:hover {
  color: #B29B51;
  border-color: #B29B51 !important;
}
#request_detail .details_box#files_box .header_row,
#cm_request_detail .details_box#files_box .header_row,
#company_admin_request_detail .details_box#files_box .header_row {
  margin-bottom: 15px;
}
#request_detail .details_box#files_box .header_row h2,
#cm_request_detail .details_box#files_box .header_row h2,
#company_admin_request_detail .details_box#files_box .header_row h2 {
  margin: 0 0 2px;
  flex: 1;
}
#request_detail .details_box#files_box .header_row .details_box_actions,
#cm_request_detail .details_box#files_box .header_row .details_box_actions,
#company_admin_request_detail .details_box#files_box .header_row .details_box_actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 auto;
  justify-content: flex-end;
}
#request_detail .details_box#files_box .header_row .details_box_actions button,
#cm_request_detail .details_box#files_box .header_row .details_box_actions button,
#company_admin_request_detail .details_box#files_box .header_row .details_box_actions button {
  max-width: fit-content;
}
#request_detail .details_box#files_box .request-files-empty,
#cm_request_detail .details_box#files_box .request-files-empty,
#company_admin_request_detail .details_box#files_box .request-files-empty {
  margin: 0;
  color: #535862;
  font-size: 14px;
}
#request_detail .details_box#files_box .files .files_list,
#cm_request_detail .details_box#files_box .files .files_list,
#company_admin_request_detail .details_box#files_box .files .files_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 24px;
}
#request_detail .details_box#files_box .files .files_list .files_list_item,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item {
  position: relative;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.15s;
}
#request_detail .details_box#files_box .files .files_list .files_list_item:has(.file-pdf-checkbox:checked),
#cm_request_detail .details_box#files_box .files .files_list .files_list_item:has(.file-pdf-checkbox:checked),
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item:has(.file-pdf-checkbox:checked) {
  border-color: #B29B51;
  background: #fdfbf5;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox],
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox],
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox]:checked,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox]:checked,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox]:checked::after,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox]:checked::after,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file-preview-icon,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file-preview-icon,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file-preview-icon {
  flex-shrink: 0;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_name,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_name,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_name {
  word-break: break-all;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .category,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .category,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .category {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-generated-date,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-generated-date,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-generated-date {
  font-size: 12px;
  color: #98a2b3;
  white-space: nowrap;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .separator,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .separator,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .separator {
  width: 5px;
  height: 5px;
  background: #D5D7DA;
  border-radius: 50%;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded,
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #344054;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--completed,
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--completed,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--completed,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--completed,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--completed,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--completed {
  color: #079455;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--in-review,
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--in-review,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--in-review,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--in-review,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--in-review,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--in-review {
  color: #B54708;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--uploaded,
#request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--uploaded,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--uploaded,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--uploaded,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--uploaded,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--uploaded {
  color: #344054;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_actions,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions {
  flex-shrink: 0;
  width: auto;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .button,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .button,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .button {
  width: auto;
  display: inline-block;
  height: auto;
  padding: 6px 20px;
  font-size: 14px;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .screen-reader-text,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .screen-reader-text,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .file-actions-select-wrap,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .file-actions-select-wrap,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .file-actions-select-wrap {
  display: inline-block;
  min-width: 112px;
  max-width: 200px;
  vertical-align: middle;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .file-row-actions-select,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .file-row-actions-select,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .file-row-actions-select {
  width: 100%;
  min-height: 36px;
  font-size: 14px;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_actions,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions {
  /* jquery-nice-select wraps the native control */
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .file-actions-select-wrap .nice-select,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .file-actions-select-wrap .nice-select,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file_actions .file-actions-select-wrap .nice-select {
  float: none;
  min-height: 36px;
  line-height: 34px;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-checkboxes,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-checkboxes,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  flex-direction: column;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-label,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-label,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #414651;
  cursor: pointer;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-label input,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-label input,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-label input {
  margin-top: 2px;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-hint,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-hint,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .modal .request-file-vis-hint {
  display: block;
  margin-left: 28px;
  font-size: 12px;
  color: #535862;
}
#request_detail .details_box#files_box .files .files_list .files_list_item .file-status-meta,
#cm_request_detail .details_box#files_box .files .files_list .files_list_item .file-status-meta,
#company_admin_request_detail .details_box#files_box .files .files_list .files_list_item .file-status-meta {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}

.request_additional_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 15px;
}
.request_additional_container.header_container {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.request_additional_container.header_container .request_additional_info_item {
  display: flex;
  align-items: center;
  gap: 12px;
  row-gap: 8px;
  flex-wrap: wrap;
}
.request_additional_container.header_container .request_additional_info_item .item_title {
  position: relative;
  color: #010101;
  font-size: 14px;
  padding-left: 20px;
}
.request_additional_container.header_container .request_additional_info_item .item_title:before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #828487;
  content: "";
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
  border-radius: 50%;
}
.request_additional_container.header_container .request_additional_info_item .item_value.status {
  font-size: 15px;
  padding: 4px 14px 4px 12px;
  border-radius: 5px;
  font-weight: 500;
  color: #181D27;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  gap: 6px;
}
.request_additional_container.header_container .request_additional_info_item .item_description {
  flex: 1 100%;
  font-size: 14px;
  font-style: italic;
  opacity: 0.5;
}
.request_additional_container.header_container .request_additional_info_item.intake .item_title:before {
  background: #b29b51;
}
.request_additional_container.header_container .request_additional_info_item.intake .item_value.status {
  color: #b29b51;
  border-color: rgba(178, 155, 81, 0.3137254902);
  background: rgba(178, 155, 81, 0.1254901961);
}
.request_additional_container.header_container .request_additional_info_item.canceled .item_title:before {
  background: #d92d20;
}
.request_additional_container.header_container .request_additional_info_item.canceled .item_value.status {
  color: #d92d20;
  border-color: rgba(217, 45, 32, 0.3137254902);
  background: rgba(217, 45, 32, 0.1254901961);
}
.request_additional_container .request_additional_info {
  width: 33.33%;
  border-right: 1px solid #cecece;
  padding: 0 15px 0 25px;
}
.request_additional_container .request_additional_info:first-child {
  padding-left: 0;
  width: 31%;
}
.request_additional_container .request_additional_info:nth-child(2) {
  width: 35%;
}
.request_additional_container .request_additional_info:last-child {
  border-right: none;
  padding-right: 0;
}
.request_additional_container .request_additional_info .request_additional_info_item {
  margin-bottom: 10px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #818487;
  text-decoration: none;
}
.request_additional_container .request_additional_info .request_additional_info_item .nice-select.ds-nice-select {
  height: 36px;
  padding: 0px 12px;
  margin-top: 6px;
}
.request_additional_container .request_additional_info .request_additional_info_item input[type=date] {
  border: 1px solid #D5D7DA;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  appearance: none;
  padding: 4px 14px;
  max-width: 200px;
  margin-top: 8px;
}
.request_additional_container .request_additional_info .request_additional_info_item span {
  color: #181D27;
}
.request_additional_container.four_columns .request_additional_info {
  width: 25%;
}
.request_additional_container.two_columns .request_additional_info {
  width: 50%;
}
.request_additional_container.one_column .request_additional_info {
  width: 100%;
}
.request_additional_container.one_column .request_additional_info .case_manager_summary_item .case_manager_summary_item_icon {
  width: auto;
}
.request_additional_container.four_columns .request_additional_info .request_additional_info_item .item_title, .request_additional_container.case_manager_summary .request_additional_info .request_additional_info_item .item_title {
  font-size: 14px;
  color: #31363f;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}
.request_additional_container.four_columns .request_additional_info .request_additional_info_item .item_value, .request_additional_container.case_manager_summary .request_additional_info .request_additional_info_item .item_value {
  font-size: 18px;
  color: #181D27;
  padding: 10px 0 10px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.request_additional_container.four_columns .request_additional_info .request_additional_info_item .item_value.status, .request_additional_container.case_manager_summary .request_additional_info .request_additional_info_item .item_value.status {
  color: #9E8543;
  border: 1px solid;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 12px;
  background: transparent;
  justify-content: center;
}
.request_additional_container.four_columns .request_additional_info .request_additional_info_item .item_description, .request_additional_container.case_manager_summary .request_additional_info .request_additional_info_item .item_description {
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  font-size: 13px;
}
.request_additional_container.case_manager_summary_wrap {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}
.request_additional_container .case_manager_summary .case_manager_summary_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-direction: column;
}
.request_additional_container .case_manager_summary .case_manager_summary_item .case_manager_summary_item_icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.request_additional_container .case_manager_summary .case_manager_summary_item .case_manager_summary_item_icon .case_manager_summary_item_title {
  position: relative;
  color: #010101;
  font-size: 14px;
  flex: 1 auto;
  padding-left: 20px;
}
.request_additional_container .case_manager_summary .case_manager_summary_item .case_manager_summary_item_icon .case_manager_summary_item_title:before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #828487;
  content: "";
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
  border-radius: 50%;
}
.request_additional_container .case_manager_summary .case_manager_summary_item .case_manager_summary_item_icon .case_manager_summary_item_value {
  font-size: 15px;
  padding: 4px 22px;
  border-radius: 5px;
  font-weight: 500;
  color: #181D27;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.request_additional_container .case_manager_summary .case_manager_summary_item .case_manager_summary_item_content {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.request_additional_container .case_manager_summary .case_manager_summary_item .case_manager_summary_item_content .case_manager_summary_item_title {
  position: relative;
  color: #010101;
  font-size: 14px;
  flex: 1 auto;
  padding-left: 20px;
}
.request_additional_container .case_manager_summary .case_manager_summary_item .case_manager_summary_item_content .case_manager_summary_item_title:before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #828487;
  content: "";
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
  border-radius: 50%;
}
.request_additional_container .case_manager_summary .case_manager_summary_item .case_manager_summary_item_content .case_manager_summary_item_value {
  font-size: 15px;
  color: #181D27;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4px 16px;
  text-align: center;
  border-radius: 5px;
  background: transparent;
  font-weight: 500;
}
.request_additional_container .case_manager_summary .case_manager_summary_item .case_manager_summary_item_content .case_manager_summary_item_description {
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #828487;
  flex: 1 100%;
}
.request_additional_container.warning .case_manager_summary_item .case_manager_summary_item_icon .case_manager_summary_item_title:before {
  background: #f09f28;
}
.request_additional_container.warning .case_manager_summary_item .case_manager_summary_item_icon .case_manager_summary_item_value {
  color: #633905;
  background: rgba(240, 159, 40, 0.1254901961);
  border: 1px solid rgba(240, 159, 40, 0.3137254902);
}
.request_additional_container.warning .case_manager_summary_item .case_manager_summary_item_content .case_manager_summary_item_title:before {
  background: #f09f28;
}
.request_additional_container.warning .case_manager_summary_item .case_manager_summary_item_content .case_manager_summary_item_value {
  color: #633905;
  background: rgba(240, 159, 40, 0.1254901961);
  border-color: rgba(240, 159, 40, 0.3137254902);
}
.request_additional_container.information .case_manager_summary_item .case_manager_summary_item_icon .case_manager_summary_item_title:before {
  background: #3b5bdb;
}
.request_additional_container.information .case_manager_summary_item .case_manager_summary_item_icon .case_manager_summary_item_value {
  color: #3b5bdb;
  background: rgba(59, 91, 219, 0.1254901961);
  border: 1px solid rgba(59, 91, 219, 0.3137254902);
}
.request_additional_container.information .case_manager_summary_item .case_manager_summary_item_content .case_manager_summary_item_title:before {
  background: #3b5bdb;
}
.request_additional_container.information .case_manager_summary_item .case_manager_summary_item_content .case_manager_summary_item_value {
  color: #3b5bdb;
  background: rgba(59, 91, 219, 0.1254901961);
  border: 1px solid rgba(59, 91, 219, 0.3137254902);
}
.request_additional_container.success .case_manager_summary_item .case_manager_summary_item_icon .case_manager_summary_item_title:before {
  background: #2f9e44;
}
.request_additional_container.success .case_manager_summary_item .case_manager_summary_item_icon .case_manager_summary_item_value {
  color: #2f9e44;
  background: rgba(47, 158, 68, 0.1254901961);
  border: 1px solid rgba(47, 158, 68, 0.3137254902);
}
.request_additional_container.success .case_manager_summary_item .case_manager_summary_item_content .case_manager_summary_item_title:before {
  background: #2f9e44;
}
.request_additional_container.success .case_manager_summary_item .case_manager_summary_item_value {
  color: #2f9e44;
  background: rgba(47, 158, 68, 0.1254901961);
  border: 1px solid rgba(47, 158, 68, 0.3137254902);
}
.request_additional_container:has(.full-width) .request_additional_info:nth-child(2) {
  padding-left: 0px;
  width: 33.33%;
}
.request_additional_container .request_additional_info.full-width {
  flex: 1 100%;
  border-right: 0px;
  padding-right: 0;
  display: flex;
  gap: 24px;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
.request_additional_container .request_additional_info.full-width .request_additional_info_item {
  flex: 1 100%;
}

.nice-select.ds-loading {
  pointer-events: none;
  opacity: 0.45;
}

.case_manager_action_container.request_info {
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.case_manager_action_container .case_manager_action_item {
  padding: 16px;
  border-radius: 0px;
  border-left: 6px solid #ef9f27;
  color: #181d27;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.case_manager_action_container .case_manager_action_item.no_action {
  background: rgba(76, 175, 80, 0.0901960784);
  border-color: #328b35;
}
.case_manager_action_container .case_manager_action_item.no_action svg {
  color: #328b35;
}
.case_manager_action_container .case_manager_action_item.attention {
  background: rgba(250, 238, 218, 0.5607843137);
  border-color: #ef9f27;
  color: #633905;
}
.case_manager_action_container .case_manager_action_item.attention svg {
  color: #633905;
}
.case_manager_action_container .case_manager_action_item.attention .item_content .item_description p {
  color: #875211;
}
.case_manager_action_container .case_manager_action_item.information {
  border-color: #3b5bdb;
  background: #eef2ff;
}
.case_manager_action_container .case_manager_action_item.information svg {
  color: #3b5bdb;
}
.case_manager_action_container .case_manager_action_item.success {
  border-color: #2f9e44;
  background: rgba(47, 158, 68, 0.1254901961);
}
.case_manager_action_container .case_manager_action_item.success svg {
  color: #2f9e44;
}
.case_manager_action_container .case_manager_action_item.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.062745098);
}
.case_manager_action_container .case_manager_action_item.error svg {
  color: #dc3545;
}
.case_manager_action_container .case_manager_action_item .cancel-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.case_manager_action_container .case_manager_action_item .cancel-request-actions .button {
  font-size: 14px;
  padding: 5px 24px;
  max-width: fit-content;
  width: auto;
  height: auto;
}
.case_manager_action_container .case_manager_action_item .item_meta {
  font-size: 12px;
  color: #a37a20;
  margin-top: 4px;
}
.case_manager_action_container .case_manager_action_item.main_action {
  padding: 0px;
  border-radius: 0;
  border: 0;
}
.case_manager_action_container .case_manager_action_item .item_title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.case_manager_action_container .case_manager_action_item .item_description {
  color: #535862;
  font-size: 14px;
}
.case_manager_action_container .case_manager_action_item .item_description p {
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.4;
}
.case_manager_action_container .case_manager_action_item .item_description p:last-child {
  margin-bottom: 0;
}
.case_manager_action_container .case_manager_action_item #button_action_complete {
  background-color: #B29B51;
  min-width: 300px;
}
.case_manager_action_container .case_manager_action_item #button_action_complete:hover {
  background-color: #8c7a36;
}
.case_manager_action_container .case_manager_action_item #button_review_n_pay {
  background-color: #eef2ff;
  border: 2px solid #3b5bdb;
  min-width: 300px;
  color: #3b5bdb;
}
.case_manager_action_container .case_manager_action_item #button_review_n_pay:hover {
  background-color: #3b5bdb;
  color: #fff;
}
.case_manager_action_container .case_manager_action_item .item_action {
  flex-grow: 1;
}
.case_manager_action_container .case_manager_action_item .item_action .button {
  display: block;
  text-align: center;
  margin: 0 0 0 auto;
  padding: 10px 24px;
  width: fit-content;
}

.request_workflow_step_form {
  margin-top: 20px;
  width: 100%;
}
.request_workflow_step_form.active {
  display: block;
}
.request_workflow_step_form .inputs_wrapper {
  max-width: 512px;
  width: 100%;
}
.request_workflow_step_form .inputs_wrapper.repeater-wrapper input,
.request_workflow_step_form .inputs_wrapper.repeater-wrapper textarea,
.request_workflow_step_form .inputs_wrapper.repeater-wrapper select {
  margin-bottom: 16px;
}
.request_workflow_step_form .inputs_wrapper.repeater-wrapper .hint {
  margin-top: -8px;
  margin-bottom: 16px;
}
.request_workflow_step_form .inputs_wrapper .checkbox-group {
  display: flex;
  flex-direction: column;
  padding: 12px 20px 12px 0;
  height: auto;
  overflow: initial;
  border: none;
  border-radius: 5px;
  margin-bottom: 16px;
  gap: 5px;
}
.request_workflow_step_form .inputs_wrapper .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0px;
}
.request_workflow_step_form .inputs_wrapper .checkbox-group input {
  display: flex;
  align-items: center;
  margin: 0;
}
.request_workflow_step_form .inputs_wrapper .date-range-wrapper {
  display: flex;
  gap: 24px;
}
.request_workflow_step_form .inputs_wrapper .date-range-wrapper > * {
  width: calc(50% - 12px);
}
.request_workflow_step_form .inputs_wrapper .field-title,
.request_workflow_step_form .inputs_wrapper label {
  display: block;
  margin: 0 0 6px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
.request_workflow_step_form .inputs_wrapper .field-title .required,
.request_workflow_step_form .inputs_wrapper label .required {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #B29B51;
}
.request_workflow_step_form .inputs_wrapper.two-column {
  display: flex;
  flex-direction: row;
  gap: 0 24px;
  flex-wrap: wrap;
}
.request_workflow_step_form .inputs_wrapper.two-column input {
  width: calc(50% - 12px) !important;
}
.request_workflow_step_form .inputs_wrapper input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.request_workflow_step_form .inputs_wrapper input[type=checkbox]:hover, .request_workflow_step_form .inputs_wrapper input[type=checkbox]:focus {
  border-color: #8C7A36;
  box-shadow: 0 0 0 2px rgba(178, 155, 81, 0.15);
  outline: none;
}
.request_workflow_step_form .inputs_wrapper input[type=checkbox]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
.request_workflow_step_form .inputs_wrapper input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
.request_workflow_step_form .inputs_wrapper input[type=checkbox]:focus-visible {
  outline: 2px solid #B29B51;
  outline-offset: 2px;
}
.request_workflow_step_form .buttons_row {
  display: flex;
  column-gap: 15px;
  margin-top: 15px;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 15px;
}
.request_workflow_step_form .buttons_row .buttons_row__left,
.request_workflow_step_form .buttons_row .buttons_row__right {
  flex: 1 auto;
}
.request_workflow_step_form .buttons_row .buttons_row__right {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.request_workflow_step_form .buttons_row .workflow_step_btn--primary {
  background-color: #B29B51 !important;
  border: none;
  cursor: pointer;
  max-width: fit-content !important;
  width: 100% !important;
  padding: 10px 24px !important;
  transition: 0.2s all;
  color: #ffffff;
}
.request_workflow_step_form .buttons_row .workflow_step_btn--primary:hover {
  background-color: #8C7A36 !important;
}
.request_workflow_step_form .buttons_row .workflow_step_btn--information {
  background-color: #3b5bdb !important;
  border: none;
  cursor: pointer;
  max-width: 245px;
  color: #fff;
  padding: 10px 24px !important;
  width: fit-content;
  transition: 0.2s all;
}
.request_workflow_step_form .buttons_row .workflow_step_btn--information:hover {
  background-color: #304d99 !important;
}
.request_workflow_step_form .buttons_row .workflow_step_btn--outline {
  border: 1px solid #D5D7DA !important;
}
.request_workflow_step_form .buttons_row .workflow_step_btn--back {
  border: 0px !important;
  padding: 0px;
  width: fit-content;
  gap: 6px;
}

#request_detail .request_details_sidebar .sidebar_details_box,
#cm_request_detail .request_details_sidebar .sidebar_details_box,
#company_admin_request_detail .request_details_sidebar .sidebar_details_box {
  margin-top: 3em;
}
#request_detail .request_details_sidebar .sidebar_details_box .report-problem-button,
#cm_request_detail .request_details_sidebar .sidebar_details_box .report-problem-button,
#company_admin_request_detail .request_details_sidebar .sidebar_details_box .report-problem-button {
  display: flex;
  align-items: center;
  gap: 8px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.3137254902);
  border-color: rgba(255, 193, 7, 0.3137254902);
  color: #be8e00;
  transition: 0.2s all;
}
#request_detail .request_details_sidebar .sidebar_details_box .report-problem-button:hover,
#cm_request_detail .request_details_sidebar .sidebar_details_box .report-problem-button:hover,
#company_admin_request_detail .request_details_sidebar .sidebar_details_box .report-problem-button:hover {
  background: #be8e00;
  border-color: #be8e00;
  color: #ffffff;
}
#request_detail .request_details_sidebar .requester_box,
#cm_request_detail .request_details_sidebar .requester_box,
#company_admin_request_detail .request_details_sidebar .requester_box {
  margin-top: 1em;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 18px;
  color: #010101;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title.muted,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title.muted,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title.muted {
  color: #535862;
  font-size: 16px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container.active,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container.active,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container.active {
  background: #f8f8F9;
  padding: 10px 5px;
  margin-top: 10px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container.active .label,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container.active .label,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container.active .label {
  font-weight: bold;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container.active .value,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container.active .value,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container.active .value {
  color: #B29B51;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container .label,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container .label,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container .label {
  word-break: break-all;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  color: #535862;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container .value,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container .value,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .tat-container .value {
  word-break: break-all;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  text-decoration: none;
  padding-right: 5px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .address,
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .ssn,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .address,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .ssn,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .address,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .ssn {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  text-decoration: none;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content:not(:last-child), #request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content.no_border,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content:not(:last-child),
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content.no_border,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content:not(:last-child),
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content.no_border {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div, #request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a {
  display: flex;
  align-items: center;
  line-height: 1.25;
  margin-bottom: 8px;
  gap: 4px;
  transition: 0.2s all;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div svg, #request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a svg,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div svg,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a svg,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div svg,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a svg {
  max-width: 22px;
  height: 22px;
  display: block;
  min-width: 22px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .confirm-edit-button, #request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .confirm-edit-button,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .confirm-edit-button,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .confirm-edit-button,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .confirm-edit-button,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .confirm-edit-button {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  gap: 4px;
  color: #b29b51;
  cursor: pointer;
  transition: 0.2s all;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .confirm-edit-button:hover, #request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .confirm-edit-button:hover,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .confirm-edit-button:hover,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .confirm-edit-button:hover,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .confirm-edit-button:hover,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .confirm-edit-button:hover {
  color: #87722f;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .treatment-dates, #request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .treatment-dates,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .treatment-dates,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .treatment-dates,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .treatment-dates,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .treatment-dates {
  display: flex;
  flex-direction: column;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .treatment-dates .treatment-dates-label, #request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .treatment-dates .treatment-dates-label,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .treatment-dates .treatment-dates-label,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .treatment-dates .treatment-dates-label,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > div .treatment-dates .treatment-dates-label,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a .treatment-dates .treatment-dates-label {
  opacity: 0.5;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 2px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a:hover,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a:hover,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content > a:hover {
  color: #87722f;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .escalate_button,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .escalate_button,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .escalate_button {
  color: #F44336;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: 0.2s all;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .escalate_button:hover,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .escalate_button:hover,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .escalate_button:hover {
  color: #8f1108;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .awaiting_cm_review_button,
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .generate_request_documents_button,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .awaiting_cm_review_button,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .generate_request_documents_button,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .awaiting_cm_review_button,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .generate_request_documents_button {
  color: #b29b51;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: 0.2s all;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .awaiting_cm_review_button:hover,
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .generate_request_documents_button:hover,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .awaiting_cm_review_button:hover,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .generate_request_documents_button:hover,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .awaiting_cm_review_button:hover,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .generate_request_documents_button:hover {
  color: #8c7a36;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .undo_escalate_button,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .undo_escalate_button,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .undo_escalate_button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6b7280;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 0.2s;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .undo_escalate_button:hover,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .undo_escalate_button:hover,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .requester_item_content .undo_escalate_button:hover {
  color: #374151;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  line-height: 1;
  padding: 4px 8px 4px 4px;
  border-radius: 5px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label svg,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label svg,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label.is-confirmed,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label.is-confirmed,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label.is-confirmed {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1882352941);
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label.is-not-confirmed,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label.is-not-confirmed,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .facility_confirmed_label.is-not-confirmed {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1882352941);
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 8px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .facility_confirmed_label,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .facility_confirmed_label,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .facility_confirmed_label {
  margin-left: 4px;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .title,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .title,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .title {
  margin-bottom: 0;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .edit_information_button,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .edit_information_button,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .edit_information_button {
  font-size: 15px;
  color: #b29b51;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: 0.2s all;
}
#request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .edit_information_button:hover,
#cm_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .edit_information_button:hover,
#company_admin_request_detail .request_details_sidebar .requester_box .requester_wrapper .requester_item .title_with_action .edit_information_button:hover {
  color: #8c7a36;
}

#request_detail .request_details_wrapper.request-details--escalated .request-step-panels .request_workflow_step_form .buttons_row,
#cm_request_detail .request_details_wrapper.request-details--escalated .request-step-panels .request_workflow_step_form .buttons_row,
#company_admin_request_detail .request_details_wrapper.request-details--escalated .request-step-panels .request_workflow_step_form .buttons_row {
  display: none;
}

#request_detail .request_details_main .request-section-filters,
#cm_request_detail .request_details_main .request-section-filters,
#company_admin_request_detail .request_details_main .request-section-filters {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: fit-content;
  background: #F2F2F4;
  border-radius: 7px;
}
#request_detail .request_details_main .request-section-filters button,
#cm_request_detail .request_details_main .request-section-filters button,
#company_admin_request_detail .request_details_main .request-section-filters button {
  background: #F2F2F4;
  padding: 10px 20px;
  font-weight: bold;
  transition: 0.2s all;
}
#request_detail .request_details_main .request-section-filters button.active, #request_detail .request_details_main .request-section-filters button:hover,
#cm_request_detail .request_details_main .request-section-filters button.active,
#cm_request_detail .request_details_main .request-section-filters button:hover,
#company_admin_request_detail .request_details_main .request-section-filters button.active,
#company_admin_request_detail .request_details_main .request-section-filters button:hover {
  font-weight: bold;
  background: #4D515A;
  color: #fff;
  border-radius: 7px;
}

/* Confirm facility: same shell as #request_upload_modal; extra layout only */
#confirm_facility_modal .confirm-facility-current-block {
  margin: 0 0 28px;
}
#confirm_facility_modal .confirm-facility-current-block p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.45;
  color: #535862;
}
#confirm_facility_modal .confirm-facility-current-block p:last-child {
  margin-bottom: 0;
}
#confirm_facility_modal .confirm-facility-current-block #confirm_facility_current_name {
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 8px;
  color: #181D27;
}
#confirm_facility_modal .inputs_wrapper {
  position: relative;
}
#confirm_facility_modal .inputs_wrapper::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 47%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23535862' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M3 10a7 7 0 1 0 14 0a7 7 0 1 0 -14 0'/%3E%3Cpath d='M21 21l-6 -6'/%3E%3C/svg%3E") center center/contain no-repeat;
  transform: translate(10px, -50%);
}
#confirm_facility_modal .inputs_wrapper input {
  width: 100%;
  height: 50px;
  padding: 8px 34px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
  border-radius: 5px;
  border: 1px solid #D5D7DA;
}
#confirm_facility_modal .confirm-facility-results {
  margin-top: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 2px;
}
#confirm_facility_modal .confirm-facility-results::-webkit-scrollbar {
  width: 4px;
}
#confirm_facility_modal .confirm-facility-results::-webkit-scrollbar-track {
  background: transparent;
}
#confirm_facility_modal .confirm-facility-results::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}
#confirm_facility_modal .confirm-facility-result {
  border: 1px solid #E9EAEB;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
}
#confirm_facility_modal .confirm-facility-result:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
#confirm_facility_modal .confirm-facility-result.is-expanded {
  border-color: rgba(0, 0, 0, 0.2);
}
#confirm_facility_modal .confirm-facility-result.is-expanded .confirm-facility-result__chevron {
  transform: rotate(180deg);
}
#confirm_facility_modal .confirm-facility-result.is-selected {
  border-color: #B29B51;
  background: #fef9ee;
}
#confirm_facility_modal .confirm-facility-result.is-selected .confirm-facility-result__header:hover {
  background: #f8f0d8;
}
#confirm_facility_modal .confirm-facility-result.is-selected .confirm-facility-result__header:before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23B29B51' stroke-width='1.8'%3E%3Ccircle cx='8.5' cy='8.5' r='5.5'/%3E%3Cpath d='M13.5 13.5l3 3'/%3E%3C/svg%3E") center center/contain no-repeat;
}
#confirm_facility_modal .confirm-facility-result__header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s;
}
#confirm_facility_modal .confirm-facility-result__header:before {
  content: "";
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%239e9d98' stroke-width='1.8'%3E%3Ccircle cx='8.5' cy='8.5' r='5.5'/%3E%3Cpath d='M13.5 13.5l3 3'/%3E%3C/svg%3E") center center/contain no-repeat;
}
#confirm_facility_modal .confirm-facility-result__header:hover {
  background: #f2f1ee;
}
#confirm_facility_modal .confirm-facility-result__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#confirm_facility_modal .confirm-facility-result__name {
  font-weight: 600;
  font-size: 18px;
  color: #181D27;
}
#confirm_facility_modal .confirm-facility-result__sub {
  font-size: 14px;
  color: #535862;
  line-height: 1.5;
  word-break: break-word;
}
#confirm_facility_modal .confirm-facility-result__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
#confirm_facility_modal .confirm-facility-result__edit {
  font-size: 13px;
  padding: 5px 10px;
  height: auto;
  color: #ffffff;
  font-weight: 400;
}
#confirm_facility_modal .confirm-facility-result__chevron {
  width: 14px;
  height: 14px;
  color: #9e9d98;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
#confirm_facility_modal .confirm-facility-result__depts {
  border-top: 1px solid #E9EAEB;
}
#confirm_facility_modal .confirm-facility-dept {
  border-bottom: 1px solid #E9EAEB;
}
#confirm_facility_modal .confirm-facility-dept:last-child {
  border-bottom: none;
}
#confirm_facility_modal .confirm-facility-dept.is-expanded .confirm-facility-dept__chevron {
  transform: rotate(180deg);
}
#confirm_facility_modal .confirm-facility-dept__name {
  font-size: 13px;
  color: #181D27;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#confirm_facility_modal .confirm-facility-dept__tag {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #535862;
  white-space: nowrap;
  flex-shrink: 0;
}
#confirm_facility_modal .confirm-facility-dept__chevron {
  width: 12px;
  height: 12px;
  color: #9e9d98;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
#confirm_facility_modal .confirm-facility-dept__details {
  padding: 12px 12px 14px 44px;
  background: #fff;
}
#confirm_facility_modal .confirm-facility-dept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px 16px;
}
#confirm_facility_modal .confirm-facility-dept__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
#confirm_facility_modal .confirm-facility-dept__label {
  font-size: 11px;
  color: #9e9d98;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#confirm_facility_modal .confirm-facility-dept__val {
  font-size: 14px;
  color: #181D27;
  line-height: 1.4;
  word-break: break-word;
}
#confirm_facility_modal .confirm-facility-dept__val a {
  color: #2563a8;
  text-decoration: none;
}
#confirm_facility_modal .confirm-facility-dept__val a:hover {
  text-decoration: underline;
}
#confirm_facility_modal .confirm-facility-modal-buttons {
  margin-top: 24px;
  flex-wrap: wrap;
  display: flex;
  gap: 12px;
}
#confirm_facility_modal .confirm-facility-modal-buttons button {
  width: auto;
  min-width: 120px;
  flex: 1 1 30%;
}

#escalate_request_modal,
#reason_for_case_manager_modal,
#cancel_request_modal {
  opacity: 0;
  transition: opacity 0.2s;
}
#escalate_request_modal .escalate-modal__note-wrap,
#reason_for_case_manager_modal .escalate-modal__note-wrap,
#cancel_request_modal .escalate-modal__note-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 24px;
}
#escalate_request_modal .escalate-modal__note-wrap label,
#reason_for_case_manager_modal .escalate-modal__note-wrap label,
#cancel_request_modal .escalate-modal__note-wrap label {
  font-size: 14px;
  font-weight: 500;
  color: #344054;
}
#escalate_request_modal .escalate-modal__note-wrap input,
#reason_for_case_manager_modal .escalate-modal__note-wrap input,
#cancel_request_modal .escalate-modal__note-wrap input {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #181D27;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  outline: none;
  resize: vertical;
}
#escalate_request_modal .escalate-modal__note-wrap input:focus,
#reason_for_case_manager_modal .escalate-modal__note-wrap input:focus,
#cancel_request_modal .escalate-modal__note-wrap input:focus {
  outline: none;
  border-color: #B29B51;
}
#escalate_request_modal .escalate-modal__note-wrap input.input-error,
#reason_for_case_manager_modal .escalate-modal__note-wrap input.input-error,
#cancel_request_modal .escalate-modal__note-wrap input.input-error {
  border-color: #DC2626;
}
#escalate_request_modal .escalate-modal__note-wrap textarea,
#reason_for_case_manager_modal .escalate-modal__note-wrap textarea,
#cancel_request_modal .escalate-modal__note-wrap textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #D5D7DA;
  border-radius: 5px;
  font: inherit;
  font-size: 14px;
  color: #181D27;
  resize: vertical;
  min-height: 90px;
  transition: border-color 0.15s;
}
#escalate_request_modal .escalate-modal__note-wrap textarea:focus,
#reason_for_case_manager_modal .escalate-modal__note-wrap textarea:focus,
#cancel_request_modal .escalate-modal__note-wrap textarea:focus {
  outline: none;
  border-color: #B29B51;
}
#escalate_request_modal .escalate-modal__note-wrap textarea.input-error,
#reason_for_case_manager_modal .escalate-modal__note-wrap textarea.input-error,
#cancel_request_modal .escalate-modal__note-wrap textarea.input-error {
  border-color: #DC2626;
}
#escalate_request_modal .escalate-modal__confirm,
#reason_for_case_manager_modal .escalate-modal__confirm,
#cancel_request_modal .escalate-modal__confirm {
  background: #DC2626;
  color: #fff;
  border-color: #DC2626;
  font-weight: 600;
}
#escalate_request_modal .escalate-modal__confirm:hover,
#reason_for_case_manager_modal .escalate-modal__confirm:hover,
#cancel_request_modal .escalate-modal__confirm:hover {
  background: #B91C1C;
  border-color: #B91C1C;
}

.items_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.items_row.three_columns .item_column {
  width: calc(33.33% - 16px);
}
.items_row.two_columns .item_column {
  width: calc(50% - 16px);
}
.items_row .item_column .item_details .item_details_item .title {
  color: #535862;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.items_row .item_column .item_details .item_details_item .value {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.items_row .item_column .item_details .item_details_item .secure_info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0;
  color: #535862;
}

.payments-empty-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0 16px;
  justify-content: center;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 18px;
}
.payments-empty-state .payments-empty-state__icon {
  background: rgba(65, 70, 81, 0.0823529412);
  padding: 14px;
  line-height: 0;
  border-radius: 50%;
}
.payments-empty-state svg {
  flex-shrink: 0;
  color: #414651;
  opacity: 0.5;
}
.payments-empty-state__text {
  font-size: 14px;
  color: #414651;
}

.payments-container .payments-container-item {
  position: relative;
  margin-top: 24px;
}

.payments-history {
  display: flex;
  flex-direction: column;
}
.payments-history__item {
  display: flex;
  gap: 12px;
}
.payments-history__timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
}
.payments-history__dot {
  width: 10px;
  height: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: #B29B51;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px #B29B51;
  margin-top: 4px;
}
.payments-history__dot--prepay {
  background: #6172f3;
  box-shadow: 0 0 0 1.5px #6172f3;
}
.payments-history__dot--postpay {
  background: #B29B51;
  box-shadow: 0 0 0 1.5px #B29B51;
}
.payments-history__dot--invoice {
  background: #f79009;
  box-shadow: 0 0 0 1.5px #f79009;
}
.payments-history__dot--paid {
  background: #17b26a;
  box-shadow: 0 0 0 1.5px #17b26a;
}
.payments-history__line {
  width: 2px;
  flex: 1;
  background: #E5E5E5;
  margin: 4px 0;
  min-height: 12px;
}
.payments-history__content {
  padding-bottom: 16px;
  flex: 1;
}
.payments-history__item--last .payments-history__content {
  padding-bottom: 0;
}
.payments-history__amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #181D27;
  line-height: 1.4;
}
.payments-history__amount a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.payments-history__amount a:hover {
  color: #B29B51;
}
.payments-history__amount-val {
  font-weight: 500;
  color: #181D27;
  white-space: nowrap;
  flex-grow: 1;
  text-align: right;
}
.payments-history__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 2px;
  font-size: 12px;
  color: #414651;
}
.payments-history__kind {
  font-weight: 500;
  color: #535862;
}
.payments-history__sep {
  opacity: 0.4;
}
.payments-history__date {
  white-space: nowrap;
}

.payments-header {
  display: flex;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}
.payments-header .item_column {
  flex: 1 220px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 5px;
}
.payments-header .item_column .item_details .item_details_item .title {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.5;
}
.payments-header .item_column .item_details .item_details_item .value {
  font-size: 18px;
  font-weight: 500;
}
.payments-header .item_column .item_details .item_details_item .value.payment-status {
  font-size: 15px;
  position: relative;
  padding-left: 20px;
  color: #181D27;
  margin-top: 11px;
  display: block;
}
.payments-header .item_column .item_details .item_details_item .value.payment-status:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #181D27;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
}
.payments-header .item_column .item_details .item_details_item .value.payment-status.warning {
  color: #ef9f27;
}
.payments-header .item_column .item_details .item_details_item .value.payment-status.warning:before {
  background: #ef9f27;
}
.payments-header .item_column .item_details .item_details_item .value.payment-status.success, .payments-header .item_column .item_details .item_details_item .value.payment-status.paid {
  color: #067647;
}
.payments-header .item_column .item_details .item_details_item .value.payment-status.success:before, .payments-header .item_column .item_details .item_details_item .value.payment-status.paid:before {
  background: #067647;
}
.payments-header .item_column .item_details .item_details_item .value.payment-status.error {
  color: #DC2626;
}
.payments-header .item_column .item_details .item_details_item .value.payment-status.error:before {
  background: #DC2626;
}

.invoice-review .item_details .item_details_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #eaf3de;
  color: #275009;
  border: 1px solid rgba(39, 80, 9, 0.1882352941);
  border-radius: 5px;
}
.invoice-review .item_details .item_details_item .information {
  flex-grow: 1;
}
.invoice-review .item_details .item_details_item .information .title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.invoice-review .item_details .item_details_item .information .description {
  font-size: 13px;
}
.invoice-review .item_details .item_details_item .action .view_invoice_button {
  background: transparent;
  color: #275009;
  font-size: 14px;
  height: auto;
  padding: 6px 12px;
  border-color: #275009;
  transition: 0.2s all;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.invoice-review .item_details .item_details_item .action .view_invoice_button:hover {
  background: #275009;
  color: #fff;
}

.review-and-pay .review-and-pay-button.button {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-and-pay .secure_info {
  font-size: 14px;
  text-align: center;
  margin-top: 6px;
  opacity: 0.5;
}

.invoice-form-inline {
  background: #fff;
  border: 1px solid #E4E7EC;
  border-radius: 5px;
  margin-top: 16px;
  overflow: visible;
}
.invoice-form-inline__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E4E7EC;
}
.invoice-form-inline__header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #101828;
}
.invoice-form-inline__header-title svg {
  color: #667085;
}
.invoice-form-inline__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #667085;
  display: flex;
  align-items: center;
}
.invoice-form-inline__close:hover {
  color: #101828;
}
.invoice-form-inline__body {
  overflow-x: visible;
}
.invoice-form-inline__table {
  width: 100%;
  border-collapse: collapse;
}
.invoice-form-inline__table th {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #667085;
  text-align: left;
  background: #F9FAFB;
  border-bottom: 1px solid #E4E7EC;
  white-space: nowrap;
}
.invoice-form-inline__table th:last-child {
  width: 36px;
}
.invoice-form-inline__table td {
  padding: 8px 12px;
  border-bottom: 1px solid #F2F4F7;
  vertical-align: middle;
}
.invoice-form-inline__table td:last-child {
  width: 36px;
  text-align: center;
}
.invoice-form-inline__table tbody tr:last-child td {
  border-bottom: none;
}
.invoice-form-inline__table select,
.invoice-form-inline__table input[type=text],
.invoice-form-inline__table input[type=number] {
  width: 100%;
  min-width: 120px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #D0D5DD;
  border-radius: 5px;
  font-size: 14px;
  color: #101828;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.invoice-form-inline__table select:focus,
.invoice-form-inline__table input[type=text]:focus,
.invoice-form-inline__table input[type=number]:focus {
  border-color: #B29B51;
}
.invoice-form-inline__table input[type=number] {
  min-width: 90px;
}
.invoice-form-inline__table tfoot td {
  border-top: 1px solid #E4E7EC;
  border-bottom: none;
}
.invoice-form-inline__add-row {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #1570EF;
  padding: 6px 4px;
}
.invoice-form-inline__add-row:hover {
  color: #0C4A6E;
}
.invoice-form-inline .invoice-row-remove {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: #98A2B3;
  transition: background 0.15s, color 0.15s;
}
.invoice-form-inline .invoice-row-remove:hover {
  background: #FEE4E2;
  color: #B42318;
}
.invoice-form-inline__footer {
  padding: 14px 20px;
  border-top: 1px solid #E4E7EC;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.invoice-form-inline__footer .buttons_row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 0;
  width: auto;
}
.invoice-form-inline__footer .modal-field-error {
  position: relative;
  font-size: 14px;
  padding: 16px 24px 16px 44px;
  background: rgba(244, 67, 54, 0.1254901961);
  color: #F44336;
  border-radius: 5px;
  border: 1px solid #F44336;
}
.invoice-form-inline__footer .modal-field-error::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff0000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 16v.01'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  left: 12px;
  top: 12px;
}
.invoice-form-inline__decline-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.invoice-form-inline__decline-note label {
  font-size: 13px;
  font-weight: 500;
  color: #344054;
}
.invoice-form-inline__decline-note textarea {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  resize: vertical;
  min-height: 72px;
  font-family: inherit;
  box-sizing: border-box;
}
.invoice-form-inline__decline-note textarea.input-error {
  border-color: #F44336;
}
.invoice-form-inline__decline-note textarea:focus {
  outline: none;
  border-color: #0B5CFF;
  box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.1);
}
.invoice-form-inline__totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  margin: 16px 0;
}
.invoice-form-inline__total-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 410px;
  font-size: 14px;
  font-weight: 500;
  color: #344054;
}
.invoice-form-inline__total-row strong {
  font-weight: 700;
  color: #101828;
}
.invoice-form-inline__total-row--fee {
  color: #667085;
  font-size: 12px;
}
.invoice-form-inline__total-row--grand {
  font-size: 14px;
  font-weight: 600;
  color: #101828;
  border-top: 1px solid #E4E7EC;
  padding-top: 6px;
  margin-top: 2px;
}
.invoice-form-inline__total-row--grand strong {
  font-size: 15px;
}

#download_records_box .case_manager_action_container .item_content {
  width: 100%;
}
#download_records_box .files .files_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 24px;
}
#download_records_box .files .files_list .files_list_item {
  position: relative;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.15s;
}
#download_records_box .files .files_list .files_list_item:has(.file-pdf-checkbox:checked) {
  border-color: #B29B51;
  background: #fdfbf5;
}
#download_records_box .files .files_list .files_list_item .file-select-checkbox {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
#download_records_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#download_records_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox]:checked {
  background: #B29B51;
  border-color: #B29B51;
}
#download_records_box .files .files_list .files_list_item .file-select-checkbox input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
#download_records_box .files .files_list .files_list_item .file-preview-icon {
  flex-shrink: 0;
}
#download_records_box .files .files_list .files_list_item .file_details_box {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#download_records_box .files .files_list .files_list_item .file_details_box .file_name {
  word-break: break-all;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
#download_records_box .files .files_list .files_list_item .file_details_box .file_details {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .category {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 290px;
}
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .file-generated-date {
  font-size: 12px;
  color: #98a2b3;
  white-space: nowrap;
}
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .separator {
  width: 5px;
  height: 5px;
  background: #D5D7DA;
  border-radius: 50%;
}
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .downloaded,
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #344054;
}
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--completed,
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--completed {
  color: #079455;
}
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--in-review,
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--in-review {
  color: #B54708;
}
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .downloaded--uploaded,
#download_records_box .files .files_list .files_list_item .file_details_box .file_details .file-status-badge--uploaded {
  color: #344054;
}
#download_records_box .files .files_list .files_list_item .file_actions {
  flex-shrink: 0;
  width: auto;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}
#download_records_box .files .files_list .files_list_item .file_actions .button {
  width: auto;
  display: inline-block;
  height: auto;
  padding: 6px 20px;
  font-size: 14px;
}
#download_records_box .files .files_list .files_list_item .file_actions .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#download_records_box .files .files_list .files_list_item .file_actions .file-actions-select-wrap {
  display: inline-block;
  min-width: 112px;
  max-width: 200px;
  vertical-align: middle;
}
#download_records_box .files .files_list .files_list_item .file_actions .file-row-actions-select {
  width: 100%;
  min-height: 36px;
  font-size: 14px;
}
#download_records_box .files .files_list .files_list_item .file_actions {
  /* jquery-nice-select wraps the native control */
}
#download_records_box .files .files_list .files_list_item .file_actions .file-actions-select-wrap .nice-select {
  float: none;
  min-height: 36px;
  line-height: 34px;
}
#download_records_box .files .files_list .files_list_item .modal .request-file-vis-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  flex-direction: column;
}
#download_records_box .files .files_list .files_list_item .modal .request-file-vis-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #414651;
  cursor: pointer;
}
#download_records_box .files .files_list .files_list_item .modal .request-file-vis-label input {
  margin-top: 2px;
}
#download_records_box .files .files_list .files_list_item .modal .request-file-vis-hint {
  display: block;
  margin-left: 28px;
  font-size: 12px;
  color: #535862;
}
#download_records_box .files .files_list .files_list_item .file-status-meta {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}

.page-template-page-form-submission .content_head .title {
  display: flex;
  align-items: center;
  gap: 20px;
}
.page-template-page-form-submission .intake-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.page-template-page-form-submission .intake-details__item {
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-template-page-form-submission .intake-details__item.notes {
  width: 100%;
}
.page-template-page-form-submission .intake-details__label {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
}
.page-template-page-form-submission .intake-details__value {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
}
.page-template-page-form-submission .intake-details__value i {
  font-weight: 400;
}
.page-template-page-form-submission .main_content {
  max-width: initial;
  overflow: hidden;
}
.page-template-page-form-submission .individual_request {
  position: relative;
}
.page-template-page-form-submission .individual_request__title {
  font-weight: 500;
  font-size: 30px;
  line-height: 38px;
  color: #181D27;
  margin: 0 0 20px;
}
.page-template-page-form-submission .individual_request__table {
  width: 100%;
  max-width: 100%;
  overflow: auto;
}
.page-template-page-form-submission .individual_request table {
  border: none;
  margin: 0;
  padding: 0;
  width: max-content;
  border-spacing: 0;
}
.page-template-page-form-submission .individual_request table thead tr {
  background: #FAFAFA;
}
.page-template-page-form-submission .individual_request table thead tr th {
  padding: 12px 24px;
  text-align: left;
  border-bottom: 1px solid #E9EAEB;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #717680;
}
.page-template-page-form-submission .individual_request table thead tr th:nth-child(2), .page-template-page-form-submission .individual_request table thead tr th:nth-child(2) {
  min-width: fit-content;
}
.page-template-page-form-submission .individual_request table tbody tr:nth-child(4n-1) td {
  background: #FAFAFA;
}
.page-template-page-form-submission .individual_request table tbody tr td {
  padding: 16px 24px;
  background: white;
  border-bottom: 1px solid #E9EAEB;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
}
.page-template-page-form-submission .individual_request table tbody tr td.facility, .page-template-page-form-submission .individual_request table tbody tr td.record-type {
  color: #535862;
}
.page-template-page-form-submission .individual_request table tbody tr td a {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #9E8543;
  text-decoration: none;
  transition: color 0.3s;
}
.page-template-page-form-submission .individual_request table tbody tr td a:hover {
  color: #6f6036;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row.active td .details_box {
  height: auto;
  padding-top: 16px;
  padding-bottom: 16px;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td {
  padding: 0;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details_box {
  display: flex;
  padding: 0 24px;
  height: 0;
  overflow: hidden;
  gap: 20px;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: calc(100% - 320px);
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #181D27;
  margin: 0;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details .request-details__item {
  width: calc(33% - 13.3333333333px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details .request-details__item.file {
  width: 100%;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details .request-details__item.file .files_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details .request-details__item.file .files_list .files_list_item {
  width: 333px;
  max-width: 100%;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  display: flex;
  gap: 12px;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details .request-details__item.file .files_list .files_list_item .file_details_box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details .request-details__item.file .files_list .files_list_item .file_details_box .file_name {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details .request-details__item.file .files_list .files_list_item .file_details_box .file_details {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details .request-details__item .request-details__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
}
.page-template-page-form-submission .individual_request table tbody tr.details-row td .details .request-details .request-details__item .request-details__value {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
}

#case_managers {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 24px;
  border: 0px !important;
}
#case_managers thead tr th {
  padding: 12px 24px 12px 13px;
  background: #FFFFFF;
  border-bottom: 1px solid #E9EAEB;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #717680;
  white-space: nowrap;
}
#case_managers thead tr th:last-child {
  width: 40px;
}
#case_managers tbody tr {
  transition: background 0.15s;
}
#case_managers tbody tr:hover {
  background: #faf8f4;
}
#case_managers tbody tr .company-admin-managers-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
#case_managers tbody tr .company-admin-managers-actions .edit-member-btn {
  cursor: pointer;
}
#case_managers tbody tr td {
  padding: 16px 24px 16px 13px;
  border-bottom: 1px solid #E9EAEB;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
#case_managers tbody tr td.manager_name {
  display: flex;
  align-items: center;
  gap: 12px;
}
#case_managers tbody tr td .name {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
}
#case_managers tbody tr td .name .username {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #717680;
}
#case_managers tbody tr td a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  text-decoration: none;
}
#case_managers tbody tr td a:hover {
  color: #181D27;
}
#case_managers tbody tr td a svg {
  color: #F44336;
}
#case_managers tbody tr td img {
  display: block;
  width: 18px;
  height: 18px;
  opacity: 0.5;
  transition: opacity 0.15s;
}
#case_managers tbody tr td img:hover {
  opacity: 1;
}

#add_case_manager {
  font-size: 14px;
  line-height: 20px;
  padding: 7px 12px;
  height: 34px;
  width: max-content;
}

#add_case_manager_modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
}
#add_case_manager_modal .overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  backdrop-filter: blur(8px);
  width: 100%;
  height: 100%;
  background-color: rgba(83, 88, 98, 0.7);
  cursor: pointer;
}
#add_case_manager_modal .modal_content {
  width: 400px;
  max-width: calc(100% - 20px);
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 16px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#add_case_manager_modal .modal_content .invite_icon_container {
  position: relative;
}
#add_case_manager_modal .modal_content .invite_icon_container .invite_icon {
  display: block;
}
#add_case_manager_modal .modal_content .invite_icon_container .invite_bg {
  position: absolute;
  left: -24px;
  top: -24px;
  z-index: -1;
}
#add_case_manager_modal .modal_content .close_modal {
  position: absolute;
  right: 16px;
  top: 16px;
}
#add_case_manager_modal .modal_content h2 {
  margin: 16px 0 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
}
#add_case_manager_modal .modal_content p {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
#add_case_manager_modal .modal_content form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#add_case_manager_modal .modal_content form label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
}
#add_case_manager_modal .modal_content form label span {
  color: #B29B51;
}
#add_case_manager_modal .modal_content form label.ds-checkbox-label {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
#add_case_manager_modal .modal_content form label.ds-checkbox-label input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  padding: 0;
}
#add_case_manager_modal .modal_content form label.ds-checkbox-label input:checked {
  background: #B29B51;
  border-color: #B29B51;
}
#add_case_manager_modal .modal_content form label.ds-checkbox-label input:checked:after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
#add_case_manager_modal .modal_content form label.ds-checkbox-label span {
  color: #535353;
  font-weight: 400;
}
#add_case_manager_modal .modal_content form input {
  width: 100%;
  height: 36px;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
}
#add_case_manager_modal .modal_content form input:placeholder {
  color: #717680;
}
#add_case_manager_modal .modal_content form .buttons_row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}
#add_case_manager_modal .modal_content form .buttons_row button {
  width: calc(50% - 6px);
}

#edit_case_manager_modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
}
#edit_case_manager_modal .overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  backdrop-filter: blur(8px);
  width: 100%;
  height: 100%;
  background-color: rgba(83, 88, 98, 0.7);
  cursor: pointer;
}
#edit_case_manager_modal .modal_content {
  width: 400px;
  max-width: calc(100% - 20px);
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 16px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#edit_case_manager_modal .modal_content .invite_icon_container {
  position: relative;
}
#edit_case_manager_modal .modal_content .invite_icon_container svg {
  display: block;
  width: 40px;
  height: 40px;
  color: #B29B51;
}
#edit_case_manager_modal .modal_content .invite_icon_container .invite_bg {
  position: absolute;
  left: -24px;
  top: -24px;
  z-index: -1;
}
#edit_case_manager_modal .modal_content .close_modal {
  position: absolute;
  right: 16px;
  top: 16px;
}
#edit_case_manager_modal .modal_content h2 {
  margin: 16px 0 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #181D27;
}
#edit_case_manager_modal .modal_content p {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
#edit_case_manager_modal .modal_content form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#edit_case_manager_modal .modal_content form label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  margin-top: 18px;
}
#edit_case_manager_modal .modal_content form label span {
  color: #B29B51;
}
#edit_case_manager_modal .modal_content form label.ds-checkbox-label {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
#edit_case_manager_modal .modal_content form label.ds-checkbox-label input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #B29B51;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  padding: 0;
}
#edit_case_manager_modal .modal_content form label.ds-checkbox-label input:checked {
  background: #B29B51;
  border-color: #B29B51;
}
#edit_case_manager_modal .modal_content form label.ds-checkbox-label input:checked:after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 11px;
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(1.1);
}
#edit_case_manager_modal .modal_content form label.ds-checkbox-label span {
  color: #535353;
  font-weight: 400;
}
#edit_case_manager_modal .modal_content form input {
  width: 100%;
  height: 36px;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
}
#edit_case_manager_modal .modal_content form input:placeholder {
  color: #717680;
}
#edit_case_manager_modal .modal_content form .buttons_row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}
#edit_case_manager_modal .modal_content form .buttons_row button {
  width: calc(50% - 6px);
}
#edit_case_manager_modal .modal_content #edit-member-locked-wrap {
  margin-top: 16px;
}
#edit_case_manager_modal .modal_content #edit-member-locked-wrap .edit-member-locked-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  font-size: 13px;
  color: #b91c1c;
  margin-bottom: 10px;
}
#edit_case_manager_modal .modal_content #edit-member-locked-wrap .edit-member-locked-notice svg {
  flex-shrink: 0;
  color: #b91c1c;
}
#edit_case_manager_modal .modal_content #edit-member-locked-wrap #edit-member-unlock {
  width: 100%;
  font-size: 14px;
  max-width: 100%;
}

table.case-manager-requests-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table.case-manager-requests-table thead tr th {
  padding: 12px 24px 12px 13px;
  background: #FFFFFF;
  border-bottom: 1px solid #E9EAEB;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #717680;
}
table.case-manager-requests-table tbody tr td {
  padding: 16px 24px 16px 13px;
  border-bottom: 1px solid #E9EAEB;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
table.case-manager-requests-table tbody tr td.manager_name {
  display: flex;
  align-items: center;
  gap: 12px;
}
table.case-manager-requests-table tbody tr td .name {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
}
table.case-manager-requests-table tbody tr td .name .username {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
table.case-manager-requests-table tbody tr td a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  text-decoration: none;
}
table.case-manager-requests-table tbody tr td .case-manager-requests-table td:first-child {
  width: 28px;
  padding-right: 0;
  text-align: center;
}
table.case-manager-requests-table tbody tr td .case-manager-requests-table td:first-child svg {
  display: block;
  margin: 0 auto;
}
table.case-manager-requests-table tbody tr td .case-manager-requests-table th:first-child {
  width: 28px;
  padding-right: 0;
}
table.case-manager-requests-table tbody tr td .cm-invoice-total {
  color: #010101;
  font-weight: 600;
}
table.case-manager-requests-table tbody tr td .cm-action-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid;
  width: fit-content;
  padding: 6px;
  border-radius: 8px;
  background: #faf8f4;
  color: #ba9b51;
}
table.case-manager-requests-table tbody tr td .cm-action-badge.cm-action-badge--empty {
  background: rgba(76, 175, 80, 0.0901960784);
  color: #328b35;
}
table.case-manager-requests-table tbody tr td .cm-action-badge.cm-action-badge--information {
  color: #3b5bdb;
  background: rgba(59, 91, 219, 0.062745098);
}
table.case-manager-requests-table tbody tr td .cm-action-badge.cm-action-badge--success {
  color: #2f9e44;
  background: rgba(47, 158, 68, 0.1254901961);
}

.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table {
  width: 100%;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table thead tr th {
  padding: 12px 24px 12px 13px;
  background: #fff;
  border-bottom: 1px solid #E9EAEB;
  text-align: left;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #717680;
  white-space: nowrap;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-form-row {
  transition: background 0.15s;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-form-row td {
  padding: 16px 24px 16px 13px;
  border-bottom: 1px solid #E9EAEB;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
  vertical-align: middle;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-form-row:hover {
  background: #faf8f4;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6CB94A;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-dot.ca-dot--small {
  width: 6px;
  height: 6px;
  margin-right: 6px;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  background: #ebebeb;
  color: #535862;
  white-space: nowrap;
  border: 1px solid rgba(83, 88, 98, 0.3137254902);
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-status-badge.ca-status-badge--archived {
  background: rgba(52, 64, 84, 0.062745098);
  border-color: #344054;
  color: #344054;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-status-badge.ca-status-badge--complete {
  background: rgba(2, 122, 72, 0.062745098);
  border-color: #027A48;
  color: #027A48;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-status-badge.ca-status-badge--canceled {
  background: rgba(180, 35, 24, 0.062745098);
  border-color: #B42318;
  color: #B42318;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-rush-badge {
  display: flex;
  align-items: center;
  gap: 2px;
  width: fit-content;
  text-align: center;
  font-size: 14px;
  background: #ba9b51;
  color: #ffffff;
  padding: 3px 9px;
  border-radius: 5px;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-no-rush {
  display: flex;
  align-items: center;
  gap: 2px;
  width: fit-content;
  text-align: center;
  font-size: 14px;
  color: #535862;
  padding: 3px 9px;
  border-radius: 5px;
  border: 1px solid rgba(83, 88, 98, 0.1254901961);
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-actions-cell {
  text-align: right;
  white-space: nowrap;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-actions-cell .ca-expand-btn {
  height: max-content;
  padding: 6px 24px;
  width: fit-content;
  font-size: 14px;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-table-actions {
  cursor: default;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-table-actions .ca-table-actions__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-expand-btn,
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-view-submission-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-expand-btn:hover,
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-view-submission-btn:hover {
  background: #eaeaea;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-view-submission-btn {
  border-color: #BA9B51;
  color: #414651;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-view-submission-btn:hover {
  background: #BA9B51;
  color: #fff;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-view-submission-btn:hover svg {
  stroke: #fff;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-req-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #E9EAEB;
  color: #414651;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-no-requests {
  font-size: 12px;
  color: #717680;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-expanded-row td {
  padding: 0;
  background: #f8f9fa;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-expanded-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-expanded-header__title {
  font-size: 14px;
  font-weight: 500;
  color: #181D27;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-expanded-header__title .ca-sep {
  margin: 0 8px;
  color: #D5D7DA;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-expanded-header__meta {
  font-size: 12px;
  color: #717680;
  white-space: nowrap;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-nested-table {
  width: 100%;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  border: 0px;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-nested-table thead tr th {
  padding: 12px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #717680;
  background: #f8f9fa;
  border-bottom: 1px solid #E9EAEB;
  text-transform: uppercase;
  white-space: nowrap;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-nested-table tbody tr {
  transition: background 0.12s;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-nested-table tbody tr:hover {
  background: #faf8f4;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-nested-table tbody tr td {
  padding: 10px 12px;
  font-size: 13px;
  color: #535862;
  border-bottom: 1px solid #f0f1f3;
  vertical-align: middle;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-nested-table tbody tr:last-child td {
  border-bottom: none;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-nested-table .ca-req-display-id {
  color: #B29B51;
  font-weight: 600;
  font-size: 13px;
}
.dashboard-wrapper .main_content .table_wrapper .company-admin-requests-table .ca-nested-table .ca-view-btn {
  font-size: 14px;
  padding: 5px 12px;
  height: auto;
  white-space: nowrap;
}

.case-manager-main-content .case-manager-requests-table .ca-form-row td:nth-child(6) {
  text-align: center;
}
.case-manager-main-content .case-manager-requests-table td {
  white-space: nowrap;
}
.case-manager-main-content .case-manager-requests-table td:nth-child(5),
.case-manager-main-content .case-manager-requests-table td:nth-child(6) {
  white-space: normal;
}
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=awaiting_case_manager].is-active {
  border-color: #B29B51;
  background: #faf8f0;
}
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=awaiting_case_manager].is-active .requests-status-filter__count {
  background: #B29B51;
  color: #fff;
}
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=ready_for_payment].is-active {
  border-color: #3b5bdb;
  background: #eef2ff;
}
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=ready_for_payment].is-active .requests-status-filter__count {
  background: #3b5bdb;
  color: #fff;
}
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=ready_for_download].is-active {
  border-color: #2e9e44;
  background: #ebfbee;
}
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=ready_for_download].is-active .requests-status-filter__count {
  background: #2e9e44;
  color: #fff;
}
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=archived].is-active,
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=""].is-active {
  border-color: #868e96;
  background: #f1f3f5;
}
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=archived].is-active .requests-status-filter__count,
.case-manager-main-content .case-manager-status-filters .requests-status-filter[data-filter=""].is-active .requests-status-filter__count {
  background: #868e96;
  color: #fff;
}

.mobile_header {
  display: none;
}

@media (max-width: 992px) {
  body:not(.page-template-page-form-submission-php) .mobile_menu_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.34);
    z-index: 51;
    cursor: pointer;
  }
  body:not(.page-template-page-form-submission-php) .mobile_menu_overlay.active {
    display: block;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header {
    position: fixed;
    transform: translate(-100%, 0);
    transition: transform 0.3s;
    top: 0;
    z-index: 52;
    background: white;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header a.logo {
    display: none;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header .mobile_menu_btn {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 10px;
    top: 32px;
    transform: translateY(-50%);
    cursor: pointer;
    display: block;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header .mobile_menu_btn.active .line:first-child {
    transform: rotate(45deg);
    transform-origin: center;
    top: 20px;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header .mobile_menu_btn.active .line:nth-child(2) {
    opacity: 0;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header .mobile_menu_btn.active .line:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: center;
    top: 20px;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header .mobile_menu_btn .line {
    position: absolute;
    left: 11px;
    top: 14px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #272727;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header .mobile_menu_btn .line:nth-child(2) {
    top: 20px;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header .mobile_menu_btn .line:nth-child(3) {
    top: 26px;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header nav.main-navigation {
    margin-top: 20px;
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper #header.active {
    transform: translate(0, 0);
  }
  body:not(.page-template-page-form-submission-php) .dashboard-wrapper .main_content {
    max-width: 100%;
  }
  body:not(.page-template-page-form-submission-php) .mobile_header {
    height: 64px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E9EAEB;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 50;
  }
  body:not(.page-template-page-form-submission-php) .mobile_header .container {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body:not(.page-template-page-form-submission-php) .mobile_header .container .mobile_menu_btn {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  body:not(.page-template-page-form-submission-php) .mobile_header .container .mobile_menu_btn .line {
    position: absolute;
    left: 11px;
    top: 14px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #272727;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  body:not(.page-template-page-form-submission-php) .mobile_header .container .mobile_menu_btn .line:nth-child(2) {
    top: 20px;
  }
  body:not(.page-template-page-form-submission-php) .mobile_header .container .mobile_menu_btn .line:nth-child(3) {
    top: 26px;
  }
}

@media (max-width: 1500px) {
  body.page-template-page-form-submission-php .mobile_menu_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.34);
    z-index: 51;
    cursor: pointer;
  }
  body.page-template-page-form-submission-php .mobile_menu_overlay.active {
    display: block;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header {
    position: fixed;
    transform: translate(-100%, 0);
    transition: transform 0.3s;
    top: 0;
    z-index: 52;
    background: white;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header a.logo {
    display: none;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header .mobile_menu_btn {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 10px;
    top: 32px;
    transform: translateY(-50%);
    cursor: pointer;
    display: block;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header .mobile_menu_btn.active .line:first-child {
    transform: rotate(45deg);
    transform-origin: center;
    top: 20px;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header .mobile_menu_btn.active .line:nth-child(2) {
    opacity: 0;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header .mobile_menu_btn.active .line:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: center;
    top: 20px;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header .mobile_menu_btn .line {
    position: absolute;
    left: 11px;
    top: 14px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #272727;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header .mobile_menu_btn .line:nth-child(2) {
    top: 20px;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header .mobile_menu_btn .line:nth-child(3) {
    top: 26px;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header nav.main-navigation {
    margin-top: 20px;
  }
  body.page-template-page-form-submission-php .dashboard-wrapper #header.active {
    transform: translate(0, 0);
  }
  body.page-template-page-form-submission-php .dashboard-wrapper .main_content {
    max-width: 100%;
  }
  body.page-template-page-form-submission-php .mobile_header {
    height: 64px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E9EAEB;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 50;
  }
  body.page-template-page-form-submission-php .mobile_header .container {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body.page-template-page-form-submission-php .mobile_header .container .mobile_menu_btn {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  body.page-template-page-form-submission-php .mobile_header .container .mobile_menu_btn .line {
    position: absolute;
    left: 11px;
    top: 14px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #272727;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  body.page-template-page-form-submission-php .mobile_header .container .mobile_menu_btn .line:nth-child(2) {
    top: 20px;
  }
  body.page-template-page-form-submission-php .mobile_header .container .mobile_menu_btn .line:nth-child(3) {
    top: 26px;
  }
}

.ds-skeleton {
  position: relative;
}
.ds-skeleton.active:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Shimmer is visual only — do not block clicks on real content inside .ds-skeleton */
  pointer-events: none;
  animation: skeleton-animation 1.5s infinite linear;
  background: linear-gradient(90deg, #ededed 25%, #fdfbfb 50%, #ededed 75%);
  background-size: 200% 100%;
  border-radius: 5px;
}

.remove-skeleton .ds-skeleton.active:after {
  display: none;
}

@keyframes skeleton-animation {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}
#open_chat {
  display: none !important;
  position: fixed;
  right: 43px;
  bottom: 15px;
  z-index: 1001;
  padding: 4px 4px 4px 24px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 29px;
}

#chat-sidebar {
  width: 400px;
  min-width: 400px;
  height: 100vh;
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 49;
  transition: all 0.3s;
}
@media (max-width: 1500px) {
  #chat-sidebar {
    top: 64px;
    height: calc(100vh - 64px);
  }
}
#chat-sidebar.active {
  margin-right: -400px;
}
#chat-sidebar .chat {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  padding: 0 15px 15px;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  position: relative;
  overflow: hidden;
}
#chat-sidebar .chat h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #181D27;
  padding: 10px 15px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #D5D7DA;
  border-radius: 8px 8px 0 0;
  z-index: 2;
  backdrop-filter: blur(7px);
}
#chat-sidebar .chat #load_new_messages_btn {
  display: flex;
  position: absolute;
  width: max-content;
  cursor: pointer;
  padding: 8px 16px;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #BA9B51;
  border-radius: 40px;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  transition: all 0.3s;
}
#chat-sidebar .chat #load_new_messages_btn.hidden {
  bottom: -100px;
  opacity: 0;
}
#chat-sidebar .chat .chat_history {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  padding-top: 70px;
  margin-top: auto;
  transition: all 0.3s;
}
#chat-sidebar .chat .chat_history::-webkit-scrollbar {
  display: none;
}
#chat-sidebar .chat .chat_history.loading {
  opacity: 0.5;
  filter: blur(10px);
}
#chat-sidebar .chat .chat_history__empty {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  text-align: center;
  padding: 20px;
  font-style: italic;
}
#chat-sidebar .chat .chat_history .date {
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  color: #000000;
}
#chat-sidebar .chat .chat_history .chat_history__item {
  max-width: calc(100% - 32px);
  background: #F7F4F4;
  padding: 8px 12px 21px;
  border-radius: 0px 8px 8px 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  position: relative;
  min-width: 65px;
  transition: opacity 0.3s;
}
#chat-sidebar .chat .chat_history .chat_history__item.message_loading {
  opacity: 0.2;
}
#chat-sidebar .chat .chat_history .chat_history__item .time {
  position: absolute;
  right: 6px;
  bottom: 6px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  text-align: right;
  color: #535862;
}
#chat-sidebar .chat .chat_history .chat_history__item p, #chat-sidebar .chat .chat_history .chat_history__item a {
  color: #181D27;
}
#chat-sidebar .chat .chat_history .chat_history__item p:last-of-type, #chat-sidebar .chat .chat_history .chat_history__item a:last-of-type {
  margin-bottom: 0;
}
#chat-sidebar .chat .chat_history .chat_history__item.my_message {
  background: #A4A5A6;
  color: #FFFFFF;
  align-self: flex-end;
  border-radius: 8px 0px 8px 8px;
}
#chat-sidebar .chat .chat_history .chat_history__item.my_message p, #chat-sidebar .chat .chat_history .chat_history__item.my_message a {
  color: #FFFFFF;
}
#chat-sidebar .chat .chat_history .chat_history__item.my_message .time {
  color: #fff;
  opacity: 0.8;
}
#chat-sidebar .chat .message_input {
  display: flex;
  align-items: center;
  padding-top: 11px;
  position: relative;
}
#chat-sidebar .chat .message_input .buttons {
  position: absolute;
  right: 4px;
  bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
#chat-sidebar .chat .message_input .buttons input[type=file] {
  display: none !important;
}
#chat-sidebar .chat .message_input .buttons #attach_button {
  cursor: pointer;
  display: block;
}
#chat-sidebar .chat .message_input .buttons #attach_button img {
  display: block;
}
#chat-sidebar .chat .message_input .buttons #send_button {
  display: block;
  cursor: pointer;
  width: 28px;
  height: 28px;
  background: #BA9B51;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#chat-sidebar .chat .message_input .buttons #send_button img {
  display: block;
}
#chat-sidebar .chat .message_input textarea {
  padding: 8px 14px;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 20px;
  font-weight: 400;
  font-size: 12px;
  min-height: 36px;
  line-height: 18px;
  color: #717680;
  width: 100%;
  max-height: 150px;
  resize: none;
  /* Hide scrollbar for Webkit browsers */
}
#chat-sidebar .chat .message_input textarea::-webkit-scrollbar {
  display: none;
}
#chat-sidebar .chat .message_input textarea {
  /* Hide scrollbar for Firefox */
  scrollbar-width: none; /* Firefox */
  /* Hide scrollbar for IE, Edge */
  -ms-overflow-style: none;
}

.notifications {
  position: relative;
}
.notifications .notifications_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}
.notifications .notifications_wrapper .notifications_wrapper__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.notifications .notifications_wrapper .notifications_wrapper__item svg {
  max-width: 24px;
  max-height: 24px;
}
.notifications .notifications_wrapper .notifications_wrapper__item__text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: #535862;
  font-weight: 500;
}
.notifications .notif-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #D92D20;
  box-shadow: 0 0 0 2px #ffffff;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}
.notifications .notif-badge.hidden {
  display: none;
}
.notifications .notif-dropdown {
  position: fixed;
  right: -100%;
  top: 0;
  width: 500px;
  background: #ffffff;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 99999999;
  overflow-y: scroll;
  max-height: 100vh;
  height: 100vh;
  /* default hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}
.notifications .notif-dropdown .notif-items-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-weight: 500;
}
.notifications .notif-dropdown .notif-items-header .notif-items-header__title {
  position: relative;
}
.notifications .notif-dropdown .notif-items-header .notif-items-header__close {
  display: flex;
  align-items: center;
  gap: 10px;
}
.notifications .notif-dropdown .notif-items-header .notif-items-header__close .notif-items-header__read-all {
  font-size: 12px;
  cursor: pointer;
  color: #71717B;
}
.notifications .notif-dropdown .notif-items-header .quantity {
  position: absolute;
  top: 0px;
  font-size: 12px;
  margin-left: 5px;
  background: #ebebeb;
  padding: 6px;
  border-radius: 50%;
  line-height: 0.6;
}
.notifications .notif-dropdown .notif-items-header svg {
  cursor: pointer;
}
.notifications .notif-dropdown {
  /* visible state */
}
.notifications .notif-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  right: 0;
}
.notifications .notif-item {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}
.notifications .notif-item__content {
  flex: 1 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.notifications .notif-item__content .notif-item__title {
  font-size: 15px;
  line-height: 1.3;
  color: #181D27;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.notifications .notif-item__content .notif-item__tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: #717680;
  background: #f5f5f5;
  border: 1px solid #e9eaeb;
  border-radius: 4px;
  padding: 1px 6px;
  text-transform: uppercase;
}
.notifications .notif-item__content .notif-item__meta {
  font-size: 13px;
  color: #717680;
}
.notifications .notif-item .notif-item__icon {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  flex: 1 10px;
}
.notifications .notif-item .notif-item__icon:before {
  position: absolute;
  background: #cccccd;
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0px 3px rgba(0, 0, 0, 0.09);
}
.notifications .notif-item.is-unread .notif-item__icon:before {
  background: #D92D20;
  box-shadow: 0 0 0px 3px rgba(217, 45, 32, 0.1882352941);
}
.notifications .notif-item.is-unread .notif-item__title {
  font-weight: 600;
}
.notifications .notif-item:hover {
  background: #f6f7f7;
}
.notifications .notif-item .icon {
  font-size: 18px;
}
.notifications .notif-item.success .icon {
  color: #46b450; /* WP success green */
}
.notifications .notif-item.info .icon {
  color: #2271b1; /* WP blue */
}
.notifications .notif-item strong {
  display: block;
  font-size: 13px;
}
.notifications .notif-item small {
  font-size: 12px;
  color: #646970;
}

body:has(.notif-dropdown.is-open) .notifications-overlay {
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  top: 0;
  left: 0;
  backdrop-filter: blur(2px);
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease;
}

.notifications-overlay {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

#add-new-facility {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 4px;
  height: 40px;
  float: right;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  text-decoration: none;
  transition: background 0.3s;
}
#add-new-facility:hover {
  background: #eaeaea;
}

.facility-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 10000;
}
.facility-modal .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(83, 88, 98, 0.7);
  cursor: pointer;
}
.facility-modal .modal_content {
  width: 1320px;
  max-width: calc(100% - 40px);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 16px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.facility-modal .modal_content .facility-modal-save-loader {
  position: sticky;
  z-index: 30;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  backdrop-filter: blur(2px);
  bottom: 0;
  top: 0;
  left: 0;
  height: calc(100% + 48px);
  min-height: 100%;
  width: 100%;
}
.facility-modal .modal_content .facility-modal-save-loader:not([hidden]) {
  display: flex;
}
.facility-modal .modal_content .facility-modal-save-loader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E9EAEB;
  border-top-color: #B29B51;
  border-radius: 50%;
  animation: facility-modal-save-spin 0.75s linear infinite;
}
.facility-modal .modal_content .facility-modal-save-loader__text {
  font-size: 14px;
  font-weight: 500;
  color: #535862;
}
.facility-modal .modal_content .close_modal {
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 50%;
  line-height: 0;
}

@keyframes facility-modal-save-spin {
  to {
    transform: rotate(360deg);
  }
}
.facility-form-wrapper {
  display: flex;
  gap: 24px;
  min-height: 500px;
}

.facility-form-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}
.facility-form-col__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E9EAEB;
}
.facility-form-col__header h3 {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #181D27;
}
.facility-form-col__header .facility-main-edit-btn,
.facility-form-col__header .department-edit-btn {
  flex-shrink: 0;
}
.facility-form-col.facility-form-main {
  min-width: 300px;
}

#facility-main-form.facility-form--fields-locked input:not([type=hidden]):disabled,
#facility-main-form.facility-form--fields-locked select:disabled,
#facility-main-form.facility-form--fields-locked textarea:disabled,
#ds_department_form.facility-form--fields-locked input:not([type=hidden]):disabled,
#ds_department_form.facility-form--fields-locked select:disabled,
#ds_department_form.facility-form--fields-locked textarea:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
#facility-main-form.facility-form--fields-locked .custom-file-upload,
#ds_department_form.facility-form--fields-locked .custom-file-upload {
  pointer-events: none;
}
#facility-main-form.facility-form--fields-locked .custom-file-upload .file-upload-container,
#facility-main-form.facility-form--fields-locked .custom-file-upload .file-preview,
#ds_department_form.facility-form--fields-locked .custom-file-upload .file-upload-container,
#ds_department_form.facility-form--fields-locked .custom-file-upload .file-preview {
  opacity: 0.4;
  cursor: not-allowed;
}
#facility-main-form.facility-form--fields-locked .custom-file-upload .remove-file,
#ds_department_form.facility-form--fields-locked .custom-file-upload .remove-file {
  pointer-events: none;
}
#facility-main-form.facility-form--fields-locked .dept-current-file [data-dept-file-remove],
#ds_department_form.facility-form--fields-locked .dept-current-file [data-dept-file-remove] {
  pointer-events: none;
  opacity: 0.4;
  cursor: not-allowed;
}

.facility-form-main[data-facility-mode=new] .facility-main-edit-btn {
  display: none !important;
}
.facility-form-main[data-facility-mode=new] .facility-main-cancel-btn {
  display: none !important;
}
.facility-form-main[data-facility-mode=new] .save_facility_btn {
  display: inline-flex !important;
}

.facility-form-main[data-facility-mode=readonly] .facility-main-edit-btn {
  display: inline-flex !important;
}
.facility-form-main[data-facility-mode=readonly] .facility-main-cancel-btn {
  display: none !important;
}
.facility-form-main[data-facility-mode=readonly] .save_facility_btn {
  display: none !important;
}

.facility-form-main[data-facility-mode=edit] .facility-main-edit-btn {
  display: none !important;
}
.facility-form-main[data-facility-mode=edit] .facility-main-cancel-btn {
  display: inline-flex !important;
}
.facility-form-main[data-facility-mode=edit] .save_facility_btn {
  display: inline-flex !important;
}

.facility-form-department-detail[data-dept-mode=empty] #ds_department_form.ds-department-form {
  display: none !important;
}
.facility-form-department-detail[data-dept-mode=empty] .department-edit-btn {
  display: none !important;
}
.facility-form-department-detail[data-dept-mode=empty] .department-cancel-btn {
  display: none !important;
}
.facility-form-department-detail[data-dept-mode=empty] .save_department_btn {
  display: none !important;
}

.facility-form-department-detail[data-dept-mode=readonly] #ds_department_form.ds-department-form {
  display: flex !important;
}
.facility-form-department-detail[data-dept-mode=readonly] .department-edit-btn {
  display: inline-flex !important;
}
.facility-form-department-detail[data-dept-mode=readonly] .department-cancel-btn {
  display: none !important;
}
.facility-form-department-detail[data-dept-mode=readonly] .save_department_btn {
  display: none !important;
}

.facility-form-department-detail[data-dept-mode=edit] #ds_department_form.ds-department-form {
  display: flex !important;
}
.facility-form-department-detail[data-dept-mode=edit] .department-edit-btn {
  display: none !important;
}
.facility-form-department-detail[data-dept-mode=edit] .department-cancel-btn {
  display: inline-flex !important;
}
.facility-form-department-detail[data-dept-mode=edit] .save_department_btn {
  display: inline-flex !important;
}

.facility-form-department-detail[data-dept-mode=new] #ds_department_form.ds-department-form {
  display: flex !important;
}
.facility-form-department-detail[data-dept-mode=new] .department-edit-btn {
  display: none !important;
}
.facility-form-department-detail[data-dept-mode=new] .department-cancel-btn {
  display: none !important;
}
.facility-form-department-detail[data-dept-mode=new] .save_department_btn {
  display: inline-flex !important;
}

.facility-form-section,
.department-form-section {
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: none;
}
.facility-form-section:last-of-type,
.department-form-section:last-of-type {
  margin-bottom: 0;
}
.facility-form-section__title,
.department-form-section__title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #181D27;
}

.facility-form-group,
.department-form-group {
  margin-bottom: 14px;
}
.facility-form-group:last-child,
.department-form-group:last-child {
  margin-bottom: 0;
}

.facility-form-main form,
#ds_department_form.ds-department-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.facility-form-main form label,
#ds_department_form.ds-department-form label {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: #414651;
  margin-top: 0;
  margin-bottom: 6px;
  display: block;
}
.facility-form-main form label span,
#ds_department_form.ds-department-form label span {
  color: #B29B51;
}
.facility-form-main form input:not([type=radio]):not([type=hidden]),
.facility-form-main form select,
.facility-form-main form textarea,
#ds_department_form.ds-department-form input:not([type=radio]):not([type=hidden]),
#ds_department_form.ds-department-form select,
#ds_department_form.ds-department-form textarea {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  background: #fff;
  height: 38px;
  outline: none;
  transition: border-color 0.2s;
}
.facility-form-main form input:not([type=radio]):not([type=hidden]):focus,
.facility-form-main form select:focus,
.facility-form-main form textarea:focus,
#ds_department_form.ds-department-form input:not([type=radio]):not([type=hidden]):focus,
#ds_department_form.ds-department-form select:focus,
#ds_department_form.ds-department-form textarea:focus {
  border-color: #B29B51;
}
.facility-form-main form input:not([type=radio]):not([type=hidden])::placeholder,
.facility-form-main form select::placeholder,
.facility-form-main form textarea::placeholder,
#ds_department_form.ds-department-form input:not([type=radio]):not([type=hidden])::placeholder,
#ds_department_form.ds-department-form select::placeholder,
#ds_department_form.ds-department-form textarea::placeholder {
  color: #A4A7AE;
}
.facility-form-main form textarea,
#ds_department_form.ds-department-form textarea {
  height: 80px;
  resize: vertical;
}
.facility-form-main form select,
#ds_department_form.ds-department-form select {
  appearance: none;
  cursor: pointer;
}
.facility-form-main form .two-col-row,
.facility-form-main form .three-col-row,
#ds_department_form.ds-department-form .two-col-row,
#ds_department_form.ds-department-form .three-col-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  gap: 10px;
  align-items: flex-start;
  box-sizing: border-box;
}
.facility-form-main form .two-col-row > div,
.facility-form-main form .three-col-row > div,
#ds_department_form.ds-department-form .two-col-row > div,
#ds_department_form.ds-department-form .three-col-row > div {
  flex: 1 1 0;
  min-width: 0;
}
.facility-form-main form .buttons_row,
#ds_department_form.ds-department-form .buttons_row {
  margin-top: 8px;
  display: flex;
  gap: 12px;
}
.facility-form-main form .buttons_row button,
#ds_department_form.ds-department-form .buttons_row button {
  flex: 1;
  height: 40px;
}
.facility-form-main form.loading,
#ds_department_form.ds-department-form.loading {
  opacity: 0.5;
  pointer-events: none;
}

.facility-form-main #facility-main-form .facility-main-form-actions,
.facility-form-department-detail #ds_department_form .department-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}
.facility-form-main #facility-main-form .facility-main-form-actions button,
.facility-form-department-detail #ds_department_form .department-form-actions button {
  flex: unset;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.facility-form-main[data-facility-mode=new] #facility-main-form .facility-main-form-actions .save_facility_btn {
  grid-column: 1/-1;
}

.facility-form-department-detail[data-dept-mode=new] #ds_department_form .department-form-actions .save_department_btn {
  grid-column: 1/-1;
}

.facility-form-main[data-facility-mode=readonly] #facility-main-form .facility-main-form-actions {
  display: none !important;
  margin-top: 0 !important;
}

.facility-form-department-detail[data-dept-mode=readonly] #ds_department_form .department-form-actions {
  display: none !important;
  margin-top: 0 !important;
}

.facility-form-departments {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.facility-form-departments .departments-list {
  flex: 1;
  min-height: 120px;
  max-height: max-content;
  overflow-y: auto;
}
.facility-form-departments .departments-list-footer {
  flex-shrink: 0;
  padding-top: 12px;
}
.facility-form-departments .departments-list-footer .add-department-btn {
  width: 100%;
  justify-content: center;
}
.facility-form-departments .departments-empty,
.facility-form-departments .departments-no-items {
  color: #717680;
  font-size: 13px;
  text-align: center;
  margin-top: 24px;
  padding: 0 8px;
}

.department-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.department-item__name {
  font-size: 14px;
  color: #181D27;
  font-weight: 500;
}
.department-item:hover {
  background: #F0EDE4;
}
.department-item.active {
  background: #EDE8D6;
  border: 1px solid #B29B51;
}
.department-item svg {
  flex-shrink: 0;
}

.facility-form-department-detail .department-empty {
  color: #717680;
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
}

#ds_department_form.ds-department-form input[type=radio] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0 6px 0 0;
  vertical-align: middle;
  accent-color: #B29B51;
}
#ds_department_form.ds-department-form .department-form-group {
  margin-bottom: 14px;
}
#ds_department_form.ds-department-form .department-form-group:last-child {
  margin-bottom: 0;
}
#ds_department_form.ds-department-form .department-form-section {
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: none;
}
#ds_department_form.ds-department-form .department-form-section:last-of-type {
  margin-bottom: 0;
}
#ds_department_form.ds-department-form .department-form-section__title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #181D27;
}
#ds_department_form.ds-department-form .department-form-hint {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 500;
  color: #535862;
}
#ds_department_form.ds-department-form {
  /* Tom Select wraps with .ts-wrapper when select has class `choices-select` — style there if needed. */
}
#ds_department_form.ds-department-form .preferred-method-radios {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 12px;
}
#ds_department_form.ds-department-form .preferred-method-radios .department-radio-label--inline {
  margin-bottom: 0;
}
#ds_department_form.ds-department-form .retrieval-contact-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#ds_department_form.ds-department-form .department-form-group--rush-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}
#ds_department_form.ds-department-form .department-form-group--rush-row input[type=text] {
  flex: 1;
  max-width: 140px;
}
#ds_department_form.ds-department-form .department-inline-label {
  font-size: 13px;
  font-weight: 500;
  color: #414651;
  margin: 0;
  flex: 0 0 auto;
}
#ds_department_form.ds-department-form .rush-available-radios {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
#ds_department_form.ds-department-form .department-radio-label--inline {
  display: inline-flex;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  gap: 6px;
  font-weight: 600;
  color: #181D27;
  cursor: pointer;
}
#ds_department_form.ds-department-form .turnaround-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
#ds_department_form.ds-department-form .turnaround-row input[type=number],
#ds_department_form.ds-department-form .turnaround-row select {
  margin-bottom: 0;
}
#ds_department_form.ds-department-form .turnaround-row input[type=number] {
  width: 72px;
  flex: 0 0 auto;
}
#ds_department_form.ds-department-form .turnaround-row select {
  flex: 1;
  min-width: 140px;
}
#ds_department_form.ds-department-form .turnaround-row__days {
  font-size: 14px;
  color: #535862;
  flex: 0 0 auto;
}
#ds_department_form.ds-department-form .department-fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
#ds_department_form.ds-department-form .department-fieldset legend {
  font-size: 13px;
  font-weight: 500;
  color: #414651;
  margin-bottom: 8px;
  padding: 0;
}
#ds_department_form.ds-department-form .department-radio-label {
  display: inline-flex;
  align-items: center;
  margin-right: 16px;
  font-weight: 400;
  cursor: pointer;
}

.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row {
  cursor: pointer;
}
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row .facility-table-actions {
  cursor: default;
  min-width: 300px;
}
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row .facility-table-actions__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row #facility_edit_btn,
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row .facility-edit-btn,
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row .facility-departments-toggle {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #BA9B51;
  border-radius: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
  width: fit-content;
  gap: 4px;
  box-sizing: border-box;
}
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row #facility_edit_btn:hover,
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row .facility-edit-btn:hover,
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row .facility-departments-toggle:hover {
  background: #eaeaea;
}
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-parent-row .facility-departments-toggle {
  border-color: #D5D7DA;
}
.dashboard-wrapper .main_content .facilities_table tbody {
  /* No inline style — WP/sanitizers may mangle style="display:none". Class + hidden + !important. */
}
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-dept-expand-row.facility-dept-expand-row--collapsed,
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-dept-expand-row[hidden] {
  display: none !important;
}
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-dept-expand-row {
  cursor: default;
}
.dashboard-wrapper .main_content .facilities_table tbody tr.facility-dept-expand-row > td.child-departments {
  padding: 0px;
  border-bottom: 0px;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-dept-expand-empty {
  margin: 0;
  font-size: 14px;
  color: #717680;
  padding: 24px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-dept-expand-table {
  border-radius: 0px;
  border: 0;
  box-shadow: none;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-dept-expand-table th,
.dashboard-wrapper .main_content .facilities_table tbody .facility-dept-expand-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #E9EAEB !important;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-dept-expand-table th {
  font-weight: 600;
  color: #717680;
  background: #fafafa;
  padding: 14px 12px;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-dept-expand-table td {
  color: #717680;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-dept-expand-table td.facility-dept-expand-table__cell--preferred {
  white-space: nowrap;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-preferred-method {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
  padding: 3px 10px;
  background: #fbf3db;
  border-radius: 5px;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-preferred-method.portal {
  background: #d2ebf7;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-preferred-method__icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  color: #717680;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-preferred-method__svg {
  display: block;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-preferred-method__label {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #717680;
}
.dashboard-wrapper .main_content .facilities_table tbody .facility-preferred-method--empty, .dashboard-wrapper .main_content .facilities_table tbody .facility-preferred-method--unknown {
  font-weight: 500;
}

.roi-dashboard {
  font-size: 14px;
}
.roi-dashboard .roi-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.roi-dashboard .roi-kpi-card {
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  padding: 14px 16px;
}
.roi-dashboard .roi-kpi-card small {
  display: block;
  font-size: 14px;
  color: #717680;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.roi-dashboard .roi-kpi-card .roi-kpi-value {
  font-size: 32px;
  line-height: 1;
  color: #181d27;
}
.roi-dashboard .roi-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.roi-dashboard .roi-stat-cards.roi-stat-cards--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.roi-dashboard .roi-stat-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.roi-dashboard .roi-stat-card:hover {
  border-color: #d0d5dd;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.roi-dashboard .roi-stat-card:focus-visible {
  outline: 2px solid #b29b51;
  outline-offset: 2px;
}
.roi-dashboard .roi-stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f5f0e3;
  color: #b29b51;
  flex-shrink: 0;
}
.roi-dashboard .roi-stat-card--action .roi-stat-card__icon {
  background: #fef3f2;
  color: #d92d20;
}
.roi-dashboard .roi-stat-card--system .roi-stat-card__icon {
  background: #eff8ff;
  color: #155eef;
}
.roi-dashboard .roi-stat-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.roi-dashboard .roi-stat-card__value {
  font-size: 24px;
  line-height: 1.2;
  color: #181d27;
}
.roi-dashboard .roi-stat-card__label {
  font-size: 13px;
  color: #717680;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.roi-dashboard .roi-stat-card__chevron {
  font-size: 22px;
  color: #a4a7ae;
  line-height: 1;
}
.roi-dashboard .roi-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}
.roi-dashboard .roi-side-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.roi-dashboard .roi-side-col.roi-side-col--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1600px) {
  .roi-dashboard .roi-main-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
  .roi-dashboard .roi-side-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.roi-dashboard .roi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.roi-dashboard .roi-panel {
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  overflow: hidden;
}
.roi-dashboard .roi-panel--wide {
  grid-column: span 2;
}
.roi-dashboard .roi-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f1f3;
}
.roi-dashboard .roi-panel__head h3 {
  margin: 0;
  font-size: 16px;
  color: #181d27;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.roi-dashboard .roi-panel__head h3 svg {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.roi-dashboard .roi-panel__head a {
  color: #b29b51;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.roi-dashboard .roi-list,
.roi-dashboard .roi-alerts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.roi-dashboard .roi-patient-name {
  display: block;
  font-size: 15px;
  color: #181d27;
  font-weight: 500;
  margin-bottom: 4px;
}
.roi-dashboard .roi-list li {
  padding: 0;
  border-bottom: 1px solid #f4f4f5;
}
.roi-dashboard .roi-list li:last-child {
  border-bottom: 0;
}
.roi-dashboard .roi-list li .roi-row-title {
  font-size: 14px;
  color: #181d27;
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}
.roi-dashboard .roi-list li small {
  color: #717680;
  font-size: 12px;
  display: block;
}
.roi-dashboard .roi-row-link {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.roi-dashboard .roi-row-link:hover {
  background: #fafafa;
}
.roi-dashboard .roi-row-link:focus-visible {
  outline: 2px solid #b29b51;
  outline-offset: -2px;
}
.roi-dashboard .roi-row-link--compact {
  grid-template-columns: 1fr auto;
}
.roi-dashboard .roi-row-link .roi-row-title,
.roi-dashboard .roi-row-link .roi-patient-name {
  color: #181d27;
}
.roi-dashboard .roi-list__empty {
  padding: 14px 16px !important;
  color: #717680;
  font-size: 14px;
}
.roi-dashboard .request-rush-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  text-align: center;
  font-size: 12px;
  background: #ba9b51;
  color: #ffffff;
  padding: 6px 6px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.roi-dashboard .request-rush-badge--escalated {
  background: #d92d20;
}
.roi-dashboard .roi-row-link--escalated-urgent {
  grid-template-columns: 1fr auto auto auto;
  grid-template-areas: "details status tat badge";
}
.roi-dashboard .roi-row-link--escalated-urgent > div {
  grid-area: details;
}
.roi-dashboard .roi-row-link--escalated-urgent > .request-rush-badge {
  grid-area: badge;
  justify-self: end;
  margin-bottom: 0;
}
.roi-dashboard .roi-row-link--escalated-urgent > .roi-pill:nth-of-type(1) {
  grid-area: status;
}
.roi-dashboard .roi-row-link--escalated-urgent > .roi-pill:nth-of-type(2) {
  grid-area: tat;
}
.roi-dashboard .roi-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #e4e7ec;
  padding: 4px 8px;
  font-size: 13px;
  color: #475467;
  background: #fff;
  white-space: nowrap;
}
.roi-dashboard .roi-pill--rush {
  border-color: #f5deb3;
  background: #fff7e6;
  color: #9a6700;
}
.roi-dashboard .roi-pill--overdue {
  border-color: #fda29b;
  background: #fef3f2;
  color: #b42318;
}
.roi-dashboard .roi-pill--date {
  border-color: #d0d5dd;
  background: #f9fafb;
  color: #667085;
  font-size: 12px;
}
.roi-dashboard .roi-bars {
  padding: 10px 16px 16px;
}
.roi-dashboard .roi-bar {
  display: grid;
  grid-template-columns: 1.4fr 2fr auto;
  gap: 10px;
  align-items: center;
  margin: 20px 0;
}
.roi-dashboard .roi-bar span {
  font-size: 14px;
  color: #344054;
}
.roi-dashboard .roi-bar div {
  height: 8px;
  border-radius: 8px;
  background: #f2f4f7;
  overflow: hidden;
}
.roi-dashboard .roi-bar div i {
  display: block;
  height: 100%;
  background: #b29b51;
  border-radius: 8px;
}
.roi-dashboard .roi-bar strong {
  font-size: 14px;
  color: #667085;
  min-width: 18px;
  text-align: right;
}
.roi-dashboard .roi-alerts li {
  padding: 11px 16px;
  border-bottom: 1px solid #f4f4f5;
  color: #344054;
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.roi-dashboard .roi-alerts li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #d92d20;
  vertical-align: middle;
}
.roi-dashboard .roi-alerts li:last-child {
  border-bottom: 0;
}
.roi-dashboard .roi-alerts li a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.roi-dashboard .roi-alerts li strong {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  color: #181d27;
  margin-bottom: 2px;
}
.roi-dashboard .roi-alerts li .roi-notif-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  color: #717680;
  background: #f5f5f5;
  border: 1px solid #e9eaeb;
  border-radius: 4px;
  padding: 1px 6px;
  text-transform: uppercase;
}
.roi-dashboard .roi-alerts li small {
  display: block;
  font-size: 12px;
  color: #717680;
}
.roi-dashboard .roi-alerts li.is-read:before {
  background: #d0d5dd;
}
.roi-dashboard .roi-alerts li.is-read strong {
  font-weight: 400;
  color: #535862;
}
.roi-dashboard .roi-alerts--action li:before {
  background: #f79009;
}
.roi-dashboard .roi-alerts--action li.is-read:before {
  background: #d0d5dd;
}
.roi-dashboard .roi-alerts--system li:before {
  background: #155eef;
}
.roi-dashboard .roi-alerts--system li.is-read:before {
  background: #d0d5dd;
}
.roi-dashboard .roi-panel__footer-link {
  display: block;
  padding: 12px 16px;
  color: #b29b51;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-top: 1px solid #f0f1f3;
}
.roi-dashboard .roi-panel__footer-link:hover {
  text-decoration: underline;
}
.roi-dashboard .roi-recent-activity__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}
.roi-dashboard .roi-recent-activity__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.roi-dashboard .roi-recent-activity__item:hover {
  background: #fafafa;
}
.roi-dashboard .roi-recent-activity__item small {
  grid-column: 2;
  color: #717680;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}
.roi-dashboard .roi-recent-activity__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f5f5f5;
  flex-shrink: 0;
}
.roi-dashboard .roi-recent-activity__text {
  font-size: 15px;
  color: #181d27;
  line-height: 1.4;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.roi-dashboard .roi-recent-activity__text em {
  display: block;
  font-style: normal;
  color: #717680;
  font-size: 12px;
  margin-top: 2px;
}
@media (max-width: 1100px) {
  .roi-dashboard .roi-stat-cards {
    grid-template-columns: 1fr;
  }
  .roi-dashboard .roi-side-col {
    grid-template-columns: 1fr;
  }
  .roi-dashboard .roi-recent-activity__grid {
    grid-template-columns: 1fr;
  }
}

.roi-dashboard .roi-main-grid .roi-main-col .requests_table thead th {
  padding: 12px 6px;
  font-size: 14px;
}
.roi-dashboard .roi-main-grid .roi-main-col .requests_table thead th svg {
  display: none;
}
.roi-dashboard .roi-main-grid .roi-main-col .requests_table tbody tr td {
  padding: 14px 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
}
.roi-dashboard .roi-main-grid .roi-main-col .requests_table tbody tr td span {
  white-space: nowrap;
}
.roi-dashboard .roi-main-grid .roi-main-col .requests-status-filters .requests-status-filter {
  padding: 6px 8px;
  font-size: 14px;
}

.page-template-page-intake-forms .intake-forms-table thead tr {
  background: #FAFAFA;
}
.page-template-page-intake-forms .intake-forms-table thead tr th {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid #E9EAEB;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #717680;
  white-space: nowrap;
}
.page-template-page-intake-forms .intake-forms-table tbody tr {
  transition: background 0.15s;
}
.page-template-page-intake-forms .intake-forms-table tbody tr:hover td {
  background: #FAFAFA;
}
.page-template-page-intake-forms .intake-forms-table tbody tr td {
  padding: 20px !important;
  background: #fff;
  border-bottom: 1px solid #E9EAEB;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  vertical-align: middle;
}
.page-template-page-intake-forms .intake-form-view-btn {
  max-width: 200px;
  width: fit-content !important;
  height: auto !important;
  font-size: 14px !important;
  padding: 10px 16px;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #BA9B51;
  color: #fff;
  border-radius: 8px;
  line-height: 1 !important;
}
.page-template-page-intake-forms .intake-forms-pagination {
  margin-top: 16px;
}

.intake-form-detail-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.34);
  z-index: 10;
  display: none;
}
.intake-form-detail-overlay.active {
  display: block;
}

#intake_form_detail {
  position: fixed;
  right: -200vw;
  top: 0;
  max-width: 1100px;
  width: 100%;
  height: 100vh;
  background: #FAFAFA;
  z-index: 10000;
  overflow-y: auto;
  transition: right 0.3s;
}
@media (max-width: 992px) {
  #intake_form_detail {
    top: 60px;
  }
}
#intake_form_detail.active {
  right: 0;
}

.intake-form-detail-inner {
  position: relative;
  padding: 40px 45px 60px;
}
@media (max-width: 600px) {
  .intake-form-detail-inner {
    padding: 24px 20px 40px;
  }
}

.intake-form-detail-close {
  width: 36px;
  height: 36px;
  display: flex;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #101828;
  transition: background 0.2s;
  text-align: left;
  padding: 0;
  margin-bottom: 12px;
}

.intake-form-detail-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.ifd-error {
  color: #B42318;
  padding: 20px 0;
  font-size: 14px;
}

#intake_form_detail .content_head {
  margin-bottom: 24px;
}
#intake_form_detail .content_head .title {
  display: flex;
  align-items: center;
  gap: 16px;
}
#intake_form_detail .content_head .title h1 {
  font-size: 20px;
  font-weight: 700;
  color: #181D27;
  margin: 0;
}
#intake_form_detail .intake-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  #intake_form_detail .intake-details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #intake_form_detail .intake-details {
    grid-template-columns: 1fr;
  }
}
#intake_form_detail .intake-details__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#intake_form_detail .intake-details__item.notes, #intake_form_detail .intake-details__item--address {
  grid-column: 1/-1;
}
#intake_form_detail .intake-details__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #535862;
}
#intake_form_detail .intake-details__value {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #181D27;
  word-break: break-word;
}
#intake_form_detail .intake-details__value i {
  font-weight: 400;
  color: #9AA0AC;
}

#intake_form_detail .individual_request__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #181D27;
  margin: 0 0 16px;
}
#intake_form_detail .individual_request__table {
  width: 100%;
  overflow-x: auto;
}
#intake_form_detail .individual_request table {
  border: none;
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 480px;
  border-spacing: 0;
  border: 1px solid #E9EAEB;
  border-radius: 6px;
  overflow: hidden;
}
#intake_form_detail .individual_request table thead tr {
  background: #FAFAFA;
}
#intake_form_detail .individual_request table thead tr th {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #E9EAEB;
  font-weight: 500;
  font-size: 13px;
  color: #717680;
}
#intake_form_detail .individual_request table tbody tr td {
  padding: 18px 16px;
  border-bottom: 1px solid #E9EAEB;
  font-weight: 500;
  font-size: 14px;
  color: #181D27;
  vertical-align: middle;
}
#intake_form_detail .individual_request table tbody tr td.facility, #intake_form_detail .individual_request table tbody tr td.record-type {
  color: #535862;
}
#intake_form_detail .individual_request table tbody tr td a {
  font-weight: 600;
  font-size: 14px;
  color: #9E8543;
  text-decoration: none;
  transition: color 0.2s;
}
#intake_form_detail .individual_request table tbody tr td a:hover {
  color: #6f6036;
}

#intake_form_detail .ifd-documents {
  margin-bottom: 40px;
}
#intake_form_detail .ifd-documents__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
#intake_form_detail .ifd-file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #E9EAEB;
  border-radius: 10px;
  text-decoration: none;
  width: calc(50% - 6px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (max-width: 640px) {
  #intake_form_detail .ifd-file-item {
    width: 100%;
  }
}
#intake_form_detail .ifd-file-item:hover {
  border-color: #B29B51;
  box-shadow: 0 2px 8px rgba(178, 155, 81, 0.12);
}
#intake_form_detail .ifd-file-icon {
  position: relative;
  width: 32px;
  flex-shrink: 0;
}
#intake_form_detail .ifd-file-ext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7px;
  font-weight: 700;
  color: #667085;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
#intake_form_detail .ifd-file-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
#intake_form_detail .ifd-file-label {
  font-size: 12px;
  font-weight: 600;
  color: #344054;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#intake_form_detail .ifd-file-name {
  font-size: 11px;
  color: #667085;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intake-form-facility-card {
  border: 1px solid #E9EAEB;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
  background: #fff;
}
.intake-form-facility-card:last-child {
  margin-bottom: 0;
}
.intake-form-facility-card__title {
  font-size: 13px;
  font-weight: 700;
  color: #344054;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F2F4F7;
  display: flex;
  align-items: center;
  gap: 8px;
}
.intake-form-facility-card__title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B29B51;
  flex-shrink: 0;
}

.page-template-page-intake-forms .ca-rush-badge,
#intake_form_detail .ca-rush-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ba9b51;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 3px 9px;
  border-radius: 5px;
  text-transform: uppercase;
}
.page-template-page-intake-forms .ca-no-rush,
#intake_form_detail .ca-no-rush {
  color: #9AA0AC;
  font-size: 13px;
}

@keyframes ds-spin {
  to {
    transform: rotate(360deg);
  }
}
.ds-spin {
  animation: ds-spin 0.8s linear infinite;
  transform-origin: center;
}

.portal-access-page .ds-portal-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.portal-access-page .ds-portal-notice__left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 260px;
  max-width: 800px;
}
.portal-access-page .ds-portal-notice__left strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1E40AF;
  margin-bottom: 6px;
}
.portal-access-page .ds-portal-notice__left p {
  margin: 0;
  font-size: 13px;
  color: #1E40AF;
  line-height: 1.5;
  opacity: 0.9;
}
.portal-access-page .ds-portal-notice__icon {
  color: #3B82F6;
  flex-shrink: 0;
  margin-top: 2px;
}
.portal-access-page .ds-portal-notice__right {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}
.portal-access-page .ds-portal-notice__right svg {
  color: #3B82F6;
  flex-shrink: 0;
  margin-top: 2px;
}
.portal-access-page .ds-portal-notice__right div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portal-access-page .ds-portal-notice__right strong {
  font-size: 13px;
  font-weight: 600;
  color: #1E40AF;
}
.portal-access-page .ds-portal-notice__date {
  font-size: 14px;
  font-weight: 700;
  color: #1D4ED8;
}
.portal-access-page .ds-portal-notice__edit-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #3B82F6;
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.15s;
  margin-left: 4px;
}
.portal-access-page .ds-portal-notice__edit-btn:hover {
  opacity: 1;
}
.portal-access-page .ds-portal-notice #ds-portal-notice-edit-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.portal-access-page .ds-portal-notice #ds-portal-notice-edit-wrap input[type=date] {
  border: 1px solid #93C5FD;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 13px;
  color: #1E40AF;
  background: #fff;
  outline: none;
}
.portal-access-page .ds-portal-notice #ds-portal-notice-edit-wrap input[type=date]:focus {
  border-color: #3B82F6;
}
.portal-access-page .ds-portal-table-wrap {
  background: #fff;
  border: 1px solid #E9EAEB;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
  overflow: hidden;
}
.portal-access-page .ds-portal-table-wrap .ds-requests-loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  pointer-events: none;
}
.portal-access-page .ds-portal-table-wrap.is-loading .ds-requests-loader {
  display: block;
}
.portal-access-page .ds-portal-table-wrap .ds-requests-loader__inner {
  position: fixed;
  top: 50%;
  left: calc(50% + var(--ds-loader-left-offset, 0px));
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #344054;
  padding: 10px 14px;
}
.portal-access-page .ds-portal-table-wrap .ds-requests-loader__spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #e4e7ec;
  border-top-color: #b29b51;
  animation: ds-requests-loader-spin 0.8s linear infinite;
}
.portal-access-page .ds-portal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  transition: opacity 0.3s, filter 0.3s;
}
.portal-access-page .ds-portal-table.loading {
  opacity: 0.4;
  filter: blur(4px);
  pointer-events: none;
}
.portal-access-page .ds-portal-table thead tr {
  border-bottom: 1px solid #E9EAEB;
}
.portal-access-page .ds-portal-table thead tr th {
  padding: 11px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #717680;
  white-space: nowrap;
  background: #FAFAFA;
  user-select: none;
}
.portal-access-page .ds-portal-table thead tr th.sortable {
  cursor: pointer;
}
.portal-access-page .ds-portal-table thead tr th.sortable:hover {
  color: #414651;
}
.portal-access-page .ds-portal-table thead tr th.sortable .ds-sort-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  opacity: 0.4;
  transition: opacity 0.15s;
}
.portal-access-page .ds-portal-table thead tr th.sortable.sort-asc .ds-sort-icon, .portal-access-page .ds-portal-table thead tr th.sortable.sort-desc .ds-sort-icon {
  opacity: 1;
  color: #B29B51;
}
.portal-access-page .ds-portal-table tbody tr {
  border-bottom: 1px solid #F0F1F3;
  transition: background 0.12s;
}
.portal-access-page .ds-portal-table tbody tr:last-child {
  border-bottom: none;
}
.portal-access-page .ds-portal-table tbody tr:hover {
  background: #FAFAF8;
}
.portal-access-page .ds-portal-table tbody tr td {
  padding: 14px 16px;
  font-size: 14px;
  color: #535862;
  vertical-align: middle;
}
.portal-access-page .ds-portal-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.portal-access-page .ds-portal-name-cell strong {
  font-weight: 500;
  font-size: 14px;
  color: #181D27;
}
.portal-access-page .ds-portal-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.portal-access-page .ds-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #3B82F6;
  text-decoration: none;
  font-size: 13px;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.portal-access-page .ds-portal-link:hover {
  text-decoration: underline;
}
.portal-access-page .ds-portal-link svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.portal-access-page .ds-portal-pw-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.portal-access-page .ds-portal-pw-dots {
  font-family: monospace;
  font-size: 16px;
  letter-spacing: 2px;
  color: #414651;
  user-select: all;
}
.portal-access-page .ds-portal-date--overdue {
  color: #B42318;
  font-weight: 600;
}
.portal-access-page .ds-portal-date--soon {
  color: #B45309;
  font-weight: 600;
}
.portal-access-page .ds-portal-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.portal-access-page .ds-portal-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #E9EAEB;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  color: #535862;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  padding: 0;
}
.portal-access-page .ds-portal-icon-btn:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
  color: #181D27;
}
.portal-access-page .ds-portal-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16px;
  border-top: 1px solid #E9EAEB;
  font-size: 13px;
  color: #717680;
  height: 50px;
}
.portal-access-page .ds-portal-table-footer .ds-portal-pager {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.portal-access-page .ds-portal-table-footer .ds-pager-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid #E9EAEB;
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  color: #535862;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.portal-access-page .ds-portal-table-footer .ds-pager-btn:hover:not(:disabled) {
  background: #F3F4F6;
  border-color: #D1D5DB;
}
.portal-access-page .ds-portal-table-footer .ds-pager-btn.active {
  background: #181D27;
  border-color: #181D27;
  color: #fff;
  font-weight: 600;
}
.portal-access-page .ds-portal-table-footer .ds-pager-btn.disabled, .portal-access-page .ds-portal-table-footer .ds-pager-btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.portal-access-page .ds-portal-pw-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.portal-access-page .ds-portal-pw-wrap input {
  padding-right: 40px !important;
}
.portal-access-page .ds-portal-pw-wrap .ds-portal-pw-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9AA0AC;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.portal-access-page .ds-portal-pw-wrap .ds-portal-pw-toggle:hover {
  color: #535862;
}

.ds-btn-xs {
  font-size: 12px !important;
  padding: 4px 10px !important;
  height: auto !important;
  line-height: 1.4 !important;
}

#ds-portal-form label {
  margin-top: 12px;
}
#ds-portal-form .ds-portal-pw-wrap {
  position: relative;
}
#ds-portal-form .ds-portal-pw-wrap .ds-portal-pw-toggle {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-10px, -50%);
  background: transparent;
  border: 0px;
  outline: none;
  padding: 0px;
  cursor: pointer;
}

.login-log-page .login-log-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 20px;
}
.login-log-page .login-log-filters__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.login-log-page .login-log-filters__field label {
  font-size: 12px;
  font-weight: 500;
  color: #535862;
}
.login-log-page .login-log-filters__field input,
.login-log-page .login-log-filters__field select {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  min-width: 160px;
}
.login-log-page .login-log-filters__actions {
  display: flex;
  gap: 8px;
}
.login-log-page .login-log-filters__actions button,
.login-log-page .login-log-filters__actions .button {
  padding: 7px 34px;
  height: auto;
  margin-bottom: 1px;
}
.login-log-page .login-log-table-wrapper {
  overflow-x: auto;
}
.login-log-page .login-log-table {
  width: 100%;
}
.login-log-page .login-log-table .login-log-user {
  display: flex;
  flex-direction: column;
}
.login-log-page .login-log-table .login-log-user__name {
  font-weight: 600;
  color: #181d27;
}
.login-log-page .login-log-table .login-log-user__login {
  font-size: 12px;
  color: #717680;
}
.login-log-page .login-log-table .login-log-agent {
  display: inline-block;
  max-width: 280px;
  font-size: 12px;
  color: #717680;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.login-log-page .login-log-table .login-log-empty-cell {
  text-align: center;
  padding: 32px 0;
  color: #717680;
}
.login-log-page .login-log-table tbody tr td {
  padding: 15px 12px;
}
.login-log-page .login-log-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}
.login-log-page .login-log-badge--login {
  background: #2e7d32;
}
.login-log-page .login-log-badge--logout {
  background: #8a8a8a;
}
.login-log-page .login-log-empty {
  padding: 40px;
  text-align: center;
  color: #717680;
}
.login-log-page .login-log-pagination {
  margin-top: 20px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.login-log-page .login-log-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  text-decoration: none;
  color: #414651;
}
.login-log-page .login-log-pagination .page-numbers.current {
  background: #b29b51;
  border-color: #b29b51;
  color: #fff;
}

.fee-schedule-page .content_head {
  margin-bottom: 8px;
}

.fee-schedule {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1440px;
}
.fee-schedule__intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fee-schedule__effective {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #535862;
}
.fee-schedule__effective span {
  color: #B29B51;
  font-weight: 600;
}
.fee-schedule__lead {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: #535862;
}
.fee-schedule__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.fee-schedule__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fee-schedule__card {
  background: #ffffff;
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  padding: 20px 22px;
}
.fee-schedule__service-fees {
  padding: 0;
  overflow: hidden;
}
.fee-schedule__table-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: #faf8f4;
  border-bottom: 1px solid #eee7d8;
}
.fee-schedule__table-head span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #B29B51;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fee-schedule__table-head span svg {
  max-width: 20px;
  max-height: 20px;
}
.fee-schedule__table-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fee-schedule__table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid #f0f1f3;
}
.fee-schedule__table-row:last-child {
  border-bottom: 0;
}
.fee-schedule__table-title {
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  color: #181D27;
  margin-bottom: 4px;
}
.fee-schedule__table-title sup {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #B29B51;
  margin-left: 1px;
}
.fee-schedule__table-desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 18px;
  color: #717680;
}
.fee-schedule__table-sum {
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  color: #181D27;
  white-space: nowrap;
}
.fee-schedule__card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #B29B51;
}
.fee-schedule__card-title svg {
  flex-shrink: 0;
  color: #B29B51;
}
.fee-schedule__card-body, .fee-schedule__card-lead {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  color: #535862;
}
.fee-schedule__card-lead {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.fee-schedule__card-body p {
  margin: 0 0 10px;
}
.fee-schedule__card-body p:last-child {
  margin-bottom: 0;
}
.fee-schedule__card-body strong {
  color: #B29B51;
  font-weight: 700;
}
.fee-schedule__card-lead {
  margin-bottom: 14px;
}
.fee-schedule__payment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fee-schedule__payment-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fee-schedule__payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #B29B51;
  flex-shrink: 0;
}
.fee-schedule__payment-icon-img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.fee-schedule__payment-text {
  font-size: 16px;
  line-height: 22px;
  color: #535862;
}
.fee-schedule__payment-text strong {
  color: #B29B51;
  font-weight: 500;
}
.fee-schedule__footnotes {
  padding: 20px 22px 22px;
}
.fee-schedule__footnote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.fee-schedule__footnote-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid #e9eaeb;
}
.fee-schedule__footnote-item:first-child {
  padding-left: 0;
}
.fee-schedule__footnote-item:last-child {
  padding-right: 0;
  border-right: 0;
}
.fee-schedule__footnote-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #faf8f4;
  border: 1px solid #eee7d8;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #B29B51;
  flex-shrink: 0;
}
.fee-schedule__footnote-text {
  font-size: 15px;
  line-height: 24px;
  text-wrap: balance;
  color: #535862;
}
.fee-schedule__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: #faf8f4;
  border: 1px solid #eee7d8;
  border-radius: 10px;
}
.fee-schedule__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #B29B51;
  text-decoration: none;
  transition: color 0.15s ease;
}
.fee-schedule__download:hover {
  color: #9E8543;
}
.fee-schedule__download svg {
  flex-shrink: 0;
}
.fee-schedule__download--disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.fee-schedule__updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 22px;
  color: #717680;
  white-space: nowrap;
}
.fee-schedule__updated svg {
  flex-shrink: 0;
  color: #717680;
}
@media (max-width: 1024px) {
  .fee-schedule__grid {
    grid-template-columns: 1fr;
  }
  .fee-schedule__footnote-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fee-schedule__footnote-item {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid #e9eaeb;
  }
  .fee-schedule__footnote-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media (max-width: 640px) {
  .fee-schedule__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .fee-schedule__table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .fee-schedule__table-sum {
    justify-self: start;
  }
}

.dashboard-wrapper .main_content.ds-productivity-report {
  font-size: 16px;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.dashboard-wrapper .main_content.ds-productivity-report h1 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 6px;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .subtitle {
  color: #6b7280;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .btn-export {
  padding: 10px 18px;
  border: 1px solid #B29B51;
  border-radius: 8px;
  background: #fff;
  color: #B29B51;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.dashboard-wrapper .main_content.ds-productivity-report .btn-export:hover {
  background: #B29B51;
  color: #fff;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-filters {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-filters select,
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-filters .nice-select.ds-nice-select {
  padding: 10px 14px;
  border: 1px solid #d5d7da;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: #1a1a1a;
  height: 44px;
  width: auto !important;
  min-width: 160px;
  max-width: 220px;
  flex: 0 0 auto;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-filters .nice-select.ds-nice-select {
  padding: 2px 30px 2px 14px;
  line-height: 40px;
}
.dashboard-wrapper .main_content.ds-productivity-report .nice-select.ds-report-filter-employee .nice-select-dropdown .list .option:first-child {
  display: block;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-filter-employee-wrap {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-tabs {
  display: inline-flex;
  background: #f3f4f6;
  border: 1px solid #e9eaeb;
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-tab {
  appearance: none;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-tab:hover {
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-tab.is-active {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.06);
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-time-tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  padding: 2px;
  gap: 2px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-time-tab {
  appearance: none;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-time-tab:hover {
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-time-tab.is-active {
  background: #f3f4f6;
  color: #1a1a1a;
  font-weight: 600;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-custom-range {
  display: none;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 100;
  width: auto;
  min-width: 320px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.12);
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-custom-range.is-visible {
  display: inline-flex;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-custom-range .ds-report-date-picker {
  padding: 5px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  border-radius: 5px;
  border: 1px solid #D5D7DA;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23818487' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12'/%3E%3Cpath d='M16 3v4'/%3E%3Cpath d='M8 3v4'/%3E%3Cpath d='M4 11h16'/%3E%3Cpath d='M7 14h.013'/%3E%3Cpath d='M10.01 14h.005'/%3E%3Cpath d='M13.01 14h.005'/%3E%3Cpath d='M16.015 14h.005'/%3E%3Cpath d='M13.015 17h.005'/%3E%3Cpath d='M7.01 17h.005'/%3E%3Cpath d='M10.01 17h.005'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 20px 20px;
  min-width: 130px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-custom-range .ds-report-date-picker:focus {
  outline: none;
  border-color: #a6862e;
  box-shadow: 0 0 0 3px rgba(178, 155, 81, 0.15);
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-custom-range .range-sep {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-custom-range .ds-report-apply-range {
  appearance: none;
  border: none;
  background: #a6862e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
  margin-left: 4px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-custom-range .ds-report-apply-range:hover {
  background: #9a823f;
}
.dashboard-wrapper .main_content.ds-productivity-report .kpi-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.dashboard-wrapper .main_content.ds-productivity-report .kpi-card {
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}
.dashboard-wrapper .main_content.ds-productivity-report .kpi-label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.dashboard-wrapper .main_content.ds-productivity-report .kpi-value {
  font-size: 28px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #1a1a1a;
  margin: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .kpi-unit {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 2px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview {
  margin-bottom: 48px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: transparent;
  border-top: 1px solid #e9eaeb;
  border-bottom: 1px solid #e9eaeb;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-card {
  appearance: none;
  border: none;
  background: #fff;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.15s ease;
  border-right: 1px solid #e9eaeb;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-card:last-child {
  border-right: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-card:hover {
  background: #fafafa;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-card.is-active {
  background: #fff;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-card.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 3px;
  background: #a6862e;
  border-radius: 2px 2px 0 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 8px;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-trend {
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: #6b7280;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-trend.is-up {
  color: #16a34a;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-trend.is-down {
  color: #dc2626;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-value {
  font-size: 32px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #1a1a1a;
  line-height: 1.1;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-unit {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  margin-left: 2px;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-sparkline-wrap {
  width: 90px;
  flex: 0 0 90px;
  height: 40px;
}
.dashboard-wrapper .main_content.ds-productivity-report .metric-sparkline {
  width: 90px !important;
  height: 40px !important;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-chart {
  background: transparent;
  padding: 0;
  margin-top: 24px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-chart canvas {
  width: 100% !important;
  height: 280px !important;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-cards,
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-distribution-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card {
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(10, 13, 18, 0.05);
  transition: box-shadow 0.2s ease;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card:hover {
  box-shadow: 0 4px 12px rgba(10, 13, 18, 0.08);
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-menu {
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 16px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-value {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-unit {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  margin-left: 2px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-trend {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-trend.is-up {
  color: #16a34a;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-trend.is-down {
  color: #dc2626;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .trend-note {
  font-size: 11px;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 4px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-sparkline {
  width: 100%;
  height: 50px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-card .card-sparkline canvas {
  width: 100% !important;
  height: 50px !important;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-card {
  background: #ffffff;
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-grid.is-single {
  grid-template-columns: 1fr;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-grid.is-single .ds-employee-status-card .chart-wrap {
  min-height: 320px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-grid.is-single .ds-employee-status-card .chart-wrap canvas {
  height: 320px !important;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 4px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-head .name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-head .total-line {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin-top: 6px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-card .chart-wrap {
  position: relative;
  width: 100%;
  min-height: 220px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-card .chart-wrap canvas {
  width: 100% !important;
  height: 220px !important;
}
.dashboard-wrapper .main_content.ds-productivity-report section {
  margin-bottom: 40px;
}
.dashboard-wrapper .main_content.ds-productivity-report .section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.dashboard-wrapper .main_content.ds-productivity-report h2 {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .section-note {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-section-card {
  background: #fff;
  margin-bottom: 48px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-section-card .section-head {
  margin-bottom: 20px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s, background-color 0.2s;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card:hover {
  box-shadow: 0 4px 12px rgba(10, 13, 18, 0.08);
  border-color: #d1d5db;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card.is-selected {
  border-color: #B29B51;
  background: #faf8f4;
  box-shadow: 0 4px 12px rgba(178, 155, 81, 0.12);
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card.is-all {
  border-color: transparent;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card.is-all:hover {
  box-shadow: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card.is-all.is-selected {
  background: #faf8f4;
  border-radius: 12px;
  padding: 20px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-chart {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-body {
  flex: 1;
  min-width: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-title {
  font-weight: 600;
  font-size: 16px;
  color: #111;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-label {
  font-size: 13px;
  color: #717680;
  margin-bottom: 4px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-metric {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 8px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-trend {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-trend.is-up {
  color: #2e9e44;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-trend.is-down {
  color: #D92D20;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-stats {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-productivity-card .card-stats .stat-sep {
  color: #9ca3af;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-detail-tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  padding: 2px;
  gap: 2px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-detail-tab {
  appearance: none;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-detail-tab:hover {
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-detail-tab.is-active {
  background: #f3f4f6;
  color: #1a1a1a;
  font-weight: 600;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-detail-panels .ds-detail-panel {
  display: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-detail-panels .ds-detail-panel.is-active {
  display: block;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  margin: 0;
  min-width: 900px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table thead th {
  text-align: left;
  font-size: 15px;
  letter-spacing: 0;
  color: #717680;
  border-bottom: 1px solid #e9eaeb;
  padding: 12px 12px;
  font-weight: 600;
  background: #fafafa;
  text-transform: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table tbody td {
  padding: 26px 12px;
  border-bottom: 1px solid #e9eaeb;
  vertical-align: middle;
  font-weight: 400;
  line-height: 20px;
  color: #535862;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table tbody tr {
  cursor: pointer;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table tbody tr:hover {
  background: #fafafa;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table tbody tr.selected {
  background: #f7f0dc;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table tbody tr.is-inactive td {
  color: #98a2b3;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table tbody tr.is-inactive .emp-name {
  font-weight: 500;
  color: #98a2b3;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-table tbody tr:last-child td {
  border-bottom: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-num {
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.dashboard-wrapper .main_content.ds-productivity-report .emp-name {
  font-weight: 700;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}
.dashboard-wrapper .main_content.ds-productivity-report .pill-green {
  background: #e8f5e9;
  color: #2e7d32;
}
.dashboard-wrapper .main_content.ds-productivity-report .pill-red {
  background: #fbe9e7;
  color: #c0392b;
}
.dashboard-wrapper .main_content.ds-productivity-report .pill-amber {
  background: #fbf3e0;
  color: #b8860b;
}
.dashboard-wrapper .main_content.ds-productivity-report .view-link {
  color: #a6862e;
  font-weight: 700;
  font-size: 14px;
}
.dashboard-wrapper .main_content.ds-productivity-report .stack-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.dashboard-wrapper .main_content.ds-productivity-report .stack-label {
  width: 150px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .stack-bar {
  flex: 1;
  display: flex;
  height: 24px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e9eaeb;
  background: #fff;
}
.dashboard-wrapper .main_content.ds-productivity-report .stack-seg {
  height: 100%;
}
.dashboard-wrapper .main_content.ds-productivity-report .stack-total {
  width: 40px;
  text-align: right;
  font-size: 14px;
  color: #6b7280;
  flex-shrink: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.dashboard-wrapper .main_content.ds-productivity-report .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
}
.dashboard-wrapper .main_content.ds-productivity-report .legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.dashboard-wrapper .main_content.ds-productivity-report .detail-card {
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}
.dashboard-wrapper .main_content.ds-productivity-report .detail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dashboard-wrapper .main_content.ds-productivity-report .detail-head h3 {
  margin: 0;
  font-size: 18px;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-productivity-report .detail-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.dashboard-wrapper .main_content.ds-productivity-report .tile {
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}
.dashboard-wrapper .main_content.ds-productivity-report .tile .kpi-value {
  font-size: 22px;
}
.dashboard-wrapper .main_content.ds-productivity-report .stage-block {
  margin-bottom: 20px;
}
.dashboard-wrapper .main_content.ds-productivity-report .stage-title {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.dashboard-wrapper .main_content.ds-productivity-report .check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.dashboard-wrapper .main_content.ds-productivity-report .check-label {
  width: 280px;
  font-size: 14px;
  color: #374151;
  flex-shrink: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .progress {
  flex: 1;
  height: 8px;
  background: #f1f1f1;
  border-radius: 6px;
  overflow: hidden;
}
.dashboard-wrapper .main_content.ds-productivity-report .progress-fill {
  height: 100%;
  background: #a6862e;
}
.dashboard-wrapper .main_content.ds-productivity-report .check-pct {
  width: 44px;
  text-align: right;
  font-size: 13px;
  color: #6b7280;
  flex-shrink: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.dashboard-wrapper .main_content.ds-productivity-report .mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .mini-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #e9eaeb;
}
.dashboard-wrapper .main_content.ds-productivity-report .mini-list li:last-child {
  border-bottom: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .aging-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 150px;
  margin-bottom: 8px;
}
.dashboard-wrapper .main_content.ds-productivity-report .aging-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.dashboard-wrapper .main_content.ds-productivity-report .aging-bar {
  width: 60%;
  border-radius: 4px 4px 0 0;
  min-height: 4px;
}
.dashboard-wrapper .main_content.ds-productivity-report .aging-count {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.dashboard-wrapper .main_content.ds-productivity-report .aging-label {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
  text-align: center;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-distribution {
  background: #ffffff;
  border: 1px solid #e9eaeb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-dist-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-dist-row:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-dist-label {
  width: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  flex-shrink: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-dist-bar {
  flex: 1;
  height: 10px;
  background: #f1f1f1;
  border-radius: 6px;
  overflow: hidden;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-dist-fill {
  height: 100%;
  background: #a6862e;
  border-radius: 6px;
  min-width: 4px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-dist-count {
  width: 50px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-empty {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-content-wrapper {
  position: relative;
  min-height: 200px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-content-wrapper.is-loading .ds-report-loader {
  display: flex;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-loader {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  flex-direction: column;
  gap: 12px;
  border-radius: 8px;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #e9eaeb;
  border-top-color: #a6862e;
  border-radius: 50%;
  animation: ds-report-spin 0.8s linear infinite;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-loader-text {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #9ca3af;
  cursor: help;
  vertical-align: middle;
  margin-left: 0px;
  margin-top: -10px;
  position: relative;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-tooltip svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-tooltip:hover, .dashboard-wrapper .main_content.ds-productivity-report .ds-report-tooltip:focus {
  color: #a6862e;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-tooltip-text {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  padding: 10px 12px;
  background: #1f2937;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
  pointer-events: none;
}
.dashboard-wrapper .main_content.ds-productivity-report .ds-report-tooltip-text.is-visible {
  display: block;
}

@keyframes ds-report-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1200px) {
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-cards,
  .dashboard-wrapper .main_content.ds-productivity-report .ds-tat-distribution-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-filters {
    width: 100%;
    justify-content: flex-start;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .kpi-row,
  .dashboard-wrapper .main_content.ds-productivity-report .detail-tiles,
  .dashboard-wrapper .main_content.ds-productivity-report .two-col {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .dashboard-wrapper .main_content.ds-productivity-report .page-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-tabs,
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-time-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-filters {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-custom-range {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    box-shadow: none;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-custom-range .ds-report-date-picker {
    flex: 1 1 auto;
    min-width: 0;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .kpi-row,
  .dashboard-wrapper .main_content.ds-productivity-report .detail-tiles,
  .dashboard-wrapper .main_content.ds-productivity-report .two-col {
    grid-template-columns: 1fr;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-cards {
    grid-template-columns: 1fr;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-tat-overview-cards,
  .dashboard-wrapper .main_content.ds-productivity-report .ds-tat-distribution-cards {
    grid-template-columns: 1fr;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-card {
    border-right: none;
    border-bottom: 1px solid #e9eaeb;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-report-overview-card:last-child {
    border-bottom: none;
  }
  .dashboard-wrapper .main_content.ds-productivity-report .ds-employee-status-grid {
    grid-template-columns: 1fr;
  }
}
.dashboard-wrapper .main_content.ds-report-guide {
  scroll-behavior: smooth;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* ---------------------------------------------------------------- */
  /* Table of contents                                                */
  /* ---------------------------------------------------------------- */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc {
  position: sticky;
  top: 24px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #98a2b3;
  margin-bottom: 12px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-groups {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-groups > li {
  counter-increment: toc;
  list-style: none;
  margin: 0 0 14px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-groups > li:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-group {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.15s ease;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-group::before {
  content: counter(toc) ". ";
  color: #98a2b3;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-group:hover, .dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-group:focus {
  color: #b29b51;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-children {
  list-style: none;
  margin: 4px 0 0;
  padding: 0 0 0 13px;
  border-left: 1px solid #e9eaeb;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-children li {
  margin: 0;
  list-style: none;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-children a {
  display: block;
  padding: 5px 0 5px 11px;
  margin-left: -14px;
  border-left: 2px solid transparent;
  font-size: 13px;
  line-height: 19px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-children a::before {
  content: none;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-children a:hover, .dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc .toc-children a:focus {
  color: #b29b51;
  border-left-color: #b29b51;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* ---------------------------------------------------------------- */
  /* Tab-level group                                                  */
  /* ---------------------------------------------------------------- */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-group {
  scroll-margin-top: 24px;
  margin-bottom: 56px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-group:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-group .group-head {
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d5d7da;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-group .group-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b29b51;
  background: #f9f5ea;
  border: 1px solid #ecdfbf;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 12px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-group h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-group .group-lead {
  font-size: 15px;
  line-height: 24px;
  color: #6b7280;
  margin: 10px 0 0;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* ---------------------------------------------------------------- */
  /* Sections                                                         */
  /* ---------------------------------------------------------------- */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-body {
  max-width: 860px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-section {
  scroll-margin-top: 24px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e9eaeb;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-section h3 {
  font-size: 19px;
  line-height: 26px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-section > p,
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-section .ds-guide-list {
  font-size: 15px;
  line-height: 24px;
  color: #414651;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-section > p {
  margin: 0 0 14px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-section .section-lead {
  color: #6b7280;
  margin-bottom: 22px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-section code {
  font-size: 13px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #fafafa;
  border: 1px solid #e9eaeb;
  color: #344054;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-section a {
  color: #b29b51;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-list {
  margin: 0 0 14px;
  padding-left: 20px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-list li {
  margin-bottom: 10px;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* ---------------------------------------------------------------- */
  /* Key callout                                                      */
  /* ---------------------------------------------------------------- */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-callout {
  border: 1px solid #e9eaeb;
  border-left: 3px solid #b29b51;
  background: #f9f5ea;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 0 0 22px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-callout p {
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 12px;
  color: #3f3a2c;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-callout p:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* ---------------------------------------------------------------- */
  /* Screenshot of the block being described                          */
  /* ---------------------------------------------------------------- */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-figure {
  margin: 0 0 26px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-figure img {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
  border: 1px solid #e9eaeb;
  border-radius: 10px;
  background: #fafafa;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 20px;
  color: #98a2b3;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* ---------------------------------------------------------------- */
  /* Scenario shared by every figure in a section                     */
  /* ---------------------------------------------------------------- */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-scenario {
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid #ecdfbf;
  border-left: 3px solid #b29b51;
  border-radius: 8px;
  background: #f9f5ea;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-scenario .block-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9a8547;
  margin-bottom: 8px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-scenario .scenario-intro {
  font-size: 14px;
  line-height: 23px;
  margin: 0 0 12px;
  color: #3f3a2c;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-scenario ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-scenario ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 23px;
  color: #4a4433;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-scenario ul li:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-scenario ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cdb579;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-scenario .ds-hl {
  background: #fff;
  border-color: #e2d3ab;
  color: #5c4a17;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* ---------------------------------------------------------------- */
  /* One documented figure                                            */
  /* ---------------------------------------------------------------- */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric {
  padding: 24px 26px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #e9eaeb;
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric:hover {
  border-color: #dcd3ba;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.05);
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f2f4;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric h4 {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-example {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: #7a6320;
  background: #f9f5ea;
  border: 1px solid #ecdfbf;
  border-radius: 20px;
  padding: 2px 10px;
  white-space: nowrap;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-what {
  font-size: 15px;
  line-height: 25px;
  margin: 0 0 18px;
  color: #414651;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric {
  /* Labelled sub-block */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .block-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #98a2b3;
  margin-bottom: 8px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-block {
  margin: 0 0 18px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-block:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-formula code {
  display: block;
  padding: 10px 13px;
  font-size: 13px;
  line-height: 21px;
  background: #fafafa;
  border: 1px solid #e9eaeb;
  border-radius: 6px;
  color: #344054;
  white-space: pre-wrap;
  word-break: break-word;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-steps ol {
  margin: 0;
  padding-left: 20px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-steps ol li {
  font-size: 14px;
  line-height: 23px;
  color: #535862;
  margin-bottom: 7px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-steps ol li:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-counts p {
  font-size: 14px;
  line-height: 23px;
  margin: 0;
  color: #535862;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric {
  /* Worked example */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-case {
  margin: 0 0 18px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-case:last-child {
  margin-bottom: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-case {
  padding: 16px 18px;
  border: 1px solid #dbe4f5;
  border-left: 3px solid #3b5bdb;
  border-radius: 8px;
  background: #f7f9ff;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-case .block-label {
  color: #4a5fa8;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-case .case-given {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-case .case-given li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 23px;
  color: #3f4a63;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-case .case-given li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a7b6dd;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-case .case-then {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px dashed #cbd7ef;
  font-size: 14px;
  line-height: 23px;
  color: #1f2a44;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-note {
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  padding: 12px 15px;
  border-radius: 6px;
  border-left: 3px solid #b8860b;
  background: #fdf6e7;
  color: #6b5410;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-note.is-danger {
  border-left-color: #d92d20;
  background: #fef3f2;
  color: #912018;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-metric .metric-note.is-info {
  border-left-color: #3b5bdb;
  background: #f0f3fd;
  color: #2c3f9e;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* Figures inside prose, so the eye can jump straight to them */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-hl {
  display: inline-block;
  padding: 0 5px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #cbd7ef;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #1f2a44;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* ---------------------------------------------------------------- */
  /* Tables                                                           */
  /* ---------------------------------------------------------------- */
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table-wrap {
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  overflow-x: auto;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  margin: 0;
  min-width: 640px;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  background: #fafafa;
  border-bottom: 1px solid #e9eaeb;
  padding: 11px 14px;
  white-space: nowrap;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table tbody td {
  padding: 14px;
  border-bottom: 1px solid #e9eaeb;
  vertical-align: top;
  line-height: 21px;
  color: #535862;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table tbody tr:last-child td {
  border-bottom: none;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table tbody td:first-child {
  white-space: nowrap;
  color: #1a1a1a;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table .is-muted {
  color: #98a2b3;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table tr.is-highlight td {
  background: #f9f5ea;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table tr.is-system td {
  background: #f4faf5;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table-issues tbody td:first-child {
  white-space: normal;
  min-width: 200px;
  border-left: 3px solid transparent;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table-issues tr.is-danger td:first-child {
  border-left-color: #d92d20;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table-issues tr.is-warning td:first-child {
  border-left-color: #b8860b;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-table-issues tr.is-info td:first-child {
  border-left-color: #3b5bdb;
}
.dashboard-wrapper .main_content.ds-report-guide .ds-guide-footnote {
  margin-top: 18px;
  font-size: 13px;
  line-height: 20px;
  color: #98a2b3;
}
.dashboard-wrapper .main_content.ds-report-guide {
  /* ---------------------------------------------------------------- */
  /* Responsive                                                       */
  /* ---------------------------------------------------------------- */
}
@media (max-width: 1100px) {
  .dashboard-wrapper .main_content.ds-report-guide .ds-guide-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 32px;
  }
}
@media (max-width: 860px) {
  .dashboard-wrapper .main_content.ds-report-guide .ds-guide-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc {
    position: static;
    border: 1px solid #e9eaeb;
    border-radius: 8px;
    padding: 16px;
    background: #fafafa;
  }
}
@media print {
  .dashboard-wrapper .main_content.ds-report-guide .ds-guide-toc {
    display: none;
  }
  .dashboard-wrapper .main_content.ds-report-guide .ds-guide-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .dashboard-wrapper .main_content.ds-report-guide .ds-guide-section {
    break-inside: avoid;
  }
  .dashboard-wrapper .main_content.ds-report-guide .ds-guide-group .group-head {
    break-after: avoid;
  }
}

.ds-tour-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 19;
}

.ds-tour-launcher__toggle {
  appearance: none;
  border: 0;
  border-radius: 100px;
  background: #b29b51;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0px 0px 0px 2px #b29b51;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}
.ds-tour-launcher__toggle:hover {
  background: #9e8543;
  box-shadow: 0px 0px 0px 2px #9e8543;
}

.ds-tour-launcher__panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: 350px;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.18);
  overflow: hidden;
}

.ds-tour-launcher__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #eef0f3;
}

.ds-tour-launcher__close {
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #667085;
}

.ds-tour-launcher__list {
  max-height: 320px;
  overflow: auto;
  padding: 18px 12px;
  display: grid;
  gap: 12px;
}

.ds-tour-launcher__item {
  appearance: none;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ds-tour-launcher__item:hover {
  border-color: #b29b51;
  background: #faf8f3;
}

.ds-tour-launcher__item-title {
  font-size: 13px;
  font-weight: 600;
  color: #181d27;
}

.ds-tour-launcher__item-meta {
  font-size: 11px;
  color: #667085;
}

.ds-tour-launcher__empty {
  margin: 4px;
  font-size: 13px;
  color: #667085;
}

body,
html {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Inter", sans-serif;
}
body *,
html * {
  box-sizing: border-box;
}
body #wpadminbar,
html #wpadminbar {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
body #wpadminbar:hover,
html #wpadminbar:hover {
  opacity: 1;
}

h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2em;
  color: #181D27;
  margin: 0 0 15px;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: #535862;
  margin: 0 0 15px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  appearance: none;
  height: 44px;
  color: #414651;
  background-color: white;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s;
  border: 1px solid #D5D7DA;
  cursor: pointer;
}
.button.black {
  height: 44px;
  width: 100%;
  color: white;
  background-color: #0A0D12;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.3s;
}
.button.black:hover {
  background-color: #9E8543;
}
.button.gold {
  height: 44px;
  width: 100%;
  max-width: 200px;
  color: white;
  background-color: #B29B51;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.button.gold:hover {
  background-color: rgb(144.1912350598, 125.1314741036, 63.8087649402);
}
.button.white {
  height: 44px;
  width: 100%;
  max-width: 200px;
  color: #414651;
  background-color: white;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s;
  border: 1px solid #D5D7DA;
  cursor: pointer;
}
.button.white:hover {
  color: #B29B51;
}
.button.red {
  height: 44px;
  width: 100%;
  max-width: 200px;
  color: #fff;
  background-color: #D92D20;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #D92D20;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button.red:hover {
  background-color: #b91c1c;
  border-color: #b91c1c;
}
.button.red:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.button.secondary {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 4px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
}
.button.secondary:hover {
  background: #eaeaea;
}
.button.red {
  background: #f44336;
  border: 1px solid #f44336;
  color: #ffffff;
}
.button.red:hover {
  background: #d43326;
  border: 1px solid #d43326;
}
.button--sm {
  height: auto;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 20px;
}
.button.success {
  background: #2f9e44;
  border: 1px solid #2f9e44;
  color: #fff;
}
.button.success:hover {
  background: #248232;
}
.button.info {
  background: #3b5bdb;
  border: 1px solid #3b5bdb;
  color: #fff;
}
.button.info:hover {
  background: #304d99;
}
.button.warning {
  background: #ef9f27;
  border: 1px solid #ef9f27;
  color: #fff;
}
.button.warning:hover {
  background: #d48f1a;
}
.button.info {
  background: #3b5bdb;
  border: 1px solid #3b5bdb;
  color: #fff;
}
.button.info:hover {
  background: #304d99;
}

.status {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 12px;
  background: #ECFDF3;
  border: 1px solid #ABEFC6;
  border-radius: 22px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  /* identical to box height, or 150% */
  text-align: center;
  color: #067647;
  width: fit-content;
}
.status.yellow {
  border-color: #FEDF89;
  background-color: #FFFAEB;
  color: #B54708;
}
.status.red {
  border-color: #FECDCA;
  background-color: #FEF3F2;
  color: #B42318;
}
.status.blue {
  background: #EFF8FF;
  border-color: #B2DDFF;
  color: #175CD3;
}

.main_content {
  width: 100%;
  max-width: min(100vw - 300px, 1080px);
  margin: 0 auto;
  padding: 32px;
}
.main_content .content_head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.main_content .content_head .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #181D27;
  margin: 0;
}
.main_content .content_head .title p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #535862;
}
.main_content .content_head .details {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main_content .content_head .details .filters {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 4px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #D5D7DA;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  text-decoration: none;
  transition: background 0.3s;
}
.main_content .content_head .details .filters:hover {
  background: #eaeaea;
}
@media (max-width: 768px) {
  .main_content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .main_content .table_wrapper {
    margin-right: -15px !important;
    margin-left: -15px !important;
    width: calc(100% + 30px) !important;
  }
  .main_content .table_wrapper table {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .main_content .content_head {
    flex-direction: column;
  }
  .main_content .content_head .title p {
    margin-bottom: 0;
  }
  .main_content .content_head .details {
    gap: 8px;
  }
  .main_content .content_head .details input.search {
    width: 100%;
  }
}

.button-logout,
.support-message-btn {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  color: #414651;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
.button-logout:hover,
.support-message-btn:hover {
  color: #B29B51;
  background-color: #FAFAFA;
}

.hidden-select {
  display: none;
}

.nice-select.ds-nice-select.invalid {
  border-color: #F44336;
}

.nice-select.ds-nice-select {
  height: 40px;
  padding: 2px 12px;
  width: 100%;
}
.nice-select.ds-nice-select.open .nice-select-dropdown .list {
  margin: 0;
}
.nice-select.ds-nice-select.open .nice-select-dropdown .list .option {
  line-height: 36px;
}
.nice-select.ds-nice-select.open .nice-select-dropdown .list .option:first-child {
  display: none;
}
.nice-select.ds-nice-select.open .nice-select-dropdown .list .option[data-value=delete] {
  color: #F44336;
}

.request-file-vis-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
  flex-direction: column;
}

.request-file-vis-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #535862;
  cursor: pointer;
  user-select: none;
}
.request-file-vis-label input[type=checkbox] {
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid #D5D7DA;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s, background-color 0.15s;
}
.request-file-vis-label input[type=checkbox]:checked {
  background-color: #B29B51;
  border-color: #B29B51;
}
.request-file-vis-label input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.request-file-vis-label input[type=checkbox]:focus-visible {
  outline: 2px solid #9E8543;
  outline-offset: 2px;
}

.request-file-vis-hint {
  font-size: 12px;
  color: #414651;
  opacity: 0.7;
}

.info-box {
  position: relative;
}
.info-box .info-box-wrapper {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  gap: 12px;
  background: #f2f5f7;
  border-left: 4px solid;
  border-radius: 5px;
}
.info-box .info-box-wrapper .info-box-content .info-box-content-title {
  font-size: 16px;
  line-height: 1.5;
}
.info-box .info-box-wrapper .info-box-content .info-box-content-description {
  font-size: 14px;
  line-height: 1.4;
  color: #535862;
  margin-top: 3px;
}
.info-box.warning .info-box-wrapper {
  background: rgba(240, 159, 40, 0.1254901961);
  border-left: 4px solid #f09f28;
}
.info-box.warning .info-box-wrapper .info-box-icon svg {
  stroke: #633905;
}
.info-box.warning .info-box-wrapper .info-box-content .info-box-content-title {
  color: #633905;
}
.info-box.warning .info-box-wrapper .info-box-content .info-box-content-description {
  color: #875211;
}

.date-picker {
  padding: 5px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
  border-radius: 5px;
  border: 1px solid #D5D7DA;
  margin-top: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23818487' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12'/%3E%3Cpath d='M16 3v4'/%3E%3Cpath d='M8 3v4'/%3E%3Cpath d='M4 11h16'/%3E%3Cpath d='M7 14h.013'/%3E%3Cpath d='M10.01 14h.005'/%3E%3Cpath d='M13.01 14h.005'/%3E%3Cpath d='M16.015 14h.005'/%3E%3Cpath d='M13.015 17h.005'/%3E%3Cpath d='M7.01 17h.005'/%3E%3Cpath d='M10.01 17h.005'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 20px 20px;
}

.sidebar-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

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