/**
* Template Name: Need24
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: "Gilroy-Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Gilroy-Bold"), url("../fonts/Gilroy-Bold.woff") format("woff");
}

@font-face {
  font-family: "Gilroy-Heavy";
  font-style: normal;
  font-weight: normal;
  src: local("Gilroy-Heavy"), url("../fonts/Gilroy-Heavy.woff") format("woff");
}

@font-face {
  font-family: "Gilroy-Light";
  font-style: normal;
  font-weight: normal;
  src: local("Gilroy-Light"), url("../fonts/Gilroy-Light.woff") format("woff");
}

@font-face {
  font-family: "Gilroy-Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Gilroy-Medium"), url("../fonts/Gilroy-Medium.woff") format("woff");
}

@font-face {
  font-family: "Gilroy-Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Gilroy-Regular"),
    url("../fonts/Gilroy-Regular.woff") format("woff");
}
@font-face {
  font-family: "Gilroy-Semibold";
  font-style: normal;
  font-weight: normal;
  src: local("Gilroy-SemiBold"),
    url("../fonts/Gilroy-SemiBold.woff") format("woff");
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  scroll-behavior: smooth;
  font-family: "Gilroy", sans-serif; /* Primary font with fallback */
  text-rendering: optimizeLegibility; /* Enhances font rendering */
  -webkit-font-smoothing: antialiased; /* Smooths fonts on Webkit browsers */
  -moz-osx-font-smoothing: grayscale; /* Smooths fonts on Firefox for macOS */
}

body {
  /* font-family: 'Poppins', sans-serif; */
  background: #ebf0f4;
  color: #000000;
  font-family: "Gilroy-Medium";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #081538;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

[class*="ag-theme-"],
.ff-gilroy {
  font-family: "Gilroy-Medium" !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Gilroy-Medium";
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 40px;
  padding: 15px 10px 15px 0; /* Reduced padding on the right */
  margin-left: -10px; /* Small negative margin to align with sidebar */
  transition: all 0.3s;
  background-color: #ebf0f4;
  overflow-x: hidden; /* Prevents horizontal scroll */
  box-sizing: border-box;
  max-width: calc(100vw - 260px); /* Adjust according to the sidebar width */
}

@media (max-width: 1199px) {
  #main {
    max-width: 100%;
    margin-left: 0;
    padding: 15px;
  }

  .sidebar {
    left: -180px;
  }

  .toggle-sidebar #main {
    margin-left: 0;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.btn {
  font-family: "Gilroy-Bold";
}
.text-black {
  font-family: "Gilroy-Regular";
}
.form-label {
  font-family: "Gilroy-Medium";
}
.modal-title {
  font-family: "Gilroy-Regular";
}
.form-control {
  font-family: "Gilroy-Medium";
}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #081538;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

@media (max-width: 480px) {
  .dropdown-menu {
    width: 80vw;
  }
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
  cursor: pointer;
  font-family: Gilroy-Medium;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:not(.dropdown_label):hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 10px;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  overflow: hidden;
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Gilroy-Medium";
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Gilroy-Medium";
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #081538;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Gilroy-Medium";
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #081538;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #081538;
  border-bottom: 2px solid #081538;
}






.popup-section-1 .modal-title {
  font-weight: 800;
  font-size: 20px;
  color: #061840;
  font-family: "Gilroy-Regular";
}

.popup-section-1 label.form-label {
  font-size: 14px;
  padding-top: 18px;
  text-transform: capitalize;
  font-weight: 600;
}


.popup-section-1 input {
  border-radius: var(--button-border-radius, 0.5rem);
  background-color: #ebf0f4;
  border-color: #ebf0f4;
}

.popup-section-1 select {
  border-radius: var(--button-border-radius, 0.5rem);
  background-color: #ebf0f4;
  border-color: #ebf0f4;
}

.popup-section-1 .form-select:focus {
  border-color: transparent;
  box-shadow: none;
}

.popup-section-1 .form-control:focus {
  color: #000000;
  background-color: #ebf0f4;
  border-color: transparent;
  box-shadow: none;
}

.modal-header .btn-close {
  font-size: 30px;
  background-color: #bebebe;
  color: #000;
  padding: 0px;
  border-radius: 50%;
  background-size: 39%;
  opacity: 1;
  font-family: "Gilroy-Medium";
}



.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}



.Leads-selection-1 {
  margin-left: 10px;
  border-radius: var(--button-border-radius, 0.5rem);
}

.form-select:focus {
  border-color: #ced4da;
  box-shadow: none;
}


.btn.add-new-source-btn {
  border: 2px solid #061840;
  border-radius: var(--button-border-radius, 0.5rem);
  text-transform: capitalize;
  color: #061840;
  font-family: "Gilroy-Medium";
  font-weight: 700;
  margin-bottom: 12px;
  padding: 7px 13px;
  font-size: 14px;
}

#source-form {
  margin-bottom: 3px;
}

.popup-section-2 .modal-content {
  background: #ebf0f4;
}

.popup-section-2 input {
  border-radius: var(--button-border-radius, 0.5rem);
  background-color: #fff;
  border-color: #fff;
}

.popup-section-1 .form-control:focus {
  color: #000000;
  background-color: #fff;
  border-color: #fff;
  box-shadow: none;
}

.popup-section-3 p {
  color: #27314c;
  font-family: "Gilroy-Medium";
  font-size: 16px;
  font-weight: 600;
}

.popup-section-3 h3 {
  border: 1px solid;
  text-align: center;
  font-family: "Gilroy-Medium";
  font-size: 17px;
  padding: 12px;
  border-radius: var(--button-border-radius, 0.5rem);
  color: #012970;
  font-weight: 700;
}

.popup-section-file {
  position: relative;
  overflow: hidden;
}

.popup-section-file input {
  position: absolute;
  font-size: 50px;
  opacity: 0;
  right: 0;
  top: 0;
  cursor: pointer;
}

.popup-section-download .btn {
  background: #d1d1d1;
  text-transform: capitalize;
  font-family: "Gilroy-Medium";
  font-weight: 700;
  font-size: 17px;
  border-radius: var(--button-border-radius, 0.5rem);
  height: 63px;
}

.popup-section-file i.bi.bi-download {
  padding-right: 9px;
}

.popup-section-file.btn {
  background: #3a4b86;
  color: #ffffff;
  font-family: "Gilroy-Medium";
  font-weight: 600;
  width: 262px;
  height: 45px;
  padding: 8px;
  text-transform: capitalize;
  border-radius: var(--button-border-radius, 0.5rem);
}

.popup-section-3-1 {
  margin-top: 25px;
}


.popup-section-4 .btn-close {
  font-size: 30px;
  background-color: #bebebe;
  color: #000;
  padding: 0px;
  border-radius: 50%;
  background-size: 39%;
  opacity: 1;
  position: absolute;
  right: -15px;
  top: -13px;
}

.popup-section-4 .modal-content {
  background: #ebf0f4;
}

.popup-section-4-left {
  background: #ffffff;
  border-radius: var(--button-border-radius, 0.5rem);
  padding: 30px;
}

.popup-section-4-left h1 {
  text-align: center;
  font-size: 30px;
  padding-bottom: 11px;
}

.popup-section-4-left-1 {
  padding-left: 0;
  /* border-bottom: 1px solid; */
  padding-bottom: 5px;
}

.popup-section-4-left-1 li {
  display: inline-block;
  margin-right: 15px;
}
/* 
.popup-section-4-left-1 li img {
  height: 25px;
} */

.popup-section-4-left-2 {
  padding-left: 0;
  list-style: none;
}

.popup-section-4-left-2 li {
  padding: 5px 10px;
  font-size: 16px;
}

.popup-section-4-left-2 li span {
  font-weight: 600;
  font-size: 17px;
  font-family: "Gilroy-Regular";
}

.popup-section-4-right {
  background: #ffffff;
  border-radius: var(--button-border-radius, 0.5rem);
  padding: 30px;
}

.popup-section-4-right .nav-item button {
  background: #ebeef3;
  border-radius: var(--button-border-radius, 0.5rem);
  color: #000;
  padding: 8px 10px;
  min-width: 76px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "Gilroy-Bold";
}

.popup-section-4-right .nav-link.active {
  background-color: #3faefd;
}

.popup-section-4-right-1 {
  background: #ebeef3;
  border-radius: var(--button-border-radius, 0.5rem);
  padding: 16px 20px;
  /* margin-bottom: 15px; */
}

.popup-section-4-right-1 h6 {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 21px;
  font-family: "Gilroy-Regular";
}

.content-section-1-sub-1 {
  background: #ffffff;
  padding: 10px 20px;
  -webkit-box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%),
    0 2px 1px -1px rgb(0 0 0 / 12%), 0 1px 3px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%),
    0 1px 3px 0 rgb(0 0 0 / 20%);
  border-radius: 0.75rem;
}

.content-section-1-sub-1 .nav-item button {
  background: #ebf0f4;
  border-radius: var(--button-border-radius, 0.5rem);
  color: #000;
  padding: 6px 33px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Gilroy-regular";
  font-size: 16px;
}

thead,
td {
  text-align: center;
}

.Quotation tbody tr td {
  font-size: 16px !important;
  font-family: "Gilroy-regular";
  text-align: center !important;
}

td .btn-info {
  background-color: #3faefd;
  border-radius: 10px;
  width: 100px;
  height: 25px;
  font-size: 14px !important;
}

td .btn-info:hover {
  background-color: #3faefd;
}

.created {
  font-weight: 700;
  font-size: 16px;
  font-family: "Gilroy-Regular";
  color: #fff;
  width: 100px;
  height: 25px;
  text-align: center;
}

.content-section-1-sub-1 .nav-link.active {
  background-color: #3da6f7;
}

/* .content-section-1-sub-1 .nav-item {
  margin-right: 40px;
} */

#LeadsDetailsPopup {
  background: #ebf0f4;
}

#LeadsDetailsPopup .btn-close {
  font-size: 30px;
  background-color: #bebebe;
  color: #000;
  padding: 0px;
  border-radius: 50%;
  background-size: 39%;
  opacity: 1;
}


.settings-section-1-sub-1 {
  background: #ffffff;
  padding: 60px 45px;
  -webkit-box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%),
    0 2px 1px -1px rgb(0 0 0 / 12%), 0 1px 3px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%),
    0 1px 3px 0 rgb(0 0 0 / 20%);
  border-radius: 0.75rem;
}

.settings-section-1-sub-1 button {
  background: #c4c4c4 !important;
  border: 3px solid #c4c4c4 !important;
  box-sizing: border-box;
  border-radius: var(--button-border-radius, 0.5rem) !important;
  width: 100%;
  font-size: 20px;
  line-height: 27px;
  padding: 10px;
  margin-bottom: 20px;
  color: #061840 !important;
}

.settings-section-1-sub-1 .nav-pills .nav-link.active,
.settings-section-1-sub-1 .nav-pills .show > .nav-link {
  background-color: #061840 !important;
  color: #fff !important;
  border-color: #061840 !important;
}

.settings-section-1-sub-1 h6 {
  text-align: center;
  padding: 25px 0 10px;
}

.settings-section-1-sub-3-btn {
  background: #c4c4c4 !important;
  border-radius: var(--button-border-radius, 0.5rem) !important;
  border: none !important;
  box-shadow: none !important;
  margin-top: 25px;
}

.settings-section-1-sub-3 p {
  font-size: 19px;
  line-height: 27px;
}

.settings-section-1-sub-2 h1 {
  font-size: 25px;
  text-align: center;
  padding-bottom: 15px;
}


#EnterDetailsPopup .modal-content {
  background: #ebf0f4;
}

#EnterDetailsPopup .modal-body,
#AddNewTask .modal-body,
#MessageShare .modal-body,
.popup-height-fix .modal-body {
  height: 450px;
  overflow-y: scroll;
}

#EnterDetailsPopup .modal-body::-webkit-scrollbar,
#AddNewTask .modal-body::-webkit-scrollbar,
#MessageShare .modal-body::-webkit-scrollbar,
.popup-height-fix .modal-body::-webkit-scrollbar {
  width: 3px;
  scroll-margin: 1em 0.5em 1em 1em;
}

#EnterDetailsPopup .modal-body::-webkit-scrollbar-track,
#AddNewTask .modal-body::-webkit-scrollbar-track,
#MessageShare .modal-body::-webkit-scrollbar-track,
.popup-height-fix .modal-body::-webkit-scrollbar-track {
  background: transparent;
}

#EnterDetailsPopup .modal-body::-webkit-scrollbar-thumb,
#AddNewTask .modal-body::-webkit-scrollbar-thumb,
#MessageShare .modal-body::-webkit-scrollbar-thumb,
.popup-height-fix .modal-body::-webkit-scrollbar-thumb {
  background-color: #061840b8;
  border-radius: 0.75rem;
}

#EnterDetailsPopup .modal-body::-webkit-scrollbar-track-piece:end {
  background: transparent;
  margin-bottom: 15px;
}

#EnterDetailsPopup .modal-body::-webkit-scrollbar-track-piece:start {
  background: transparent;
  margin-top: 15px;
}

.modal-content {
  border-radius: 0.75rem;
}

.settings-section-1-sub-2 {
  background: #ffffff;
  padding: 60px 45px;
  -webkit-box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%),
    0 2px 1px -1px rgb(0 0 0 / 12%), 0 1px 3px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%),
    0 1px 3px 0 rgb(0 0 0 / 20%);
  border-radius: 0.75rem;
}

.popup-section-4-add-11 button {
  padding: 15px 12px 0;
  font-weight: 800;
  letter-spacing: 0.5px;
  width: auto;
  font-size: 17px;
  display: flex;
  color: #061840 !important;
  font-family: "Gilroy-Bold";
}

.popup-section-4-add-11 button i {
  font-size: 28px;
  padding-right: 8px;
  color: #3faefd;
}

.popup-section-4-add-11 {
  margin-bottom: 15px;
}

.popup-section-2 select {
  border-radius: var(--button-border-radius, 0.5rem);
  background-color: #fff;
  border-color: #fff;
}

.popup-section-2 textarea {
  border-radius: var(--button-border-radius, 0.5rem);
  background-color: #fff;
  border-color: #fff;
}

.note-popup-section-4-right-1 {
  background: #ebeef3;
  border-radius: var(--button-border-radius, 0.5rem);
  padding: 16px 20px;
  margin-bottom: 15px;
}

.note-popup-icon-1 i {
  color: #fff;
  font-size: 27px;
  background: rgb(6 24 64 / 70%);
  padding: 11px 15px;
  border-radius: var(--button-border-radius, 0.5rem);
  text-align: center;
}

.note-popup-icon-1 {
  text-align: center;
  padding: 0 5px;
  max-height: 50px;
  border-radius: 10px;
  line-height: 50px;
}

.note-popup-center-text h1 {
  font-size: 21px;
  color: #061840;
  font-weight: 700;
}

.note-popup-center-text h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.note-popup-center-text h3 {
  font-size: 18px;
  margin-bottom: 2px;
}

.note-popup-center-text h4 {
  font-size: 18px;
  margin-bottom: 2px;
}

.note-popup-icon-2 {
  text-align: right;
}

.note-popup-icon-2 i {
  background: #fff;
  color: #061840;
  border-radius: 50%;
  padding: 10px 14px;
  cursor: pointer;
}

.task-popup-section-4-right-1 {
  background: #ebeef3;
  border-radius: var(--button-border-radius, 0.5rem);
  padding: 16px 20px;
  margin-bottom: 15px;
}

.task-popup-section-4-right-1 h1 {
  background-color: #3faefd;
  color: #fff;
  font-size: 17px;
  display: inline-block;
  padding: 11px 15px;
  border-radius: var(--button-border-radius, 0.5rem);
  font-weight: 700;
  letter-spacing: 0.6px;
}

.task-popup-section-4-right-1 h5 {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.task-popup-section-4-right-1 h6 {
  text-align: center;
  font-size: 15px;
}

.content-section-1-sub-2-box {
  background: #ffffff;
  padding: 20px 20px 25px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%),
    0 2px 1px -1px rgb(0 0 0 / 12%), 0 1px 3px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%),
    0 1px 3px 0 rgb(0 0 0 / 20%);
  border-radius: 0.75rem;
}

.content-section-1-sub-2-box h1 {
  color: #061840;
  font-weight: 800;
  font-size: 22px;
}

.content-section-1-sub-2-box p {
  font-size: 15px;
  height: 69px;
  overflow: hidden;
  margin-bottom: 9px;
}

.content-section-1-sub-2-box h2 {
  font-size: 17px;
  font-weight: 600;
}

.content-section-1-sub-2-box-btn .btn {
  font-weight: 600;
  color: #fff;
  border-radius: var(--button-border-radius, 0.5rem);
  width: 100%;
}

.content-section-1-sub-2-box-btn .col-md-4 {
  padding: 2px;
}

.btn-share {
  background: #3da6f7;
}

.btn-edit {
  background: #3da6f7;
}

.btn-delete {
  background: #ff4747;
}

.content-section-1-sub-2-box-btn {
  padding: 11px 10px 0;
}

.addmessagesicon i {
  color: #3da6f7;
  font-size: 54px;
  cursor: pointer;
  position: fixed;
  bottom: 8px;
  right: 20px;
}

.message-share-search {
  min-width: 100%;
  padding: 0;
}

.message-share-search .search-form {
  width: 100%;
}

.message-share-search .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: var(--button-border-radius, 0.5rem);
  transition: 0.3s;
  width: 100%;
}

.message-share-search .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.message-share-search .search-form button i {
  color: #012970;
}

.MessageShare-section-1 h1 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.MessageShare-section-1 .btn-group {
  display: block;
}

.MessageShare-section-1 .btn-outline-primary {
  color: #3da6f7;
  border-color: #3da6f7;
  width: 25%;
}

.MessageShare-section-1 .btn-outline-primary:hover {
  color: #fff;
  background-color: #3da6f7;
  border-color: #3da6f7;
}

.MessageShare-section-1 .btn-check:active + .btn-outline-primary,
.MessageShare-section-1 .btn-check:checked + .btn-outline-primary,
.MessageShare-section-1 .btn-outline-primary.active,
.MessageShare-section-1 .btn-outline-primary.dropdown-toggle.show,
.MessageShare-section-1 .btn-outline-primary:active {
  color: #fff;
  background-color: #3da6f7;
  border-color: #3da6f7;
}

.MessageShare-section-1-sub-1 .form-check {
  padding-left: 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-top: 10px;
}

.MessageShare-section-1-sub-1 .form-check-input {
  float: right;
  border: 2px solid #3da6f7;
}

.MessageShare-section-1-sub-1 {
  margin-top: 25px;
}

.MessageShare-section-1-sub-1 label {
  color: #061840;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}

.message-delete-box h1 {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}

.delete-no-btn {
  font-weight: 600;
  color: #fff;
  border-radius: var(--button-border-radius, 0.5rem);
  width: 100%;
  background: #3da6f7;
}

.delete-yes-btn {
  font-weight: 600;
  color: #fff;
  border-radius: var(--button-border-radius, 0.5rem);
  width: 100%;
  background: #d11a2a;
}

.message-delete-box .btn:hover {
  color: #fff;
}

.content-file-section-1-sub-2-box {
  background: #ffffff;
  padding: 20px 20px 25px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%),
    0 2px 1px -1px rgb(0 0 0 / 12%), 0 1px 3px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%),
    0 1px 3px 0 rgb(0 0 0 / 20%);
  border-radius: 0.75rem;
}

.content-file-section-1-sub-2-box-1 {
  display: flex;
  margin-bottom: 13px;
  position: relative;
}

.content-file-section-1-sub-2-box-1 img {
  height: 54px;
  border-radius: var(--button-border-radius, 0.5rem);
  margin-right: 10px;
}

.content-file-section-1-sub-2-box-1 span {
  font-weight: 600;
  font-size: 16px;
}

.content-file-section-1-sub-2-box-1 p {
  margin-bottom: 0;
  line-height: 19px;
  font-size: 14px;
}

.content-file-section-1-sub-2-box h1 {
  color: #061840;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 2px;
}

.content-file-section-1-sub-2-box h2 {
  font-size: 14px;
  margin-bottom: 0;
}

.content-file-section-1-sub-2-box-1 h6 {
  float: right !important;
  position: absolute;
  top: 13px;
  right: 0;
}

.content-file-section-1-sub-2-box-1 h6 i {
  padding-right: 4px;
}

.content-file-btn-1 {
  position: relative;
  overflow: hidden;
}

.content-file-btn-1 input {
  position: absolute;
  font-size: 50px;
  opacity: 0;
  right: 0;
  top: 0;
  cursor: pointer;
}

.content-file-btn-1 i {
  font-size: 45px;
  color: #212529;
}

.content-page-section-1-sub-2-box i.bi-card-text {
  background: rgb(33 37 41 / 70%);
  color: #fff;
  padding: 8px 13px;
  border-radius: var(--button-border-radius, 0.5rem);
  margin-right: 8px;
}

.content-page-map-1 {
  margin-top: 20px;
}

.content-page-map-1 iframe {
  border-radius: 12px;
}


/* switch input style */

/* .switch-wrapper>input[type="checkbox"] {
  opacity: 0;
  position: absolute;
} */



.bg-silver {
  background-color: #ccc;
}

.rounded-border {
  height: 25px;
  width: 25px;
  border: 1px solid #ccc;
  text-align: center;
  border-radius: 50%;
}

.filter-icon {
  width: 28px;
}

.w-70 {
  width: 70%;
}

.offcanvas-header {
  justify-content: end;
  padding: 1rem 2.3rem;
}

.sdfkj_23 {
  height: 20px;
  width: 20px;
}

.skyblue-bg {
  background-color: #3faefd;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .login_card {
    width: 100% !important;
    margin-top: 5rem !important;
  }
  #filter-img {
    width: 18px;
  }


  #main {
    padding: 10px;
  }

  .header {
    padding-left: 0px;
  }

  #dropdownMenuButton1 {
    padding-left: 5px;
  }

  .bi-arrow-clockwise.fa-2x {
    font-size: 1rem;
  }

  .Leads-selection-1 {
    margin-top: 17px;
    margin-left: 0;
  }


  #LeadsDetailsPopup {
    width: 100% !important;
  }

  .popup-section-4-right {
    padding: 15px;
  }

  .popup-section-4-left {
    padding: 15px;
    margin-bottom: 25px;
  }

  .popup-section-4-right .nav-item button {
    padding: 8px 20px;
    font-size: 12px;
  }

  .note-popup-icon-1 {
    text-align: left;
    margin-bottom: 21px;
    margin-top: 10px;
    max-height: 50px;
    border-radius: 10px;
    line-height: 50px;
  }

  .popup-section-download .btn {
    height: 121px;
  }

  .popup-section-file.btn {
    height: 121px;
    padding: 37px 18px;
  }

  .content-section-1-sub-1 {
    padding: 10px 10px;
  }

  .content-section-1-sub-1 .nav-item button {
    padding: 6px 17px;
    font-size: 12px;
  }

  .content-section-1-sub-1 .nav-item {
    margin-right: 9px;
    margin-bottom: 8px;
  }

  

  .settings-section-1-sub-1 {
    padding: 15px 15px;
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .login_card {
    width: 100%;
  }
  .Leads-selection-1 {
    margin-top: 17px;
    margin-left: 0;
  }

  #LeadsDetailsPopup {
    width: 100% !important;
  }

  .popup-section-4-right {
    padding: 15px;
  }

  .popup-section-4-left {
    padding: 15px;
    margin-bottom: 25px;
  }

  .note-popup-icon-1 {
    text-align: left;
    margin-bottom: 21px;
    margin-top: 10px;
    max-height: 50px;
    border-radius: 10px;
    line-height: 50px;
  }

  .content-section-1-sub-1 {
    padding: 10px 10px;
  }

  .content-section-1-sub-1 .nav-item {
    margin-right: 9px;
    margin-bottom: 8px;
  }

  .settings-section-1-sub-1 {
    padding: 15px 15px;
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .dashboard-section-2 h1 {
    font-size: 10px;
  }

  #LeadsDetailsPopup {
    width: 95% !important;
  }

  .content-section-1-sub-2-box-btn .btn {
    font-size: 12px;
  }

  .content-section-1-sub-1 .nav-item button {
    padding: 6px 11px;
    font-size: 15px;
  }

  .settings-section-1-sub-1 {
    padding: 20px 15px;
  }

  .settings-section-1-sub-1 button {
    font-size: 15px;
  }
}



/* .nav-item {
  margin: 10px 0 0 5px;
} */

.nav-link {
  color: #000;
  transition: background-color 0.2s ease, color 0.2s ease;
}

p.ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

hr.half-width {
  border: 1px solid black;
}
hr.divider {
  background: black;
  border: 1px solid;
  opacity: 0.5;
}
@media screen and (max-width: 576px) {
  .inputs input {
    width: 35px;
    height: 35px;
  }
}

.rs-drawer-dialog .rs-drawer-body {
  padding: 15px 10px;
}


.rs-drawer-header + .rs-drawer-body {
  height: calc(100% - 46px) !important;
}

.rs-drawer-dialog .rs-drawer-body .image-upload {
  display: flex;
  align-items: center;
}
.rs-drawer-dialog .rs-drawer-body .image-upload .form-label {
  margin-bottom: 0;
  font-family: "Gilroy-Medium";
  font-weight: 400;
}
.rs-drawer-dialog .rs-drawer-body .image-upload svg {
  width: 50px;
  height: 50px;
}

.rs-drawer-dialog .rs-btn.rs-btn-default {
  background: #ff4e59;
  color: #fff;
  font-family: "Gilroy-Medium";
  font-weight: 700;
  font-size: 16px;
}
.rs-drawer-dialog .rs-btn.rs-btn-default:hover {
  background: #061840;
  color: #fff;
}
.rs-drawer-dialog .rs-drawer-title {
  font-family: "Gilroy-Medium";
  font-weight: 400;
}
.rs-drawer-dialog .form-control {
  font-family: "Gilroy-Medium";
  font-weight: 400;
}
.rs-drawer-dialog .rs-drawer-body .product_group .form-group .icon_add {
  position: relative;
}
.rs-drawer-dialog .rs-drawer-body .product_group .form-group .icon_add .ficon {
  position: absolute;
  left: 12px;
  top: 3px;
  color: #3da6f7;
  font-size: 20px;
}
.rs-drawer-dialog
  .rs-drawer-body
  .product_group
  .form-group
  .icon_add
  .form-control {
  padding-left: 35px;
}
.rs-drawer-dialog .rs-drawer-body .addquotation .product_group {
  padding: 0 0 20px;
}
.rs-drawer-dialog .rs-drawer-body .subtotal_section {
  width: 100%;
  border-top: 3px solid #2c384e;
  border-bottom: 3px solid #2c384e;
  margin-bottom: 15px;
}
.rs-drawer-dialog .rs-drawer-body .subtotal_section .subtotal-div {
  padding: 15px 0;
  border-bottom: 1px solid #c2c2c2;
}
.rs-drawer-dialog .rs-drawer-body .subtotal_section .subtotal-div.total-div {
  padding: 15px 0;
  border-bottom: 0;
}
.rs-drawer-dialog .rs-drawer-body .subtotal_section .subtotal-div span {
  font-family: "Gilroy-Medium";
  font-weight: 400;
  color: #000000;
}
.rs-drawer-dialog .rs-drawer-body .subtotal_section .subtotal-div.tax span {
  color: #3da6f7;
}
.rs-drawer-dialog
  .rs-drawer-body
  .subtotal_section
  .subtotal-div.tax
  span.title {
  color: #000000;
}
.rs-drawer-dialog
  .rs-drawer-body
  .subtotal_section
  .subtotal-div.discount
  span {
  color: #3da6f7;
}
.rs-drawer-dialog
  .rs-drawer-body
  .subtotal_section
  .subtotal-div.discount
  span.title {
  color: #000000;
}
.rs-drawer-dialog .rs-drawer-body .subtotal_section .subtotal-div span.title {
  font-family: "Gilroy-Medium";
  font-weight: 600;
}
.rs-drawer-dialog .rs-drawer-body .addcategory .product_group {
  padding: 0;
}
.rs-drawer-dialog .rs-drawer-body .addcategory .product_group .chrome-picker {
  position: absolute;
}
.login-btnm-2 {
  font-family: "Gilroy-Medium";
  font-weight: 400;
}
.rs-drawer-dialog .rs-drawer-body .form-group .rbt-menu.dropdown-menu {
  border: 1px solid #ced4da;
}
.rs-drawer-dialog .rs-drawer-body .form-group .rbt-input-multi.focus {
  border-color: #0000ff;
  box-shadow: none;
}
.rs-drawer-dialog
  .rs-drawer-body
  .form-group
  .dropdown-menu
  .dropdown-item:hover {
  background-color: #0000ff;
  color: #fff;
  text-decoration: none;
}

.rs-drawer-dialog .rs-drawer-body .leadsform .form-container .LeadsFilterApply {
  padding: 8px 15px;
}
.rs-drawer-dialog .rs-drawer-body .addleadsform .product_group h3 {
  font-size: 20px;
  font-family: "Gilroy-Medium";
  line-height: 30px;
  padding-bottom: 10px;
  font-weight: 600;
  color: #000;
}
.rs-drawer-dialog .rs-drawer-body .addleadsform .product_group .form-group2 {
  padding-bottom: 10px;
}
.rs-drawer-dialog .rs-drawer-body .addleadsform .product_group .form-group2 p {
  font-family: "Gilroy-Medium";
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
}
.rs-drawer-dialog .rs-drawer-body .addleadsform .LeadsFilterApply {
  margin-top: 10px;
  padding: 8px 15px;
}
.rs-drawer-dialog .rs-drawer-body .addleadsform .product_group {
  padding: 0;
}
.rs-drawer-dialog
  .rs-drawer-body
  .addleadsform.lead_pop
  .product_group
  .form-group
  p {
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #2c384e;
  padding-top: 10px;
  padding-left: 15px;
}
.rs-drawer-dialog
  .rs-drawer-body
  .addleadsform.lead_pop
  .product_group
  .form-group2 {
  padding-bottom: 15px;
}
.rs-drawer-dialog .rs-drawer-body .addleadsform.lead_pop .product_group h3 {
  padding: 10px;
  border: 1px solid #3faefd;
  border-radius: 8px;
  color: #3faefd;
  width: 48%;
  font-size: 16px;
  text-align: center;
}
/* Clean, visible toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb;
  border: 2px solid #d1d5db;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

input:checked + .toggle-slider {
  background-color: #3b82f6;
  border-color: #2563eb;
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
  border-color: #ffffff;
}
.countincrement {
  display: flex;
  align-items: center;
}
.countincrement .count_btn {
  padding: 2px;
  font-size: 16px;
  line-height: 20px;
  border-radius: 5px;
  width: 30px;
  text-align: center;
  background-color: #3faefd;
  color: #fff;
}
.countincrement .countvalue {
  padding: 0 10px;
  font-size: 16px;
  line-height: 20px;
}
.lead.dropdown-item .fliter_btn .btn {
  padding: 0;
  border: 0;
}

.leads_dropdown {
  transform: translate3d(0, 47px, 0px) !important;
}

.leads_dropdown.new_lead {
  padding: 12px 7px;
  min-height: 170px;
  border-radius: 10px;
}

.leads_dropdown.new_lead li:first-child {
  padding-left: 4px !important;
}

.leads_dropdown.new_lead li,
.lead_options_dropdown .dropdown-item,
.lead_options_dropdown div {
  font-family: "Gilroy-Bold";
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
}

.lead_options_dropdown {
  border-radius: 10px;
  padding: 0 7px 5px 7px !important;
  margin-top: 7px;
}

.lead_options_dropdown div {
  pointer-events: none !important;
  padding: 12px 4px !important;
}

.lead_options_dropdown div:hover {
  background: none !important;
}
.lead_options_dropdown button {
  padding: 18px 10px !important;
}
.lead_options_dropdown button:hover {
  background-color: rgba(235, 240, 244, 1) !important;
  border-radius: 10px;
}

.leads_dropdown.new_lead li:not(:first-child) {
  height: 53px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.leads_dropdown.new_lead li:not(:first-child).active {
  height: 53px;
  background: #ebf0f4;
  border-radius: 10px;
  margin-top: 6px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .leads_dropdown.new_lead::before,
  .lead_options_dropdown::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
  .lead_options_dropdown::before {
    left: 20px;
    right: unset !important;
  }
}

.leads_dropdown li:first-child,
.lead_options_dropdown div {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.5);
  border-bottom-style: dashed;
  padding-bottom: 10px;
  margin-bottom: 9px;
}

.leads_dropdown span.ms-3 {
  font-size: 16px;
  font-family: "Gilroy-Bold";
  color: black;
}

/* Additional styling for lead details */

.widget_content_btn i {
  font-size: 18px;
}

.dropdown-toggle::after {
  margin-left: 0.555em !important;
  margin-top: 3px !important;
}

.fitContant {
  width: fit-content;
}

.main-body {
  background-color: #ebf0f4 !important;
}

.login-card {
  background-color: #ebf0f4;
}
.social-combobox {
  margin: 10px;
}
.margin30 {
  margin-top: 30px;
}
.Opt_h3 {
  font-family: "Gilroy-bold";
  font-size: 32px;
}
.Opt_h4 {
  padding-top: 5px;
}
.Opt_h4 h4 {
  font-family: "Gilroy-Bold";
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
}
.Opt_h4 button {
  color: #3faefdd1;
  font-weight: 600;
}
.Opt_h4 button:hover {
  color: #3faefdd1;
}
.p_opt {
  color: rgba(0, 0, 0, 0.5);
  font-family: Gilroy-bold;
  opacity: 1;
}
.p_opt .bi-clock {
  padding-right: 5px;
}
.otp_terms_footer {
  color: rgba(0, 0, 0, 0.5);
  font-family: Gilroy-bold;
  margin-top: 3rem;
  margin-bottom: -20px;
}
.timer_sec {
  display: contents;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.5);
  font-family: Gilroy-bold;
  opacity: 1;
}
.signup_form .bi-arrow-right-circle-fill {
  padding-left: 15px;
}
.signup_form .form-control {
  display: block;
  height: 38px;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.lead_icon::after {
  display: none;
}
.lead_icon .bi-play-circle-fill {
  border: none;
  transform: rotate(90deg);
  margin-left: 8px;
  margin-top: -1px;
  width: 11px;
  height: 11px;
}


.lead-subtext {
  line-height: 15px;
}

.ag-body {
  overflow: auto;
}

.infinite-scroll-component {
  height: 100%;
}

.leads-section-23-sub-1 h5 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Gilroy-bold";
}
.p-l-40 {
  padding-left: 40px;
}
.Quotation td .btn-info {
  height: 30px;
  letter-spacing: 1px;
}
.create_quetation svg {
  margin-right: 8px;
}
.custom_date_picker {
  display: flex;
  justify-content: space-between;
}
.custom_date_picker .ant-picker {
  width: 155px;
  height: 38px;
  border-radius: 5px;
}
.activity-scroll {
  height: 420px;
  max-height: 420px;
  overflow: auto;
}

.detail_activity_scroll {
  height: 68vh !important;
  max-height: 68vh !important;
  overflow: auto;
}

.info-scroll {
  /* height: 420px; */
  max-height: 420px;
  overflow: auto;
}
.form_container_body {
  padding: 1rem;
}
.note_area {
  resize: none;
}

.forms_group .form_icon_add {
  position: relative;
}
.forms_group .form_icon_add .ficon {
  position: absolute;
  left: 12px;
  top: 3px;
  color: #3da6f7;
  font-size: 20px;
}
.forms_group .form_icon_add input {
  padding-left: 35px;
}
.currecy_icon {
  top: 10px;
  left: 8px;
  position: absolute;
  height: 20px;
  width: 20px;
}
.popup-section-4-right-1 .bi-pencil {
  display: flex;
  float: right;
  margin-left: 21rem;
  margin-top: -1rem;
  cursor: pointer;
}
/* Scroll css Start */
.activity-scroll::-webkit-scrollbar {
  width: 10px;
}

.activity-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.activity-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.activity-scroll::-webkit-scrollbar-thumb:hover {
  background: #888;
}
/* Scroll css End */

/* Scroll css Start */
.info-scroll::-webkit-scrollbar {
  width: 10px;
}

.info-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.info-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.info-scroll::-webkit-scrollbar-thumb:hover {
  background: #888;
}
/* Scroll css End */
.rs-drawer-header {
  padding: 10px 40px 10px 60px !important;
}
.rs-drawer-header .rs-drawer-header-close {
  top: 12px !important;
}
.mt-15 {
  margin-top: 15px;
}
.menu_icons {
  height: 20px;
  width: 20px;
  object-fit: contain;
  margin-right: 10px;
}
.lead_note_name_date {
  text-align: right;
  font-weight: 300;
}
.icon_div_copy {
  float: right;
  margin-top: -2px;
  cursor: pointer;
}
.icon-div {
  text-align: center;
  height: 40px;
  width: 45px;
  background-color: #3faefd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.icon-div span {
  color: #fff !important;
}

.icon-div svg {
  font-size: 25px;
  margin: auto;
}
.ms-4-notes {
  width: 100%;
}
.btn_bottom {
  bottom: 45px;
  position: fixed;
}
.text_small {
  text-transform: none !important;
}
.file_upload .bi-clock-history::before {
  color: black;
}
.file_upload p {
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
  margin-left: 12px;
}
.font-bold p {
  font-size: 15px;
  font-weight: 550;
}





.activity_form .form-icons {
  display: block;
  position: relative;
  top: 55px;
  right: 10px;
  float: right;
  margin: 0px;
}
.form-icons {
  margin: 12px 10px;
  display: block;
  position: absolute;
}
.hide_dt input[type="date"]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  border-width: thin;
}
.hide_dt input[type="date"]::-webkit-calendar-picker-indicator {
  display: block;
  background-image: url("../img/calendar.png");
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
.hide_dt input[type="time"]::-webkit-calendar-picker-indicator {
  display: block;
  background-image: url("../img/time.png");
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}

.Leadscreate .btn {
  background-color: #000088;
  border-color: #000088;
  font-family: "Gilroy-Bold";
  font-weight: 700;
  color: #fff !important;
  font-size: 20px;
  padding: 9px 55px;
  height: 50px;
  border-radius: 0.75rem;
}
.Leadscreate .btn:active,
.Leadscreate .btn-dark:hover {
  background-color: #000088;
  border-color: #000088;
}

.flex_wrap {
  flex-wrap: nowrap;
}
.select_icon select {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  line-height: 1;
  border: 0;
  border-radius: 5px;
  height: 34px;
  background-image: url("../img/circleDown.png");
  background-repeat: no-repeat;
  -webkit-appearance: none !important;
  background-position-x: 454px;
  background-position-y: 10px;
}
/* create new lead drawer css end */
.edit_lead {
  float: right;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.pac-container {
  z-index: 1056 !important;
}

/* Delete confirmation model css Start */
.delete_modal .btn-close {
  display: none;
}
.delete_modal .modal-content {
  border-radius: 10px;
}
.delete_modal .modal-body {
  background: #ebf0f4;
  border-radius: 10px;
}
.delete_modal_body h4 {
  font-size: 24px;
  color: #000;
  font-family: "Gilroy-Medium";
  text-align: center;
}
.delete_modal_body p {
  text-align: center;
  font-size: 16px;
  color: #75787a;
  font-family: "Gilroy-Bold";
}
.delete_modal_body .delete_btn {
  background: #ffff;
  border-color: #ffff;
  color: #000;
  width: 141px;
  border-radius: 10px;
  height: 43px;
  font-size: 18px;
}
.delete_modal_body .delete_div_btn {
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
  margin-bottom: 5px;
}
/* Delete confirmation model css End */
.mt_-3 {
  margin-top: 8px;
  margin-bottom: 25px;
}

.ag-header-cell-resize {
  z-index: 1 !important;
}



.activity_info_container {
  cursor: pointer;
  width: 100%;
  margin-left: 10px;
  border-radius: 10px;
  padding: 5px 10px;
  position: relative;
}

.activity_edit_icon {
  height: 30px;
  width: 30px;
  border-radius: 15px;
  background-color: #3faefdd1;
  align-items: center;
  position: absolute;
  right: 5px;
}

.status_edit_icon {
  height: 22px;
  width: 22px;
  border-radius: 15px;
  background-color: #3faefdd1;
  align-items: center;
  margin-left: 10px;
  margin-top: -2px;
}

.lead_grid_selector {
  padding: 0px 0px !important;
  margin-bottom: 0px !important;
}

.lead_grid_selector > div {
  padding: 0px !important;
  border-radius: 4px !important;
}



::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}