/* Main App Colors  */
/* ============= fonts =========== */
@font-face {
  font-family: public-sans;
  src: url("/fonts/PublicSans-Regular.ttf");
}
@font-face {
  font-family: open-sans;
  src: url("/fonts/OpenSans-Regular.ttf");
}
/* ============= layout =========== */
.layout-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 72px);
  width: 100%;
}
/* ============= loader =========== */
.dashboard-refresh-loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: absolute;
  margin: auto;
  top: 0;
  z-index: 130000;
  left: 0;
  right: 0;
  bottom: 0;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dashboard-refresh-loader-overlay {
  position: absolute;
  height: 100vh;
  width: 100vw;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: 120000;
  background-color: black;
}
/* ============= overlays =========== */
#care-agent-drawer-overlay {
  height: calc(100vh - 72px);
  width: 100vw;
  background-color: black;
  opacity: 0.5;
  position: absolute;
  top: -50px;
  z-index: 10;
}
#care-agent-drawer-overlay:hover {
  cursor: pointer;
}
/* ============= drawer =========== */
#care-agent-drawer {
  height: calc(100vh - 122px);
  width: 100vw;
  position: absolute;
  z-index: 11;
}
#care-agent-drawer-content {
  height: calc(100vh - 72px);
  min-width: 400px;
  width: 60%;
  max-width: 800px;
  position: fixed;
  top: 72px;
  right: 0;
  background-color: white;
  border-left: 1px solid #E4E9ED;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  z-index: 11;
}
#care-agent-drawer-content.wide {
  width: 80%;
  max-width: 1200px;
}
#care-agent-drawer-body {
  background-color: #F4F6F6;
  padding: 0;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
}
#care-agent-drawer-body.space-between {
  justify-content: space-between;
}
#inner-care-agent-drawer {
  height: 100%;
  z-index: 8;
}
/* ============= drawer containers =========== */
.drawer-container {
  /* Patient Detail Container */
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;
  width: 100%;
  /*max-height: 50%;*/
  /*overflow-y: auto;*/
  height: fit-content;
  background-color: #FFFFFF;
}
.drawer-container button:not(.pdf-input-button) {
  /* Button */
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 40px;
  gap: 10px;
  /*width: 213px;*/
  height: 46px;
  /* Neutral/Neutral 60 */
  /*background: @colorPrimaryBlue;*/
  border-radius: 4px;
  font-size: 16px;
  /*color: @colorWhite;*/
  border: none;
  align-self: flex-end;
}
.drawer-container button[submit] {
  background: #0268E0;
  color: #FFFFFF;
}
.drawer-container button[cancel] {
  background: #575757;
  color: #FFFFFF;
}
.drawer-container button[disabled]:not(.pdf-input-button) {
  background: #BEC4D0 !important;
}
.drawer-container button.drawer-container-queue-link {
  height: fit-content;
  margin-left: auto;
  padding: 8px 16px;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid #3D4D6B;
  transition: all 0.2s;
}
.drawer-container button.drawer-container-queue-link:hover {
  background-color: #F4F6F6;
}
.drawer-container-submit-buttons {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0px;
  gap: 10px;
  width: 100%;
}
.drawer-container-title {
  /* Content */
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0px;
  gap: 8px;
}
.drawer-container-title-text {
  /* Patient Detail Container */
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
}
.drawer-container-section-subtitle {
  font-size: 14px;
}
.drawer-container-section-subtitle-text {
  font-weight: 700;
}
.drawer-container-section-empty {
  width: 100%;
  padding: 8px;
  text-align: center;
}
.drawer-container-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 4px;
}
.drawer-container-section textarea {
  width: 100%;
  text-indent: 0;
  white-space: pre-line;
  overflow: hidden;
  /* Hides the scrollbar */
  border: none;
  /* Removes the border */
  resize: none;
  /* Prevents resizing */
  background: none;
}
.drawer-container-section.outstanding {
  background-color: #FCDDDD;
  padding: 8px 0;
  border-radius: 4px;
}
.drawer-container-section.outstanding img {
  padding: 8px;
}
.drawer-container-section ul {
  width: 100%;
  padding-right: 32px;
  margin: 0;
}
.drawer-container-section ul li {
  vertical-align: top;
}
.patient-detail-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.patient-detail-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  width: 100%;
}
.patient-detail-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  width: 200px;
}
.patient-detail-item.double-wide {
  width: 328px;
}
.patient-detail-item-header {
  font-size: 14px;
  color: #3D4D6B;
}
/* ============= icons =========== */
.nav-arrow,
.nav-icon {
  width: 10px;
  height: 10px;
  margin: 5px 5px;
}
.nav-arrow {
  transition: all 0.2s;
}
.card-arrow,
.rejection-reason-dropdown-icon {
  transform: rotate(0);
}
.card-arrow-expanded,
.rejection-reason-dropdown-icon-expanded {
  transform: rotate(-180deg);
}
/* ============= navbar =========== */
.navbar {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E4E9ED;
  width: 100%;
  height: 72px;
  /*top: 86px;
    left: 40px;*/
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 16px;
  padding-right: 22px;
  padding-bottom: 16px;
  padding-left: 22px;
  align-items: center;
}
.navbar-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}
.navbar-logo {
  width: 180px;
  height: 32.05479431;
  cursor: pointer;
}
.navbar-button {
  border-radius: 4px;
  padding: 8px;
  gap: 4px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  color: #222;
}
.navbar-button:hover {
  background-color: #E1F1FF;
  cursor: pointer;
  transition: all 0.2s;
}
.navbar-button.active {
  font-weight: 700;
  background-color: #E1F1FF;
}
/* ============= landing =========== */
.landing-content {
  flex: 1;
  /*overflow-y: auto;*/
}
.landing-logo {
  transform: scale(1.5, 1.5);
}
.landing-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  box-sizing: border-box;
  row-gap: 120px;
  padding: 40px 28px 40px 28px;
  align-self: stretch;
  flex-grow: 4;
}
.landing-section {
  display: flex;
  justify-content: center;
  grid-column-gap: 24px;
}
.landing-section-item {
  border-radius: 4px;
  padding: 16px 40px 16px 40px;
  background-color: #0268E0;
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
}
.landing-disclaimer {
  white-space: pre-line;
  text-align: center;
  margin: 0 10%;
}
/* ============= topbar =========== */
.top-bar {
  background-color: #FFFFFF;
  border-bottom: 1px;
  /*border-radius: 4px;*/
  height: 50px;
  /* padding: 8px 22px 8px 22px;*/
}
.top-bar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 22px 8px 22px;
  border-bottom: 1px solid #E4E9ED;
  height: 50px;
}
.top-bar-tenant {
  width: 244px;
  position: relative;
  display: inline-block;
}
.top-bar-tenant-dropdown {
  width: 204px;
  height: 34px;
  border: 1px solid #E4E9ED;
  border-radius: 4px;
  padding-left: 8px;
  padding-right: 8px;
  background-color: #F4F6F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.top-bar-tenant-dropdown:hover {
  background-color: #E4E9ED;
  transition: all 0.2s;
}
.top-bar-tenant-dropdown-content {
  position: absolute;
  background-color: #F4F6F6;
  min-width: 160px;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 2;
  border: 1px solid #E4E9ED;
  border-radius: 4px;
  padding: 4px 8px 4px 8px;
  overflow-y: auto;
  max-height: 400px;
}
/* ============= sidebar =========== */
.side-nav-container {
  width: 244px;
  background: #FFFFFF;
  border-right: 1px solid #E4E9ED;
  padding: 21px 16px 21px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.side-nav-container-item {
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
}
.side-nav-container-item.nav-arrow {
  transform: rotate(0);
  transition: all 0.2s;
}
.side-nav-container-item-selected {
  background-color: #E1F1FF;
  font-weight: 700;
}
.side-nav-container-item-expanded .nav-arrow {
  transform: rotate(-180deg);
  transition: all 0.2s;
}
.side-nav-container-item:hover {
  background-color: #E1F1FF;
  transition: all 0.2s;
}
.side-nav-container-item-sub-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s;
}
.side-nav-container-item-sub-list-expanded {
  max-height: 159px;
}
.side-nav-container-item-sub-list-item {
  border-radius: 4px;
  padding: 8px 0 8px 16px;
  gap: 140px;
  font-size: 14px;
  cursor: pointer;
}
.side-nav-container-item-sub-list-item-selected {
  background-color: #E1F1FF;
  font-weight: 700;
}
.side-nav-container-item-sub-list-item:hover {
  background-color: #E1F1FF;
  transition: all 0.2s;
}
/* ============= dashboard table =========== */
.dashboard-table {
  width: 100%;
  table-layout: fixed;
  padding-top: 10px;
  border-collapse: separate;
  border-spacing: 10px 2px;
  background-color: #FFFFFF;
  /* Onpoint/Body-Small */
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height, or 150% */
  /* Onpoint/grey-darken */
  color: #101E3A;
}
.dashboard-table thead {
  width: auto;
  padding: 8px 0px 8px 0px;
  /*border-radius: 4px;*/
  gap: 4px;
  /*border-bottom: 1px solid @colorBorderSilver;*/
}
.dashboard-table th {
  width: auto;
  height: 40px;
  padding: 8px 4px;
  border-radius: 4px;
  background-color: #F4F6F6;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  cursor: pointer;
}
.dashboard-table th span {
  padding-left: 8px;
}
.dashboard-table th:hover {
  background-color: #E4E9ED;
  transition: all 0.2s;
}
.dashboard-table td {
  padding: 8px 4px;
  width: auto;
  height: 40px;
  text-align: left;
  /*    font-size: 14px;
        font-weight: 400;
        line-height: 21px;*/
}
.dashboard-table tbody {
  overflow-y: auto;
}
.dashboard-table tbody tr td {
  border-radius: 4px;
}
.dashboard-table tbody tr td div {
  border-radius: 4px;
  padding: 4px;
  width: fit-content;
}
.dashboard-table tbody tr.selected-row {
  background-color: #E1F1FF !important;
  color: #101E3A !important;
  cursor: pointer;
  transition: all 0.2s;
}
.dashboard-table tbody tr:hover {
  background-color: #E1F1FF !important;
  color: #101E3A !important;
  cursor: pointer;
  transition: all 0.2s;
}
.dashboard-table tr {
  padding: 0px 8px;
}
/*
.dashboard-table tbody tr:hover {
    background-color: @colorHoverLightBlue !important;
    color: @colorGreyDarken !important;
}*/
.dashboard-table-selected {
  background-color: #E1F1FF !important;
  color: #101E3A !important;
  border-radius: 4px;
}
/*
.dashboard-table th {
    width: 132px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    cursor: pointer;
}
*/
/*.dashboard-table td {
    padding: 8px 0px 8px 0px;
    width: 132px;
    text-align: left;
    display: flex;
    align-items: center;*/
/*    font-size: 14px;
    font-weight: 400;
    line-height: 21px;*/
/*}*/
.dashboard-table td.double-wide,
.dashboard-table th.double-wide {
  width: 264px;
}
.dashboard-container {
  height: calc(100vh - 122px);
  width: 100%;
  padding: 0px 6px;
  background-color: #FFFFFF;
  /*    padding-left: 16px;
    padding-right: 16px;*/
}
.dashboard-dashboard-table {
  width: 83%;
  overflow-y: scroll;
}
.dashboard-table-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: calc(100vh - 122px);
}
/* ============= dashboard toolbar =========== */
.dashboard-toolbar {
  /* Toolbar */
  box-sizing: border-box;
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px 8px 0px;
  height: 45px;
  /* Onpoint Brand/silver-darken-5 */
  border-bottom: 1px solid #E4E9ED;
  border-radius: 4px;
}
.dashboard-toolbar-icon {
  /* Filter-icon set */
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-left: 8px;
  gap: 8px;
  height: 18px;
}
.dashboard-toolbar-icon img {
  /* Filter_alt */
  width: 18px;
  height: 18px;
}
.dashboard-toolbar-items {
  /* Toolbar */
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 8px;
  gap: 8px;
  height: 29px;
  /* Tag */
  /* Onpoint/Caption */
  /*font-family: 'Modern Gothic';*/
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.dashboard-toolbar-items input[type=text] {
  border: 1px solid #E4E9ED;
}
.dashboard-toolbar-items button {
  border: none;
}
.dashboard-toolbar-item {
  /* Tag */
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  gap: 10px;
  height: 28px;
  border-radius: 4px;
  background-color: #F4F6F6;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Standard syntax */
}
.dashboard-toolbar-item:hover {
  background-color: #E4E9ED;
  transition: all 0.2s;
}
.dashboard-toolbar-item-on {
  background-color: #0268E0;
  color: #FFFFFF;
}
.dashboard-toolbar-item-on:hover {
  background-color: #155FA0;
  transition: all 0.2s;
}
/* ============= inbox =========== */
.inbox-page-container {
  width: 84%;
}
.inbox-toolbar {
  /* Toolbar */
  box-sizing: border-box;
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 8px;
  height: 45px;
  /* Onpoint Brand/silver-darken-5 */
  border-bottom: 1px solid #E4E9ED;
  border-radius: 4px;
}
.inbox-tab-container {
  height: 100%;
  padding: 8px;
  font-size: 14px;
  line-height: 35px;
  border-bottom: 0 solid #E4E9ED;
}
.inbox-tab-container:hover {
  cursor: pointer;
  font-weight: 700;
  padding: 8px 8px 6px 8px;
  border-bottom: 2px solid #283755;
}
.inbox-tab-container-selected {
  font-weight: 700;
  padding: 8px 8px 6px 8px;
  border-bottom: 2px solid #283755;
}
.filter-separator {
  width: 1px;
  height: 100%;
  background-color: #E4E9ED;
}
.inbox-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: calc(100vh - 212px);
  overflow-y: auto;
  background-color: #F4F6F6;
}
.inbox-message-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 16px 24px;
  border-bottom: 1px solid #E4E9ED;
  background-color: #FFFFFF;
  transition: all 0.2s;
}
.inbox-message-container:hover {
  cursor: pointer;
  background-color: #E1F1FF;
}
.inbox-message-details {
  display: flex;
  gap: 16px;
  align-items: center;
}
.inbox-message-date {
  font-size: 14px;
}
.inbox-message-category {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 4px;
}
.inbox-message-category span {
  font-size: 12px;
}
.inbox-message-subject {
  font-size: 16px;
}
.inbox-message-status {
  height: 24px;
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
}
.inbox-message-drawer-title-text {
  font-weight: 700;
  font-size: 20px;
}
.inbox-message-data-item-label {
  font-size: 14px;
}
.inbox-message-data-item-value {
  font-size: 16px;
}
.inbox-message-color-banner {
  width: 100%;
  padding: 8px;
}
.inbox-message-color-banner ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding-left: 16px;
}
.audit-log-entry {
  font-size: 12px;
}
/* ============= lab results =========== */
.lab-results-work-summary {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px;
  font-size: 12px;
}
.lab-results-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border: 1px solid #E4E9ED;
}
.lab-details {
  display: flex;
  gap: 16px;
}
.lab-details-data-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lab-details-data-item-label {
  font-size: 12px;
}
.lab-details-data-item-value {
  font-size: 14px;
}
.lab-results-summary {
  padding: 8px;
  font-size: 12px;
}
.lab-result-summary-input {
  width: 100%;
}
.lab-result-action-item-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border: 1px solid #E4E9ED;
}
.lab-result-action-item-title-container {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.lab-result-action-item-title-container b {
  font-size: 12px;
}
/* ============= iframe =========== */
.iframe-container-full-minus-navbar {
  height: calc(100vh - 72px);
  width: 100%;
  /* Adjusts to the full width of the page */
  border: none;
  /* Optional: Removes the iframe border for a clean look */
  overflow: hidden;
}
.iframe-container-full-minus-navbar iframe {
  height: calc(100vh - 72px);
  width: 100%;
  border: none;
}
.iframe-container-full-minus-navbar.minus-topbar {
  height: calc(100vh - 122px);
}
.iframe-container-full-minus-navbar.minus-topbar iframe {
  height: calc(100vh - 122px);
  width: 100%;
  border: none;
}
/* ============= drawer-table =========== */
.drawer-table-container {
  width: 100%;
  overflow-x: auto;
}
.drawer-table {
  /* Patient Detail Container */
  /* Auto layout */
  width: 100%;
  table-layout: fixed;
  padding: 8px 0;
  border-collapse: separate;
  border-spacing: 4px 4px;
}
.drawer-table tr {
  /* Patient Detail Container */
  /* Auto layout */
  padding: 0px 8px;
}
.drawer-table tr.odd-row {
  background-color: #F4F6F6;
}
.drawer-table tr th {
  background-color: #E4E9ED;
}
.drawer-table thead {
  /* Onpoint/Body-Small */
  /*font-family: 'Modern Gothic';*/
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  /* identical to box height, or 150% */
  /* Onpoint/grey-darken */
  color: #3D4D6B;
}
.drawer-table th {
  padding: 8px;
  /*border-radius: 4px;*/
  /*gap: 4px;*/
  /*border-bottom: 1px solid @colorBorderSilver;*/
}
.drawer-table th.thin {
  width: 60px;
}
.drawer-table th.normal {
  width: 108px;
}
.drawer-table th.wide {
  width: 144px;
}
.drawer-table th.double-wide {
  width: 225px;
}
.drawer-table th.center {
  justify-content: center;
}
.drawer-table td {
  /*height: 100%;
    padding: 8px;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    gap: 8px;*/
  /* Frame 396 */
  /* Auto layout */
  padding: 8px 4px;
  width: 320px;
  text-align: left;
}
.drawer-table td.thin {
  width: 60px;
}
.drawer-table td.normal {
  width: 108px;
}
.drawer-table td.wide {
  width: 144px;
}
.drawer-table td.double-wide {
  width: 225px;
}
.drawer-table td.center {
  justify-content: center;
}
.drawer-table td.no-padding {
  padding: 3px;
}
.drawer-table td input[type=checkbox] {
  /* Frame 433 */
  /* Auto layout */
  padding: 0px;
  width: 20px;
  height: 20px;
}
.drawer-table td div.resolve-btn {
  color: #0268E0;
  cursor: pointer;
}
.drawer-table td img.clickable {
  cursor: pointer;
}
.drawer-table td div.grouped-problems div.sub-problems {
  padding-left: 16px;
  padding-right: 16px;
}
.drawer-table td div.grouped-problems div.sub-problems div {
  font-size: 14px;
  line-height: 18px;
}
.table-cell-red {
  color: #EF3939;
  background-color: #FCDDDD;
}
.table-cell-red input {
  color: #EF3939;
}
.table-cell-yellow {
  background-color: #FFFADE;
}
.drawer-save-button {
  margin: 0 8px 8px auto;
}
.drawer-save-button:hover {
  background-color: #E4E9ED;
  transition: all 0.2s;
}
.drawer-save-button-editable,
.drawer-complete-review-button {
  background-color: #0268E0;
  color: #FFFFFF;
  transition: all 0.2s;
}
.drawer-save-button-editable:hover,
.drawer-complete-review-button:hover {
  background-color: #155FA0;
  transition: all 0.2s;
}
/* ============= drawer-cards =========== */
.drawer-card-content-container {
  width: 100%;
}
.drawer-card-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.drawer-card-container-grouped {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.drawer-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 16px 24px;
  border: 1px solid #C8CDD7;
}
.drawer-card-grouped {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 16px 24px;
  border-top: 1px solid #C8CDD7;
}
.drawer-card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.drawer-card-data {
  display: flex;
  gap: 16px;
}
.drawer-card-data-item {
  max-width: 200px;
}
.drawer-card-data-item-status {
  align-self: flex-start;
  width: 82px;
}
.drawer-card-data-item-header {
  font-size: 12px;
}
.drawer-card-data-item-value {
  font-size: 14px;
}
.drawer-card-findings-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 8px 0;
  border-radius: 4px;
  background-color: #F4F6F6;
  overflow: hidden;
  transition: background-color 0.2s;
}
.drawer-card-findings-container:hover {
  cursor: pointer;
  background-color: #E4E9ED;
}
.drawer-card-findings-container div.validation-note-container {
  padding: 4px 8px 0 8px;
}
.drawer-card-findings-container textarea {
  resize: vertical;
  width: 100%;
  height: 37px;
  border: 1px solid #BEC4D0;
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  line-height: 16px;
}
.rejection-reason-dropdown {
  display: flex;
  flex-direction: column;
  max-height: 37px;
  padding: 8px;
  margin: 0 8px;
  border: 1px solid #BEC4D0;
  border-radius: 4px;
  font-size: 14px;
  background-color: #FFFFFF;
  overflow: hidden;
}
.rejection-reason-dropdown:hover {
  cursor: pointer;
}
.rejection-reason-dropdown-expanded {
  max-height: 1000px;
  overflow: auto;
}
.rejection-reason-dropdown-disabled {
  background-color: rgba(239, 239, 239, 0.3);
  color: #545454;
}
.rejection-reason-dropdown-disabled:hover {
  cursor: default;
}
.rejection-reason-dropdown-error {
  border: 1px solid #EF3939 !important;
}
.rejection-error-text {
  padding: 0 8px;
}
.rejection-reason-dropdown-selected-options-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.rejection-reason-dropdown-selected-options-container div {
  text-wrap-mode: nowrap;
  max-width: 95%;
  overflow-x: hidden;
}
.rejection-reason-dropdown-icon {
  width: 18px;
  height: 18px;
}
.rejection-reason-dropdown-option-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  transition: all 0.2s;
}
.rejection-reason-dropdown-option-container:hover {
  cursor: pointer;
  background-color: #E1F1FF;
}
.rejection-reason-dropdown-option-container label:hover {
  cursor: pointer;
}
.rejection-reason-dropdown-option-container input:hover {
  cursor: pointer;
}
.rejection-reason-dropdown-option-checkbox {
  width: 16px;
  height: 16px;
  border: none;
}
.drawer-card-findings-title-container {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  width: 100%;
  padding: 0 8px;
}
.card-arrow {
  width: 12px;
  height: 24px;
  margin: 0 6px;
}
.drawer-card-findings-title span {
  font-weight: 700;
  font-size: 12px;
}
.drawer-card-approve-change {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
.drawer-card-approve-change span {
  font-weight: 700;
  font-size: 12px;
}
.drawer-card-approve-change:hover {
  cursor: default;
}
.drawer-card-findings-data {
  max-height: 0;
  overflow: hidden;
  padding: 0 8px 0 40px;
}
.drawer-card-findings-data span {
  font-size: 12px;
}
.drawer-card-findings-data-expanded {
  max-height: 5000px;
  overflow: auto;
}
/* ============= drawer footer =========== */
.add-note-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.add-note-title {
  font-size: 12px;
  font-weight: 700;
  width: 100%;
}
.add-note-input {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #BEC4D0;
  border-radius: 4px;
  resize: vertical;
}
.drawer-footer-category-select-dropdown {
  padding: 8px;
  border: 1px solid #E4E9ED;
  border-radius: 4px;
  background-color: #F4F6F6;
  font-size: 14px;
  transition: all 0.2s;
}
.drawer-footer-category-select-dropdown:hover {
  cursor: pointer;
  background-color: #E4E9ED;
}
.drawer-footer-category-select-dropdown-content {
  border: none;
}
.drawer-footer-category-select-dropdown-content:hover {
  cursor: pointer;
}
/* ============= input fields =========== */
.drawer-container-section textarea,
.drawer-table input[type=text] {
  width: 100%;
  border: none;
  background: transparent;
}
.drawer-container-section textarea {
  width: 100%;
  height: 32px;
  vertical-align: top;
  margin-top: 0;
  margin-bottom: 0;
  text-indent: 0;
  white-space: pre-line;
  overflow: hidden;
  /* Hides the scrollbar */
  border: none;
  /* Removes the border */
  resize: none;
  /* Prevents resizing */
  background: none;
}
.drawer-container-section textarea.validation-note-input {
  resize: vertical;
  border: 1px solid #BEC4D0;
  border-radius: 4px;
  padding: 8px;
  background-color: #FFFFFF;
  font-size: 12px;
  line-height: 16px;
}
.drawer-container-section textarea.validation-note-input-disabled {
  background-color: rgba(239, 239, 239, 0.3) !important;
}
.drawer-container-section textarea.input-editable,
.drawer-table input[type=text].input-editable {
  border: 1px solid #E4E9ED;
  padding: 4px;
  width: 100%;
  /* Frame 443 */
  box-sizing: border-box;
  /* Auto layout */
  padding: 4px 4px 4px 8px;
  background: #FFFFFF;
  border: 1px solid #0268E0;
  border-radius: 4px;
}
.drawer-container-section textarea.input-editable {
  margin: 2px 0;
  resize: vertical;
}
.drawer-container-section textarea.disabled,
.drawer-table input[type=text].disabled {
  outline: none;
  pointer-events: none;
  background-color: inherit;
  border: none;
}
.prior-auth-status-selector-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.prior-auth-status-selector-title {
  font-size: 12px;
}
.prior-auth-status-dropdown {
  width: 100%;
  height: 34px;
  border: 1px solid #E4E9ED;
  border-radius: 4px;
  padding: 0 8px;
  background-color: #F4F6F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s;
}
.prior-auth-status-dropdown:hover:not(.dropdown-disabled) {
  cursor: pointer;
  background-color: #E4E9ED;
}
.prior-auth-status-dropdown-content {
  position: absolute;
  background-color: #F4F6F6;
  width: 100%;
  z-index: 2;
  border: none;
  border-radius: 4px;
  padding: 4px 8px 4px 8px;
  overflow-y: auto;
  max-height: 400px;
}
.prior-auth-status-dropdown-content:hover:not(.dropdown-disabled) {
  cursor: pointer;
  background-color: #E4E9ED;
}
/* ============= pdf upload =========== */
.pdf-upload-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding-left: 8px;
}
.pdf-input {
  display: none;
}
.pdf-input-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  height: 84px;
  border: 1px dashed #3D4D6B;
  border-radius: 4px;
  background-color: #F4F6F6;
  transition: all 0.2s;
}
.pdf-input-button:hover:not(:disabled) {
  cursor: pointer;
  background-color: #E4E9ED;
}
.pdf-input-button:disabled {
  color: inherit;
  cursor: default;
}
.pdf-input-name {
  font-size: 12px;
}
.uploaded-pdf-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 8px 4px;
  border-radius: 4px;
  background-color: #F4F6F6;
}
.uploaded-pdf-details {
  display: flex;
  gap: 4px;
  align-items: center;
}
.uploaded-pdf-filename {
  font-size: 12px;
}
.uploaded-pdf-close-button:hover {
  cursor: pointer;
}
.attached-documents-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.attached-document-actions {
  display: flex;
  gap: 12px;
  padding: 0 4px;
}
.attached-document-view {
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  color: #000000;
  background-color: transparent;
  transition: all 0.2s;
}
.attached-document-view:hover {
  cursor: pointer;
  color: #000000;
  background-color: #E4E9ED;
}
.attached-document-delete {
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  color: #EF3939;
  background-color: transparent;
  transition: all 0.2s;
}
.attached-document-delete:hover {
  cursor: pointer;
  background-color: #FCDDDD;
}
.deleted-documents-list-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.deleted-documents-header {
  font-size: 14px;
}
/* ============= management =========== */
.management-page-container {
  width: 100%;
  height: 100%;
}
/* ============= provider preferences =========== */
.provider-preferences-container {
  display: flex;
  gap: 0;
  width: 100%;
  height: 100%;
}
.provider-list-container {
  display: flex;
  flex-direction: column;
  width: 18%;
  padding: 4px 4px 0 4px;
  border-right: 1px solid #E4E9ED;
  overflow-y: auto;
}
.provider-list-column-header {
  display: flex;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 8px 4px;
  border-radius: 4px;
  background-color: #F4F6F6;
  transition: all 0.2s;
}
.provider-list-column-header span {
  font-size: 14px;
}
.provider-list-column-header:hover {
  cursor: pointer;
  background-color: #E4E9ED;
  transition: all 0.2s;
}
.provider-list-names-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  height: calc(100% - 44px);
  margin-top: 4px;
  padding-bottom: 4px;
  overflow-y: auto;
}
.provider-list-row-entry {
  width: 100%;
  height: 40px;
  padding: 8px 4px;
  border-radius: 4px;
  background-color: #FFFFFF;
  transition: all 0.2s;
}
.provider-list-row-entry span {
  font-size: 14px;
}
.provider-list-row-entry:hover {
  cursor: pointer;
  background-color: #E1F1FF;
  transition: all 0.2s;
}
.provider-list-row-entry-selected {
  background-color: #E1F1FF;
  transition: all 0.2s;
}
.provider-preferences-edit-container {
  display: flex;
  flex-direction: column;
  width: 82%;
}
.provider-preferences-details-container {
  display: flex;
  width: 100%;
  height: calc(100% - 70px);
  border-bottom: 1px solid #E4E9ED;
}
.provider-preferences-notes-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
  padding: 16px;
  border-right: 1px solid #E4E9ED;
}
.provider-preferences-notes-title {
  width: 100%;
}
.provider-preferences-notes-title span {
  font-size: 16px;
}
.provider-preferences-notes-input {
  width: 100%;
  height: calc(100% - 60px);
  padding: 8px 16px;
  border: 1px solid #BEC4D0;
  border-radius: 4px;
  font-size: 16px;
  resize: none;
}
.provider-preferences-notes-footer {
  font-size: 12px;
}
.provider-preferences-options-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
  padding: 16px;
  overflow-y: auto;
}
.provider-preferences-options-title {
  width: 100%;
}
.provider-preferences-options-title span {
  font-size: 16px;
}
.provider-preferences-options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.provider-preferences-options-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 16px 16px 8px 16px;
  border-top: 1px solid #E4E9ED;
  border-bottom: 1px solid #E4E9ED;
}
.provider-preferences-options-group-title span {
  font-size: 12px;
}
.provider-preference-option-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
.provider-preference-option-container span {
  font-size: 16px;
}
.provider-preference-option-container span.provider-preference-option-subtitle {
  font-size: 12px;
}
.provider-preference-option-container ul {
  margin: 0;
  padding-left: 23px;
}
.provider-preference-option-container ul li {
  font-size: 14px;
}
.provider-preference-option-name-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reset-defaults {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  margin-bottom: 8px;
  border: none;
  border-bottom: 1px solid #E4E9ED;
  border-radius: 4px;
  background-color: #FFFFFF;
  transition: all 0.2s;
}
.reset-defaults span {
  font-size: 16px;
  color: #0268E0;
}
.reset-defaults:hover {
  cursor: pointer;
  background-color: #E1F1FF;
}
.provider-preferences-save-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 38px;
  padding: 16px;
}
.provider-preferences-save-container button {
  font-size: 16px;
  line-height: 16px;
  height: 38px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #0268E0;
  color: #FFFFFF;
  transition: all 0.2s;
}
.provider-preferences-save-container button:hover {
  cursor: pointer;
  background-color: #155FA0;
  transition: all 0.2s;
}
/* ============= toggles =========== */
.toggle-switch {
  display: flex;
  align-items: center;
  width: 36px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 100px;
  transition: all 0.2s;
}
.toggle-switch-on {
  background-color: #0268E0;
}
.toggle-switch-on:hover {
  cursor: pointer;
  background-color: #155FA0;
  transition: all 0.2s;
}
.toggle-switch-off {
  background-color: #E4E9ED;
}
.toggle-switch-off:hover {
  cursor: pointer;
  background-color: #C8CDD7;
  transition: all 0.2s;
}
.toggle-switch-inner {
  width: 13px;
  height: 13px;
  border-radius: 100px;
  background-color: #FFFFFF;
  transition: all 0.2s;
}
.toggle-switch-inner-on {
  margin-left: 20px;
  transition: all 0.2s;
}
.toggle-switch-inner-off {
  margin-left: 4px;
  transition: all 0.2s;
}
.toggle-radio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin: 0 16px;
  padding: 0;
  border: none;
  border-radius: 100px;
  transition: all 0.2s;
}
.toggle-radio-on {
  background-color: #0268E0;
}
.toggle-radio-on:hover {
  cursor: pointer;
  background-color: #155FA0;
  transition: all 0.2s;
}
.toggle-radio-off {
  background-color: #D2D5DA;
}
.toggle-radio-off:hover {
  cursor: pointer;
  background-color: #C8CDD7;
  transition: all 0.2s;
}
.toggle-radio-off:hover .toggle-radio-inner-off {
  width: 11px;
  height: 11px;
  transition: all 0.2s;
}
.toggle-radio-inner {
  margin: auto;
  border-radius: 100px;
  background-color: #FFFFFF;
  transition: all 0.2s;
}
.toggle-radio-inner-on {
  width: 11px;
  height: 11px;
  transition: all 0.2s;
}
.toggle-radio-inner-off {
  width: 17px;
  height: 17px;
  transition: all 0.2s;
}
/* ============= selector =========== */
.selector-container {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.drawer-container button.selector-button {
  width: 24.8px;
  height: 16px;
  padding: 4px;
  border: 1px solid transparent;
  background-color: #E1F1FF;
  color: #0268E0;
  font-size: 12px;
  transition: all 0.2s;
}
.drawer-container button.selector-button:hover,
.drawer-container button.selector-button-active {
  border: 1px solid #0268E0;
}
/* ============= approval =========== */
.approval-container {
  display: flex;
  gap: 4px;
  padding: 0 4px;
}
button.approval-button {
  display: flex;
  gap: 4px;
  height: fit-content;
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 12px;
  transition: all 0.2s;
}
button.approval-button-accept {
  background-color: #27AE60;
}
button.approval-button-accept.approval-button-finalized {
  background-color: #27AE60;
}
button.approval-button-accept.approval-button-finalized:hover {
  background-color: #27AE60;
  cursor: default;
}
button.approval-button-accept:hover {
  background-color: #219150;
}
button.approval-button-reject {
  background-color: #EF3939;
}
button.approval-button-reject.approval-button-finalized {
  background-color: #EF3939;
}
button.approval-button-reject.approval-button-finalized:hover {
  background-color: #EF3939;
  cursor: default;
}
button.approval-button-reject:hover {
  background-color: #C72F2F;
}
button.approval-button-undo {
  background-color: transparent;
  color: #3D4D6B;
}
button.approval-button-undo:hover {
  background-color: #C8CDD7;
}
/* ============= alerts =========== */
.error-message {
  color: #EF3939 !important;
  font-size: 14px;
}
.error-field {
  border: 1px solid #EF3939 !important;
}
.needs-attention {
  border-radius: 4px;
  padding: 4px;
  width: fit-content;
  background-color: #FCDDDD;
  font-size: 12px;
}
/* ============= item grouping =========== */
.item-grouping-container {
  width: 100%;
  border: 1px solid #C8CDD7;
}
/* ============= banners =========== */
.color-banner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 8px;
}
.color-banner-contents {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
.color-banner-icon {
  margin-top: 4px;
}
.color-banner-icon-large {
  margin-top: 2px;
}
.color-banner-text {
  font-size: 12px;
}
.color-banner-gray {
  background-color: #F4F6F6;
}
.color-banner-light-gray {
  background-color: #FAFBFB;
}
.color-banner-gray,
.color-banner-light-gray {
  border-left: 3px solid #BEC4D0;
}
.color-banner-red {
  background-color: #FCDDDD;
  border-left: 3px solid #F24822;
}
.color-banner-yellow {
  background-color: #FFFADE;
  border-left: 3px solid #FFE23B;
}
.color-banner-blue {
  background-color: #E1F1FF;
  border-left: 3px solid #0268E0;
}
.color-banner-green {
  background-color: #DAF1E4;
  border-left: 3px solid #27AE60;
}
/* ============= statuses =========== */
.status-green {
  background-color: #DAF1E4;
}
.status-yellow {
  background-color: #FFFADE;
}
.status-red {
  background-color: #FCDDDD;
}
.status-gray {
  background-color: #F4F6F6;
}
.status-orange {
  background-color: #FFEEDE;
}
