
.ontop-toast {
    z-index: 999999 !important;
}




.btn-primary-dark {
    color: #fff;
    background-color: #218524 !important;
    border-color: #218524 !important;
}

.btn-primary-dark:active,
.btn-primary-dark:hover {
  color: #fff;
  background-color: #218524 !important;
  border-color: #218524 !important;
}

.deal-buttons-custom-mr {
  margin-right: 10px !important;
  border-radius: 5px !important;
}

.usecase-example-text {
  text-align: start;
  display: block;
  color: #9b9b9b;
  font-size: 11px;
}

.np-feature-placeholder.feature-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffffff 50%,
    #e6f7e6 50%,
    #e6f7e6 100%
  );
  padding: 2rem 4rem;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.new-badge {
  background-color: #3b5bdb;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: normal;
  line-height: 1.2;
}

.hero-content h1 strong {
  font-weight: bold;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #495057;
}

.hero-buttons {
  margin-bottom: 1rem;
}

.hero-content small {
  font-size: 0.85rem;
  color: #6c757d;
}

.hero-content small a {
  color: #3b5bdb;
  text-decoration: none;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.hero-image img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  left: -50px;
}

.feature-showcase-section {
  display: flex;
  align-items: stretch;
  margin: 2rem 0;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.feature-showcase-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.feature-showcase-image img {
  width: 30%;
  height: 30%;
  object-fit: cover;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1rem;
}

.logo {
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  height: 40px;
  object-fit: contain;
}

.feature-showcase-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-showcase-label {
  color: #6610f2;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.feature-showcase-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-showcase-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.btn-find-out {
  display: inline-flex;
  align-items: center;
  color: #3b5bdb;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.btn-find-out i {
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .feature-showcase-section {
    flex-direction: column;
  }

  .feature-showcase-image {
    height: 200px;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.feature-card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
  background: white;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: #37b24d;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
}

.feature-showcase-section {
  display: flex;
  align-items: center;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.feature-showcase-section.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .feature-showcase-section,
  .feature-showcase-section.reverse {
    flex-direction: column;
  }
}

.np-sidebar {
  position: fixed;
  left: 0;
  top: 0px;
  bottom: 0;
  width: 60px;
  background-color: #1d741d;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 99999;
}

.np-sidebar-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.np-sidebar-item {
  text-align: center;
}

.np-sidebar-link {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  margin: 5px;
  border-radius: 5px;
}

.np-sidebar-link:hover,
.np-sidebar-link.active {
  background-color: #28b728;
}

.np-sidebar-link i {
  font-size: 23px;
  color: #ffffff;
}

.np-sidebar-link:hover i,
.np-sidebar-link.active i {
  color: #ffffff;
}

.np-sidebar-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #e74c3c;
  color: #ffffff;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 50%;
  font-family: 'Inter';
}

.np-sidebar-footer {
  padding: 15px 0;
  text-align: center;
}

body {
  padding-left: 60px;
  font-family: 'Inter', sans-serif !important;
}

.layout-container {
  margin-left: 60px;
}

.layout-container.shifted {
  margin-left: 310px;
}

.np-overlay-sidebar {
  position: fixed;
  left: 60px;
  top: 0px;
  bottom: 0;
  width: 220px;
  background-color: #ffffff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
}

.np-overlay-sidebar.active {
  transform: translateX(0);
}

.np-overlay-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.np-overlay-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.np-overlay-menu li a {
  font-family: 'Inter', sans-serif !important;
  display: block;
  padding: 15px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.np-overlay-menu li a:hover {
  background-color: #f0f0f0;
}

.np-overlay-menu li i {
  margin-right: 10px;
}

.custom-fields-panel {
  font-family: Arial, sans-serif;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  background: white;
}

.panel-header {
  background-color: #f5f5f5;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

.panel-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.field-count {
  background-color: #e0e0e0;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  margin-left: 5px;
}

.header-icons i {
  margin-left: 10px;
  color: #666;
  cursor: pointer;
}

.field-rows {
  padding: 0;
}

.field-row {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.field-row:last-child {
  border-bottom: none;
}

.field-name {
  font-weight: bold;
  color: #666;
  font-size: 12px;
}

.field-value {
  color: #333;
  font-size: 12px;
  text-align: right;
}

.deal-buttons-custom-mr {
  margin-right: 10px !important;
  border-radius: 5px !important;
}

.deal-buttons-custom {
  border-radius: 5px !important;
}

.workspace-selector {
  position: relative;
  width: 180px;
  font-family: 'Arial', sans-serif;
}

.workspace-selector__toggle {
  display: flex;
  align-items: center;
  background-color: #e8e8e8;
  color: black;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.workspace-selector__toggle:hover {
  background-color: #dbdbdb;
}

.workspace-selector__icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.workspace-selector__current {
  flex-grow: 1;
  font-size: 13px;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.workspace-selector__arrow {
  width: 24px;
  height: 24px;
  fill: white;
  transition: transform 0.3s ease;
}

.workspace-selector.open .workspace-selector__arrow {
  transform: rotate(180deg);
}

.workspace-selector__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.workspace-selector.open .workspace-selector__dropdown {
  opacity: 1;
  visibility: visible;
}

.workspace-selector__option {
  padding: 12px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.workspace-selector__view-all {
  position: relative;
  padding: 12px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.workspace-selector__view-all:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f0f8f4;
  z-index: -1;
}

.workspace-selector__option:hover {
  background-color: #f0f8f4;
}

.workspace-selector__view-all:hover {
  background-color: transparent;
}

.workspace-selector__view-all {
  border-top: 1px solid #e0e6ed;
  color: #2ba92f;
  font-weight: bold;
}

.workspace-selector__loading {
  padding: 12px 15px;
  font-size: 14px;
  text-align: center;
  color: #888;
}

.ti-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*Workspace selector*/

.workspace-modal-list {
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
}

.workspace-modal-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.workspace-modal-item:hover {
  background-color: #f8f9fa;
}

.workspace-modal-item.selected {
  background-color: #e9ecef;
}

.workspace-modal-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.workspace-modal-icon-img {
  width: 32px;
  height: 32px;
  border-radius: 50px;
}

.workspace-modal-name {
  font-size: 14px;
  font-weight: 500;
}

.workspace-modal-footer {
  border-top: none;
  padding: 16px 24px;
}

.workspace-modal .btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}

.workspace-modal .btn-primary {
  background-color: #2ba92f;
  border-color: #2ba92f;
}

.workspace-modal .btn-primary:hover {
  background-color: #248f27;
  border-color: #248f27;
}

#createWorkspaceModal .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#createWorkspaceModal .modal-header {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 24px;
}

#createWorkspaceModal .modal-body {
  padding: 24px;
}

#createWorkspaceModal .modal-footer {
  border-top: 1px solid #e0e0e0;
  padding: 16px 24px;
}

#createWorkspaceModal .form-label {
  font-weight: 500;
}

#createWorkspaceModal .btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}

#urlPreview {
  color: #6c757d;
  font-size: 0.875em;
}

#logoPreview img {
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

#urlAvailability {
  font-size: 0.875em;
}

#availabilityText.available {
  color: #28a745;
}

#availabilityText.unavailable {
  color: #dc3545;
}

.custom-spinner {
  width: 1rem !important;
  height: 1rem !important;
  border-width: 0.15em;
}

.feature-showcase {
  background-color: #f8f9fa;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.feature-showcase:hover {
  transform: translateY(-5px);
}

.feature-showcase-body {
  padding: 1.25rem;
}

.gif-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.gif-with-shadow {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.gif-with-shadow:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.onboarding-title {
  font-weight: 600;
  color: #333;
}

.feature-showcase-text {
  color: #666;
}

/* Form layouts */

.scrollable-list {
  max-height: 400px; /* Adjust this value as needed */
  overflow-y: auto;
  padding: 1rem; /* Add padding here instead of on the modal-body */
}

/* Custom scrollbar styles for WebKit browsers */
.scrollable-list::-webkit-scrollbar {
  width: 6px;
}

.scrollable-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scrollable-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.scrollable-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Ensure the modal doesn't exceed the viewport height */
@media (max-height: 600px) {
  .scrollable-list {
    max-height: 50vh;
  }
}

.group-label-type {
  font-size: 12px;
  top: -5px;
  position: relative;
}

.group-item-actions {
  position: relative;
  top: 30px;
}

.bg-label-yellow {
  background-color: #fbffd4 !important;
  color: #a9832b !important;
}

.bg-label-yellow.bg-glow {
  box-shadow: 0px 2px 3px 0px rgba(115, 103, 240, 0.3);
}

.badge-theme {
  background: #e8ffe8 !important;
  color: #188118 !important;
}

.select2-container .select2-results__option {
  padding: 4px 6px;
  line-height: 1.2;
}

/* Style for selected option */
.select2-container--default .select2-results__option[aria-selected='true'] {
  background-color: #28a745;
  color: white;
}

/* Style for highlighted option */
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #28a745;
  color: white;
}

/* Adjust the size and style of the selected tags */
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #28a745;
  border: 1px solid #218838;
  color: white;
  padding: 1px 6px;
  font-size: 0.9em;
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 3px;
  display: flex;
  align-items: center;
  height: 30px;
}

/* Style for the avatar in selected tags */
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice
  .select2-result-contact__avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 5px;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice
  .select2-result-contact__avatar
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Remove the blue shade from selected tags */
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: #fff;
  margin-right: 5px;
  order: 1;
}

/* Adjust the overall select2 container to accommodate smaller tags */
.select2-container--default .select2-selection--multiple {
  min-height: 34px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.select2-result-contact {
  padding: 2px;
  display: flex;
  align-items: center;
}

.select2-result-contact__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
  flex-shrink: 0;
}

.select2-result-contact__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.select2-result-contact__meta {
  flex-grow: 1;
}

.select2-result-contact__title {
  color: #333;
  font-size: 0.9em;
  margin-bottom: 0;
}

.select2-results__option--highlighted .select2-result-contact__title {
  color: white;
}

.admin-locked-panel {
  margin-bottom: -30px !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
}

.disabled-cursor {
  cursor: not-allowed !important;
}

/* FAB */

.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2ba92f;
  color: white;
  border: none;
  font-size: 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.3s;
}

.fab:hover {
  background-color: forestgreen;
  transform: scale(1.1);
}

.fab:active {
  transform: scale(0.9);
}

.fab:disabled,
.fab[disabled] {
  background-color: #939393;
  color: #000000;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}

.fab:disabled:hover,
.fab[disabled]:hover {
  background-color: #cccccc;
  transform: none;
}

.fab:disabled:active,
.fab[disabled]:active {
  transform: none;
}

.fab:disabled::before,
.fab[disabled]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

/* Theme selector */

.theme-selector {
  margin-top: 10px;
}

.theme-color {
  margin-bottom: 10px;
  cursor: pointer;
}

.color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
  transition: transform 0.2s;
}

.color-circle:hover {
  transform: scale(1.1);
}

.theme-color.selected .color-circle {
  box-shadow: 0 0 0 2px #007bff;
}

/* Chat */

.chat-link {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.chat-link:hover {
  color: #ffffff !important;
}

.chat-input-wrapper {
  position: relative;
}

.chat-attachment-preview {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  padding: 10px;
  max-height: 150px;
  overflow-y: auto;
}

.chat-history-footer {
  padding-top: 10px;
}

.chat-spinner-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
}

.chat-spinner-container .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
}

.chat-attachment-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #e0e0e0;
}

.attachment-item {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 4px;
  padding: 5px 10px;
}

.attachment-name {
  margin-right: 10px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.remove-attachment {
  cursor: pointer;
  color: #ff0000;
}

.temp-message .chat-message-text {
  transition: opacity 0.3s ease;
}

.progress-indicator {
  z-index: 1;
}

.onboarding-media .img {
  max-width: 100%;
  height: auto;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.app-chat-contacts {
  position: relative;
  height: 100vh; /* or any specific height */
}

.spinner-border {
  width: 1.5rem;
  height: 1.5rem;
}

.btn-label-primary.disabled,
.btn-label-primary:disabled {
  color: #919191 !important;
  border-color: transparent !important;
  background: #e1e1e1 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

/* Alert small buttons */
.swal-button-small {
  font-size: 0.9em !important;
}

/* Sales dashboard */

#refreshProjections {
  margin-left: 5px;
  padding: 6px 10px;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

#refreshProjections:hover {
  background-color: #e0e0e0;
}

#refreshProjections i {
  font-size: 14px;
}

.dashboard-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333333;
  font-size: 14px;
  padding: 4px 32px 4px 12px;
  width: 160px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.dashboard-select:hover {
  border-color: #0099f2;
}

.dashboard-select:focus {
  outline: none;
  border-color: #0099f2;
  box-shadow: 0 0 0 3px rgba(0, 153, 242, 0.2);
}

.dashboard-select option {
  padding: 8px;
}

/* Client Portal Preview Banner */

#notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #4caf50;
  color: white;
  text-align: center;
  padding: 10px 0;
  z-index: 10000;
}

#notice-bar p {
  margin: 0;
}

#notice-bar a {
  color: #ffd700; /* Gold color for the link */
  font-weight: bold;
}

/* Client portal */

.np-announcements-container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.np-announcements-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.np-announcements-icon {
  background-color: #e0f2ff;
  color: #0077b6;
  font-size: 24px;
  padding: 12px;
  border-radius: 50%;
  margin-right: 16px;
}

.np-announcements-title {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.np-announcements-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.np-announcement-item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 24px;
}

.np-announcement-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.np-announcement-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.np-announcement-date {
  font-size: 14px;
  color: #666666;
}

.np-announcement-category {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.np-announcement-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 8px 0;
}

.np-announcement-content {
  font-size: 16px;
  color: #666666;
  margin: 0 0 16px 0;
}

.np-announcement-link {
  font-size: 14px;
  font-weight: 600;
  color: #0077b6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.np-announcement-link:hover {
  color: #005b8c;
}

.np-files-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.np-file-item {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  transition: background-color 0.3s ease;
}

.np-file-item:hover {
  background-color: #e9ecef;
}

.np-file-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 16px;
}

.np-file-pdf {
  background-color: #ffeaea;
  color: #ff4d4d;
}

.np-file-doc {
  background-color: #e7f5ff;
  color: #007bff;
}

.np-file-xls {
  background-color: #e7fff0;
  color: #28a745;
}

.np-file-info {
  flex-grow: 1;
}

.np-file-name {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 4px 0;
}

.np-file-date {
  font-size: 12px;
  color: #666666;
}

.np-file-actions {
  display: flex;
  gap: 8px;
}

.np-file-action {
  font-size: 18px;
  color: #666666;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.np-file-action:hover {
  background-color: #e0e0e0;
  color: #333333;
}

.np-file-view:hover {
  color: #007bff;
}

.np-file-download:hover {
  color: #28a745;
}

.np-announcements-empty-state {
  text-align: center;
  padding: 0px 0px;
  background-color: #ffffff;
  border-radius: 8px;
}

.np-empty-state-img {
  max-width: 200px;
  height: 200px;
  margin-bottom: 10px;
}

.np-empty-state-title {
  font-size: 24px;
  color: #585858;
  margin-bottom: 5px;
}

.np-empty-state-description {
  font-size: 16px;
  color: #666;
  margin: 0 auto;
}

/* Updates Row in Contact view */

.np-update-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.np-update-row:last-child {
  border-bottom: none;
}

.np-update-row:hover {
  background-color: #f8f9fa;
}

.np-update-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.np-update-type {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.np-type-update {
  background-color: #e0f2ff;
  color: #0077b6;
}

.np-type-event {
  background-color: #fff0e0;
  color: #ff8c00;
}

.np-type-announcement {
  background-color: #e0ffe0;
  color: #00a86b;
}

.np-type-note {
  background-color: #e0f2ff;
  color: #0077b6;
}

.np-type-important {
  background-color: #ffe9e0;
  color: #b62700;
}

.np-type-link {
  background-color: #f2e0ff;
  color: #8d00b6;
}

.np-update-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.np-update-actions {
  display: flex;
  gap: 8px;
}

.np-communication-updates {
  padding: 1.5rem;
}

.np-communication-updates .np-updates-text-content {
  flex: 1;
  padding-right: 1rem;
}

.np-communication-updates .np-updates-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.np-communication-updates .np-updates-subtitle {
  font-size: 0.875rem;
  color: #a5a3ae;
}

.np-communication-updates .np-updates-btn {
  flex-shrink: 0;
}

.custom-swal {
  z-index: 10000 !important;
}

.custom-search-box-container {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  background: white;
  padding: 10px;
  top:10px;
}

.custom-search-bar {
  flex-grow: 1;
}

.custom-search-input {
  width: 100%;
}

.spinner-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.email-picker-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}

.email-picker-selected {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 5px;
  position: relative;
}

.email-picker-info {
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}

.email-picker-selected:hover,
.email-picker-selected:focus {
  background-color: #f1f1f1;
}

.email-picker-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  position: absolute;
  right: 10px;
}

.email-picker-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 100%;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 5px;
  border: 1px solid #ccc;
}

.email-picker-dropdown-content.show {
  display: block;
}

.email-picker-dropdown-content .email-picker-email-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-picker-dropdown-content .email-picker-email-item:hover {
  background-color: #f1f1f1;
}

.email-picker-email-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-right: 10px;
}

.email-picker-email-info {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.email-picker-email-address {
  font-weight: 600;
  font-family: Arial, sans-serif;
  margin-bottom: 2px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.email-picker-email-provider {
  color: #828282;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.noselect {
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tagify__tag--account {
  --tag-bg: #2ba92f !important;
  --tag-text-color: white !important;
  --tag-border-radius: 50px;
  --tag-hover: #2ba92f;
  --tag-pad: 0.3em 0.9em;
  --tag-remove-btn-color: white;
  --tag-remove-btn-bg--hover: #fff2f1;
  --tag-remove-bg: #a50c00;
  --tag-remove-text-color: white;
}

.tagify__tag--deal {
  --tag-bg: #0084ff !important;
  --tag-text-color: white !important;
  --tag-border-radius: 50px;
  --tag-hover: #0084ff;
  --tag-pad: 0.3em 0.9em;
  --tag-remove-btn-color: white;
  --tag-remove-btn-bg--hover: #fff2f1;
  --tag-remove-bg: #a50c00;
  --tag-remove-text-color: white;
}

.warning-div {
  background-color: #fcf5d4;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.warning-text {
  color: #000;
  margin: 0px !important;
}

.disabled-field {
  background-color: #f7f7f7 !important;
  pointer-events: none;
}

.disabled-field:hover {
  background-color: #f7f7f7 !important;
}

.disabled-field:focus {
  background-color: #f7f7f7 !important;
}

.text-black-dark {
  color: #000 !important;
}

.auth-bg {
  background: #f8f7fa !important;
}

.pabbly_logo {
  width: 10%;
  padding: 24px;
}

.twilio_logo {
  width: 10%;
  padding-left: 24px;
  padding-top: 24px;
}

.openaimain_logo {
  width: 10%;
  padding-left: 24px;
  padding-top: 24px;
}

.openai_logo {
  width: 20px;
}

.card-header {
  display: flex;
  align-items: center;
}

.bg-label-purple {
  background-color: #eae0fd !important;
  color: #8743ff !important;
  font-weight: 700;
  font-size: 10px;
  padding: 3px 6px;
  margin-left: 4px;
  border-radius: 4px;
}

.bg-label-blue {
  background-color: #d0e7ff !important;
  color: #007bff !important;
  font-weight: 700;
  font-size: 10px;
  padding: 3px 6px;
  margin-left: 4px;
  border-radius: 4px;
}

/* Green Label */
.bg-label-green {
  background-color: #d2f8e4 !important;
  color: #28a745 !important;
  font-weight: 700;
  font-size: 10px;
  padding: 3px 6px;
  margin-left: 4px;
  border-radius: 4px;
}

/* Red Label */
.bg-label-red {
  background-color: #fde0e0 !important;
  color: #dc3545 !important;
  font-weight: 700;
  font-size: 10px;
  padding: 3px 6px;
  margin-left: 4px;
  border-radius: 4px;
}

/* Orange Label */
.bg-label-orange {
  background-color: #ffe8d3 !important;
  color: #ff7c07 !important;
  font-weight: 700;
  font-size: 10px;
  padding: 3px 6px;
  margin-left: 4px;
  border-radius: 4px;
}

.badge-lg {
  font-size: 14px;
  bottom: 4px !important;
  position: relative;
}

.workflow-disabled-card {
  position: relative;
  pointer-events: none; /* Prevents all click, state and drag behaviors */
  opacity: 0.6; /* Reduces the opacity to visually "grey out" the card */
}

/* This pseudo-element adds a light overlay to the disabled card */
.workflow-disabled-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(
    255,
    255,
    255,
    0.3
  ); /* White overlay with 30% opacity */
  z-index: 1;
}

.workflow-email-template-img {
  max-height: 286px;
  object-fit: contain;
}

@media screen and (max-width: 1198px) {
  .mobile-tablet-margin {
    margin-bottom: 10px;
  }
}

.store-icons {
  position: absolute;
  bottom: 70px;
  right: 130px;
  width: 100%;
  text-align: center;
}

.store-icons img {
  width: 26%;
}

/* Specific styling for screens exactly 769 pixels wide */
@media only screen and (min-width: 769px) and (max-width: 769px) {
  .store-icons {
    bottom: 50px; /* Adjust as needed */
    right: 60px; /* Adjust as needed */
  }

  .store-icons img {
    width: 30%; /* Adjust as needed */
  }
}

/* Media query for screens smaller than 768 pixels (typical breakpoint for mobile devices) */
@media only screen and (max-width: 768px) {
  .store-icons {
    bottom: 30px;
    right: 0px;
  }

  .store-icons img {
    width: 40%;
  }
}

.auth_mobile_logo {
  display: none; /* default to hidden, shown only in mobile view */
  margin-left: 25px;
  padding-bottom: 20px;
}

.signup_multi_steps_header {
  display: block; /* default to block, hidden only in mobile view */
}

/* CSS for visibility on mobile only */
@media only screen and (max-width: 991px) {
  .auth_mobile_logo {
    display: block;
  }

  .signup_multi_steps_header {
    display: none;
  }
}

.data_bin_label {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.btn-success:disabled {
  background-color: grey !important;
  border-color: grey !important;
}

.btn-dark:focus {
  color: white !important;
}

.dataTables_wrapper {
  padding: 15px;
  background: white !important;
}

.databin_table {
  background: white !important;
}

.table thead th {
  vertical-align: middle;
  text-align: start;
  background-color: #ffffff;
  color: #fff;
}

.dataTables_length label,
.dataTables_filter label,
.dataTables_info,
.dataTables_paginate {
  color: #4a5568;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.badge-dot {
  animation: blink 1s linear infinite;
}

.align-left {
  float: left;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 1s linear infinite;
}

.mb-10 {
  margin-bottom: 6rem !important;
}

/*OTP*/

.digit-group input {
  width: 30px;
  height: 50px;
  background-color: lighten($BaseBG, 5%);
  border: none;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  color: white;
  margin: 0 2px;
}

.digit-group .splitter {
  padding: 0 5px;
  color: white;
  font-size: 24px;
}

.carousel-indicators li {
  pointer-events: none !important;
}

.chat_attachment_img {
  height: 200px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer !important;
}

.chat_attachment_video {
  height: 300px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer !important;
}

.notification_placeholder_text {
  margin-left: 50px !important;
  margin-right: 50px !important;
  margin-top: -20px !important;
}

.notification_panel_spinner {
  height: 20px !important;
  width: 20px !important;
}

/* Tasks */
.task_name {
  font-size: 18px !important;
}

.task_description {
  font-size: 14px !important;
  min-width: 336px !important;
}

@media (max-width: 768px) {
  .task_description {
    font-size: 14px !important;
    min-width: auto !important;
  }
}

.warning_label {
  font-size: 13px !important;
  color: #ff7d00 !important;
}

.selected_row {
  background: #ededed !important;
}

.unclickable {
  pointer-events: none;
}

.profile_pic {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.pipeline_illustration {
  width: 335px;
  margin-left: -36px;
  height: 400px;
  margin-top: -106px;
}

.contact_other_label {
  margin-left: 26px;
  font-weight: 600;
}

.contact_list_spinner {
  width: 20px !important;
  height: 20px !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.contact_suggestion_li {
  padding-left: 20px !important;
  background: #ffffff !important;
}

.clickable-span {
  cursor: pointer !important;
}

.p-5-form {
  padding: 3rem;
}

/* Mobile-first approach */
@media (max-width: 767px) {
  .p-5-form {
    padding: 0;
  }
}

.selected-option {
  background: #d9ffda !important;
}

.ml_18 {
  margin-left: 18px !important;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 10px;
  background-color: #f8f9fa;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
}

.buttons-container {
  display: flex;
  justify-content: flex-end;
}

.mr-2 {
  margin-right: 5px !important;
}

.mr-3 {
  margin-right: 7.5px !important;
}

.mr-4 {
  margin-right: 10px !important;
}

.mr_2 {
  margin-right: 5px !important;
}

.ml_7 {
  margin-left: 7px;
}

.progress-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  --bs-progress-border-radius: 0px !important;
}

.progressbar-forms {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.highlight {
  font-weight: 700;
}

.chat-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#command_progress,
#command_suggestions {
  order: 2;
  position: absolute;
  z-index: 1;
  width: 97.3%;
  bottom: 90px;
  margin-left: 24px;
  display: none;
}

.cmd_suggestion_item {
  background: white !important;
}

.cmd_suggestion_item:hover {
  background: #f1f1f1 !important;
}

.cmd_icon {
  border-radius: 10% !important;
  background: #35a535 !important;
}

.cmd_title {
  margin-bottom: -3px !important;
}

#chat_bar {
  order: 3;
}

.cards_panel {
  margin-top: 20px !important;
  min-height: 385px !important;
  background: #ebeaef !important;
}

/* Override */

.signature-row {
  margin-top: 80px !important;
}

.my-swal {
  z-index: 10000 !important;
}

.chooty-btn {
  padding: 4px 12px;
  font-size: 14px;
  background-color: #007ac9 !important;
  border: 1px solid #007ac9 !important;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.chooty-btn:active,
.chooty-btn.active {
  background-color: #004d7e !important;
  border-color: #004d7e !important;
  color: #fff !important;
}

.chooty-btn:hover {
  background-color: #003f67 !important;
  border-color: #003f67 !important;
  color: #fff !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff !important;
  background-color: #4caf50 !important;
  border-color: #4caf50 !important;
  box-shadow: none !important;
}

.select2-results__option[role='option'][aria-selected='true'] {
  background-color: #2ba92f !important;
  color: #fff !important;
}

.select2-container--default
  .select2-results__option--highlighted:not([aria-selected='true']) {
  background-color: rgb(53 165 53) !important;
  color: #ffffff !important;
}

/* Wizard */
.form-row {
  display: flex;
}

.form-group {
  flex: 1;
  margin-right: 10px;
  /* Adjust the spacing between the elements */
}

.stepper_content {
  padding: 30px !important;
}

/* General */

.hidden {
  display: none !important;
}

.gone {
  display: none !important;
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.chat-bubble {
  background-color: #35a535 !important;
}

.full_width {
  max-width: none !important;
}

.stat_card {
  background: linear-gradient(45deg, #191a1d, #545c68) !important;
  border-radius: 10px !important;
}

.stat-card-date {
  font-size: 12px !important;
  color: #f5f5f5 !important;
}

.space_top {
  padding-top: 0px !important;
}

@media only screen and (max-width: 767px) {
  .space_top {
    padding-top: 20px !important;
  }
}

.builder_btn_sm {
  padding: 5px !important;
}

.choice_btn {
  width: 350px;
}

.list-group-item {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

.list-group-item:hover .delete-icon {
  display: inline-block;
}

.delete-icon {
  display: none;
  margin-left: 5px;
  font-size: 26px;
}

/*Builder*/

.question_list_item {
  border: none !important;
  user-select: none;
  padding: 0px;
  margin-bottom: 5px;
}

.list-group-item.selected {
  background-color: #f5f5f5;
  font-weight: bold;
}

.question_title {
  font-size: 24px !important;
}

.question_details {
  font-size: 16px !important;
  color: #6a6a6a !important;
}

.form-date-picker {
  border: 1px solid #dadce0 !important;
  font-size: 14px !important;
}

.bg-label-purple {
  background-color: #eae0fd !important;
  color: #8743ff !important;
}

.question_bigtext {
  font-size: 20px !important;
  user-select: none !important;
}

.builder_choice_input {
  font-size: 18px !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.hover-effect:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

.badge-big {
  height: 40px;
  width: 40px;
}

.attachment_icon {
  width: 85% !important;
  height: 100% !important;
}

/*added by samith 2023-06-05*/

/*added by hashan 2023-07-06*/
#command_suggestions {
  height: 300px;
  overflow-y: scroll;
}

#command_suggestions::-webkit-scrollbar {
  width: 4px;
  height: 5px;
  transition: all 0.2s ease-in-out;
}

#command_suggestions::-webkit-scrollbar-thumb {
  background-color: rgba(75, 70, 92, 0.4);
  border-radius: 10rem;
  transition: background-color 0.2s linear;
}

#command_suggestions::-webkit-scrollbar-track {
  background-color: transparent;
  position: absolute;
  width: 6px;
  right: 2px;
  transition: width 0.2s ease-in-out;
}

#command_suggestions:hover::-webkit-scrollbar-thumb {
  background-color: rgba(75, 70, 92, 0.8);
}

#command_suggestions:hover::-webkit-scrollbar-track {
  width: 8px;
}
/*added by hashan 2023-07-07*/
.text-overflow {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 200px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-container {
  display: flex;
  align-items: center;
}

.text-container div {
  margin-right: 2px;
}

/*for limit the description in task panel*/
.description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
/*for long task name */
.input-container {
  position: relative;
  width: 100%;
}

.input-container input {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

.tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 5px;
  white-space: nowrap;
  z-index: 2;
  display: none;
}

.input-container:hover .tooltip {
  display: block;
}

.list-group-item {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

/*added 20.07.2023 by hashan*/
.light-style .tagify__tag .tagify__tag-texta {
  color: #6f6b7d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 120px;
}

.dark-style .tagify__tag > div .tagify__tag-texta {
  color: #b6bee3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 120px;
}

.tooltip-inner {
  background-color: #333;
  color: #fff;
  font-size: 14px;
}

/*to set all images to same size (account profile)*/
.profile-picture {
  width: 100px;
  height: 100px;
}
/*deals page container to center the card*/
.containerA {
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: -40px;
}

.onboarding-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.onboarding-info-container {
  text-align: center;
}

.custom-select-width {
  width: 140px;
}

.rounded {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .fixed-div {
    order: -1;
  }
}

/*for work flow delete button*/
.delete-button {
  display: block;
  margin: 0 auto;
  background-color: red;
  color: white;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

/*to rotate the image*/
.expanded #closecard img {
  transform: rotate(0deg);
  cursor: pointer;
}

.minimized #closecard img {
  transform: rotate(180deg);
  cursor: pointer;
}

/*to overView pagination*/
.paginationStyle {
  text-align: right;
  margin-right: 20px;
  color: #7367f0;
  border-width: 0px;
  border-color: rgba(134, 146, 208, 0.08);
  border-radius: 0.375rem;
}

.pagination-button {
  position: relative;
  display: block;
  height: 30px;
  width: 5px;
  padding: 15px;
  margin-right: 6px;
  font-size: 0.9375rem;
  color: slategray;
  background-color: rgba(134, 146, 208, 0.08);
  border: 0px solid rgba(134, 146, 208, 0.08);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pagination-button:hover {
  z-index: 2;
  color: forestgreen;
  background-color: transparent;
  border-color: transparent;
}

.pagination-button:focus {
  z-index: 3;
  color: forestgreen;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.pagination-button.active,
.active > .pagination-button {
  z-index: 3;
  color: #fff;
  background-color: forestgreen;
  border-color: #7367f0;
}

.pagination-button.disabled,
.disabled > .pagination-button {
  color: dimgray;
  pointer-events: none;
  background-color: rgba(134, 146, 208, 0.08);
  border-color: rgba(134, 146, 208, 0.08);
}

.pagination-next {
  color: slategray;
  background-color: rgba(134, 146, 208, 0.08);
  width: 10px;
  height: 30px;
  font-size: 13px !important;
}

.pagination-next:hover {
  color: forestgreen;
  background-color: rgba(134, 146, 208, 0.08);
}

.pagination-prev {
  color: slategray;
  background-color: rgba(134, 146, 208, 0.08);
  width: 60px;
  margin-right: 6px;
  height: 30px;
  font-size: 13px !important;
}

.pagination-prev:hover {
  color: forestgreen;
  background-color: rgba(134, 146, 208, 0.08);
}

.pagination-ellipsis {
  color: slategray;
  background-color: rgba(134, 146, 208, 0.08);
  width: 60px;
  margin-right: 6px;
  height: 30px;
  font-size: 13px !important;
}

.pagination-ellipsis:hover {
  color: forestgreen;
  background-color: rgba(134, 146, 208, 0.08);
}

/*to task pagination*/
.paginationStyleTask {
  text-align: right;
  margin-right: 20px;
  color: #7367f0;
  border-width: 0px;
  border-color: rgba(134, 146, 208, 0.08);
  border-radius: 0.375rem;
}

.pagination-buttonTask {
  position: relative;
  display: block;
  height: 30px;
  width: 5px;
  padding: 15px;
  margin-right: 6px;
  font-size: 0.9375rem;
  color: slategray;
  background-color: rgba(134, 146, 208, 0.08);
  border: 0px solid rgba(134, 146, 208, 0.08);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pagination-buttonTask:hover {
  z-index: 2;
  color: forestgreen;
  background-color: transparent;
  border-color: transparent;
}

.pagination-buttonTask:focus {
  z-index: 3;
  color: forestgreen;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.pagination-buttonTask.active,
.active > .pagination-buttonTask {
  z-index: 3;
  color: #fff;
  background-color: forestgreen;
  border-color: #7367f0;
}

.pagination-buttonTask.disabled,
.disabled > .pagination-buttonTask {
  color: dimgray;
  pointer-events: none;
  background-color: rgba(134, 146, 208, 0.08);
  border-color: rgba(134, 146, 208, 0.08);
}

.pagination-nextTask {
  color: slategray;
  background-color: rgba(134, 146, 208, 0.08);
  width: 10px;
  height: 30px;
  font-size: 13px !important;
}

.pagination-nextTask:hover {
  color: forestgreen;
  background-color: rgba(134, 146, 208, 0.08);
}

.pagination-prevTask {
  color: slategray;
  background-color: rgba(134, 146, 208, 0.08);
  width: 60px;
  margin-right: 6px;
  height: 30px;
  font-size: 13px !important;
}

.pagination-prevTask:hover {
  color: forestgreen;
  background-color: rgba(134, 146, 208, 0.08);
}

.pagination-ellipsisTask {
  color: slategray;
  background-color: rgba(134, 146, 208, 0.08);
  width: 60px;
  margin-right: 6px;
  height: 30px;
  font-size: 13px !important;
}

.pagination-ellipsisTask:hover {
  color: forestgreen;
  background-color: rgba(134, 146, 208, 0.08);
}

/*css for firefox login*/
.form-control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  background-color: white !important;
}

.form-control:focus,
.form-control:hover {
  background-color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

.menu-item.active .menu-link div[data-i18n] {
  font-weight: bold !important;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .menu-item.active .menu-link div[data-i18n] {
    font-weight: bold !important;
  }

  .bg-menu-theme.menu-vertical
    .menu-item.active
    > .menu-link:not(.menu-toggle) {
    /* Adjust styles for mobile here */
    background: #dcefe0 !important;
    color: #068706 !important;
    box-shadow: none !important;
  }
}

.imgPic {
  width: 100%;
  height: 100%;
}

.imgPic-small {
  width: 50%;
  height: 50%;
}

.blur {
  filter: blur(3px);
}
/*to add spinner to bulk import*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: 9999;
}

.overlay-content {
  position: absolute;
  top: 28%; /* Center vertically */
  left: 45%; /* Center horizontally */
}
/*to add scroll bar to div2 in bulk import*/
#div2 {
  height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: darkgray lightgray;
  scrollbar-face-color: lightgray;
  scrollbar-track-color: transparent;
  scroll-behavior: smooth;
}

#div2::-webkit-scrollbar {
  width: 5px;
}

#div2::-webkit-scrollbar-thumb {
  background-color: lightgray;
  border-radius: 3px;
}

#div2::-webkit-scrollbar-thumb:hover {
  background-color: darkgray;
}

#div2::-webkit-scrollbar-track {
  background-color: transparent;
}

/*to add hover to go to task a*/
a.task-hover:hover {
  color: rgba(0, 128, 0, 0.5) !important;
}

@media (max-width: 767px) {
  .mobile-only {
    display: inline-block; /* Show the image in mobile view */
    width: 30% !important;
  }
}

.logo-img {
  max-height: 25px !important;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .dataTables_filter {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .app-chat .app-chat-contacts {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .col-6 {
    width: 100% !important;
  }
}

/*responsive for contact page specifies the screen widths separatly*/
@media (max-width: 414px) {
  .form-selectMobileWidth {
    width: 100% !important;
    margin-left: -0.5rem !important;
    margin-right: 18.5rem !important;
  }

  .form-controlMobileWidth {
    width: 100% !important;
    margin-left: -0.5rem !important;
    margin-right: 20.1rem !important;
  }
}

@media (max-width: 393px) {
  .form-selectMobileWidth {
    width: 100% !important;
    margin-left: -0.5rem !important;
    margin-right: 17rem !important;
  }

  .form-controlMobileWidth {
    width: 100% !important;
    margin-left: -0.5rem !important;
    margin-right: 18.5rem !important;
  }
}

@media (max-width: 375px) {
  .form-selectMobileWidth {
    width: 100% !important;
    margin-left: -0.5rem !important;
    margin-right: 16rem !important;
  }

  .form-controlMobileWidth {
    width: 100% !important;
    margin-left: -0.5rem !important;
    margin-right: 17.6rem !important;
  }
}

@media (max-width: 320px) {
  .form-selectMobileWidth {
    width: 100% !important;
    margin-left: -0.5rem !important;
    margin-right: 12.7rem !important;
  }

  .form-controlMobileWidth {
    width: 100% !important;
    margin-left: -0.5rem !important;
    margin-right: 14.2rem !important;
  }
}
/*to add workflow email not fully visible fix*/
.tagify__dropdown__item .email-span {
  width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/*to sign with google*/
.custom-btn-style {
  background-color: white;
  color: black;
}

/*to set the max width for mobile view*/
@media (max-width: 768px) {
  #datable_1_body {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}

/*responsive style for all mobile devices*/
@media (max-width: 414px) {
  .form-selectMobileWidthProduct {
    width: 100% !important;
    margin-left: -1rem !important;
    margin-right: 19rem !important;
  }

  .form-controlMobileWidthProduct {
    width: 100% !important;
    margin-left: -1rem !important;
    margin-right: 20.5rem !important;
  }
}

@media (max-width: 393px) {
  .form-selectMobileWidthProduct {
    width: 100% !important;
    margin-left: -1rem !important;
    margin-right: 17.7rem !important;
  }

  .form-controlMobileWidthProduct {
    width: 100% !important;
    margin-left: -1rem !important;
    margin-right: 19.3rem !important;
  }
}

@media (max-width: 375px) {
  .form-selectMobileWidthProduct {
    width: 100% !important;
    margin-left: -1rem !important;
    margin-right: 16.5rem !important;
  }

  .form-controlMobileWidthProduct {
    width: 100% !important;
    margin-left: -1rem !important;
    margin-right: 18rem !important;
  }
}

@media (max-width: 320px) {
  .form-selectMobileWidthProduct {
    width: 100% !important;
    margin-left: -1rem !important;
    margin-right: 13.2rem !important;
  }

  .form-controlMobileWidthProduct {
    width: 100% !important;
    margin-left: -1rem !important;
    margin-right: 14.7rem !important;
  }
}

/*to add overflow to workflow description*/
.overflow-container {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  #formDetails {
    overflow: auto;
    max-height: 100vh;
  }

  .headerPosition {
    position: static;
    margin-top: 100px;
  }
}

.bottom-left {
  position: absolute;
  bottom: 10px;
  right: -10px;
}

/*to set the max width for mobile view*/
@media (max-width: 768px) {
  .row {
    /*max-width: 100% !important;*/
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .addSpace {
    margin-top: 2rem !important;
  }
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.pagination-message {
  position: absolute;
  bottom: 15px;
  left: 10px;
  font-size: 13px;
  color: #888;
}
/*to set the max width for mobile view*/
@media (max-width: 768px) {
  .modal-body {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}

/*to task page paginaton message*/
.pagination-messageTask {
  text-align: left;
  margin-left: 20px;
  margin-bottom: -26px;
  font-size: 13px;
  color: #888;
}
/*task page exceed member circle*/
.custom-circle-color {
  background-color: dimgrey;
  border-radius: 50%;
  color: black;
  text-align: center;
}
/*for more assignee in task*/
.custom-circle-color {
  background-color: #d3d3d3;
  border-radius: 50%;
  text-align: center;
  padding: 4px;
}

#mobile-menu {
  display: none; /*initially hide the mobile menu in forms*/
}

@media (max-width: 768px) {
  #main-menu {
    display: none !important;
  }

  #mobile-menu {
    display: block !important;
  }

  #back {
    z-index: 1; /* Ensure the content is above other elements */
  }

  .menu-horizontal {
    display: block;
  }

  .menu-horizontal .app-brand,
  .menu-horizontal .app-brand + .menu-divider {
    max-height: 30px !important;
    margin-bottom: 8px;
    margin-top: 8px;
  }

  .menu-horizontal-wrapper .menu-inner {
    margin-top: 5px;
    position: relative;
  }

  .menu-horizontal-wrapper .menu-inner {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .pagination-message {
    bottom: 15px;
    left: 10px;
    font-size: 6px;
  }

  #paginationContainer {
    position: absolute;
    bottom: 15px;
    left: 10px;
    font-size: 8px;
    color: #888;
    padding: 7px;
  }

  .pagination-button {
    position: relative;
    display: block;
    height: 10px;
    width: 2px;
    padding: 7px;
    margin-bottom: -9px;
    margin-right: 6px;
    font-size: 0.93755rem;
    color: slategray;
    background-color: rgba(134, 146, 208, 0.08);
    border: 0px solid rgba(134, 146, 208, 0.08);
  }

  .pagination-next {
    color: slategray;
    background-color: rgba(134, 146, 208, 0.08);
    width: 5px;
    margin-bottom: -9px;
    height: 10px;
    font-size: 5px !important;
    padding: 8px;
  }

  .pagination-prev {
    color: slategray;
    background-color: rgba(134, 146, 208, 0.08);
    width: 8px;
    margin-bottom: -9px;
    margin-right: 6px;
    height: 10px;
    font-size: 4px !important;
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .pagination-messageTask {
    bottom: -228.4rem;
    left: 1px;
    font-size: 8px;
  }

  .container-p-y:not([class^='pb-']):not([class*=' pb-']) {
    padding-bottom: 1rem !important;
  }

  #paginationContainerTask {
    bottom: -230rem;
    left: 160px;
    font-size: 8px;
    color: #888;
    padding: 7px;
  }

  .pagination-buttonTask {
    position: relative;
    display: block;
    height: 10px;
    width: 2px;
    padding: 7px;
    margin-bottom: -9px;
    margin-right: 6px;
    font-size: 0.93755rem;
    color: slategray;
    background-color: rgba(134, 146, 208, 0.08);
    border: 0px solid rgba(134, 146, 208, 0.08);
  }

  .pagination-nextTask {
    color: slategray;
    background-color: rgba(134, 146, 208, 0.08);
    width: 5px;
    margin-bottom: -9px;
    height: 10px;
    font-size: 5px !important;
    padding: 8px;
  }

  .pagination-prevTask {
    color: slategray;
    background-color: rgba(134, 146, 208, 0.08);
    width: 8px;
    margin-bottom: -9px;
    margin-right: 6px;
    height: 10px;
    font-size: 4px !important;
    padding: 8px;
  }
}

.equaltosecondsubtitle {
  margin-left: 20px !important;
}

#searchDeal {
  width: 30% !important;
  margin-left: 25px !important;
  margin-top: 25px !important;
  z-index: 1 !important;
  padding: 8px !important;
}

@media (max-width: 768px) {
  #searchDeal {
    width: 85% !important;
    margin-left: 25px !important;
    margin-top: 25px !important;
    z-index: 1 !important;
    padding: 8px !important;
  }
}

@media (max-width: 768px) {
  .btnAlignMobile {
    margin-top: 50px !important;
  }
}

.add_new_client_btnAlign {
  margin-bottom: 15px !important;
  margin-top: -5px !important;
}

.tableContainerAlign {
  margin-top: -50px !important;
}

.switch-label {
  white-space: nowrap !important;
}

#select_task_contact_type {
  width: 265px !important;
}

#select_task_contacts {
  width: 265px !important;
}

#select_sub_task_contact_type {
  width: 275px !important;
}

#select_sub_task_contacts {
  width: 275px !important;
}

.authentication-wrapper.authentication-cover
  .authentication-inner
  .auth-multisteps-bg-height {
  min-height: 100vh !important; /*side banner height*/
}

#data_bin_field3 {
  max-width: 265px !important;
}

#data_bin_field2 {
  max-width: 265px !important;
}

.tagify__tag img {
  width: 100% !important;
  height: 100% !important;
}

.nullView {
  margin-top: 20px !important;
}

@media (max-width: 767.98px) {
  .mobileCursor {
    position: absolute !important;
    left: 30px !important;
    font-size: 18px !important;
  }

  .modal .carousel-control-next {
    font-size: 12px !important;
    margin-bottom: -9px !important;
    margin-right: 12px !important;
  }

  .mobilePortalView {
    display: block !important;
  }

  .modal .carousel-control-prev {
    font-size: 12px !important;
    margin-bottom: -9px !important;
    margin-right: 12px !important;
  }

  .ti ti-chevrons-right {
    font-size: 15px !important;
    margin-right: 10px !important;
  }

  .carousel-indicators {
    width: 40%;
    left: 40px;
  }

  .mobilePrev {
    position: relative !important;
    left: 5px !important;
    top: 2px !important;
  }

  .mobilePrevCur {
    position: absolute !important;
    right: 35px !important;
  }
}

.forceImport {
  display: flex !important;
}

.fade-background {
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*"View Instances" button */
.btn-view-instances-color {
  background-color: #2ba92f;
  color: #ffffff;
}

.btn-view-instances-color:hover {
  background-color: #2ba92f; /* Same as initial background-color */
  color: #ffffff; /* Same as initial color */
}

.swal2-footer {
  border-top: none !important;
}

#propertyList {
  list-style: none;
  padding: 0;
}

#propertyList li {
  cursor: pointer;
  height: 37px;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#propertyList li.selected {
  border-color: #007bff;
  background-color: #f0f8ff;
}

#activeList {
  list-style: none;
  padding: 0;
}

#activeList li {
  cursor: pointer;
  height: 37px;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f2f2f2;
}

#activeList li.selected {
  border-color: #007bff;
  background-color: #f0f8ff;
}

.close-icon:hover {
  color: red;
  cursor: pointer;
}

.close-icon {
  font-size: 20px;
  cursor: pointer;
}

.circle-container {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #cfe8cf;
  overflow: hidden;
  cursor: pointer;
}

.circle-container img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  padding: 5px;
  position: relative;
  top: 8px;
  left: 7px;
}

#activeAccount {
  list-style: none;
  padding: 0;
}

#activeAccount li {
  height: 37px;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  left: -15px;
}

.arrow {
  float: right;
  margin-right: -5px;
  font-size: 25px;
}

.confirm-button {
  position: relative;
  left: 0px;
}

.addScroll {
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.swal2-actions {
  display: flex;
  justify-content: space-between;
}

#CurrentValue {
  list-style: none;
  padding: 0;
}

#CurrentValue li {
  height: 37px;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f2f2f2;
}

#CurrentValue li.selected {
  border-color: #007bff;
  background-color: #f0f8ff;
}
/*to address custom width form table */
.cutomAction {
  width: 120px !important;
}

.customType {
  width: 220px !important;
}

.customName {
  width: 1000px !important;
}

.customInstances {
  width: 100px !important;
}

.closePop {
  position: relative;
  bottom: 85px;
  left: 45px;
}

#showProperty {
  top: 15px;
  right: 25px;
  position: relative;
  bottom: 10px;
}

.bg-menu-theme.menu-horizontal .menu-item.active > .salesHead:not(.menu-toggle),
.salesHead:hover,
.salesHead:focus,
.salesHead:active {
  color: #0099f2 !important; /* Color on hover, active, and active menu item */
  background: #edf5f9 !important;
}

.salesIcon path {
  stroke: #0099f2; /* Desired color */
}

.toggleContainer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 139px;
  height: 39px;
  border: 3px solid #ececec;
  border-radius: 8px;
  background: #ececec;
  font-weight: bold;
  color: #343434;
  cursor: pointer;
  padding: 5px;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.toggleContainer::before {
  content: '';
  position: absolute;
  left: 2px;
  background: white;
  transition: all 0.3s;
  width: 62px;
  height: 29px;
  border-radius: 6px;
  padding: 6px 15px 6px 15px;
  margin-top: 0px;
  align-items: center;
}

.toggleCheckbox:checked + .toggleContainer::before {
  left: 50%;
}

.toggleContainer a {
  padding: 6px;
  text-align: center;
  z-index: 1;
}

.toggleCheckbox {
  display: none;
}

.toggleCheckbox:checked + .toggleContainer a:first-child {
  color: #282828;
  transition: color 0.3s;
}

.toggleCheckbox:checked + .toggleContainer a:last-child {
  color: #0099f2;
  transition: color 0.3s;
}

.toggleCheckbox + .toggleContainer a:first-child {
  color: #35a635;
  transition: color 0.3s;
}

.toggleCheckbox + .toggleContainer a:last-child {
  color: #282828;
  transition: color 0.3s;
}

.salesOverTime {
  color: #2b2937;
  left: 20px;
  position: relative;
  top: 15px;
  font-weight: 500;
}

.floatButton {
  background-color: #0099f2; /* Blue background */
  border: none; /* No border */
  color: white; /* White text */
  padding: 10px 20px; /* Some padding */
  text-align: center; /* Centered text */
  text-decoration: none; /* No underline */
  display: inline-block; /* Inline block element */
  font-size: 16px; /* Large text */
  margin: 4px 2px; /* Some space around the button */
  cursor: pointer; /* Pointer/hand icon */
  border-radius: 50%; /* Rounded edges */
  width: 50px; /* Specific width */
  height: 50px; /* Specific height, making it circular */
  position: fixed;
  right: 10px;
  bottom: 57px;
  box-shadow: 0px 8px 8px 0px #0099f233;
}

.floatButton:after {
  content: '+';
  font-size: 25px;
  left: 17px;
  position: absolute;
  bottom: 9px;
}

.floatButton.close:after {
  content: '×'; /* Changes content to '×' when the 'close' class is added */
  font-size: 25px;
  left: 17px;
  position: absolute;
  bottom: 9px;
}

.floatButton.close {
  background-color: #4787ab; /* Change background color when .close is added */
  box-shadow: 0px 8px 8px 0px #0099f233;
}

.menuHidden {
  display: none; /* Menu is hidden initially */
}

.menuShown {
  display: block; /* Menu is displayed when 'menuShown' class is added */
  /* Position and style your menu here */
  position: fixed;
  bottom: 70px; /* Position above the FAB */
  right: 10px;
  z-index: 99; /* Just below the FAB */
}

#popupMenu {
  background-color: #0099f2; /* Blue background */
  border-radius: 10px; /* Rounded corners */
  color: white; /* White text */
  padding: 20px; /* Padding around the content */
  width: 200px; /* Set a specific width for the menu */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: add a shadow for depth */
  position: fixed;
  right: 10px; /* Adjust as necessary to position the menu */
  bottom: 115px; /* Position above the floating action button */
  z-index: 99; /* Just below the floating action button */
  box-shadow: 0px 4px 8px 0px #0099f233;
}

#popupMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#popupMenu li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

#popupMenu li svg {
  margin-right: 10px;
}

#popupMenu li:last-child {
  margin-bottom: 0;
}

#popupMenu a {
  color: white;
  display: flex;
  margin-bottom: 5px;
}

#popupMenu a:hover {
  color: white !important;
}

#popupMenu a:active {
  color: white !important;
}

.quote {
  bottom: 2px;
  position: relative;
  right: 5px;
}

.product {
  bottom: 2px;
  position: relative;
  right: 5px;
}

.customer {
  bottom: 2px;
  position: relative;
  right: 5px;
}

.expense {
  bottom: 2px;
  position: relative;
  right: 5px;
}

.income {
  bottom: 2px;
  position: relative;
  right: 5px;
}

.order {
  bottom: 2px;
  position: relative;
  right: 5px;
}

.filledColor {
  background-color: #35a635;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.rotate-chevron {
  transition: transform 0.3s ease;
}

.rotate-chevron.rotate {
  transform: rotate(-180deg);
}

.custom-step-background {
  background-color: #1e641e !important;
}

.rotate-chevron.rotate-up {
  transform: rotate(-180deg);
}

/*mobile view form lottie animation*/
@media (max-width: 768px) {
  #footer {
    left: 0 !important;
  }

  #Footer_Onboarding {
    top: 30px !important;
    right: 5px !important;
  }

  .shepherd-element {
    width: 100% !important;
  }

  .shepherd-modal-overlay-container.shepherd-modal-is-visible {
    height: 100% !important;
    width: 100% !important;
  }
  /*#emptyLottie {
        bottom: 0px !important;
        position: relative !important;
        top: 7px !important;
        left: 5px !important;
    }*/
  .mobileCard {
    width: 5% !important;
    height: 5% !important;
    position: relative !important;
    display: block !important;
    left: 85px !important;
    bottom: 44px !important;
  }

  #tooltipIcon {
    position: relative !important;
    bottom: 67px !important;
    left: 110px !important;
  }

  #tooltipCard {
    background-color: #1e641e !important;
    width: 100% !important;
    bottom: 110px !important;
    left: 120px !important;
    color: white !important;
  }

  #emptyLottie1 {
    bottom: 0px !important;
    position: relative !important;
    top: 0px !important;
    right: 30px !important;
  }

  #tooltipIcon1 {
    position: relative !important;
    bottom: 67px !important;
    left: 110px !important;
  }

  #tooltipCard2 {
    background-color: #1e641e !important;
    width: 100% !important;
    bottom: 110px !important;
    left: 120px !important;
    color: white !important;
  }

  #createButtonContainer {
    top: 102px !important;
    position: relative !important;
    right: 220px !important;
  }

  .mobileForms {
    bottom: 0px !important;
    position: relative !important;
    top: 0px !important;
    left: 90px !important;
  }

  .commonLottie {
    bottom: 0px !important;
    position: relative !important;
    top: 7px !important;
    left: 5px !important;
  }

  .binLottie {
    bottom: 0px !important;
    position: relative !important;
    top: 5px !important;
    left: 120px !important;
  }

  .salesLottie {
    margin-bottom: -100px !important;
    position: relative !important;
    left: 70px !important;
    bottom: 0px !important;
  }

  .mobilePipe {
    width: 50% !important;
    float: right !important;
    position: relative !important;
    left: 42px !important;
    top: 35px !important;
  }

  .mobileDeals {
    margin-bottom: -100px !important;
    position: relative !important;
    left: 40px !important;
    bottom: 0px !important;
  }

  .mobileSkip {
    position: relative !important;
    left: 250px !important;
    bottom: 10px !important;
    color: #a6a6a6 !important;
  }

  #onboardingModal {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  .dwnLottie {
    width: 6% !important;
    height: 5% !important;
    position: relative !important;
    display: block !important;
    left: 100px !important;
    top: 35px !important;
  }

  #zen {
    position: fixed !important;
    bottom: 2.8rem !important;
  }

  .onboarding-info {
    font-size: 9.5px !important;
  }

  .mobileContactButton {
    top: 45px !important;
    right: 88px !important;
    width: 145px !important;
  }

  .mobilePipeButton {
    top: 5px !important;
    width: 180px !important;
  }

  .mobilePipebtn {
    margin-left: 65px !important;
  }

  .infoSize {
    font-size: 9.5px !important;
  }

  .infoSizeWork {
    font-size: 9px !important;
  }
}

.green {
  background: #35a635;
}

.LottieCircle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #0000001a;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(53, 166, 53, 0.9);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(53, 166, 53, 0);
  }
}

.btn-sales {
  border: 1px solid #bfe8ff !important;
  color: #3498db !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.btn-sales:hover {
  border: 1px solid #bfe8ff !important;
  color: #3498db !important;
  box-shadow: none !important;
  background-color: rgba(191, 232, 255, 0.1) !important;
}

.btn-sales:active,
.btn-sales:focus {
  border: 1px solid #bfe8ff !important;
  color: #3498db !important;
  box-shadow: none !important;
}

.btn-sales:disabled,
.btn-sales.disabled {
  border: 1px solid #e1e1e1 !important;
  color: #a9a9a9 !important;
  background-color: #f1f1f1 !important;
  cursor: not-allowed;
  opacity: 1;
}

.salesSearch {
  left: 400px;
  position: relative;
  z-index: 1;
}

.salesCustSearch {
  width: 120% !important;
}

.cusFilter {
  width: 10%;
  position: absolute;
  top: 140px;
  background-color: transparent !important;
  right: 25px;
}

.orderSearch {
  left: 80px;
  position: relative;
  z-index: 1;
}

.budgetSearch {
  left: 255px;
  position: relative;
  z-index: 1;
}

.cancelCard {
  bottom: 125px;
  position: relative;
  left: 1025px;
}

.OrderTable {
  color: #333333 !important;
  font-weight: 600;
  font-size: 14px !important;
}
/*.arrow-up {
    color: #35A635;
    font-weight: 400;
    position: relative;
    bottom: 2px;
    left: 57px;
}
.arrow-down {
    color: #F86767;
    font-weight: 400;
    position: relative;
    bottom: 2px;
    left: 57px;
}*/
.percentage-increase {
  color: #35a635;
  font-size: 14px;
  margin-left: 2px;
  font-weight: 400;
  position: relative;
  left: 50px;
}

.percentage-decrease {
  color: #f86767;
  font-size: 14px;
  margin-left: 2px;
  font-weight: 400;
  position: relative;
  left: 50px;
}

.salesPagination {
  color: #333333 !important;
}

.budgetTabs {
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dbdade;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  width: fit-content;
}

.nav-tabs:not(.nav-fill):not(.nav-justified) .nav-link,
.nav-pills:not(.nav-fill):not(.nav-justified) .nav-link {
  margin-right: 0 !important;
}

.nav-link {
  color: #5d596c; /* Default icon color */
}

.nav-link.active {
  color: white; /* Active icon color */
}

.nav-link svg {
  stroke: currentColor; /* Use the text color for the SVG stroke */
}

#editTotal {
  left: 130px;
  position: relative;
  cursor: pointer;
}

.lengthMargin {
  margin-left: 0px !important;
}

.col-xl-custom {
  flex: 0 0 20%; /* Don't grow, don't shrink, start at 20% of the parent container */
  max-width: 20%; /* Max width is also 20% */
}

th.OrderTable {
  text-transform: none !important;
}

.salesProductSearch {
  left: 388px;
  position: relative;
  z-index: 1;
}

.salesQuoteSearch {
  left: 375px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1400px) {
  .cusFilter {
    width: 10%;
    position: absolute;
    top: 140px;
    background-color: transparent !important;
    right: 256px !important;
  }

  .largerScreen {
    position: relative;
    left: 400px !important;
  }

  .ImgLargerScreen {
    position: relative;
    left: 135px !important;
  }
}

.salesPrimaryColor {
  color: #0099f2 !important;
}

.proAvatar {
  width: 2rem !important;
  height: 2rem !important;
}

.btn-Prosales {
  border: 1px solid #e0e0e0 !important;
  color: #6f6d78 !important;
  box-shadow: none !important;
  position: relative;
  bottom: 30px;
  left: 490px;
}

.btn-Prosales:hover {
  border: 1px solid #e0e0e0 !important;
  color: #6f6d78 !important;
  box-shadow: none !important;
}

.btn-Prosales:active,
.btn-Prosales:focus {
  border: 1px solid #e0e0e0 !important;
  color: #6f6d78 !important;
  box-shadow: none !important;
}

.spinner-smol {
  --bs-spinner-width: 1.5rem !important;
  --bs-spinner-height: 1.5rem !important;
}

.theme-text {
  color: #35a535 !important;
}

.custom-toast {
    margin-left: 30px;
}

@media (max-width: 768px) {
    .custSearch {
        width: 90% !important;
        position: absolute;
        top: 60px;
        left: 20px;
    }
    .custButton {
        right: 50px;
    }
}

.custHeading {
    right: 50px !important;
    position: relative !important;
}
.custCard {
    right: 50px !important;
    width: 104% !important;
}

@media (max-width: 768px) {
    .mobileHead{
        position:relative;
        right:25px;
    }
    .mobileHeadMain{
        left:-58px !important;
        width:fit-content !important;
    }
    .mobileWorkPlace{
        width:160px !important;
        left:5px;
    }
    .headProfile {
        position: relative !important;
        left: 10px;
    }
    #form_section {
        position: relative;
        top: 25px;
        right: 35px;
        margin-bottom: 100px;
    }
    .mobileShare {
        left: 85px;
        width: 70%;
    }
    .mobileProfile{
        left:-10.1rem !important;
        width:575px !important;
    }
    .mobileDash{
        position:relative !important;
        right:35px !important;
    }
}

@media (max-width: 1366px) {
    .bigScreenLogo {
        position: relative;
        right: 25px !important;
    }
    .bigScreenOption {
        position: relative;
        left: 25px !important;
    }
}


