/* =========================
   RESET
========================= */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #fff;
  color: #1f2937;
  line-height: 1.5;
}

/* Remove default spacing */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.error {
  color: #d32531 !important;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.portal-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.portal-sidebar {
  width: 250px;
  background: #111827;
  color: #ffffff;
  padding: 25px 20px;
}

.portal-sidebar .logo {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.portal-sidebar ul li {
  margin-bottom: 15px;
}

.portal-sidebar ul li a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #cbd5e1;
  transition: 0.3s ease;
}

.portal-sidebar ul li a:hover,
.portal-sidebar ul li a.active {
  background: #1f2937;
  color: #ffffff;
}

/* Main Content */
.portal-content {
  flex: 1;
  padding: 30px;
}

h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
}

h3 {
  font-size: 16px;
  font-weight: 600;
}

.text-muted {
  color: #6b7280;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/* =========================
   CARDS
========================= */
.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-header {
  margin-bottom: 15px;
  font-weight: 600;
}

.dashboard-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.card-sm {
  width: 220px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #ebebeb;
  color: #575757;
}

.btn-primary:hover {
  background: #f26722;
  color: #fff;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.btn-danger {
  background: #dc2626;
  color: #ffffff;
}

.btn-success {
  background: #16a34a;
  color: #ffffff;
}

/* =========================
   TABLES
========================= */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

table thead {
  background: #ff6600;
}

table th,
table td {
  padding: 12px 15px;
  text-align: left;
  font-size: 14px;
}

table th {
  font-weight: 600;
  color: #fff !important;
  border-bottom: 1px solid #ff6600 !important;
}

table tbody tr {
  border-top: 1px solid #f1f1f1;
  transition: 0.2s ease;
}

table tbody tr:hover {
  background: #f9fafb;
}

table {
  width: 100%;
  table-layout: fixed;
}

/* =========================
   BADGES
========================= */
.badge {
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.badge-warning {
  background: #fef9c3;
  color: #854d0e;
}

.badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

.badge-info {
  background: #dbeafe;
  color: #1e3a8a;
}

/* =========================
   FORMS
========================= */
.input-error {
  border: 1px solid #dc3545 !important;
}

#forgotErrorMessage {
  background: #f9dbe4;
  color: #d32531;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  margin-top: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #f26722;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  width: 400px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.hidden {
  display: none;
}

td.mask-email {
  font-family: "Poppins" !important;
  font-weight: 400 !important;
}

.portal-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 15px 20px;
  font-size: 14px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.orange-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 12px;
  background: #f26522;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}
.orange-btn:hover {
  background: rgb(222.1333333333, 80.4102564103, 13.0666666667);
  box-shadow: 0 10px 20px rgba(242, 101, 34, 0.25);
}
.orange-btn:disabled {
  background: #f8b08a;
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
}
.orange-btn:disabled:hover {
  background: #f8b08a;
  box-shadow: none;
}

label.error {
  font-style: normal;
  color: #d32531;
  display: flex;
  align-items: center;
  margin-top: 6px;
  gap: 7px;
}
label.error::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/errormessage.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.toggle-password img {
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.mobile-otp {
  cursor: pointer;
  font-family: "Poppins";
  font-size: 14px;
  color: #fd5710;
  text-decoration: underline;
  text-align: center;
}

.crm-sidebar {
  width: 320px;
  background: #fff;
  padding: 30px 20px;
  border-right: 1px solid #e0e0e0;
}
.crm-sidebar .sidebar-section {
  margin-bottom: 10px;
  cursor: pointer;
}
.crm-sidebar .sidebar-section .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(87, 87, 87, 0.6);
  margin-bottom: 0;
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.crm-sidebar .sidebar-section .section-title.payout-row {
  justify-content: space-between;
}
.crm-sidebar .sidebar-section .section-title .arrow {
  font-size: 18px;
  color: #333;
}
.crm-sidebar .sidebar-section .section-menu {
  list-style: none;
  padding-left: 28px;
}
.crm-sidebar .sidebar-section .section-menu li {
  padding: 8px 0;
  font-size: 18px;
  color: #555;
  cursor: pointer;
  font-family: "Inter";
  font-weight: 500;
  line-height: 1.5;
  color: #575757;
}
.crm-sidebar .sidebar-section .section-menu li.active {
  font-family: "Inter";
  background: #f26522;
  color: #fff;
  padding: 8px 48px 8px 14px;
  border-radius: 12px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
}
.crm-sidebar .sidebar-section .section-menu li.active a {
  color: #fff;
}
.crm-sidebar .sidebar-section .section-menu li a {
  text-decoration: none;
  color: #575757;
}
.crm-sidebar .sidebar-section .payment {
  padding: 8px 0;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.5;
  color: #575757;
}
.crm-sidebar .sidebar-section .payment.active {
  font-family: "Hedvig Letters Sans";
  background: #f26522;
  color: #fff;
  padding: 8px 48px 8px 14px;
  border-radius: 12px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
}
.crm-sidebar .sidebar-section .payment.active a {
  color: #fff;
}
.crm-sidebar .sidebar-section .payment a {
  text-decoration: none;
  color: rgba(87, 87, 87, 0.6);
  font-size: 16px;
}
.crm-sidebar .sidebar-section .payout-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 0;
}
.crm-sidebar .sidebar-section .payout-row .arrow img {
  height: 18px;
}
.crm-sidebar .divider {
  height: 1px;
  background: #f6e6c5;
  margin: 20px 0;
}

.lead-sort {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
}
.lead-sort .lead-details-section {
  flex: 1;
}
.lead-sort .lead-details-section .lead-not-found-title .emoji-icon {
  font-size: 55px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  line-height: 1;
}

.lead-not-found {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
}
.lead-not-found .lead-not-found-title {
  color: #1a1a1a;
  margin-bottom: 10px;
}
.lead-not-found .lead-not-found-text {
  color: #6a6a6a;
  font-size: 15px;
  margin-bottom: 20px;
}
.lead-not-found .primary-btn {
  display: inline-block;
  background: #ff6a1a;
  color: #fff;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}
.lead-not-found .primary-btn:hover {
  background: #e85e15;
  color: #fff;
}

.toggle-password.active img {
  filter: brightness(0);
  /* makes it black */
}

.portal-header {
  background-color: #fff;
  padding: 18px 30px;
  border-bottom: 1px solid #e0e0e0;
}
.portal-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portal-header .header-content {
  display: flex;
  align-items: center;
  gap: 70px;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
}
.portal-header .global-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 50%;
}
.portal-header .gs-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 0.5px solid #d0d0d0;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  overflow: hidden;
  min-width: 280px;
}
.portal-header .gs-dropdown .gs-item {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px dashed #e5e5e5;
}
.portal-header .gs-dropdown .gs-item:last-child {
  border-bottom: none;
}
.portal-header .gs-dropdown .gs-item:hover {
  background: #f7f7f7;
}
.portal-header .gs-dropdown .gs-item .gs-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}
.portal-header .gs-dropdown .gs-item .gs-name {
  font-weight: 600;
  font-size: 14px;
  color: #222;
}
.portal-header .gs-dropdown .gs-item .gs-ext-link {
  color: #aaa;
  font-size: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.portal-header .gs-dropdown .gs-item .gs-ext-link:hover {
  color: #555;
}
.portal-header .gs-dropdown .gs-item .gs-detail {
  font-size: 13px;
  color: #777;
  margin: 2px 0;
}
.portal-header .gs-dropdown .gs-empty {
  padding: 12px 14px;
  font-size: 13px;
  color: #aaa;
  text-align: center;
}
.portal-header .gs-filter {
  position: relative;
  flex-shrink: 0;
}
.portal-header .gs-filter .gs-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  color: #444;
  white-space: nowrap;
  font-family: Helvetica;
  transition: border-color 0.15s;
  height: 34px;
  box-sizing: border-box;
}
.portal-header .gs-filter .gs-filter-btn .gs-filter-arrow {
  font-size: 10px;
  color: #999;
  transition: transform 0.2s;
}
.portal-header .gs-filter .gs-filter-btn.open .gs-filter-arrow {
  transform: rotate(180deg);
}
.portal-header .gs-filter .gs-filter-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 0.5px solid #d0d0d0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  min-width: 160px;
  padding: 4px 0;
  list-style: none;
  margin: 0;
}
.portal-header .gs-filter .gs-filter-menu .gs-filter-option {
  padding: 6px 14px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  font-family: Helvetica;
}
.portal-header .gs-filter .gs-filter-menu .gs-filter-option.active {
  font-weight: 600;
}
.portal-header .gs-input-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s;
  width: 100%;
  height: 34px;
  box-sizing: border-box;
}
.portal-header .gs-input-box:focus-within {
  border-color: #e07a30;
}
.portal-header .gs-input-box .gs-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0 10px;
  height: 100%;
  font-size: 13px;
  background: transparent;
  color: #222;
  font-family: Helvetica;
}
.portal-header .gs-input-box .gs-input::-moz-placeholder {
  color: #aaa;
}
.portal-header .gs-input-box .gs-input::placeholder {
  color: #aaa;
}
.portal-header .gs-input-box .gs-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-left: 1px solid #e0e0e0;
  width: 34px;
  height: 100%;
  cursor: pointer;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  padding: 0;
}
.portal-header .gs-input-box .gs-btn:hover {
  background: #f5f5f5;
  color: #e07a30;
}
.portal-header .gs-input-box .gs-btn i {
  font-size: 14px;
}
.portal-header .gs-result-count {
  font-size: 14px;
  color: #222;
  margin-left: 8px;
  white-space: nowrap;
}
.portal-header .logo img {
  height: 40px;
}
.portal-header .header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}
.portal-header .header-actions .quick-lead {
  border: 1px solid #ff6600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Inter";
  font-weight: 700;
  font-size: 14px;
  padding: 12px 40px;
  margin-right: 150px;
  color: #fff;
  background: #ff6600;
}
.portal-header .header-actions .quick-lead:hover {
  background: #f26922;
  color: white;
}
.portal-header .header-actions .quick-lead:hover .fa-solid {
  color: white !important;
}
.portal-header .header-actions .quick-lead .fa-solid {
  border-radius: 0;
  background: none;
}

#otpresultMessage {
  margin-top: 14px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease-in-out;
}

.overlay.show {
  transform: scaleY(1);
}

.form-messages {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  z-index: 1000;
}
.form-messages .form-alert {
  display: none;
  padding: 16px 22px 16px 55px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background-repeat: no-repeat;
  background-position: 18px center;
  background-size: 22px 22px;
}
.form-messages .success-alert {
  background-color: #e6f9ed;
  color: #1e7e34;
  border: 1px solid #28a745;
  background-image: url("../images/icons/success-icon.svg");
}
.form-messages .error-alert {
  background-color: #fdecea;
  color: #b02a37;
  border: 1px solid #dc3545;
  background-image: url("../images/icons/error-icon.svg");
}
.form-messages .processing-alert {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffc107;
  background-image: url("../images/icons/wait-icon.svg");
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
  background-color: #fff;
  border-radius: 45px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 99999999;
  overflow: visible;
}
.popup .lead-form-messages {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  z-index: 1000;
}
.popup .lead-form-messages .form-alert {
  display: none;
  padding: 16px 22px 16px 55px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background-repeat: no-repeat;
  background-position: 18px center;
  background-size: 22px 22px;
}
.popup .lead-form-messages .success-alert {
  background-color: #e6f9ed;
  color: #1e7e34;
  border: 1px solid #28a745;
  background-image: url("../images/icons/success-icon.svg");
}
.popup .lead-form-messages .error-alert {
  background-color: #fdecea;
  color: #b02a37;
  border: 1px solid #dc3545;
  background-image: url("../images/icons/error-icon.svg");
}
.popup .lead-form-messages .processing-alert {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffc107;
  background-image: url("../images/icons/wait-icon.svg");
}
.popup .close-btn {
  position: absolute;
  top: 36px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #575757;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color 0.3s ease;
  font-weight: 500;
  background-image: url("../images/icons/close-icon.svg");
  background-repeat: no-repeat;
  z-index: 1;
}
.popup .close-btn:hover {
  color: #ff6600;
}

.apply-now {
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.overlay.fullPagePopup {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.overlay.fullPagePopup::before {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -11px;
}
.overlay.fullPagePopup::after {
  content: "";
  position: absolute;
  right: -190px;
  top: 0;
  transform: rotate(0deg);
}

.popup.fullPagePopup {
  z-index: 9999;
}

.form-label {
  font-size: 14px;
  color: #575757;
}

.error {
  color: #d32531;
  font-size: 14px;
}

.required-asterisk {
  color: red;
  font-weight: bold;
}

table.dataTable > thead > tr > th {
  color: #575757;
  font-family: "Inter";
  font-weight: 700;
  font-size: 16px;
  padding: 18px !important;
}

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

table.dataTable.display > tbody > tr > td {
  color: #575757;
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
}

table.dataTable.display > tbody > tr > td a {
  color: rgba(242, 101, 34, 0.87);
  text-decoration: none;
}

table.dataTable.no-footer {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-color: #f6e6c5;
}

input[type=checkbox] {
  accent-color: #f26522;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.6s ease;
}

.has-submenu.active .submenu {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

.flatpickr-calendar.multiMonth .flatpickr-innerContainer {
  gap: 20px;
}
.flatpickr-calendar.multiMonth .dayContainer:first-child {
  border-right: 1px solid #eee;
  padding-right: 20px;
}
.flatpickr-calendar.multiMonth .dayContainer:last-child {
  padding-left: 20px;
}
.flatpickr-calendar.multiMonth .dayContainer + .dayContainer {
  margin-left: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: 1px solid #f26522 !important;
  background: linear-gradient(to bottom, #f26522 0%, #f26522 100%) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  color: #575757 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  color: #fff !important;
  border: none !important;
  background: none !important;
  cursor: not-allowed !important;
}

.dataTables_wrapper .dataTables_paginate {
  margin: 16px 0;
}

.payout-section {
  display: flex;
}

.secondary-fields {
  padding-left: 24px;
}

.user-profile-section {
  display: flex;
}
.user-profile-section .profile-container {
  flex: 1;
  padding: 32px;
}
.user-profile-section .profile-container .top-container {
  display: flex;
  justify-content: space-between;
}
.user-profile-section .profile-container .top-container .change-password {
  color: #ff6600;
  gap: 3px;
}
.user-profile-section .profile-container .top-container .change-password:hover {
  text-decoration: underline;
}
.user-profile-section .profile-container .profile-title {
  margin-bottom: 15px;
}
.user-profile-section .profile-container .profile-card {
  display: flex;
  justify-content: space-between;
  background: #FAFAFA;
  padding: 20px 30px;
  border-radius: 10px;
  align-items: center;
  border: 1px solid #E5E5E5;
}
.user-profile-section .profile-container .profile-card .profile-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.user-profile-section .profile-container .profile-card .profile-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  font-weight: 600;
  font-family: "Inter";
  background: #0045c0;
  color: #fff;
}
.user-profile-section .profile-container .profile-card .label {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  color: #555555;
  margin-bottom: 8px;
}
.user-profile-section .profile-container .profile-card h3 {
  font-family: "Inter";
  font-weight: 600;
  font-size: 20px;
  color: #3A3932;
}
.user-profile-section .profile-container .section {
  margin-top: 20px;
}
.user-profile-section .profile-container .section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.user-profile-section .profile-container .section .section-header h4 {
  color: #555555;
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
}
.user-profile-section .profile-container .section .card {
  background: #fff;
  border-radius: 10px;
  margin-top: 10px;
  overflow: hidden;
  padding: 0;
}
.user-profile-section .profile-container .section .card .line-items {
  color: #575757;
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  padding: 20px;
  background-color: #fff;
}
.user-profile-section .profile-container .section .card .line-items span {
  font-family: "Inter";
  font-weight: 700;
  font-size: 16px;
  color: #575757;
}
.user-profile-section .profile-container .section .card .line-items.active {
  background-color: #f3f1f1;
}

.file-list {
  list-style: disc;
  line-height: 32px;
}

.no-result {
  font-weight: bold;
  font-size: 18px;
}

.email-wrapper,
.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

#applicationLeads_wrapper {
  overflow-y: scroll;
}

.hidden-fields {
  display: none;
}

#quickInfo_popup {
  border-radius: unset;
}

#applicationSelect {
  cursor: pointer;
}

@media (max-width: 992px) {
  .portal-sidebar {
    width: 200px;
  }
  .dashboard-cards {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .portal-header {
    padding: 12px 15px;
  }
  .portal-header .header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  .portal-header .logo {
    flex: 1;
  }
  .portal-header .logo img {
    height: 30px;
  }
  .portal-header .header-actions {
    display: flex;
    flex-wrap: wrap;
    flex: 100%;
    gap: 10px;
  }
  .portal-header .header-actions .profile {
    position: absolute;
    top: -64px;
    right: -10px;
  }
  .portal-header .header-actions .quick-lead {
    width: auto;
    max-width: 120px;
    padding: 6px 8px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .portal-header .header-actions .menu-toggle {
    order: 2;
    margin-left: auto;
  }
  .crm-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #fff;
    padding: 20px 15px;
    z-index: 1001;
    overflow-y: auto;
    transition: right 0.3s ease;
    border-right: 1px solid #e0e0e0;
  }
  .crm-sidebar.active {
    right: 0;
  }
  .crm-sidebar .section-title {
    font-size: 14px;
  }
  .crm-sidebar .section-menu li {
    font-size: 14px;
    padding: 6px 0;
  }
  .crm-sidebar .section-menu li.active {
    padding: 6px 12px;
  }
  .crm-sidebar .divider {
    margin: 10px 0;
  }
  .crm-sidebar .submenu {
    display: none;
  }
  .crm-sidebar .has-submenu.active .submenu {
    display: block;
  }
  .crm-sidebar .has-submenu.active .arrow img {
    transform: rotate(90deg);
  }
  .crm-sidebar .arrow img {
    transition: transform 0.3s ease;
  }
  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
  }
  .sidebar-overlay.active {
    display: block;
  }
  .form-messages {
    width: 90%;
    top: -20px;
  }
  .form-messages .form-alert {
    font-size: 12px;
    padding: 12px 16px 12px 45px;
    background-size: 18px 18px;
    background-position: 12px center;
  }
  .popup {
    width: 95%;
    border-radius: 16px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .popup .close-btn {
    top: 12px;
    right: 12px;
    font-size: 1.4rem;
  }
}
.edit-btn i {
  pointer-events: none;
}

@media (max-width: 575.98px) {
  .popup .close-btn {
    padding: 5px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .crm-sidebar {
    width: 270px;
  }
  .crm-sidebar .sidebar-section .section-title {
    font-size: 14px;
  }
  .crm-sidebar .sidebar-section .section-menu li {
    font-size: 16px;
  }
  .crm-sidebar .sidebar-section .section-menu li.active {
    padding: 8px 40px 8px 14px;
  }
  table.dataTable > thead > tr > th {
    font-size: 14px;
    padding: 16px !important;
  }
  table.dataTable tbody td {
    padding: 18px 6px !important;
  }
  table.dataTable.display > tbody > tr > td {
    font-size: 16px;
  }
  .portal-header {
    padding: 10px 30px;
  }
  .portal-header .header-actions .quick-lead {
    padding: 4px 10px;
  }
  .portal-header .logo img {
    height: 28px;
  }
  .user-profile-section .profile-container {
    padding: 32px;
  }
  .user-profile-section .profile-container .profile-card {
    padding: 20px 30px;
  }
  .user-profile-section .profile-container .profile-card .profile-left {
    gap: 20px;
  }
  .user-profile-section .profile-container .profile-card .profile-img {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }
  .user-profile-section .profile-container .profile-card .label {
    font-size: 14px;
  }
  .user-profile-section .profile-container .profile-card h3 {
    font-size: 18px;
  }
  .user-profile-section .profile-container .section .section-header h4 {
    font-size: 16px;
  }
  .user-profile-section .profile-container .section .card .line-items {
    font-size: 16px;
    padding: 20px;
  }
  .user-profile-section .profile-container .section .card .line-items span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .crm-sidebar {
    width: 240px;
  }
  .crm-sidebar .divider {
    margin: 10px 0;
  }
  .crm-sidebar .sidebar-section .section-menu li {
    font-size: 14px;
  }
  .crm-sidebar .sidebar-section .section-menu li.active {
    padding: 8px 31px 8px 14px;
  }
  table.dataTable > thead > tr > th {
    font-size: 14px;
    padding: 10px !important;
  }
  table.dataTable tbody td {
    padding: 18px 6px !important;
  }
  table.dataTable.display > tbody > tr > td {
    font-size: 14px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .crm-sidebar {
    width: 270px;
  }
  .crm-sidebar .sidebar-section .section-title {
    font-size: 14px;
  }
  .crm-sidebar .sidebar-section .section-menu li {
    font-size: 16px;
  }
  .crm-sidebar .sidebar-section .section-menu li.active {
    padding: 8px 44px 8px 14px;
  }
  table.dataTable > thead > tr > th {
    font-size: 14px;
    padding: 16px !important;
  }
  table.dataTable tbody td {
    padding: 18px 6px !important;
  }
  table.dataTable.display > tbody > tr > td {
    font-size: 16px;
  }
  .portal-header {
    padding: 10px 30px;
  }
  .portal-header .header-actions .quick-lead {
    padding: 12px 40px;
    margin-right: 150px;
    color: #fff;
    background: #ff6600;
  }
  .user-profile-section .profile-container {
    padding: 32px;
  }
  .user-profile-section .profile-container .profile-card {
    padding: 20px 30px;
  }
  .user-profile-section .profile-container .profile-card .profile-left {
    gap: 20px;
  }
  .user-profile-section .profile-container .profile-card .profile-img {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }
  .user-profile-section .profile-container .profile-card .label {
    font-size: 14px;
  }
  .user-profile-section .profile-container .profile-card h3 {
    font-size: 18px;
  }
  .user-profile-section .profile-container .section .section-header h4 {
    font-size: 16px;
  }
  .user-profile-section .profile-container .section .card .line-items {
    font-size: 16px;
    padding: 20px;
  }
  .user-profile-section .profile-container .section .card .line-items span {
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */