.coming-soon__landing-page {
  position: relative;
  height: calc(100vh - 80px);
  overflow: hidden;
  padding: 16px;
  margin: -1rem;
  /* Client List Styles */
  /* Chat Area Styles */
  /* Tasks & Calendar Styles */
  /* Scrollbar Styling */
}
.coming-soon__landing-page * {
  user-select: none;
}
.coming-soon__landing-page:before {
  content: "";
  position: absolute;
  inset: -43px;
  background: rgba(30, 41, 59, 0.6);
  z-index: 1;
  backdrop-filter: blur(2px);
}
.coming-soon__landing-page .navbar-custom {
  background-color: var(--primary);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(27, 132, 255, 0.15);
  margin: -16px;
  margin-bottom: 40px;
}
.coming-soon__landing-page .navbar-custom .navbar-brand {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}
.coming-soon__landing-page .navbar-custom .user-info {
  color: white;
}
.coming-soon__landing-page .main-content {
  padding: 2rem 0;
}
.coming-soon__landing-page .card {
  border: none;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.coming-soon__landing-page .card-header-custom {
  background-color: white;
  border-bottom: 2px solid var(--primary);
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--body-text-color);
}
.coming-soon__landing-page .client-list {
  height: 500px;
  overflow-y: auto;
  background-color: #ffffff;
  border-radius: 8px;
}
.coming-soon__landing-page .client-item {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.coming-soon__landing-page .client-item:hover {
  background-color: #e3f2fd;
}
.coming-soon__landing-page .client-item.active {
  background-color: var(--primary);
  color: white;
}
.coming-soon__landing-page .client-item.active .client-status {
  color: rgba(255, 255, 255, 0.8);
}
.coming-soon__landing-page .client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.coming-soon__landing-page .client-item.active .client-avatar {
  background-color: white;
  color: var(--primary);
}
.coming-soon__landing-page .client-info {
  flex: 1;
  min-width: 0;
}
.coming-soon__landing-page .client-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.coming-soon__landing-page .client-status {
  font-size: 0.85rem;
  color: #6c757d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.coming-soon__landing-page .unread-badge {
  background-color: var(--success);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.coming-soon__landing-page .chat-header {
  background-color: white;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.coming-soon__landing-page .chat-header-info h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.coming-soon__landing-page .chat-header-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #6c757d;
}
.coming-soon__landing-page .chat-box {
  height: 400px;
  overflow-y: auto;
  padding: 1.5rem;
  background-color: #f8f9fa;
}
.coming-soon__landing-page .chat-message {
  display: flex;
  margin-bottom: 1rem;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.coming-soon__landing-page .chat-message.from-client {
  justify-content: flex-start;
}
.coming-soon__landing-page .chat-message.from-employee {
  justify-content: flex-end;
}
.coming-soon__landing-page .message-bubble {
  max-width: 70%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  position: relative;
}
.coming-soon__landing-page .chat-message.from-client .message-bubble {
  background-color: white;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.coming-soon__landing-page .chat-message.from-employee .message-bubble {
  background-color: var(--primary);
  color: white;
  border-bottom-right-radius: 4px;
}
.coming-soon__landing-page .message-time {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 0.25rem;
  display: block;
}
.coming-soon__landing-page .chat-input-container {
  padding: 1rem 1.5rem;
  background-color: white;
  border-top: 1px solid #e9ecef;
}
.coming-soon__landing-page .chat-input-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.coming-soon__landing-page .chat-input-wrapper input {
  flex: 1;
  border: 1px solid #dee2e6;
  border-radius: 24px;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
}
.coming-soon__landing-page .chat-input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 132, 255, 0.1);
}
.coming-soon__landing-page .btn-send {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.coming-soon__landing-page .btn-send:hover {
  background-color: #0d6efd;
  transform: scale(1.05);
}
.coming-soon__landing-page .btn-send:active {
  transform: scale(0.95);
}
.coming-soon__landing-page .task-item {
  padding: 1rem;
  border-left: 4px solid var(--primary);
  background-color: #f8f9fa;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}
.coming-soon__landing-page .task-item:hover {
  background-color: #e3f2fd;
  transform: translateX(4px);
}
.coming-soon__landing-page .task-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--body-text-color);
}
.coming-soon__landing-page .task-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #6c757d;
}
.coming-soon__landing-page .badge-custom {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.8rem;
}
.coming-soon__landing-page .badge-blue {
  background-color: rgba(27, 132, 255, 0.1);
  color: var(--primary);
}
.coming-soon__landing-page .badge-green {
  background-color: rgba(103, 177, 76, 0.1);
  color: var(--success);
}
.coming-soon__landing-page .badge-yellow {
  background-color: rgba(255, 188, 5, 0.1);
  color: #e09900;
}
.coming-soon__landing-page .badge-red {
  background-color: rgba(235, 75, 62, 0.1);
  color: var(--danger);
}
.coming-soon__landing-page .calendar-placeholder {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  color: #6c757d;
}
.coming-soon__landing-page .calendar-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.coming-soon__landing-page .stats-card {
  text-align: center;
  padding: 1.5rem;
  height: unset;
  box-shadow: unset;
}
.coming-soon__landing-page .stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.coming-soon__landing-page .stats-label {
  color: #6c757d;
  font-size: 0.9rem;
}
.coming-soon__landing-page .search-box {
  position: relative;
  margin-bottom: 1rem;
}
.coming-soon__landing-page .search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 0.9rem;
}
.coming-soon__landing-page .search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 132, 255, 0.1);
}
.coming-soon__landing-page .search-box i {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}
.coming-soon__landing-page .action-buttons {
  display: flex;
  gap: 0.5rem;
}
.coming-soon__landing-page .btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.coming-soon__landing-page .btn-icon:hover {
  background-color: #f8f9fa;
  border-color: var(--primary);
  color: var(--primary);
}
.coming-soon__landing-page .chat-box::-webkit-scrollbar,
.coming-soon__landing-page .client-list::-webkit-scrollbar {
  width: 6px;
}
.coming-soon__landing-page .chat-box::-webkit-scrollbar-track,
.coming-soon__landing-page .client-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.coming-soon__landing-page .chat-box::-webkit-scrollbar-thumb,
.coming-soon__landing-page .client-list::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.coming-soon__landing-page .chat-box::-webkit-scrollbar-thumb:hover,
.coming-soon__landing-page .client-list::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.coming-soon__landing-page .typing-indicator {
  display: none;
  padding: 0.75rem 1rem;
  background-color: white;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  max-width: 70px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.coming-soon__landing-page .typing-indicator.show {
  display: block;
}
.coming-soon__landing-page .typing-dots {
  display: flex;
  gap: 4px;
}
.coming-soon__landing-page .typing-dots span {
  width: 8px;
  height: 8px;
  background-color: #6c757d;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
.coming-soon__landing-page .typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.coming-soon__landing-page .typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
}

.coming-soon__content {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  flex-direction: column;
  font-size: 80px;
  color: #ffffff;
}
.coming-soon__content h1 {
  font-size: 66px;
  text-align: center;
}

.step-circle {
  background-color: #1B84FF;
  color: #FFFFFF;
  border-radius: 100px;
  width: 40px;
  height: 40px;
}

.step-task-list {
  background-color: #F9FAFB;
  border-radius: 0.5rem;
  padding: 1rem;
}

.active-status {
  height: 8px;
  width: 8px;
  border-radius: 25px;
  background-color: #22C55E;
  margin-right: 0.5rem;
}

.btn {
  --bs-btn-border-radius: 8px;
}

.btn-primary {
  --bs-btn-border-radius: 8px;
}

.btn-outline-primary {
  --bs-btn-border-radius: 8px;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #94A3B8;
  --bs-btn-border-radius: 8px;
  --bs-btn-border-color: #94A3B8;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #94A3B8;
  --bs-btn-disabled-border-color: #94A3B8;
}

.btn-table-action {
  color: var(--body-text-color);
  background: #E3E9F1;
  border-color: #E3E9F1;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 8px;
}
.btn-table-action .fm {
  position: relative;
  font-size: 1.2rem;
}

.modal-content {
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.15);
}

.modal-title {
  color: var(--body-text-color);
  font-weight: 700;
  font-size: 18px;
}

.modal-backdrop {
  --bs-backdrop-bg: #1E293B;
  --bs-backdrop-opacity: 0.65;
  background-color: var(--bs-backdrop-bg);
}

.offcanvas-backdrop {
  background-color: rgb(30, 41, 59);
}
@media (min-width: 992px) {
  .offcanvas-backdrop {
    display: none;
  }
}

.offcanvas-header {
  position: absolute;
  right: 0;
}

table.dataTable.table-striped > tbody > tr.odd > * {
  box-shadow: inset 0 0 0 9999px #fafafa;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-striped-bg: #fafafa;
  background: var(--bs-table-striped-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-hover-bg: #fafafa;
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.card {
  --bs-card-border-color: #CBD5E1;
  border-color: var(--bs-card-border-color);
}

.dropdown-menu.show, .context-menu, #context-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.0509803922) !important;
  padding-right: 0;
}

.progress-container {
  width: 100%;
  height: 8px;
  background: #ccc;
}

.progress-bar {
  height: 8px;
  background: #04AA6D;
  width: 0%;
}

.clients-screen .clients-screen-heading {
  display: none;
}

.client-accordion .accordion-button {
  font-size: 1.7rem;
  padding: 0 !important;
  padding-bottom: 1rem !important;
}
.client-accordion .accordion-button:after {
  width: 24px;
  height: 24px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background-position: center;
  background-size: 1rem;
}

.add-client-form-container {
  counter-reset: section;
}
.add-client-form-container .client-info-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.add-client-form-container .client-info-section-heading::before {
  counter-increment: section;
  content: counter(section);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: var(--body-text-color);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E3E9F1;
  transition: all 0.2s ease-in-out;
}

.clients-section-card {
  transition: box-shadow 0.2s ease-in-out;
}
.clients-section-card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1098039216) !important;
  transition: box-shadow 0.2s ease-in-out;
}
.clients-section-card:hover .client-info-section-heading::before {
  background: var(--primary);
  color: #fff;
  width: 60px;
  transition: all 0.2s ease-in-out;
}

.client__loader {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 1rem;
}
.client__loader label {
  margin-bottom: 0;
}
.client__details-content .card:first-child {
  margin-top: 0 !important;
}
.client__details-tabs {
  width: max-content;
}
.client__details-tabs .nav-link {
  padding: 10px 0;
  font-weight: 600;
  font-size: 16px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--body-text-color);
}
.client__details-tabs .nav-link.active {
  border: 0;
  border-bottom: 3px solid var(--primary);
  color: var(--primary);
}
.client__details-tabs .nav-link:hover {
  border: 0;
  border-bottom: 3px solid var(--primary);
}
.client__details-tabs .nav-link .fm {
  position: relative;
  top: 2px;
  font-size: 18px;
}

#client_table_length {
  padding-bottom: 10px;
  font-size: 14px;
  color: #5F6368;
}

#client_table_filter {
  font-size: 14px;
  color: #5F6368;
}

div#functionFilesList_length {
  padding-bottom: 10px;
  font-size: 14px;
  color: #5F6368;
}

div#directorsTable_length {
  padding-bottom: 10px;
  font-size: 14px;
  color: #5F6368;
}

div#shareholdersTable_length {
  padding-bottom: 10px;
  font-size: 14px;
  color: #5F6368;
}

div#shareClassesTable_length {
  padding-bottom: 10px;
  font-size: 14px;
  color: #5F6368;
}

div#clientActivityLogTable_length {
  padding-bottom: 10px;
  font-size: 14px;
  color: #5F6368;
}

div#client_table_paginate {
  margin-top: 10px;
}

.col--sidebar-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 992px) {
  .col--sidebar-left {
    grid-template-columns: 290px 1fr;
  }
}

th.clients-table-header {
  background-color: #E3F2FD;
  font-size: 14px;
  border-bottom: none;
}

td.clients-table-data {
  font-size: 14px;
  border-bottom-color: #E5E7EB;
}

div#client_table_info {
  font-weight: 400;
  font-size: 14px;
  margin-top: 10px;
}

div#functionFilesList_info {
  font-weight: 400;
  font-size: 14px;
}

div#directorsTable_info {
  font-weight: 400;
  font-size: 14px;
}

div#shareholdersTable_info {
  font-weight: 400;
  font-size: 14px;
}

div#shareClassesTable_info {
  font-weight: 400;
  font-size: 14px;
}

div#clientActivityLogTable_info {
  font-weight: 400;
  font-size: 14px;
}

div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
  padding-bottom: 10px;
  font-size: 14px;
  color: #5F6368;
}

table.dataTable td {
  font-size: 14px;
  border: none;
  align-content: center;
}

.view-btn {
  font-size: 13px;
  border-radius: 8px;
  white-space: nowrap;
  padding: 0.4rem 0.9rem !important;
}

.success-banner {
  background-color: #FFFFFF;
  border: 1px solid #67B14C;
  text-align: center;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: #67B14C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.success-icon i {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 5px;
}

.stats-box {
  padding: 1rem;
  background-color: #F9FAFB;
  border-radius: 0.5rem;
}

.total-steps-icon {
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  background-color: #E5F1FF;
  color: #1B84FF;
  border-radius: 0.5rem;
}

.duration-icon {
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  background-color: #FFEDD5;
  color: #EA580C;
  border-radius: 0.5rem;
}

.assignees-icon {
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  background-color: #DBEAFE;
  color: #1B84FF;
  border-radius: 0.5rem;
}

.instance-icon {
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  color: #1B84FF;
  border: 1px solid #eee;
  border-radius: 0.5rem;
}

.analytics-icon {
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  color: #FFBC05;
  border: 1px solid #eee;
  border-radius: 0.5rem;
}

.share-icon {
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  color: #9B52E1;
  border: 1px solid #eee;
  border-radius: 0.5rem;
}

.duplicate-icon {
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  color: #67B14C;
  border: 1px solid #eee;
  border-radius: 0.5rem;
}

.quick-action {
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.quick-action:hover {
  background-color: #f1f3f5;
}

.empty-box {
  text-align: center;
  padding: 2rem;
  color: #6c757d;
}

.blue-bullet-icon {
  height: 8px;
  width: 8px;
  border-radius: 25px;
  background-color: #1B84FF;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

.published-status-badge-solid {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  background-color: #67B14C;
  color: #FFFFFF;
  border-radius: 4px;
}

.btn-start-new {
  background-color: #1B84FF;
  color: #fff;
  border: none;
}

.btn-start-new:hover {
  background-color: #0b5ed7;
  color: #fff;
  border: none;
}

.active-instances-icon {
  width: 60px;
  height: 60px;
  background-color: #F3F4F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.active-instances-icon i {
  color: #9CA3AF;
  font-size: 1.5rem;
  margin-top: 12px;
}

.content__container {
  margin-top: 80px;
  height: calc(100vh - 80px);
  overflow: hidden;
  padding: 1rem;
  overflow-y: auto;
  background-color: #ffffff;
}
@media screen and (min-width: 992px) {
  .content__container {
    margin-left: 260px;
  }
}

body {
  background-color: #f8f9fa;
  padding: 2rem;
}

.form-containers-wrapper {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.form-container-wrapper {
  flex: 1;
  min-width: 300px;
}

.header-actions-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.form-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.25rem;
}

.form-subtitle {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-top: 0;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6c757d;
  margin-bottom: 0.25rem;
  display: block;
}

.form-control {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  width: 100%;
  box-shadow: none;
}

.btn-custom {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
}

.btn-cancel {
  background-color: transparent !important;
  border: 1px solid #6C757D;
  color: #212529;
}

.btn-save {
  background-color: #1B84FF;
  border: none;
  color: #ffffff;
  margin-right: 0.5rem;
}

.btn-save:hover {
  background-color: #0b5ed7;
  border: none;
  color: #ffffff;
  margin-right: 0.5rem;
}

.btn-add-task {
  border-color: #D1D5DB;
  color: #374151;
}

.btn-add-task:hover {
  border-color: #1B84FF !important;
  color: #1B84FF;
}

.btn-preview {
  background-color: #67B14C;
  border: none;
  color: #ffffff;
  margin-right: 0.5rem;
}

.btn-preview:hover {
  background-color: #5D9C46;
  border: none;
  color: #ffffff;
  margin-right: 0.5rem;
}

.btn-save-add {
  background-color: #007bff;
  border: none;
  color: #ffffff;
}

.step-preview-title {
  font-size: 16px;
  font-weight: 500;
}

.step-preview-description {
  font-size: 14px;
  color: #4B5563;
}

.position-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  margin-bottom: 0.5rem;
}

.position-number {
  width: 40px;
  height: 40px;
  background-color: #0F2648;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-weight: 600;
}

.step-preview-name {
  font-size: 18px;
  font-weight: 500;
  color: #1F2937;
}

.position-in-workflow {
  border: none;
}

body {
  background-color: #f8f9fa;
  padding: 2rem;
}

.section-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.workflow-step {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background-color: #fff;
}

.workflow-step-active {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background-color: #fff;
}

.workflow-step .badge {
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 4px;
}

.workflow-step-active .badge {
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 4px;
}

.badge.bg-completed {
  background-color: #67B14C;
  font-weight: 500;
}

.workflow-step .task-list {
  margin-bottom: 0.5rem;
}

.workflow-step-active .task-list {
  margin-bottom: 0.5rem;
}

.workflow-step .task-list ul {
  padding-left: 0;
}

.workflow-step-active .task-list ul {
  padding-left: 0;
}

/* Align badges to right */
.workflow-step .task-list > div,
.workflow-step .task-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.workflow-step-active .task-list > div,
.workflow-step-active .task-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.footer-actions {
  display: flex;
  justify-content: end;
  margin-top: 1rem;
}

.step-order {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.step-order .badge {
  background-color: #6c757d;
  color: #fff;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
}

.step-info {
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.step-actions {
  display: flex;
  gap: 1rem;
}

.complete-btn {
  background-color: #1B84FF;
}

.complete-btn:hover {
  background-color: #0b5ed7;
}

.info-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #6c757d; /* gray */
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  cursor: pointer;
}

.form-check-input {
  margin-right: 0.5rem;
}

.form-check-label {
  font-size: 0.875rem;
  font-weight: 500;
  padding-right: 10px;
}

.form-check-label-reg {
  font-size: 0.875rem;
  font-weight: 400;
}

.custom-alert {
  background-color: #E3F2FD;
  border-top: 5px solid #1B84FF;
  border-radius: 0.5rem;
  padding: 1rem;
}

.btn-save-task-item {
  background-color: #1B84FF;
  color: #fff;
  border: none;
}

.btn-save-task-item:hover {
  background-color: #0b5ed7;
  color: #fff;
  border: none;
}

body {
  background-color: #f8f9fa;
  padding: 2rem;
}

.form-container {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.875rem;
  color: #212529;
  margin-bottom: 0.25rem;
  display: block;
}

.form-control {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  width: 100%;
  box-shadow: none;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-select {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem 1rem;
}

.form-select:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.instruction-text {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
}

.btn-cancel {
  background-color: #ffffff;
  border: 1px solid #ced4da;
  color: #212529;
}

.btn-cancel:hover {
  background-color: #ffffff;
  border: 1px solid #1B84FF;
  color: #1B84FF;
}

.btn-save-template {
  background-color: #67B14C;
  border: none;
  color: #ffffff;
  margin-right: 0.5rem;
}

.btn-save-template:hover {
  color: #ffffff;
  background-color: #5D9C46;
}

.btn-save-add {
  background-color: #1B84FF;
  border: none;
  color: #ffffff;
}

.btn-save-add:hover {
  color: #ffffff;
  background-color: #0b5ed7;
}

.btn:hover {
  opacity: 0.9;
}

.dash__registration-alert {
  text-align: center;
  color: var(--body-text-color);
  padding: 1.5rem;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.dash__registration-alert a {
  color: #0d6efd;
  text-decoration: underline;
}
.dash__registration-alert a:hover {
  color: #084298;
}
.dash__summary-card {
  display: grid;
  grid-template-columns: 1fr 120px;
  height: 100%;
}
.dash__summary-card h4 {
  font-size: 18px;
}
.dash__summary-card--left {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px 0 10px 7px;
  justify-content: space-between;
}
.dash__summary-card--blue a {
  color: var(--primary);
  text-decoration: none;
}
.dash__summary-card--blue span {
  font-size: 44px;
  color: #1b84ff;
  font-weight: bold;
}
.dash__summary-card--blue i {
  color: rgba(27, 132, 255, 0.2196078431);
}
.dash__summary-card--orange a {
  color: var(--warning);
  text-decoration: none;
}
.dash__summary-card--orange span {
  font-size: 44px;
  color: #FFBC05;
  font-weight: bold;
}
.dash__summary-card--orange i {
  color: rgba(255, 188, 5, 0.2196078431);
}
.dash__summary-card--green a {
  color: var(--success);
  text-decoration: none;
}
.dash__summary-card--green span.storage {
  font-size: 44px;
  color: #67B14C;
  font-weight: bold;
}
.dash__summary-card--green span {
  font-size: 14px;
  color: #67B14C;
}
.dash__summary-card--green i {
  color: rgba(103, 177, 76, 0.2196078431);
}
.dash__summary-card__stat {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
  font-weight: 700;
  height: 110px;
  margin-top: 13px;
}

.dashboard-screen .add-client-btn {
  display: none;
  border-radius: 8px;
}

.company-name {
  color: #6c757d;
  opacity: 0.65;
  font-weight: 600;
  margin-right: 0.3rem;
}

.progress {
  height: 1rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  line-height: 1rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.dash-summary-card {
  background-color: #ffffff;
  border: 1px solid #E8EAED;
  border-radius: 0.5rem;
}

.dash-reminders-card {
  background-color: #F8F9FA;
  border: none;
  border-radius: 0.5rem;
}
.dash-reminders-card:hover {
  background-color: #E3F2FD;
}

.dash-alert-card {
  background-color: #FDEFF0;
  border: 1px solid #ED929A;
  border-radius: 0.5rem;
}
.dash-alert-card:hover {
  background-color: #FAE1E3;
}

.dash-review-card {
  background-color: #FFF4ED;
  border: 1px solid #FCB382;
  border-radius: 0.5rem;
}
.dash-review-card:hover {
  background-color: #FEEADC;
}

.dash-quick-action-card {
  background-color: #ffffff;
  border: 1px solid #E8EAED;
  border-radius: 0.5rem;
}
.dash-quick-action-card:hover {
  background-color: #E3F2FD;
}

.status-handle {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 8px;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.bg-orange {
  background-color: #fd7e14;
}

.content__container .section-container {
  background-color: #F8F9FA;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem; /* reduced from 2rem */
  display: block;
  height: calc(100% - 1rem);
}

.section-container-end {
  background-color: #F8F9FA;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem; /* reduced from 2rem */
  display: block;
}

.section-heading {
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.section-subtitle {
  font-size: 14px;
  color: #5F6368;
}

.dash-stats {
  font-size: 1.875rem;
  font-weight: 700;
}

.dash-info {
  color: #5F6368;
  font-size: 14px;
}

.overdue-text {
  color: #DC3545;
}

.view-clients-button {
  background-color: #5D9C46;
  color: #ffffff;
  border-radius: 8px;
}
.view-clients-button:hover {
  background-color: #568E42;
  color: #ffffff;
}

.review-button {
  background-color: #FFBC05;
  color: #ffffff;
  border-radius: 8px;
}
.review-button:hover {
  background-color: #F6B502;
  color: #ffffff;
}

.view-all-button {
  background-color: #67B14C;
  color: #ffffff;
  border-radius: 8px;
}
.view-all-button:hover {
  background-color: #5D9C46;
  color: #ffffff;
}

.notifications-button {
  background-color: #727B88;
  color: #ffffff;
  border-radius: 8px;
}
.notifications-button:hover {
  background-color: #6B7480;
  color: #ffffff;
}

.soon-alert {
  background-color: #FFBC05;
  color: #FFFFFF;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  pointer-events: none;
}

.normal-alert {
  background-color: #1B84FF;
  color: #FFFFFF;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  pointer-events: none;
}

.urgent-alert {
  background-color: #DC3545;
  color: #FFFFFF;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  pointer-events: none;
}

.review-alert {
  background-color: #F97316;
  color: #FFFFFF;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  pointer-events: none;
}

.icon-box {
  height: 40px;
  width: 40px;
  color: #FFFFFF;
  border-radius: 100px;
  align-items: center;
}

body:not(.dashboard-screen) .content__container {
  background: #F7F7FA;
}

:root {
  --team-placeholder: url("data:image/jpeg;base64,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");
}

.team-info img {
  content: var(--team-placeholder);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

body, html {
  margin: 0;
  padding: 0;
}

.container-fluid {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.view-drafts-btn {
  color: #ffffff;
  background-color: #67B14C;
}
.view-drafts-btn:hover {
  background-color: #5D9C46;
  color: #ffffff;
}

.card-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: #fff;
}

.list-view .template-item {
  flex: 1 1 100% !important;
}

.list-view .card {
  flex-direction: row;
  align-items: center;
}

.list-view .card-body {
  flex: 1;
}

.toggle-buttons .btn {
  border-radius: 50%;
  padding: 0.4rem 0.6rem;
}

button#gridBtn {
  background-color: #ffffff;
  border: 1px solid #D1D5DB;
}

button#gridBtn:hover {
  color: #ffffff;
  background-color: #1B84FF;
  border-color: #1B84FF;
}

button#gridBtn.active {
  color: #ffffff;
  background-color: #1B84FF;
  border-color: #1B84FF;
}

button#listBtn {
  background-color: #ffffff;
  border: 1px solid #D1D5DB;
}

button#listBtn:hover {
  color: #ffffff;
  background-color: #1B84FF;
  border-color: #1B84FF;
}

button#listBtn.active {
  color: #ffffff;
  background-color: #1B84FF;
  border-color: #1B84FF;
}

.workflow-title {
  margin-top: 0 !important;
}

.status-icon {
  margin-right: 0.25rem;
}

.search-row {
  background-color: #f8f9fa;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 1rem;
}

.search-row .form-control {
  border-radius: 0.375rem;
  border: 1px solid #ced4da;
}

.search-row .form-select {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  background-color: #fff;
}

.search-row .btn-outline-secondary {
  border-radius: 0.375rem;
}

.team-actions-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.team-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-actions {
  display: flex;
  gap: 0.5rem;
}

.card-actions .btn {
  background: none;
  border: none;
  color: #000000;
  font-size: 1rem;
  padding: 0.25rem;
}

.card-actions .btn:hover {
  color: #0d6efd;
}

.card-workflow {
  border-radius: 12px;
  border-color: #E5E7EB;
}

.yearly-card-badge {
  background-color: #9B52E1;
}

.quarterly-card-badge {
  background-color: #67B14C;
}

.status-info {
  font-size: 12px;
  color: #6B7280;
}

.scheduled-icon {
  color: #22C55E;
}

.manual-icon {
  color: #F97316;
}

.event-icon {
  color: #3B82F6;
}

.published-status-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border: 1px solid #67B14C;
  border-radius: 4px;
}

.draft-status-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border: 1px solid #FFBC05;
  border-radius: 4px;
}

.divider {
  color: #D1D5DB;
}

.no-templates-icon {
  background-color: #F3F4F6;
  width: 64px;
  height: 64px;
  margin: auto;
  border-radius: 100px;
  align-content: center;
}

.bubble-card {
  background: linear-gradient(180deg, var(--primary), #0b5ed7);
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease-in-out;
  margin: 10px;
  cursor: pointer;
}
.bubble-card:hover {
  transform: scale(1.05);
}
.bubble-card h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.bubble-card p {
  font-size: 1em;
  margin: 5px 0;
}
.bubble-card hr {
  border-color: white;
  margin: 20px 0;
  opacity: 1;
}

body {
  background-color: #f8f9fa;
}

.info-line > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 120px;
}

.form-text {
  font-size: 12px;
}

.step-preview-number-blue {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #1B84FF;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.badge.bg-client {
  background-color: #DCFCE7;
  color: #15803D;
}

.calendar-container {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.06);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

button.fc-prev-button.fc-button.fc-button-primary {
  background-color: transparent;
  color: #1B84FF;
  border: 1px solid #1B84FF;
  border-radius: 8px;
}

button.fc-next-button.fc-button.fc-button-primary {
  background-color: transparent;
  color: #1B84FF;
  border: 1px solid #1B84FF;
  border-radius: 8px;
}

button.fc-today-button.fc-button.fc-button-primary {
  background-color: #1B84FF;
  color: #FFFFFF;
  border: 1px solid #1B84FF;
  border-radius: 8px;
}

button.fc-dayGridMonth-button.fc-button.fc-button-primary {
  background-color: #E9F3FF;
  color: #1B84FF;
  border: 1px solid #E9F3FF;
  border-radius: 8px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

button.fc-dayGridMonth-button.fc-button.fc-button-primary.fc-button-active {
  background-color: #1B84FF;
  color: #FFFFFF;
  border: 1px solid #1B84FF;
  border-radius: 8px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

button.fc-timeGridWeek-button.fc-button.fc-button-primary {
  background-color: #E9F3FF;
  color: #1B84FF;
  border: 1px solid #E9F3FF;
}

button.fc-timeGridWeek-button.fc-button.fc-button-primary.fc-button-active {
  background-color: #1B84FF;
  color: #FFFFFF;
  border: 1px solid #1B84FF;
}

button.fc-timeGridDay-button.fc-button.fc-button-primary {
  background-color: #E9F3FF;
  color: #1B84FF;
  border: 1px solid #E9F3FF;
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

button.fc-timeGridDay-button.fc-button.fc-button-primary.fc-button-active {
  background-color: #1B84FF;
  color: #FFFFFF;
  border: 1px solid #E9F3FF;
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

button.fc-button.fc-button-primary:hover {
  background-color: #1B84FF;
  color: #FFFFFF;
  border: 1px solid #1B84FF;
  border-radius: 8px;
}

th.fc-col-header-cell.fc-day {
  background-color: #F7F7FA;
}

.fc .fc-col-header-cell-cushion {
  text-decoration: none;
  text-transform: uppercase;
  color: #1B84FF;
  font-weight: 500;
}

td.fc-day.fc-day-past.fc-day-other.fc-daygrid-day {
  background-color: #F7F7FA;
}

.fc .fc-daygrid-day-top {
  flex-direction: row;
}

.fc .fc-daygrid-day-number {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 21px;
  padding: 10px;
}

a.fc-event.fc-event-start.fc-event-end.fc-event-past.fc-daygrid-event.fc-daygrid-dot-event {
  background-color: #E9F3FF;
  border-radius: 4px;
  color: #1B84FF;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 4px;
  padding-right: 4px;
}

.fc-daygrid-event-dot {
  border: calc(var(--fc-daygrid-event-dot-width) / 2) solid #1B84FF;
}

.fc .fc-daygrid-event {
  margin-top: 5px;
}

.fc-daygrid-dot-event .fc-event-title {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-h-event .fc-event-title-container {
  background-color: #1B84FF;
  color: #FFFFFF;
  font-weight: 700;
}

a.fc-event.fc-event-start.fc-daygrid-event.fc-daygrid-block-event.fc-h-event {
  background-color: #1B84FF;
  color: #FFFFFF;
  font-weight: 700;
  border: 1px solid #1B84FF;
  border-radius: 4px;
  margin-left: 10px;
}

.fc-daygrid-block-event .fc-event-time, .fc-daygrid-block-event .fc-event-title {
  background-color: #1B84FF;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-h-event .fc-event-main-frame {
  background-color: #1B84FF;
  padding-left: 4px;
}

.fc-direction-ltr .fc-daygrid-event.fc-event-end {
  margin-right: 10px;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(27, 132, 255, 0.25);
}

.fc-v-event .fc-event-title-container, .fc-v-event .fc-event-main-frame {
  background-color: #E9F3FF;
  color: #1B84FF;
}

.fc-v-event .fc-event-title {
  padding: 4px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-timegrid-event .fc-event-time {
  padding-left: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc .fc-toolbar-title {
  color: #000000;
  font-weight: 500;
}

.fc .fc-timegrid-axis-cushion {
  color: #000000;
}

.fc-direction-ltr .fc-timegrid-slot-label-frame {
  color: #000000;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event, .fc-timegrid-event.fc-event-mirror, .fc-timegrid-more-link {
  background-color: #E9F3FF;
  border: #E9F3FF;
}

body.auth-screen {
  background: #fff;
}

.login-register-screen {
  background-color: #FFFFFF;
}
.login-register-screen--right {
  display: none;
}
.login-register-screen--left {
  padding: 1.5rem;
}
.login-register-screen--left h4 {
  margin-top: 15px;
  font-size: 33px;
}
.login-register-screen--left img {
  display: block;
  max-width: 50px;
}
.login-register-screen--left .login-register-screen__form-container input {
  padding: 10px;
}
.login-register-screen--left .login-register-screen__form-container .btn {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  border-radius: 8px;
}
.login-register-screen--left .input-box {
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
.login-register-screen--left button#loginPassword {
  position: absolute;
  right: 0;
  z-index: 2;
  border-radius: 8px;
}
.login-register-screen__form-container {
  width: 470px;
}
.login-register-screen__form-container img {
  display: none;
}
@media screen and (min-width: 800px) {
  .login-register-screen {
    display: block;
  }
  .login-register-screen--right {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .login-register-screen--right h2 {
    display: block;
    margin: 10px auto;
    max-width: 70%;
    font-size: 18px;
    color: #fff;
  }
  .login-register-screen img {
    display: block;
    max-width: 50px;
  }
}
@media screen and (min-width: 802px) {
  .login-register-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
  }
  .login-register-screen--right {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    background-color: var(--body-text-color);
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
  .login-register-screen--right h2 {
    font-size: 41px;
    text-align: start;
    color: #fff;
    display: block;
    margin: 10px auto;
    max-width: 70%;
  }
  .login-register-screen--right h3 {
    font-size: 18px;
    color: #fff;
    text-align: start;
    display: block;
    margin: 10px auto;
    max-width: 70%;
  }
  .login-register-screen--right p {
    font-size: 16px;
    color: #94A3B8;
    display: block;
    margin: 10px auto;
    max-width: 70%;
  }
  .login-register-screen--right .container {
    padding: 100px;
  }
  .login-register-screen--right .login-register-screen__form-container {
    width: auto;
  }
  .login-register-screen--right .login-register-screen__form-container img {
    display: block;
  }
  .login-register-screen--left {
    background: #FFFFFF;
  }
  .login-register-screen__form-container {
    max-width: 470px;
    padding: 28px;
  }
  .login-register-screen .alert {
    margin-bottom: 0;
  }
  .login-register-screen img {
    display: block;
  }
}

.mobile-background {
  height: 280px;
  background-color: var(--body-text-color);
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
}
.mobile-background h2 {
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 0 60px;
}
.mobile-background img {
  width: 218px;
  margin-bottom: 20px;
}
@media screen and (min-width: 802px) {
  .mobile-background {
    display: none;
  }
}

.input-group {
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}

.btn-password {
  position: absolute;
  right: 0;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px;
}
.btn-password:active {
  border: none !important;
  outline: none !important;
}

.nav__top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  height: 80px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.06);
  z-index: 99;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .nav__top {
    left: 260px;
  }
}
.nav__header-title {
  font-size: 24px;
  margin-left: 16px;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--body-text-color);
}
.nav__user-icon {
  height: 38px;
  width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 132, 255, 0.1019607843);
  border-radius: 50%;
  text-align: center;
  margin-right: 5px;
}
.nav__user-icon:before {
  scale: 1.5;
}
.nav__sidebar-navigation .nav-link {
  padding: 0.6rem 1rem;
  font-weight: 400;
  font-size: 16px;
  border: 0;
  color: #000000;
  display: flex;
  align-items: center;
}
.nav__sidebar-navigation .nav-link:hover, .nav__sidebar-navigation .nav-link.active {
  color: #fff;
  background: var(--primary);
}
.nav__sidebar-navigation .nav-link i {
  position: relative;
  display: inline-flex;
}
.nav__profile-dropdown {
  color: #000;
}
.nav__sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  bottom: 0;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.06);
  z-index: 9999;
}
.nav__sidebar-logo {
  display: block;
  padding: 20px;
}
.nav__sidebar-logo img {
  width: 160px;
}
.nav__settings-dropdown {
  padding: 15px;
  transition: background 0.2s ease-in-out;
  border-radius: 4px;
  color: #000;
}
.nav__settings-dropdown:hover {
  background: #1B84FF;
  color: #fff !important;
  border-radius: 4px;
  transition: background 0.2s ease-in-out;
}
.nav__links-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 82px);
  padding: 0 10px;
}

.page-link {
  color: #000000;
}

.nav__header-title {
  flex-grow: 1;
  margin: 0;
}

.flex-grow-1.d-flex.flex-column {
  margin-left: 260px;
  margin-top: 80px;
  padding: 1rem;
}

.nav__sidebar-navigation li {
  width: 100%;
}

.entity-name-type-block {
  padding: 0.6rem 1rem;
  background-color: #e3f2fd;
  color: #000000;
  border-radius: var(--bs-nav-pills-border-radius);
}

span.entity-name {
  font-weight: 700;
}

span.entity-type {
  font-weight: 400;
  font-size: 12px;
}

.nav__sidebar .nav-link {
  padding: 0.6rem 1rem;
  font-weight: 400;
  font-size: 16px;
  border: 0;
  color: #000000;
  display: flex;
}

.nav__sidebar .nav-link.active {
  border: 0;
  background-color: #e3f2fd;
  color: #1B84FF;
}

.nav__sidebar .nav-link:hover {
  border: 0;
  background-color: #e3f2fd;
  color: #1B84FF;
  cursor: pointer;
}

.submenu {
  padding-left: 1rem;
  margin-top: 0.3rem;
  transition: all 0.3s ease;
}

.submenu li {
  width: 100%;
}

.submenu .nav-link {
  padding: 0.4rem 1.5rem;
  font-size: 0.925rem;
  background-color: #f1f8ff;
  border-left: none;
}

.submenu .nav-link:hover {
  background-color: #d6ecff;
  color: #0d47a1;
}

.submenu .nav-link.active {
  background-color: #1565c0;
  color: white !important;
  border-left-color: #0d47a1;
}

@media (max-width: 768px) {
  .nav__sidebar-navigation {
    align-items: flex-start !important;
  }
  .nav-link {
    justify-content: flex-start !important;
  }
  .arrow-icon {
    margin-left: auto;
  }
}
.nav__links-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  overflow-y: auto;
}

.storage-info {
  margin-top: auto;
  margin-bottom: 1rem;
  width: 100%;
}
.storage-info .nav-link {
  padding: 6px 15px;
  color: #000;
  cursor: default;
}
.storage-info__container {
  width: 100%;
}
.storage-info__header {
  gap: 8px;
  font-weight: 400;
  font-size: 1rem;
  color: #000;
}
.storage-info__icon {
  font-size: 1.2rem;
}
.storage-info__progress-bar {
  background: #eee;
  border-radius: 8px;
  height: 4px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 6px;
}
.storage-info__progress-fill {
  background: #1B84FF;
  height: 100%;
  transition: width 0.5s ease;
}
.storage-info__usage-text {
  padding: 0;
  color: #000;
  cursor: default;
  font-weight: 400;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .storage-info {
    margin-bottom: 1rem;
  }
}
.nav__nested .nav-link {
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  padding: 0 10px 0 22px;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1;
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__nested .nav-link:hover {
  background-color: #f8f9fa;
  color: #000;
}
.nav__nested .nav-link:hover::before {
  opacity: 1;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="45" viewBox="0 0 14 45" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.5 19.25L12 22.75M12 22.75L8.5 26.25M12 22.75H4C2.34 22.75 1 21.41 1 19.75V13" stroke="%23B5B5B5" stroke-width="2" stroke-linecap="round"/></svg>');
}
.nav__nested .nav-link.menu-open {
  background-color: #E3F2FD !important;
  color: #0d6efd !important;
}
.nav__nested .nav-link.menu-open .nav-link {
  background: red !important;
}
.nav__nested .nav-link.active {
  background-color: #F1F1F1;
  color: #000000;
}
.nav__nested .nav-link.active:hover {
  background-color: #ededed;
  color: #000000;
}
.nav__nested .nav-link.active::before {
  opacity: 1;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="45" viewBox="0 0 14 45" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.5 19.25L12 22.75L8.5 26.25" stroke="%23B5B5B5" stroke-width="2" stroke-linecap="round"/><path d="M12 22.75H4C2.34 22.75 1 21.41 1 19.75V0" stroke="%23B5B5B5" stroke-width="2"/></svg>');
}
.nav__nested .nav-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.nav__nested .nav-link.connected {
  color: #999;
  opacity: 1;
}
.nav__nested .nav-link.connected::before {
  opacity: 1;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="45" viewBox="0 0 14 45" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 45L1 0" stroke="%23B5B5B5" stroke-width="2"/></svg>');
}
.nav__nested .nav-link.connected:hover::before {
  opacity: 1;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="45" viewBox="0 0 14 45" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_3757_467)"><path d="M8.5 19.25L12 22.75L8.5 26.25" stroke="%23B5B5B5" stroke-width="2" stroke-linecap="round"/><path d="M12 22.75H4C2.34 22.75 1 21.41 1 19.75V0" stroke="%23B5B5B5" stroke-width="2" stroke-linecap="round"/><path d="M1 45L1 0" stroke="%23B5B5B5" stroke-width="2"/></g><defs><clipPath id="clip0_3757_467"><rect width="14" height="45" fill="white"/></clipPath></defs></svg>') !important;
}
.nav__nested .nav-link::before {
  content: "";
  width: 14px;
  height: 45px;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="45" viewBox="0 0 14 45" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.5 19.25L12 22.75L8.5 26.25" stroke="black" stroke-width="2" stroke-linecap="round"/><path d="M12 22.75H4C2.34 22.75 1 21.41 1 19.75V13" stroke="black" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.nav__nested .nav-link i {
  width: 20px;
  text-align: center;
}

.nav__back {
  border-radius: var(--bs-border-radius);
  padding: 0.6rem 1rem;
  background-color: #ffffff;
  transition: background 0.2s ease-in-out;
}
.nav__back:hover {
  padding: 0.6rem 1rem;
  background-color: #E3F2FD;
  transition: background 0.2s ease-in-out;
}

.nav__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  margin-right: 1rem;
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-size: 19px;
}

.nav__breadcrumbs {
  display: none;
}
@media (min-width: 768px) {
  .nav__breadcrumbs {
    display: block;
  }
}

.card {
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

.task-sub-heading {
  font-size: 0.875rem;
  font-weight: 700;
}

.step-order {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.step-order .badge {
  background-color: #6c757d;
  color: #fff;
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.badge.in-progress {
  background-color: #FFBC05;
  color: #000000;
  font-weight: 500;
}

.step-complete .task-list > div,
.step-complete .task-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.step-complete .task-list ul {
  padding-left: 0;
}

.alert.alert-completed {
  background-color: #F0FDF4;
  border: 1px solid #DCFCE7;
  color: #15803D;
  font-size: 0.875rem;
  font-weight: 500;
}

.notification-email-preview {
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
}

.email-preview-body {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
}

.step-control-disabled {
  background-color: #F9FAFB;
  border-top: 5px solid #707070;
  border-radius: 0.5rem;
}

.step-control-enabled {
  background-color: #E1EFDB;
  border-top: 5px solid #67B14C;
  border-radius: 0.5rem;
}

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

body {
  background-color: #f8f9fa;
}

.card-container {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #212529;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

.info-line > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 120px;
}

.info-label {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.info-value, .card-badge {
  font-size: 0.875rem;
  font-weight: 500;
}

.info-value {
  font-size: 1rem;
}

.card-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #007bff;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.btn-custom {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
}

.btn-default {
  background-color: transparent;
  border: 1px solid #6C757D;
  color: #212529;
}

.btn-default:hover {
  background-color: transparent;
  border: 1px solid #1B84FF;
  color: #1B84FF;
}

.btn-edit {
  background-color: #1B84FF;
  border: none;
  color: #ffffff;
}

.btn-edit:hover {
  background-color: #0b5ed7;
  border: none;
  color: #ffffff;
}

.btn-custom:hover {
  opacity: 0.9;
}

.last-uploaded {
  color: #212529;
}

body {
  background-color: #f8f9fa;
}

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

.page-header h1 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 0.5rem;
}

.card-custom {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #212529;
}

.metadata-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.metadata-row div {
  font-size: 0.875rem;
}

.step-preview-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #0F2648;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.step-preview-number-grey {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #D1D5DB;
  color: #fff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.step-preview-item {
  display: flex;
  align-items: flex-start;
}

.step-preview-text {
  font-size: 0.875rem;
  color: #4B5563;
}

.workflow-step {
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background-color: #F3F4F6;
}

.workflow-step.active {
  background-color: #ffffff;
  border: 2px solid #0F2648;
}

.btn-edit-step {
  background-color: #1B84FF;
  color: #fff;
  border: none;
}

.btn-edit-step:hover {
  background-color: #0b5ed7;
  color: #fff;
  border: none;
}

.btn-add-step {
  background-color: #1B84FF;
  color: #fff;
  border: none;
}

.btn-add-step:hover {
  background-color: #0b5ed7;
  color: #fff;
  border: none;
}

.task-steps {
  counter-reset: section;
}

.task-step {
  display: flex;
  border-bottom: 1px solid #DEE6ED;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.task-step:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  margin-left: -38px;
  font-weight: 600;
  color: var(--primary);
  border: 2px solid var(--primary);
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
}

.modal .task-step:before {
  display: none;
}

.treeview-grid-bg {
  background: url("../images/treeview-background-pattern.png");
}

.tree-view-container.treeview-full-screen {
  position: fixed !important;
  inset: 0;
  z-index: 999;
}
.tree-view-container.treeview-full-screen svg {
  height: 100vh !important;
}
.tree-view-container.treeview-full-screen .tree-view-back-btn {
  display: none !important;
  border-radius: 8px;
}
.tree-view-container .treeview-add-border:before {
  content: "";
  display: block;
  height: 5px;
  background: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.stats-card {
  padding: 10px;
  height: 90px;
  border-radius: 10px;
  box-shadow: 1px 0 64px -20px rgba(0, 0, 0, 0.75);
}

@media screen and (max-width: 767px) {
  li.paginate_button.previous {
    display: inline;
  }
  li.paginate_button.next {
    display: inline;
  }
  li.paginate_button {
    display: none;
  }
  li.paginate_button.active {
    display: inline;
  }
  li.paginate_button.disabled {
    display: inline;
  }
}
.pagination {
  z-index: 0;
  position: relative;
}

.files-table {
  border-style: none !important;
}
.files-table tbody, .files-table td, .files-table tfoot, .files-table th, .files-table thead, .files-table tr {
  border-style: none !important;
}

.checkbox-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-container .checkbox {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox-container .checkbox .checkbox-circle {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d9d9d9;
  transition: all 0.3s;
}
.checkbox-container .checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: all 0.3s;
}
.checkbox-container .checkbox .checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  transition: stroke-dashoffset 0.3s;
}
.checkbox-container .checkbox .checkmark-kick {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  transition: stroke-dashoffset 0.3s;
}
.checkbox-container .checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.checkbox-container .checkbox input[type=checkbox]:checked ~ .checkbox-circle {
  background: #0d6efd;
  border-color: #215ebd;
}
.checkbox-container .checkbox input[type=checkbox]:checked ~ .checkbox-circle .checkmark {
  opacity: 1;
}
.checkbox-container .checkbox input[type=checkbox]:checked ~ .checkbox-circle .checkmark-circle {
  stroke-dashoffset: 0;
}
.checkbox-container .checkbox input[type=checkbox]:checked ~ .checkbox-circle .checkmark-kick {
  stroke-dashoffset: 0;
}

.files-table-action-icons {
  text-decoration: none;
}

.client-accordion .accordion-item {
  border: none;
}
.client-accordion .accordion-item .accordion-button {
  padding: 0.25rem !important;
}
.client-accordion .accordion-item .accordion-body {
  padding: 0.25rem !important;
}

@media screen and (min-width: 992px) {
  .folders-container {
    display: grid;
    grid-template-columns: 268px max-content 1fr;
  }
}

#client_table_length {
  display: flex;
  align-items: center;
}

#client_table_filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

select#showActiveClients {
  width: 180px;
  height: 36px;
}

select#searchClientsGroups {
  width: 108px;
  height: 36px;
}

select#searchBy {
  width: 180px;
  height: 36px;
}

#folderFilesList_info {
  margin-top: 5px;
}

.folders-column-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.folders-column-heading .folders-column-heading__text {
  font-size: 19px;
  font-family: var(--font-family-body);
  font-weight: 600;
}
.folders-column-heading .folders-column-heading__actions {
  font-size: 13px;
  color: var(--primary);
  line-height: 1;
  font-weight: 600;
  padding: 5px 5px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.folders-column-heading .folders-column-heading__actions:hover {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-color: rgba(1, 165, 228, 0.15);
}

#folder-menu, #archive-client-menu, #move-file-menu {
  position: fixed;
  z-index: 10000;
  width: 300px;
  border-radius: 5px;
  display: none;
}
#folder-menu.visible, #archive-client-menu.visible, #move-file-menu.visible {
  display: block;
}
#folder-menu .item, #archive-client-menu .item, #move-file-menu .item {
  padding: 8px 10px;
  font-size: 15px;
  cursor: pointer;
}
#folder-menu .item:hover, #archive-client-menu .item:hover, #move-file-menu .item:hover {
  background: #f3f3f3;
}

.file-upload {
  margin-top: 30px;
}
.file-upload .file-upload-wrap {
  position: relative;
  width: 80%;
  margin: 0 10%;
  background: rgba(190, 190, 190, 0.22);
  border-radius: 10px;
  border: 4px dotted darkgray;
}
.file-upload .file-upload-wrap .file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}
.file-upload .file-upload-wrap .drag-text {
  width: 100%;
  font-size: 30px;
  vertical-align: center;
  text-align: center;
}

.tree {
  position: relative;
  padding: 0;
  font-family: var(--font-family-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
}
.tree i:before {
  margin-right: 7px;
  font-size: 22px;
}
.tree .fa-folder-open, .tree .fa-folder {
  color: var(--warning);
}
.tree .fa-html5 {
  color: #f21f10;
}
.tree ul {
  padding-left: 5px;
  list-style: none;
}
.tree ul:hover {
  cursor: pointer;
}
.tree ul li {
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tree ul li.open {
  font-weight: 600;
}
.tree ul li:before {
  content: "";
  width: 10px;
  height: 1px;
  background: #AAAAAA;
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
}
.tree ul li.open i:before {
  content: "\f07c";
  font-weight: 400;
}
.tree ul li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background-color: #AAAAAA;
}
.tree ul li:last-child:after {
  height: 15px;
}
.tree ul a {
  cursor: pointer;
}
.tree ul a:hover {
  text-decoration: none;
}

.nav-files {
  background: red !important;
}

.sub-folders {
  display: none;
}

.sub-folders.active {
  display: block;
}

#folderFilesList_wrapper .row:first-child {
  border-top: 2px solid #DEE6ED;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 2px solid #DEE6ED;
}

#folderFilesList_wrapper .dt-row {
  margin-bottom: 8px;
}

#folderFilesList_wrapper thead {
  text-align: left;
  border-bottom: 2px solid #DEE6ED;
}

.folder-location-indicator {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  background: #E9F3FF;
  padding: 6px 16px;
  border-radius: 4px;
}
.folder-location-indicator span {
  font-weight: 900;
}

.file-actions .btn {
  padding: 20px;
}

.file-table-actions {
  width: 10px !important;
}

.file-table-actions, #folderFilesList th {
  white-space: nowrap;
  overflow: hidden;
}

.org-chart {
  display: block;
  margin: 0 auto;
}
.org-chart ul {
  padding-top: 20px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.org-chart ul ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid #ccc;
  width: 0;
  height: 20px;
}
.org-chart li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.org-chart li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid #ccc;
  width: 50%;
  height: 20px;
}
.org-chart li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid #ccc;
  width: 50%;
  height: 20px;
  right: auto;
  left: 50%;
  border-left: 1px solid #ccc;
}
.org-chart li:only-child {
  padding-top: 0;
}
.org-chart li:only-child::after {
  display: none;
}
.org-chart li:only-child::before {
  display: none;
}
.org-chart li:first-child::before {
  border: 0 none;
}
.org-chart li:first-child::after {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}
.org-chart li:last-child::after {
  border: 0 none;
}
.org-chart li:last-child::before {
  border-right: 1px solid #ccc;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}

.overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.65);
  visibility: hidden;
}
.overlay.show {
  visibility: visible;
}

.overlay {
  opacity: 0;
  transition: all 0.3s;
}

.overlay.show {
  opacity: 1;
}

.loader {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: load 1.8s infinite ease-in-out;
  color: #ffffff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.loader:before, .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: load 1.8s infinite ease-in-out;
  content: "";
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}

@keyframes load {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
:root {
  --primary: #1B84FF;
  --primary-rgb: 27, 132, 255;
  --secondary: #94A3B8;
  --secondary-rgb: 108, 117, 125;
  --success: #67B14C;
  --success-rgb: 103, 177, 76;
  --info: #0dcaf0;
  --info-rgb: 13, 202, 240;
  --warning: #ffc107;
  --warning-rgb: 255, 188, 5;
  --danger: #EB4B3E;
  --danger-rgb: 235, 75, 62;
  --body-text-color: #212529;
  --font-family-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-heading: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.ff-body {
  font-family: var(--font-family-body);
}

.ff-heading {
  font-family: var(--font-family-heading);
}

html {
  font-size: 14px;
}
@media (min-width: 1501px) {
  html {
    font-size: 16px;
  }
}

body {
  background: #F7F7FA;
  font-family: var(--font-family-body);
  color: var(--body-text-color);
}

input::placeholder {
  color: #C1CBD6 !important;
}

label {
  font-weight: 600;
}

.btn .fm {
  position: relative;
  top: 2px;
}

.form-control.error {
  border-color: var(--danger) !important;
}
.form-control.error:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 13, 13, 0.09);
}

.my-row-mobile-xp {
  width: unset !important;
}

.my-nav-height {
  height: 8.7vh;
}

.my-sidebar-height {
  height: 91.3vh;
}

.my-content-area {
  min-height: 78.3vh;
}

.my-scrollable {
  height: 91.3vh;
  overflow-y: scroll;
}

.form-control.error + .error,
.form-select.error + .error,
.input-group + .error,
label.error {
  font-weight: 700;
  font-size: 11px;
  background: var(--danger);
  border-radius: 4px;
  color: #fff !important;
  padding: 4px 5px;
  line-height: 1;
  margin-top: 6px;
}

[input].error {
  border-color: var(--danger) !important;
}

label.error {
  display: none;
}

.iti--allow-dropdown {
  width: 100%;
}

.menu-item {
  width: 100%;
}

.nav-link {
  padding-left: 10px;
  padding-right: 10px;
}

.client_table {
  width: 100%;
}

.vscomp-ele {
  max-width: 100%;
  height: 38px;
}

.vscomp-toggle-button {
  border: none;
  padding-left: 0;
}

.vscomp-value {
  position: absolute;
  line-height: 1.5rem;
}

.vscomp-wrapper.focused .vscomp-toggle-button, .vscomp-wrapper:focus .vscomp-toggle-button {
  box-shadow: none;
}

.moveClients {
  display: flex;
  justify-content: center;
}

.selectize-dropdown .selected {
  background-color: var(--primary) !important;
  color: #fff;
}

#CompanyDetailsAccordian {
  cursor: pointer;
}
#CompanyDetailsAccordian .accordion-button:not(.collapsed) {
  background: none !important;
  box-shadow: none;
}

.card-header--with-actions, .card-header--heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #DEE6ED;
  flex-direction: column;
}
@media (min-width: 964px) {
  .card-header--with-actions, .card-header--heading {
    align-items: center;
    flex-direction: row;
  }
}

.card-header--heading {
  display: block;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #DEE6ED;
  padding-top: 0.5rem;
}

.card-heading {
  color: var(--body-text-color);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1rem;
}
@media (min-width: 964px) {
  .card-heading {
    margin-bottom: 0;
  }
}

.card-header--with-tabs-and-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border-bottom: 2px solid #DEE6ED;
}

.table-filter {
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 964px) {
  .table-filter {
    gap: 30px;
    flex-direction: row;
    align-items: center;
  }
}

.dataTables_info {
  color: #94A3B8;
  font-weight: bold;
}

.container.directors {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 2rem;
}