:root {
  --theme-color: #0168fa;
}

input.error {
  border: 1px solid red;
}

label.error {
  color: red;
}

.wd-15 {
  width: 15px;
}

.ht-15 {
  height: 15px;
}

.form-group {
  position: relative;
}

/* Login*/
/* Login Page Layout footer */
.auth-page {
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Left Side: Graphic/Image background */
.auth-image-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.auth-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.auth-form-side {
  width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #ffffff;
}

.auth-footer {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  padding: 15px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  z-index: 10;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .auth-page {
    flex-direction: column;
  }
  .auth-image-side {
    display: none; /* Hide image side on small mobile viewports */
  }
  .auth-form-side {
    width: 100%;
    flex: 1;
  }
}

/* Sidebar nav base colors */
.aside .nav.nav-aside .nav-label {
  color: #ffffff40;
}

.aside .nav.nav-aside .nav-item .nav-link {
  color: #ffffff99;
}

.aside .nav.nav-aside .nav-item .nav-link i,
.aside .nav.nav-aside .nav-item .nav-link svg {
  color: #ffffff99;
}

.aside .nav.nav-aside .nav-item .nav-link:hover {
  color: #ffffffe6;
}

.aside .nav.nav-aside .nav-item .nav-link:hover i,
.aside .nav.nav-aside .nav-item .nav-link:hover svg {
  color: #ffffffe6;
}

.aside .nav.nav-aside .nav-item.active > .nav-link,
.aside .nav.nav-aside .nav-item .nav-link.active {
  color: #ffffff;
}

.aside .nav.nav-aside .nav-item.active > .nav-link i,
.aside .nav.nav-aside .nav-item .nav-link.active i {
  color: #ffffff;
}

.aside .nav.nav-aside .admin-submenu .nav-item .nav-link {
  color: #ffffff80;
}

.aside .nav.nav-aside .admin-submenu .nav-item .nav-link:hover {
  color: #ffffffe6;
}

.aside.aside-collapsed .nav.nav-aside .nav-label {
  display: none;
}

.aside.aside-collapsed .nav.nav-aside .nav-item .nav-link span {
  display: none;
}

.aside.aside-collapsed .nav.nav-aside .nav-item .nav-link i,
.aside.aside-collapsed .nav.nav-aside .nav-item .nav-link svg {
  color: #ffffff99;
}

.aside.aside-collapsed .nav.nav-aside .nav-item .nav-link:hover i,
.aside.aside-collapsed .nav.nav-aside .nav-item .nav-link:hover svg {
  color: #ffffffe6;
}

.aside .nav.nav-aside .admin-submenu li a {
  color: #ffffff80;
}

.aside .nav.nav-aside .admin-submenu li a:hover {
  color: #ffffffe6;
}

.aside .nav.nav-aside .admin-submenu li.active a,
.aside .nav.nav-aside .admin-submenu li a.active {
  color: #ffffff !important;
  font-weight: 500;
}

.aside-header .aside-menu-link {
  color: #ffffff99;
}

.aside-header .aside-menu-link i {
  color: #ffffff99;
}

.aside-header .aside-menu-link:hover,
.aside-header .aside-menu-link:active,
.aside-header .aside-menu-link:focus {
  color: #ffffffe6;
}

.aside-header .aside-menu-link:hover i,
.aside-header .aside-menu-link:active i,
.aside-header .aside-menu-link:focus i {
  color: #ffffffe6;
}
.aside .nav.nav-aside .nav-item .nav-link {
  font-size: 15px;
}

.aside .nav.nav-aside .admin-submenu li a {
  font-size: 14px;
}
.menu-divider {
  border-bottom: 1px solid #ffffff1a;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.aside.aside-fixed {
  display: flex;
  flex-direction: column;
}

/* .aside .aside-body#sidebarContainer {
    flex: 1 1 auto;
    overflow-y: auto;
} */

/* sidebar profile css */

.aside-footer {
    flex-shrink: 0;
    padding: 12px 16px;
    border-top: 1px solid #FFFFFF1A;
}

.aside-footer .dropdown-profile {
    display: flex;
    align-items: center;
}

.aside-footer .avatar-sm img {
    width: 36px;
    height: 36px;
    object-fit: cover;
}

.switch {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 18px;
  border-radius: 20px;
  background: #c9c9c9;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  cursor: pointer;
}

.switch::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fafafa;
  border-radius: 50%;
  transition:
    left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch:active::before {
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.28),
    0 0 0 20px rgba(128, 128, 128, 0.1);
}

input:checked + .switch {
  background: #3ab795;
}

.bg-sucess-badge {
  background-color: #cee7d9;
  color: #075228;
}

input:checked + .switch::before {
  left: 22px;
  background: #fff;
}

input:checked + .switch:active::before {
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.28),
    0 0 0 20px rgba(0, 150, 136, 0.2);
}

/* header */

.navbar-header {
  border-bottom: 1px solid rgba(72, 94, 144, 0.16);
}

.navbar-header .navbar-right .dropdown-notification .dropdown-menu::before,
.navbar-header .navbar-right .dropdown-message .dropdown-menu::before {
  opacity: initial;
}

.navbar-header .navbar-right .dropdown-notification .dropdown-menu,
.navbar-header .navbar-right .dropdown-message .dropdown-menu {
  margin-top: 19.5px;
}

.dropdown-profile .dropdown-menu::before {
  opacity: initial;
}

.dropdown-profile .dropdown-menu {
  margin-top: 14.5px;
}

.bootstrap-growl .close {
  position: absolute;
  right: 10px;
  color: #000;
  font-size: 16px;
}

.content-search {
  width: initial;
}

.navbar-header .navbar-right {
  gap: 12px;
}

.modalForm {
  width: 100%;
}

/* custom tab */

/* .nav-custom-tab{
    border-bottom: none;
} */
.nav-custom-tab .nav-link.active {
  color: #000;
  border-bottom: 1px solid #000;
  font-weight: 600;
}

.nav-custom-tab .nav-link {
  background: transparent;
  border: none;
  font-size: 15px;
}

.nav-custom-tab .nav-link:hover,
.nav-custom-tab .nav-link:focus {
  background: none;
}

.broker-d-table th,
.broker-d-table td {
  white-space: nowrap;
}

.nav-aside img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.nav-aside .nav-item ul a {
  margin-left: 5px;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.company-detail {
  position: relative;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.aside-logo img {
  max-width: 101px;
}

.log-logo img {
  max-width: 130px;
}

.product-img {
  width: 90px;
  height: 90px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .navbar-header .navbar-right .dropdown-notification .dropdown-menu,
  .navbar-header .navbar-right .dropdown-message .dropdown-menu {
    margin-top: 17.5px;
  }

  .dropdown-message .dropdown-link svg,
  .dropdown-notification .dropdown-link svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 1199px) {
  .navbar-search-header .form-control {
    padding-left: 48px;
  }
}

.table-hover.cust-table tbody tr:hover {
  background: #f7f7f7;
}

.table.cust-table {
  --bs-table-hover-bg: #f7f7f7;
}

.table.cust-table tr td,
.table.cust-table tr th {
  vertical-align: middle;
}

.pointer {
  cursor: pointer;
}

.wd-fit {
  width: fit-content;
}

.ht-fit {
  height: fit-content;
}

.right-modal .modal-dialog {
  margin-top: 0;
  margin-bottom: 0;
  height: 100%;
}

.right-modal .modal-dialog .modalForm,
.right-modal .modal-dialog .modal-content {
  height: 100%;
}

.right-modal .modal-dialog {
  margin-right: 0;
}

.bg-yellow {
  background-color: #f19c00 !important;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 58%;
}

.cust-pd-label {
  padding: 2px 8px;
}

.select2 .select2-selection__rendered {
  margin-bottom: 0;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  display: inline-block;
}

.panso-btn-outline-success {
  --bs-btn-color: #3ab795;
  --bs-btn-border-color: #3ab795;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1c524d;
  --bs-btn-hover-border-color: #1c524d;
  --bs-btn-focus-shadow-rgb: 12, 136, 66;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1c524d;
  --bs-btn-active-border-color: #1c524d;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #3ab795;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #3ab795;
  --bs-gradient: none;
}

.panso-btn-outline-success:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.tooltip.cust-tooltip {
  position: relative;

  display: inline-block;

  opacity: 1;

  font-size: 17px;

  cursor: pointer;

  z-index: 1;

  padding: 0;
}

.tooltip.cust-tooltip .tooltiptext {
  visibility: hidden;

  width: 250px;

  background-color: black;

  color: #fff;

  text-align: start;

  border-radius: 6px;

  padding: 5px 14px;

  position: absolute;

  z-index: 1;

  top: 50%;

  left: 110%;

  transform: translateY(-50%);

  font-size: 12px;
}

.cust-tooltip.center-top .tooltiptext {
  width: 210px;
  top: -30px;
  left: -135px;
  text-align: center;
}

.tooltip.cust-tooltip .tooltiptext::after {
  content: "";

  position: absolute;

  top: 50%;

  right: 100%;

  margin-top: -5px;

  border-width: 5px;

  border-style: solid;

  border-color: transparent black transparent transparent;
}

.noafter.cust-tooltip .tooltiptext::after {
  content: none;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.custom-tab .nav-link.active {
  color: var(--theme-color);
  border: none;
  border-radius: 0;
  font-weight: 600;
  border-bottom: 2px solid var(--theme-color);
}

.custom-tab .nav-link {
  color: var(--dark-color);
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.custom-tab .nav-link:hover,
.custom-tab .nav-link:focus {
  background-color: transparent;
  color: var(--theme-color);
}

.notification-card.read,
.notification-card.read:hover {
  background: #fff;
  cursor: auto;
}

.notification-card.read .notif-message-read {
  display: none !important;
}

.notification-card.unread {
  background: #0c88421c;
  cursor: pointer;
}

.dropdown-message .dropdown-item,
.dropdown-notification .dropdown-item {
  margin: 0;
}

.btn-outline-dark:hover h6,
.btn-outline-dark.show h6 {
  color: #fff;
}

.autocomplete-suggestions {
  position: static !important;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  display: none;
}

.autocomplete-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.autocomplete-item:hover {
  background-color: #f1f1f1;
}

.full-select .select2-container {
  width: 100% !important;
}

.border-top-pt {
  border-top: 1px solid #838383;
  padding-top: 20px;
}

.top-flex {
  display: flex;
  justify-content: space-between !important;
  width: 100%;
}

.icon-set {
  position: absolute;
  top: calc(50% - 11px);
  right: 6px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.select2-custom .select2-container {
  width: 100% !important;
}

#primaryCopyButton:hover {
  color: #f84444;
  /* Change this to any color you want on hover */
}

.modal-body .select2-container {
  width: 100% !important;
}

.social-media-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.social-media-row .form-select,
.social-media-row .form-control {
  width: 250px;
  padding: 5px;
}

.social-media-row button {
  padding: 5px 10px;
  cursor: pointer;
}

.profile_form .select2-container {
  width: 100% !important;
}

.w-48 {
  width: 48%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 100px;
}

.custom-tab .nav-pills .nav-link.active {
  color: #0168fa !important;
  background: white !important;
  border-bottom: 2px solid #0168fa !important;
}

.custom-tab .nav-pills .nav-link:not(.active):hover {
  color: #0168fa !important;
  background: white !important;
  border-bottom: 1px solid #0168fa !important;
}

.flatpickr-wrapper {
  width: 100%;
}

.card {
  box-shadow: none !important;
}

.sale-order-modal ul li {
  list-style: none;
  padding: 5px 0;
}

.sale-order-modal ul {
  padding: 0;
}

.ui-datepicker {
  z-index: 999999 !important;
}

.pagination {
  justify-content: end;
}

.square-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  /* border: 2px solid gray; */
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  border-radius: 4px;
  background: #f19c00;
  color: white;
}

.email-selecter {
  display: flex;
  flex-direction: column;
}

.email-selecter .bootstrap-tagsinput {
  display: block;
  width: 100%;
  padding: 0.46875rem 0.625rem !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  background-color: #fff;
  background-clip: padding-box !important;
  border: 1px solid #c0ccda !important;
  appearance: none;
  border-radius: 0.25rem !important;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out !important;
}

.product-category-input .form-control button {
  background-color: #fff !important;
}

#ajaxPreloader {
  position: fixed;
  top: 140px;
  right: 40px;
  z-index: 9999;
}

.agent-addedit-modal .agent-suggestions {
  top: 38px;
  left: 2px;
}

#modalAgentAddEdit label.error {
  position: absolute;
  bottom: -22px;
  font-size: 12px;
}
[data-bs-toggle="tooltip"] {
  cursor: pointer;
}
.mx-w-75 {
  max-width: 75%;
}

@media (max-width: 991.98px) {
  .mx-w-75 {
    max-width: 100%;
  }
}
#DataTables_Table_0_wrapper .form-select {
  width: auto !important;
}
.fs-18 {
  font-size: 18px !important;
}
.card .tx-normal.tx-rubik {
  font-size: 18px !important;
}
@media print {
  .no-print,
  .btn,
  .d-none-print {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 20px !important;
  }
}
/* @media (min-width: 992px) {
    .content-body {
        padding: 10px 25px 25px !important;
        height: calc(100% - 60px);
    }
} */

table.freezHeading thead th {
  position: sticky !important;
  top: -10px;
  background-color: white;
  z-index: 10;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

body {
  text-transform: capitalize !important;
}

.custom-col {
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 992px) {
  .custom-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .custom-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* rite side chat css */

.right-side-chat .right-text {
  display: flex;
  justify-content: end !important;
  text-align: end !important;
  width: 70% !important;
  margin-bottom: 40px;
}

.chat .chat-sidebar-body {
  overflow-y: auto;
  overflow-x: hidden;
  bottom: 0 !important;
}

.chat .chat-content-body {
  overflow-y: auto;
  overflow-x: hidden;
}

/* .right-side-chat .right-text .media-body {
    flex: unset;
} */

.right-side-chat .right-text .avatar img {
  height: 32px !important;
  width: 32px !important;
}

.right-side-chat .right-main {
  display: flex;
  justify-content: end;
}

.right-side-chat .left-main {
  display: flex;
  justify-content: start;
}

.right-side-chat .media {
  width: 70%;
}

.chat-group .media-body {
  margin-bottom: 10px;
  margin-right: 20px;
}

.circle-button {
  width: 40px;
  height: 40px;
  background-color: #0b2a60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.circle-button i {
  color: white;
  font-size: 20px;
}

.app-chat .dashboard {
  all: unset !important;
}

.app-chat {
  overflow: hidden;
}

.ai_chat_session_append .media {
  width: 100% !important;
}

.chat-w {
  width: 22px !important;
  height: 22px !important;
}

.chat-textarea {
  width: 100%;
  min-height: 40px;
  /* Default height */
  max-height: 350px;
  /* Maximum height before scrolling */
  overflow-y: hidden;
  /* Hide scrollbar initially */
  resize: none;
  /* Disable manual resize */
  border: none;
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.content .content-body {
  overflow-y: hidden;
}

.chat-container {
  max-height: 100vh;
  overflow-y: auto;
}

.chat-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.chat-content {
  flex-grow: 1;
  overflow-y: hidden;
}

.chat-textarea {
  max-height: 150px;
  overflow-y: auto;
}

.square-box {
  background-color: white;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.chat-content .custom .col-md-4 {
  padding: 15px;
}

.chat-content .custom .col-md-2 {
  padding: 5px;
}

.chat-container {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px;
  background-color: #fff;
  width: 600px;
  /* Reduced width */
  margin: 15px auto;
  /* Centers the box horizontally */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Optional shadow for a better look */
}

.chat-container input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px;
}

.chat-container .upload-btn {
  border: none;
  background: none;
  margin-right: 10px;
  cursor: pointer;
}

.chat-container .send-btn {
  border: none;
  background: #184c46;
  color: white;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
}

.ui-menu-item .contract-copy-sug div span:first-child {
  font-size: 12px;
  display: block;
}

.ui-menu-item .contract-copy-sug div span:nth-child(2) {
  font-size: 18px;
  display: block;
}

.ui-menu-item .contract-copy-sug div span:nth-child(3) {
  font-size: 14px;
}

.ui-menu-item .contract-copy-sug .flex {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.ui-menu-item .contract-copy-sug {
  border-bottom: 1px solid black;
}

/* .ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid var(--dark) !important;
    background: var(--dark) !important;
    font-weight: normal;
    color: #ffffff;
} */

.ui-menu:hover {
  color: black !important;
}

.ht-30 {
  height: 30px;
}

.wd-30 {
  width: 30px;
}

.home-chat-2 {
  display: flex !important;
  flex-wrap: wrap;
  gap: 14px;
}

/* Ensuring consistent box size */
.home-chat-2 .col-md-2 {
  flex: 0 0 auto !important;
  padding: 0 8px;
  width: 150px;
  height: 150px;
}

.home-chat-2 .col-md-2 .square-box img {
  width: 80%;
}

/* Responsive wrapping for tablets and below */
@media (max-width: 992px) {
  .home-chat-2 .col-md-2 {
    width: 33.3333% !important;
    /* 3 per row on tablets */
  }
}

@media (max-width: 768px) {
  .home-chat-2 .col-md-2 {
    width: 50% !important;
    /* 2 per row on mobile */
  }
}

@media (max-width: 480px) {
  .home-chat-2 .col-md-2 {
    width: 100% !important;
    /* 1 per row on very small screens */
  }
}

/* Keep square box height fixed */
.home-chat-2 .square-box {
  height: 150px !important;
  width: 100% !important;
  /* Makes it full width inside its column */
}

.app-chat .dashboard {
  all: unset !important;
}

.app-chat {
  overflow: hidden;
}

.team-tab .nav-tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.team-tab .nav-item {
  width: max-content !important;
}

.team-tab .nav-link {
  padding: 10px 20px;
  border: none;
  color: #a5a5a5;
  text-decoration: none;
  font-weight: 500;
  width: max-content;
  background-color: transparent;
}

.team-tab .nav-tabs.flex-column {
  border-right: none !important;
}

.team-tab .nav-link.active {
  color: #007bff;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 2px solid #007bff !important;
}

.team-tab .nav-link:hover {
  color: #007bff;
}

.input-close {
  position: absolute;
  right: 5px;
  padding: 5px;
  top: 15%;
}

.input-close i {
  color: #b2bec1;
  cursor: pointer;
}

.profile-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.tx-color-03 {
  color: #303030;
}

.ui-widget.ui-widget-content {
  max-height: 200px !important;
  overflow-y: scroll !important;
  scrollbar-width: thin !important;
}

.select2-container {
  width: -webkit-fill-available !important;
}

.input-icon {
  position: absolute;
  top: 7px;
  color: rgb(0, 0, 0);
  right: 7px;
  cursor: pointer;
  background: white;
  padding-left: 5px;
}

/* Styling the input-lock icon as a square */
.input-lock {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  border: 1px solid gray;

  cursor: pointer;
  transition: background-color 0.3s ease;
}

.input-lock.locked {
  background-color: #f44336;
}

.input-lock.unlocked {
  border: 1px solid black;
}

.input-lock i {
  color: #fff;
  font-size: 14px;
}

/* Close icon styling */
.close-icon i {
  color: #000000;
  font-size: 16px;
  cursor: pointer;
  line-height: 0 !important;
}
.close-icon {
  line-height: 0 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.product-row {
  display: grid;
  grid-template-columns:
    2fr 2fr 2fr 2fr 2fr
    140px
    auto;
  gap: 6px;
}

.readonly-dropdown {
  pointer-events: none;
  background-color: #e9ecef;
  color: #6c757d;
}
/* Tablet */
@media (max-width: 1200px) {
  .product-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-row {
    grid-template-columns: 1fr;
  }
}
.product-row .form-group {
  margin-bottom: 0 !important;
}
.lock img {
  filter: invert(32%) sepia(98%) saturate(500%) hue-rotate(200deg) !important;
}
.lock {
  border-color: #0836ce;
}
.content .content-body {
  overflow-y: visible !important;
}

/* task design */

.TabChange {
  max-width: 200px;
  cursor: pointer;
}

.pd-label-1 {
  padding: 2px 10px 2px;
}

.No-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.no-data-icon i {
  font-size: 80px;
  opacity: 0.4;
  margin-bottom: 15px;
}

.no-task-title {
  margin-bottom: 0;
  font-size: 20px;
  color: #808080;
  text-align: center;
}

.single_task_status label {
  padding: 5px 10px;
  white-space: nowrap;
}
.TaskInfolist {
  gap: 20px;
  margin-bottom: 15px;
}
.TaskInfolist p {
  width: 50%;
}
.tx-color-03 {
  color: #8392a5;
}
.activity-box-icon {
  position: absolute;
  left: -36px;
  top: -3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.TaskDetails .alert {
  padding: 5px 15px;
}
.activity-box {
  position: relative;
}
.profile-tags .bootstrap-tagsinput .tag {
  color: #000;
  border-radius: 5px;
  background: #e3e3e3;
  padding: 4px 8px;
  margin: 5px 5px 5px 0;
}
.bootstrap-tagsinput .tag {
  display: inline-flex;
  align-items: center;
}
.profile-tags .badge {
  font-size: 14px;
  padding: 5px 10px !important;
}
.shadow1:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.2s linear;
}
.home-chat-2 .col-md-2 .square-box img {
  fill: #0b2a60;
}
.home-chat-2 .col-md-2 .square-box img {
  filter: brightness(0) saturate(100%) hue-rotate(210deg);
}
.chat-card-container.home-chat-2 .col-md-2 .square-box p {
  line-height: 2.6;
}
