/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "elza", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  margin: 0;
}

header {
  background-color: #4E24D1;
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.app {
  display: flex;
  gap: 16px;
  margin: 0 16px 0 0;
  align-items: flex-start;
  min-height: 100vh;
  /* width: 100vw; */
}

.container {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  white-space: nowrap;
  /* Allows horizontal scrolling when needed */
  margin-right: 16px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
  border: 1px solid #b4b4b4;
  border-radius: 10px;
  background: #f3f3f3;
  padding: 8px;
}

label {
  font-weight: bold;
}

input[type="file"] {
  background-color: #f3f3f3;
  border: none;
  border-radius: 10px;
  padding: 5px;
  font-size: 12px;
  border: 1px solid #b4b4b4;
}

input[type="file"]::-webkit-file-upload-button {
  background-color: #a72dd7;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 5px 10px;
  cursor: pointer;
}

/* Change the color of radio buttons */
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #a72dd7;
  /* Change this to your desired color */
  background-color: transparent;
  outline: none;
}

input[type="radio"]:checked {
  background-color: #a72dd7;
  /* Change this to your desired color */
}

/* Change the color of checkboxes */
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #a72dd7;
  /* Change this to your desired color */
  background-color: transparent;
  outline: none;
  border-radius: 5px;
}

input[type="checkbox"]:checked {
  background-color: #a72dd7;
  /* Change this to your desired color */
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.c-form__field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 16px 0;
}

.c-form__field-group h4 {
  display: block;
  width: 100%;
}

.c-form__field-group p {
  display: block;
  width: 100%;
}

.c-form__group-title {
  padding-bottom: 16px;
  border-bottom: 1px solid black;
}

.c-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(50% - 11px);
}

.c-form__field--reverse {
  flex-direction: row;
}

.c-form__field--full {
  width: 100%;
}

.c-form__field--full ul,
.c-form__field ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 10px;
  margin: 0;
  margin-top: 8px;
  padding: 0;
}

.c-form__field--full ul.nowrap,
.c-form__field ul.nowrap {
  flex-wrap: nowrap;
}

.c-form__field--full ul li {
  width: calc(50% - 5px);
  font-weight: normal;
}

.c-form__field--full ul li,
.c-form__field ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-form__field--full ul li label,
.c-form__field ul li label {
  font-weight: normal;
}

.c-form__field span {
  font-weight: bold;
}

.c-form__input--checkbox {
  display: flex;
}

.c-form__input-group {
  display: flex;
}

.c-form__input-group .c-form__input-group--prepend {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b4b4b4;
  border-right: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background: #e4e4e4;
}

.c-form__input-group input[type="number"],
.c-form__input-group input[type="text"],
.formatted_price {
  flex-grow: 1;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.c-table {
  padding: 8px;
  border-radius: 8px;
  margin: 16px 0;
  border-collapse: collapse;
  table-layout: fixed;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
}

.c-table--full {
  width: 100%;
}

.c-table--bordered tr {
  display: flex;
  width: 100%;
}

.c-table--bordered tr:hover td {
  background-color: #e3e3e3;
}

.c-table--bordered td {
  width: 50%;
  padding: 12px 16px;
  vertical-align: middle;
}

table {
  font-size: 14px;
  width: 100%;
}

table.dataTable tbody td {
  padding: 12px 10px !important;
}

table.dataTable tbody td .c-btn {
  font-size: 10px;
  font-weight: bold;
  margin: 8px 0;
}

table.view-record tbody td {
  border: none;
}

table.view-record tbody td:nth-child(even) {
  font-weight: bold;
}

table tr th:first-child {
  text-align: left;
}

table tr th:nth-child(2),
table tr th:last-child {
  text-align: right;
}

table .c-btn {
  margin: 0;
  padding: 4px 16px;
}

table tr td {
  border-bottom: 1px solid #565656;
}

div.dataTables_wrapper {
  width: 100%;
  margin: 0 auto;
}

table.dataTable {
  margin: 0;
  width: 100% !important;
}

div.dataTables_scroll {
  padding-top: 32px;
}

.minified-table * {
  font-size: 12px;
}

.minified-table table.dataTable input {
  padding: 4px 8px;
  border-radius: 8px;
  width: 100%;
}

.minified-table table.dataTable tbody td,
.minified-table table.dataTable > thead > tr.filter-header > th {
  padding: 6px 4px 6px 4px !important;
}

.minified-table table.dataTable > thead > tr.sorter-header > th {
  padding: 6px 26px 6px 4px !important;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

p, ul, ol, blockquote, code, pre, strong, em, small, sup, sub {
  line-height: 1.5em;
}

p {
  font-size: 14px;
}

a {
  font-size: 14px;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

li {
  margin-bottom: 0.25em;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #333;
  padding: 0.5em 1em;
  margin: 1em 0;
}

pre {
  white-space: pre-wrap;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

small {
  font-size: 10.5px;
}

sup {
  vertical-align: super;
  font-size: 10.5px;
}

sub {
  vertical-align: sub;
  font-size: 10.5px;
}

.t-fancy-underline {
  position: relative;
  display: inline-block;
  z-index: 2;
  padding: 0px 10px;
}

.t-fancy-underline::before {
  content: "";
  position: absolute;
  bottom: 1px;
  width: 100%;
  height: 0.5em;
  left: 0;
  right: 0;
  z-index: -1;
}

.sidebar-close .c-sidebar {
  padding: 5px;
  width: 60px;
}

.sidebar-close .c-sidebar .logout {
  width: calc(100% - 10px) !important;
}

.sidebar-close #toggle-sidebar svg {
  rotate: 180deg;
}

.sidebar-close .c-sidebar > ul > li:first-child {
  flex-direction: column-reverse;
  align-items: flex-start;
}

.sidebar-close .c-sidebar > ul > li:first-child .logo {
  margin-top: 10px;
}

.c-sidebar {
  box-sizing: border-box;
  width: 237px;
  padding: 16px;
  margin: 4px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  position: sticky;
  top: 0;
  align-self: start;
  transition: 300ms ease-in-out;
  overflow: hidden;
  text-wrap: nowrap;
  background-color: #4E24D1;
  min-height: calc(100vh - 8px);
}

.c-sidebar ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.c-sidebar ul li {
  margin: 0;
  height: 34px;
}

.c-sidebar ul li a {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 4px 12px;
  color: white;
  background-color: #5830d5;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #4E24D1;
  border-radius: 5px;
}

.c-sidebar ul li a span {
  flex-grow: 1;
}

.c-sidebar ul li a svg {
  height: 24px;
  flex-shrink: 0;
  fill: white;
}

.c-sidebar ul li a svg:hover {
  fill: #4E24D1;
}

.c-sidebar ul li a.active, .c-sidebar ul li a:hover {
  background: white;
  color: #4E24D1;
  cursor: pointer;
}

.c-sidebar ul li a.active svg, .c-sidebar ul li a:hover svg {
  fill: #4E24D1;
}

.c-sidebar ul li a.logout {
  background-color: #f44336 !important;
  border: 1px solid #bc2116 !important;
  color: white !important;
  position: absolute;
  bottom: 10px;
  transition: 300ms ease-in-out;
  width: calc(100% - 32px) !important;
}

.c-sidebar ul li a.logout:hover {
  background-color: #bc2116 !important;
}

.c-sidebar > ul > li:first-child {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 16px;
  height: 120px;
}

.c-sidebar > ul > li:first-child .logo {
  font-weight: 600;
  width: 150px;
}

.c-sidebar > ul > li:first-child #toggle-sidebar {
  margin-left: auto;
  padding: 1em;
  border: none;
  border-radius: .5em;
  background: none;
  cursor: pointer;
  height: 50px;
}

.c-sidebar > ul > li:first-child #toggle-sidebar svg {
  transition: rotate 150ms ease;
}

.c-sidebar > ul > li:first-child #toggle-sidebar:hover {
  background: white !important;
}

.c-sidebar > ul > li:first-child #toggle-sidebar:hover svg {
  fill: #4E24D1;
}

.c-btn {
  padding: 12px 16px;
  border-radius: 10px;
  color: white !important;
  text-decoration: none;
  font-size: 14px;
  align-self: flex-start;
  margin: 12px 0;
  border: 1px solid #4f24d1;
  display: inline-flex;
  align-items: center;
}

.c-btn:hover {
  cursor: pointer;
}

.c-btn--resource {
  border: 1px solid #4f24d1;
  color: #4f24d1 !important;
  background-color: #fff;
}

.c-btn--resource:hover {
  background-color: #4f24d1;
  color: white !important;
}

.c-btn--primary {
  background-color: #4f24d1;
  color: white;
  border: 1px solid #4f24d1;
}

.c-btn--primary:hover {
  background-color: #a72dd7;
}

.c-btn--secondary {
  background-color: #a72dd7;
  color: white;
  border: 1px solid #a72dd7;
}

.c-btn--secondary:hover {
  background-color: #4f24d1;
}

.c-btn--danger {
  background-color: #cb1533;
  color: white;
}

.c-btn--danger:hover {
  background-color: #970820;
}

.c-btn--cancel {
  background-color: #686868;
  color: white;
}

.c-btn--cancel:hover {
  background-color: #4b4b4b;
}

/* Style the tab */
.tab {
  overflow: hidden;
  display: flex;
  gap: 10px;
}

/* Style the buttons inside the tab */
.tab button {
  padding: 16px;
  color: #4E24D1;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #4E24D1;
  border-radius: 10px;
  background: white;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #4E24D1;
  color: white;
  cursor: pointer;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #4E24D1;
  color: white;
}

/* Style the tab content */
.tabcontent {
  display: none;
  border-top: none;
}

.panel {
  border-radius: 25px;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 32px;
  margin: 32px 0;
}

.error {
  width: 100%;
  background-color: #d34949;
  color: white;
  padding: 16px;
  margin-bottom: 16px;
  display: none;
}

.success-message {
  width: 100%;
  background-color: #2ca236;
  color: white;
  padding: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  display: none;
}

.error-message {
  width: 100%;
  background-color: #a22c2c;
  color: white;
  padding: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  display: none;
}

.warning-message {
  padding: 16px;
  background-color: #FEFCE8;
}

.warning-message a,
.warning-message a:hover,
.warning-message a:visited {
  color: #000;
}

.banner {
  background-color: #1c958e;
  color: white;
  margin-top: 16px;
  border-radius: 10px;
  padding: 4px 8px;
  line-height: 1.5em;
}

.banner p {
  margin: 0;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.i-btn::before {
  content: '';
  background-repeat: no-repeat;
  height: 22px;
  width: 22px;
  display: inline-block;
  margin-left: 11px;
  color: white;
}

.i-amend::before {
  background-image: url("../icon/buttons/ico-amend.svg");
}

.i-approve::before {
  background-image: url("../icon/buttons/ico-approve.svg");
}

.i-contact::before {
  background-image: url("../icon/buttons/ico-contact.svg");
}

.i-decline::before {
  background-image: url("../icon/buttons/ico-decline.svg");
}

.i-contact::before {
  background-image: url("../icon/buttons/ico-contact.svg");
}

.i-save::before {
  background-image: url("../icon/buttons/ico-save.svg");
}

.i-flag::before {
  background-image: url("../icon/buttons/ico-flag.svg");
}

.i-create-product::before {
  background-image: url("../icon/buttons/ico-create-product.svg");
}

.i-create-case::before {
  background-image: url("../icon/buttons/ico-create-case.svg");
}

.i-search::before {
  background-image: url("../icon/buttons/ico-search.svg");
}

.i-previous-search::before {
  background-image: url("../icon/buttons/ico-previous-search.svg");
}

.page-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  /* margin-top: 20px;
  height: 120px; */
}

.page-controls a {
  font-weight: bold;
  padding: 6px 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.lender_details__name span, .lender_details__reference span {
  font-weight: normal !important;
}

#lender-logo {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  border: 1.5px solid #d2d2d2;
  padding: 6px;
  margin-bottom: 17px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.borrower-details .select-borrower,
.borrower-details .add-borrower {
  display: none;
}

#loan_value_ratios__valuation,
#loan_value_ratios__cost {
  width: 50%;
}

#loan_value_ratios__valuation .c-form__input-group input[type="number"],
#loan_value_ratios__cost .c-form__input-group input[type="number"] {
  max-width: 40%;
}

#loan_value_ratios__valuation .c-form__input-group,
#loan_value_ratios__cost .c-form__input-group {
  justify-content: flex-end;
}

.lender-products {
  display: flex;
  gap: 16px;
  margin: 16px 0;
}

.lender-products a {
  text-decoration: none;
  color: #a72dd7;
  border: 1px solid #a72dd7;
  border-radius: 10px;
  padding: 8px 16px;
  display: inline-block;
}

.lender-products a:hover {
  background: #a72dd7;
  color: white;
  cursor: pointer;
}

/* Cases */
.case-heading, .case-subheading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* allows stacking on small screens */ 
  gap: 1rem;
}

.case-subheading .case-actions {
  display: flex;
  gap: 10px;
}

.case-heading {
  margin: 10px 0;
}

.case-heading .case-progress {
  margin-right: 0;
  border-radius: 25px;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 45px 45px 25px 45px;
}

.case-heading .progress-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 70px;
}

.case-heading .progress-bar {
  width: 99%;
  height: 2px;
  background-color: #a72dd7;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

.case-heading .circle {
  width: 25px;
  height: 25px;
  background-color: white;
  border: 2px solid #a72dd7;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
}

.case-heading .circle span {
  position: absolute;
  top: -25px;
  color: #141d0d;
  font-size: 10px;
  font-weight: bold;
  white-space: nowrap;
}

.case-heading .active {
  background-color: #a72dd7;
}

/* Label under each step */
.label {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  text-align: center;
}

/* Styles for completed steps */
.step.completed .circle {
  background-color: #4caf50;
  /* Green for completed steps */
}

.step.completed + .line {
  background-color: #4caf50;
  /* Green line after completed step */
}

/* Styles for the active step */
.step.active .circle {
  background-color: #2196f3;
  /* Blue for the active step */
}

.case-section {
  border-radius: 25px;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 32px;
  margin: 32px 0;
}

.case-section table tr {
  display: flex;
  width: 100%;
}

.case-section table tr td {
  flex: 1;
  padding: 8px;
}

.case-details table tr, .broker-details table tr, .level0-details table tr, .level1-details table tr, .level2-details table tr {
  display: flex;
  width: 100%;
}

.case-details table tr td, .broker-details table tr td, .level0-details table tr td, .level1-details table tr td, .level2-details table tr td {
  flex: 1;
  padding: 8px;
}

.application-controls, .terms-applied, .project-details, .facility, .terms-approved {
  display: flex;
  gap: 18px;
}

.terms-applied .loan-terms, .terms-applied .loan-breakdown, .project-details table, .facility table, .application-history, .terms-approved .loan-terms {
  width: 50%;
}

.application-history {
  overflow-y: scroll;
  max-height: 165px;
}

.loan-summary__acceptance, .loan-summary__details {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.loan-summary__details > div {
  background-color: #F6F5FC;
  padding: 8px;
  flex: 1;
}

.loan-summary__details p {
  margin: 0;
}

.loan-summary__details p:first-child {
  font-size: 12px;
}

.loan-summary__details p:nth-child(2) {
  font-weight: bold;
}

.loans-overview {
  height: 300px;
  overflow-y: scroll;
}

.loans-overview h2, .terms-offered h2, .terms-applied h2 {
  margin: 0;
  margin-bottom: 12px;
}

.loans-overview .loans {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.loans-overview .loans .loan {
  min-width: calc(100%/4 - 40px);
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 12px;
  color: black;
  border-radius: 8px;
  word-break: break-word;
  white-space: normal;
}

.loans-overview .loans .loan:hover {
  cursor: pointer;
  box-shadow: 0px 0px 0px 3px #0431ff;
}

.loans-overview .loans .loan .status {
  font-weight: bold;
  text-transform: uppercase;
}

.loans-overview .loans .loan .status.status-pending {
  color: orange;
}

.loans-overview .loans .loan .status.status-approved {
  color: green;
}

.loans-overview .loans .loan h4, .loans-overview .loans .loan p {
  margin: 0;
  font-size: 14px;
}

.reference {
  font-weight: bold;
  color: #8434ad;
}

#all-applications table {
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
}

.lender-logo {
  width: 100%;
  max-width: 225px;
  aspect-ratio: 526/140;
}

.broker-logo {
  width: 100%;
  max-width: 225px;
  aspect-ratio: 526/140;
}

.loan-terms h4, .loan-breakdown h4, .financials h4, .terms-approved h4, .application-history h4 {
  color: #8434ad;
}

#dataContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#dataContainer .financials {
  flex: 1;
}

.big-question-small-answer tr td:nth-child(1) {
  width: calc(100% - 140px);
}

.big-question-small-answer tr td:nth-child(2) {
  text-align: right;
  width: 140px;
}

.searches {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.searches .search {
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.searches .search h3 {
  margin: 0;
}

.searches .search h3 span {
  color: #a72dd7;
}

.results {
  padding-left: 0;
  list-style-type: none;
}

.results .result {
  margin-left: 0;
}

.error-feedback {
  color: red;
}

#notes-tab {
  margin-top: 50px;
}

#notes-tab .new-note .c-form__field--full {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#notes-tab .new-note .c-form__field {
  width: 100%;
  flex-direction: row;
}

#notes-tab .new-note .comment-reply-title {
  justify-content: flex-end;
  display: flex;
}

#notes-tab .new-note .comment-reply-title a {
  color: #f44336 !important;
}

#notes-tab ul {
  list-style: none;
}

#notes-tab ul li {
  border-bottom: 1px solid #b4b4b4;
}

#notes-tab ul li:first-child {
  border-top: 1px solid #b4b4b4;
}

#notes-tab ul li .children li:last-child {
  border-bottom: 0;
}

#notes-tab ul li article {
  margin: 10px;
}

#notes-tab ul li footer {
  display: flex;
  justify-content: flex-start;
}

#notes-tab ul li .comment-author {
  display: flex;
  align-items: flex-start;
}

#notes-tab ul li .comment-author img {
  margin-right: 10px;
  border: 1px solid #b4b4b4;
}

#notes-tab ul li .comment-author b {
  margin-right: 10px;
  color: #a72dd7;
}

#notes-tab ul li .comment-author span {
  width: 10px;
  display: none;
}

#notes-tab ul li .comment-metadata {
  display: inline;
  color: #b4b4b4;
}

#notes-tab ul li .comment-metadata a {
  color: #b4b4b4;
  pointer-events: none;
}

#notes-tab ul li .comment-metadata .edit-link a {
  color: #4E24D1;
  pointer-events: auto;
  padding-left: 10px;
}

#notes-tab ul li .reply a {
  padding: 4px 8px;
  color: #4E24D1;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #4E24D1;
  border-radius: 10px;
  background: white;
}

.acf-fields.-border {
  border: none !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.banner-style {
  position: relative;
}

.banner-style img {
  width: 100%;
  height: auto;
  display: block;
  margin: 10px 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}

.banner-style img.active {
  opacity: 1;
  position: relative;
}
/*# sourceMappingURL=broker-brain-public.css.map */
.case-details-placeholder {
  font-size: 1vw;
  font-weight: 900;
}

.tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tab button {
  white-space: nowrap; /* prevents ugly wrapping inside buttons */
}

.case-actions {
  display: flex;
  align-items: center;
}

.case-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

#i-icon {
  font-size:60px;
  margin: 25px 5px;
}

@media (max-width: 1100px) {
  .case-heading .circle {
    width: 15px;
    height: 15px;
  }

  .case-heading .active {
    background-color: #a72dd7;
  }

  .case-heading .progress-container {
    gap: 50px;
  }

  .case-heading .circle span {
      font-size: 7px;
  }

  .case-heading .case-progress
  {
    padding: 45px 25px 25px 25px;
  }
}

@media (max-width: 768px) {
  .case-subheading {
    flex-direction: column;
    align-items: stretch;
  }

  .tab {
    justify-content: center;
  }

  .case-actions {
    width: 100%;
    justify-content: center;
  }

  .case-actions a {
    width: 100%;
    justify-content: center;
  }

  #i-icon {
    font-size:50px;
    margin: 10px;
  }
}
.flex-item {
  min-width: 0;
  white-space: normal;
}