@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 .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 2px;
  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;
}

.generate-docs-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
  width: 100%;
}
.generate-docs-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #344054;
  cursor: grab;
  transition: background 0.15s, box-shadow 0.15s;
  user-select: none;
}
.generate-docs-list__item:nth-child(odd) {
  background: #f9fafb;
}
.generate-docs-list__item:active {
  cursor: grabbing;
}
.generate-docs-list__item.drag-over {
  background: #eef4ff;
  box-shadow: 0 0 0 2px #B29B51;
}
.generate-docs-list__item.dragging {
  opacity: 0.4;
}
.generate-docs-list__item svg {
  flex-shrink: 0;
  color: #98a2b3;
}
.generate-docs-list__drag-handle {
  color: #d0d5dd !important;
  cursor: grab;
}

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

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 .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: 14px;
  line-height: 1.2em;
  color: #535862;
}
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;
}

.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 .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: 400px;
}
.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;
}
.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;
}
.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;
}
.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 td .request-rush-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  text-align: center;
  font-size: 12px;
  background: #ba9b51;
  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 td .request-rush-badge svg {
  max-width: 14px;
}
.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(.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;
  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]), .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 {
  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] {
  margin: 0 8px 0 0;
}
.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;
}
.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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  display: flex;
}
#request-upload-form .custom-file-upload.has-file .file-upload-container,
#ds_department_form .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 {
  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;
}
#request-upload-form .custom-file-upload .file-preview .file-preview-text,
#ds_department_form .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 {
  margin-left: auto;
  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]), .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 {
  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] {
  margin: 0 8px 0 0;
}
.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]), .prepay_edit_form .inputs_wrapper textarea, .prepay_edit_form .inputs_wrapper select, .postpay_edit_form .inputs_wrapper input:not([type=checkbox]), .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, .postpay_edit_form .inputs_wrapper .custom-treatment-dates-checkbox label, .postpay_edit_form .inputs_wrapper .toggle-group 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], .postpay_edit_form .inputs_wrapper .custom-treatment-dates-checkbox input[type=checkbox], .postpay_edit_form .inputs_wrapper .toggle-group input[type=checkbox] {
  margin: 0 8px 0 0;
}
.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;
  gap: 9px;
}
#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-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 .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 {
  pointer: cursor;
  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;
}
#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;
}
#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 .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 .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,
#cm_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 .internal-note-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 1px 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.02em;
  background: #FDF3DC;
  color: #92700A;
  border: 1px solid #F0D98A;
}
#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;
  gap: 14px;
  color: #535862;
}
#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;
}

#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;
}

.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 .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: 290px;
}
#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 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);
}

.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 .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 > 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 .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 .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;
}
#request_detail .request_details_main .activity_and_notes,
#cm_request_detail .request_details_main .activity_and_notes,
#company_admin_request_detail .request_details_main .activity_and_notes {
  position: relative;
}
#request_detail .request_details_main .activity_and_notes .tabs-content > div,
#cm_request_detail .request_details_main .activity_and_notes .tabs-content > div,
#company_admin_request_detail .request_details_main .activity_and_notes .tabs-content > div {
  display: none;
}
#request_detail .request_details_main .activity_and_notes .tabs-content > div.active,
#cm_request_detail .request_details_main .activity_and_notes .tabs-content > div.active,
#company_admin_request_detail .request_details_main .activity_and_notes .tabs-content > div.active {
  display: block;
}
#request_detail .request_details_main .activity_and_notes .tabs-nav,
#cm_request_detail .request_details_main .activity_and_notes .tabs-nav,
#company_admin_request_detail .request_details_main .activity_and_notes .tabs-nav {
  position: absolute;
  right: 0;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: #F2f2F4;
  border-radius: 7px;
}
#request_detail .request_details_main .activity_and_notes .tabs-nav button,
#cm_request_detail .request_details_main .activity_and_notes .tabs-nav button,
#company_admin_request_detail .request_details_main .activity_and_notes .tabs-nav button {
  background: #F2f2F4;
  padding: 10px 20px;
  font-weight: bold;
  transition: 0.2s all;
}
#request_detail .request_details_main .activity_and_notes .tabs-nav button.active, #request_detail .request_details_main .activity_and_notes .tabs-nav button:hover,
#cm_request_detail .request_details_main .activity_and_notes .tabs-nav button.active,
#cm_request_detail .request_details_main .activity_and_notes .tabs-nav button:hover,
#company_admin_request_detail .request_details_main .activity_and_notes .tabs-nav button.active,
#company_admin_request_detail .request_details_main .activity_and_notes .tabs-nav 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;
}
.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;
}
#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 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;
}
#edit_case_manager_modal .modal_content form label span {
  color: #B29B51;
}
#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 .notif-bell {
  cursor: pointer;
}
.notifications .notif-dot {
  position: absolute;
  top: -10px;
  right: -5px;
  border-radius: 50%;
}
.notifications .notif-dot.hidden {
  display: none;
}
.notifications .notif-dot svg.hidden {
  display: none;
}
.notifications .notif-dot svg.active {
  height: 16px;
  width: auto;
  margin: 6px 0;
}
.notifications .notif-dot svg.active circle.main {
  fill: #17B26A;
}
.notifications .notif-dot svg.active circle:not(.main) {
  stroke: #17B26A;
}
.notifications .notif-dropdown {
  position: absolute;
  right: 0;
  top: 36px;
  width: 350px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 99999999;
  overflow-y: scroll;
  max-height: 420px;
  /* 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 .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);
}
.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: 14px;
  line-height: 1.1;
}
.notifications .notif-item__content .notif-item__description {
  font-size: 12px;
  color: #646970;
}
.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: 50%;
  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: #17B26A;
  box-shadow: 0 0 0px 3px rgba(23, 178, 106, 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-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-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;
}
.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-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;
}
.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;
}

.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 {
  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;
}
