  /* @import url('https://fontsbutton-wrapgoogleapis.com/css2?family=Sofia+Sans:wght@400;500;600;700&display=swap'); */
  @import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

  * {
    font-family: 'Sofia Sans', sans-serif;
    font-family: "DM Sans";
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    scrollbar-color: var(--primaryColor) var(--nav);
    outline: none !important;
  }

  body {
    width: 100%;
    height: 100vh;
    border-radius: 10px;
    background-color: #F8F9FD !important;
    overflow:hidden;
}
  
  div#menuToggle {
    height: 17px;
}

  th {
   font-family: "DM Sans";
   font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: center !important;
    background-color: #000B14 ;
    color: #fff !important;
   

}
#sideMenu ul, #sideMenu li{
  width: 100%;
}
.collapse-content a{
  margin: 0px 10px !important;
}
tr:nth-child(even) {
  background-color: #F8F9FD !important;
}
.col-sm-12 {
  width: 100% !important;
}
td {
    width: 100px !important;
    height: 40px !important;
    padding: 0 !important;
   font-family: "DM Sans";
    font-size: 10px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: center;

  }

  #example td {
    max-width: 50px !important;
    text-align: left;
    padding: 5px 18px !important;
    font-size: 14px;
    height: 30px !important;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
textarea::placeholder{
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--dark-text, #898989) !important;
}
.dataTables_scrollBody {
  position: relative;
  overflow: auto;
  max-height: none !important;
  height: calc(100vh - 234px) !important;
  width: 100%;

}
.content .filter-data {
  margin-top: 47px !important;
  width: 100%;
}
#multiple-select{
  border: none !important;
  display: none;
}
.close-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.close-icon:hover {
  background-color: #ccc;
}

  .trigger{
    text-align: center;
  padding: 7px 13px;
  background: #3e3e3e;
  color: #fff;
  font-size: 15px;
  outline: none;
  border: none;
  border-radius: 5px;
  /* font-family: cursive; */
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 1rem 1.5rem;
  width: 24rem;
  border-radius: 0.5rem;
}
.close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}
.close-button:hover {
  background-color: darkgray;
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}


  .nav-bar {
    height: 33px;
    top: 0;
    left: 0;
    background-color: var(--nav);
    padding: 2px 1px;
    display: flex;
    align-items: center;
    z-index: 99;
    justify-content: space-between;
  }

  .notification {
    display: flex;
    gap: 18px;
    cursor: pointer;
  }

  .notification .span-2 {
    display: flex;
    height: 36.6px;
    justify-content: center;
    align-items: center;
  }

  .toggle-menu span {
    width: 18px;
    height: 2px;
    background-color: black;
    margin: 2px;

  }

  .dropdown {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: row;
  }

  .accordion-label img{
    width: 18px;
    height: 18px;
  }
 #accordian a label {
    width: 200px;
    height: 100%;
    flex-shrink: 0;
    border-radius: none;
    background: none;
    display: flex;
    align-items: center;
    padding-left: 0px;
    gap: 10px;
}
p {
  margin-top: 0;
  margin-bottom: 0rem;
}

/* Style for the dropdown content (hidden by default) */
 /* Initially hide the dropdown content */
.dropdown-content {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 35px;
  width: 118.83px;
  justify-content: center;
}

/* Define a class to hide the dropdown content */
.hidden {
  display: none;
}

/* Show the dropdown content when the button is hovered */
.dropdown ~ .dropdown-content {
  display: flex; /* or block, depending on your layout */
}

/* Show the dropdown content when the button is clicked */
.header .dropdown.active .dropdown-content {
  display: flex; /* or block, depending on your layout */
  /* Other styles as needed */
}


  /* Style for the dropdown items */
  .dropdown-content a {
    color: var(--dark-text, #000);
    font-family: "DM Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.28px;
    display: block;
    text-align: left;
    text-decoration: none;
    display: flex;
    gap: 13px;
    padding: 5px 4px;
    background: #fff;
}

  .dropdown-content a:hover {
    background: var(--Background, #F8F9FD) !important;
  }

  .dropbtn {
    color: #181818 !important;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    background: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    position: relative;
}
  /* Change color on hover for the dropdown items */
  .dropdown-content a:hover {
    background-color: #ddd;
  }



  .anim-bar {
    animation: animBar 0.5s ease;
  }

  .main {
    height: 100% !important;
    border-radius: 10px;
    background-color: #F8F9FD ;
  }

  .dataTables_wrapper {
    position: relative;
    clear: both;
    zoom: 1;
    display: flex;
    flex-direction: column;
    height: 100% !important;
    margin: 0 !important;
}

  .side-menu {
    width: 0;
    height: 100%;
    overflow: hidden;
    top: 0px;
    left: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    overscroll-behavior: contain;
    background-color: #F8F9FD ;
    padding-bottom: 20px;
  }
  .side-menu  li a{
  display: flex;
  align-items: center;
  display: block;
}
  .side-menu.resize {
    width: 15%;
    border-right: 2px solid var(--primaryColor);
    background-color: #fff;
    -webkit-clip-path: circle(141.4% at 0 0);
    clip-path: circle(141.4% at 0 0);
    transition: background-color 0.5s ease, border-radius 0.3s ease, clip-path 0.5s cubic-bezier(0.81, 0.51, 0.09, 1.05);
  }

  .side-menu .menu-items {
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    height: 100%;
    z-index: 9 !important;
  }

  .side-menu .menu-items a {
    padding: 10px 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
  .menu-items .svg-icon path:hover {
    fill: blue;
  }

  .item svg {
    width: 18px !important;
    height: 18px !important;
  }

  .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .collapse-input {
    display: none;
  }
  .accordion-header {
    cursor: pointer;
    display: flex;
    justify-content:flex-start;
    align-items: center;
}
.accordion-header label {
  width: 200px;
  position: relative;
  color: #000 !important;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.563px;
  transition: color 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px;
  font-size: 15px !important;
  font-weight: 500 !important;
}
.collapse-content {
  width: 100%;
  margin: auto;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: transparent;
  display: none;
}
  .collapse-content  img{
    width: 18px;
    height: 18px;
  }
  .collapse-input:checked + .accordion-header + .collapse-content {
    display: block;
    max-height: 200px;
    margin-top: 5px;
}
.inptFld[disabled] {
  color: black !important;
}

  .fa-chevron-down, .fa-chevron-up {
    transition: transform 0.3s ease-out;
  }

  .collapse-input:checked + .accordion-header .fa-chevron-down {
    transform: rotate(180deg);
  }

  .collapse-input:checked + .accordion-header .fa-chevron-up {
    transform: rotate(0deg);
  }
  .menu-items a:hover {
    color: var(--main, #000B14);
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 23.563px;
    /* 168.305% */
  }
  .logo {
    display: flex;
    width: 15%;
    height: 47ox;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    z-index: 2;
    background: #fff;
}
  .hide-logo {
    display: none;
  }

  .logo svg {
    width: 60.258px;
    height: 43.442px;
    flex-shrink: 0;
  }

  .active-menu {
    color: var(--main, #000B14);

    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 23.563px;
  }

  .side-menu {
    width: 172px;
    height: 100%;
    padding: 66px 0px;
    z-index: 2 !important;
}
.show{
  display: block;
}

.side-menu a {
  position: relative;
  color: #000 !important;
  font-family: "DM Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 23.563px;
  transition: color 0.2s ease;
  text-decoration: none;
}

  .side-menu a::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 0%;
    height: 0px;
    background-color: var(--secondaryColor);
    border-radius: 35px;
    transition: width 0.2s ease, height 0.3s ease, border-radius 0.3s ease,
      transform 0.2s ease, background-color 0.3s ease-in;

  }
.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
  background: none;
}
.daterangepicker.show-calendar .drp-buttons {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
div.dataTables_wrapper div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 1em 0;
  display: none !important;
}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.daterangepicker.ltr.show-calendar.opensleft {
  width: 512px !important;
}
.content {
  width: 100%;
  height: 100vh;
  padding: 17px 22px 0px;
  background-color: #F8F9FD;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999 !important;
  /* overflow: scroll; */
  overflow-x: hidden;

}
.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #000b14 !important;
  border-color: transparent;
  color: #fff;
}
.table-condensed .daterangepicker td.active, .daterangepicker td.active:hover{
  background-color: #000b14 !important;
}
.daterangepicker td.in-range{
  background-color: #e3e3e3 !important;
}
.content.resize {
  width: calc(100% - 15%) !important;
  height: 100vh !important;
  float: right;
  background-color: #dbdeeb2b !important;
  padding: 17px 20px 2px 20px !important;
  display: flex;
  overflow: auto;
  overflow-x: hidden !important;
}
  .content h1 {
    color: var(--primaryColor);
    padding: 10px;
    padding-bottom: 25px;
    line-height: 1.3;
  }

  .content h2 {
    color: var(--primaryColor);
    padding: 10px 0px;
    line-height: 1.3;
  }

  .content p {
    color: var(--primaryTextColor);
    padding: 15px;
    padding-top: 0;
/*    text-indent: 40px;*/
    line-height: 1.3;
    text-align: justify;
    text-rendering: optimizeLegibility;
  }

  h1,
  h2 {
    transition: color 0.2s ease-in-out;
  }

  h1:hover,
  h2:hover {
    color: var(--secondaryColor);
  }

  /* LEad_mamangement-Add */
  .ractangle {
    display: flex;
    width: 100%;
    height: 16px;
    padding: 7px 18px;
    align-items: center;
    gap: 10px;
    background: var(--Background, #F8F9FD);
    margin-left: 10px;
    margin-top: 41px;
    margin-bottom: 15px;
}
.ractangle h5 {
  color: var(--main, #000B14);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

  .btn {
    display: inline-flex;
    width: 130px;
    height: 37.5px;
    padding: 7.895px 8px;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 3.947px;
    background: var(--main, #000B14);
    color: var(--White, #FFF);
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.211px;
    cursor: pointer;
    border: none;
    outline: none;
    justify-content: center;
}

.view-btn {
  display: inline-flex;
  width: 80px !important;
  height: 37.5px;
  padding: 7.895px 8px;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 3.947px;
  background: var(--main, #000B14);
  color: var(--White, #FFF);
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.211px;
  cursor: pointer;
  border: none;
  outline: none;
  justify-content: center;
}

  .select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}
.select2-selection__arrow b {
  border-color: #000B14 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 42% !important;
  width: 0;
}
  .search-btn-wrap .btn {
    display: inline-flex;
    width: 133px;
    height: 37.5px;
    padding: 7.895px 8px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 3.947px;
    background: var(--main, #000B14);
    color: var(--White, #FFF);
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20.211px;
    cursor: pointer;
    border: none;
    outline: none;
    justify-content: center;
    margin: 0;
}

  .pop-up .dropdown-2 {
    position: relative;
    display: inline-block;
    border-radius: 3.947px;
    background: #ffff;
    width: 20px;
  }
  .form-1 {
    width: 100%;
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    border-radius: 7.5px;
    background-color: #fff !important;
}
.form{
  flex-direction: column !important;
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
  font-size: 15px;
  font-weight: 600;
  color: #000 !important;
  text-align: left;
  padding-left: 25px !important;
}
.name-cate-div{
  width: 357.83px !important;
}
.user-password{
  width: 100px;
}
sup#prospect-asterisk {
  right: -5% !important;
  top: 10px !important;
}


sup#source-asterisk {
  right: -4% !important;
  top: 9px !important;
}
#name-asterisk {
  top: 130px !important;
  right: 52% !important;
}
#role-status-asterisk {
  top: 192px;
  right: 50.5% !important;
}
label#services {
  margin-top: 26px !important;
}
.form-1 .form-1-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  border-radius: 7.5px;
  background-color: #fff !important;

}
.form-1 .form-inner {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-bottom: 0;
  align-items: flex-start;
  gap: 15px;
  /* border-radius: 7.5px; */
  /* border: 0.75px solid var(--Background, #F8F9FD); */
  background-color: #fff !important;
}
/* The modal styling */
.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
  display:flex;
  align-items:center ;
  justify-content: center;
}
.model-open {
  z-index: 99999999999 !important;
  opacity: 1;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin: 30px auto;
  max-width: 97%;
  max-height: 80vh;
}
.custom-model-wrap {
  display: block;
  width: 80%;
  height: 90vh;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto !important;
}
input#start {
  width: 195px;
}
input#end {
  width: 195px;
}
#select2-select-chart-container span.select2-selection__placeholder {
  font-size: 14.5px !important;
  font-weight: 500;
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center !important;
}
.pop-up-content-wrap .ractangle {
  display: flex;
  width: auto;
  padding: 0px 5px 0px 0px !important;
  align-items: center;
  gap: 10px;
  /* background: var(--Background, #F8F9FD); */
  background: #fff !important;
  margin-top: -10px;
  position: relative !important;
  margin: 0px 30px 0px 30px;
  display: flex;
  justify-content: space-between;
}
.category  input.modal-input[type="text"], textarea, select.modal-input, input.modal-input[type="date"], input.modal-input[type="email"], input.modal-input[type="number"] {
  display: flex;
  width: 300.831px;
  height: 37.5px;
  padding: 0px 10px 0px 11.968px;
  align-items: center;
  flex-shrink: 0;
  border-radius: 7.5px;
  border: 0.75px solid var(--light-text, #6D7D93);
  background: var(--Background, #F8F9FD);
  outline: none;
  color: #000;
  font-size: 14px;
  font-weight: 600 !important;
  position: relative;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 10px;
  top: 0px;
  cursor: pointer;
  font-size: 30px;
  color: black;
}
label img{
  height: 30px;
  width: 30px;
}
.kpi-card {
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: inline-block;
  padding: 1em;
  border-radius: 15px;
  font-family: sans-serif;
  width: 240px;
  min-width: 180px;
}

.card-value {
  display: block;
  font-size: 200%;  
  font-weight: bolder;
}
.kpis{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card-text {
  display:block;
  font-size: 70%;
  padding-left: 0.2em;
}
.kpi-rows{
  display: flex;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: justify;
}
.pop-up-content-wrap .btn-wrap{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Clicked Button Styles */

/* Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 999 !important;
}
.popup-content {
  width: 80%;
  position: absolute;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  transform: translate(15%,32%);
}
#popup:hover .popup{
  display: block\;
}
/* End modal style */
  .category input[type="text"]::placeholder {
    color: var(--dark-text, #898989);
    font-family: "DM Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16.35px;
    /* 136.25% */
  }
  .category {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between; */
    gap: 7px;
}
  input {
    display: flex;
    width: 300.831px;
    height: 37.5px;
    padding: 0px 10px 0px 11.968px;
    align-items: center;
    flex-shrink: 0;
    border-radius: 7.5px;
    border: 0.75px solid var(--light-text, #6D7D93) !important;
    background: var(--Background, #F8F9FD);
    outline: none;
    font-size: 15px !important;
    /* display: none !important; */
}
div#btn-wrap{
  margin: 0;
  justify-content: center;
}
select::placeholder{
  color: var(--dark-text, #898989);
}
.category label {
  color: var(--dark-text, #000);
  font-family: "DM Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.35px;
  margin-top: -9px !important;
  width: 137px;
  height: 32px;
}
.category input[type="text"], textarea, select, input[type="date"], input[type="email"], input[type="number"] {
  display: flex;
  width: 357.831px;
  height: 37.5px;
  padding: 0px 10px 0px 11.968px;
  align-items: center;
  flex-shrink: 0;
  border-radius: 7.5px;
  border: 0.75px solid var(--light-text, #6D7D93);
  background: var(--Background, #F8F9FD);
  outline: none;
  font-size: 13px !important;
  font-weight: 500 !important;
  position: relative;
}

input[type="date"]::placeholder{
  font-size: 13px !important;
  font-weight: 400 !important;
  position: relative;
  color: var(--dark-text, #898989) !important;
}
input[type="number"]::placeholder{
  font-size: 12px !important;
  font-weight: 400 !important;
  position: relative;
  color: var(--dark-text, #898989) !important;
}
.rounded-circle {
  height: 70px;
  width: 70px;
  border-radius: 35px;
  margin-left: 285px;
  bottom: -10px !important;
}
.name-cate.name-cate--avatar {
  height: auto !important;
  min-height: 108px;
}
.avatar-upload {
  position: relative;
  width: 100px;
  height: 100px;
}
.avatar-upload__face {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--Background, #F8F9FD);
  border: 0.75px solid var(--light-text, #6D7D93);
  pointer-events: none;
}
.avatar-upload__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-upload__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa5b5;
  font-size: 40px;
  background: #eef1f6;
}
.avatar-upload__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  z-index: 2;
  pointer-events: none;
}
.avatar-upload__input {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  cursor: pointer;
  z-index: 4;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  font-size: 0 !important;
  background: transparent !important;
}
.center {
  width: 100% !important;
  position: relative;
  /* display: flex; */
  align-items: center;
  justify-content: flex-start;
}
.center-2{
  width: 100% !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.name-cate {
  height: 48px;
  display: block;
  align-items: flex-start;
}
.inquiry-name-cate-msg{
  height: auto !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* .cate-prospect span.select2-dropdown.select2-dropdown--below {
  width: 120% !important;
  margin-top: 8px !important;
  margin-left: -13px;
  border: 0.75px solid var(--light-text, #6D7D93) !important;
  border-radius: 7.5px;
} */
.select2-dropdown {
  /* width: 100% !important; */
  height: auto !important;
  margin-left: -1px;
  margin-top: 8px !important;
  background-color: white;
  border: 1px solid #aaa !important;
  border-radius: 7.5px !important;
  box-sizing: border-box;
  display: block !important;
  overflow: hidden !important;
}
span#select2-select-pricing-model-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: absolute !important;
  right: 6px !important;
}
/* td{
  width: 243.844px !important;
  display: flex !important;
  flex-direction: row !important;
} */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  /* padding: 0; */
}
.drop-down .select2-hidden-accessible{
  display: flex !important;
  justify-content:center!important;
}
span.select2-selection__placeholder {
  width: 100% !important;
  display: flex;
  align-items: center;
  font-size: 13px !important;
  font-weight: 400 !important;
  position: relative;
  color: var(--dark-text, #898989) !important;
}
.select2-results {
  display: block;
  overflow-y: scroll !IMPORTANT;
  height: auto ;
  max-height: 200px;
  
}
.select {
  width: 137px;
  height: 37px;
  display: flex;
  align-items: center;
  background-color: #fff;
  font-family: "DM Sans" !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: center;
  /* padding: 0px 5px 0px 7px; */
}

/* span.select2-dropdown.select2-dropdown--below {
  overflow-y: scroll;
  height: 200px !important;
  margin-top: 10px !important;
  padding-top: 40px !important;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 184px !important;
  box-sizing: border-box;
  position: fixed !important;
  overflow-y: hidden !important;
  margin-top: -40px;
} */
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.name-cate .dropdown-2 {
  display: flex;
  width: 357.831px;
  height: 37.5px;
  /* padding: 0px 10px 0px 11.968px; */
  align-items: center;
  flex-shrink: 0;
  border-radius: 7.5px;
  border: 0.75px solid var(--light-text, #6D7D93);
  background: var(--Background, #F8F9FD);
  outline: none;
  font-size: 13px !important;
  font-weight: 500 !important;
  position: relative;
}

#exampleModalLong .select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 6px !important;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: auto !important;
  user-select: none;
  -webkit-user-select: none;
}
sup.asterisk {
  position: absolute;
  top: 10px;
  right: -4%;
  font-size: 15px;
  color: red;
}
#user-update-form{
  flex-direction: row !important;
}
#status-asterisk {
  top: 10px;
  right: -4%;
}
#currency-asterisk {
  top: 10px;
  right: -4%;
}
#multiple-select-asterisk {
  top: 26px;
  right: -14px;
}
#lead-update-form #multiple-select-asterisk {
  top: 401px;
  right: 35px;
}
input[type="file"] {
  border: none !important;
  background: transparent !important;
  margin-top: -38px;
  width: 13.7%;
}
div#category {
  width: 100% !important;
  padding: 10px 20px 1px 20px;
}

.div#category .name-cate {
  width: 80% !important;
  height: 48px;
  display: block;
  align-items: flex-start;
}
  .category input[type="text"]::placeholder {
    font-family: "DM Sans";
    line-height: 16.35px;
    /* 136.25% */
    font-size: 13px !important;
    font-weight: 400 !important;
    position: relative;
    color: var(--dark-text, #898989) !important;
  }
input[type="email"]::placeholder{
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--dark-text, #898989) !important;
}
  /* Radio button design */
  [type="radio"]:checked,
  [type="radio"]:not(:checked) {
    position: absolute;
    display: none;
  }

  [type="radio"]:checked+label, [type="radio"]:not(:checked)+label {
    position: relative;
    cursor: pointer;
    display: inline-block;
/*    margin-left: -38px;*/
    color: var(--dark-text, #000);
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16.35px;
    width: auto !important;
    display: inline-flex !important;
    padding-left: 26px;
}

  [type="radio"]:checked+label:before,
  [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 15px;
    height: 15px;
    border: 1px solid #D1D1D6;
    border-radius: 100%;
    background: #fff;
  }

  [type="radio"]:checked+label:after,
  [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 9.2px;
    height: 9.3px;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: #000B14;
  }

  [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .category p {
    color: var(--primaryTextColor);
    text-indent: 26px;
    line-height: 1.3;
    text-align: justify;
    padding: 0;
    margin: 0;
  }

  .radio {
    width: 372px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 37.5px;
    gap: 20px;
  }

  .radio.radio--gender {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
    gap: 48px;
    height: auto;
    min-height: 37.5px;
  }

  .radio.radio--gender > p {
    text-indent: 0;
    display: inline-flex;
    align-items: center;
    margin: 0;
  }

  .radio.radio--gender [type="radio"]:checked + label,
  .radio.radio--gender [type="radio"]:not(:checked) + label {
    font-weight: 700;
    font-size: 15px;
    color: #000;
  }

  .radio.radio--gender .gender-asterisk {
    color: #e53935;
    font-size: 15px;
    font-weight: 700;
    margin-left: 11px;
    margin-bottom: 19px;
    position: static;
    top: auto;
    right: auto;
  }
  a.active-menu {
    color: var(--White, #FFF) !important;
    background: #000b14 !important;
}
  svg.\.svg {
    position: relative !important;
    left: 12px !important;
    height: 20px !important;
  }
  .show {
    display: block;
  }

  a label {
    width: 278px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 5px;
    background: var(--Primary-Bg, #FAF7F3);
    display: flex;
    align-items: center;
    padding-left: 20px;
  }

  .search {
    position: relative;
    display: inline-block;
  }

  .search input[type="text"] {
    display: flex;
    width: 357.831px;
    height: 37.5px;
    padding: 0px 265.863px 0px 11.968px;
    align-items: center;
    flex-shrink: 0;
    border-radius: 7.5px;
    border-radius: 5px;
    background: var(--Primary-Bg, #FAF7F3);
    outline: none;
  }
#btn-wrap{
  height: auto;
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 50%;
    justify-content:center;
    align-items: center;
    margin-bottom: 20px;
}
#btn-wrap .btn-cancel {
  display: flex;
  width: 200px;
  height: 37.579px;
  padding: 7.895px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 3.947px;
  border: 1px solid var(--light-text, #6D7D93);
  background: var(--main, #000B14);
  cursor: pointer;
  color: var(--White, #FFF);
  font-family: "DM Sans";
 font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.211px;
}

 #btn-wrap .btn-cancel:hover {
  display: flex;
  padding: 7.895px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 3.947px;
  background: var(--Background, #F8F9FD);
  color: var(--light-text, #6D7D93);
  font-family: "DM Sans";
 font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.211px;
  /* 143.421% */
  cursor: pointer;
}

  .show {
    display: block;
  }

 
  /*  */
  .btn-wrap {
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 99.5%;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

  .btn-wrap .btn-cancel {
    display: flex;
    width: 200px;
    height: 37.579px;
    padding: 7.895px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 3.947px;
    border: 1px solid var(--light-text, #6D7D93);
    background: var(--main, #000B14);
    cursor: pointer;
    color: var(--White, #FFF);
    font-family: "DM Sans";
   font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.211px;
  }

   .btn-wrap .btn-cancel:hover {
    display: flex;
    padding: 7.895px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3.947px;
    background: var(--Background, #F8F9FD);
    color: var(--light-text, #6D7D93);
    font-family: "DM Sans";
   font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.211px;
    /* 143.421% */
    cursor: pointer;
  }

  /* Lead Management */
  header {
    width: 100%;
    height: 58px !important;
    padding: 15px 10px 15px 0px;
    display: flex;
    align-items: center;
    background: #fff;
    z-index: 9999999999 !important;
    position: fixed;
    /* border-bottom: 1px solid #e0e3e6; */
    /* overflow-y: hidden !important; */
    margin-top: 0 !important;
}
  header .nav-bar {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.show ~ header .nav-bar{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

  .icon-menu {
    display: flex;
    align-items: center;
    gap: 28.4px;
    padding: 13px 18px;
}
  .nav-bar label {
    color: var(--main, #000B14);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .filter-data {
    display: flex;
    width: 1131px;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 52px;
}
.filter-data select {
  width: 145px !important;
  outline: 0;
  text-align: left;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  padding: 7.895px 10.842px 5px 11px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 7.895px;
  border: none;
  width: 190px;
  border-radius: 3.947px;
  background: #fff !important;
}


  .search-btn-wrap {
    display: flex;
    gap: 20px;

  }

  .pagination {
    margin: 0;
  }

  .pagination li:hover {
    cursor: pointer;
  }

  .header_wrap {
    width: 1150px;
    padding: 7px 9px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 21px 0px 0px;
    border-radius: 5px;
    background: var(--main, #000B14);
    gap: 30px;
  }
  .pagination-container {
    width: 70%;
    float: left;
  }
  .register-form form input[type="email"], input[type="text"], input[type="password"] {
    display: flex;
    width: 357.831px;
    height: 37.5px;
    padding: 0px 10px 0px 11.968px !important;
    align-items: center;
    flex-shrink: 0;
    border-radius: 5.5px;
    border: 0.75px solid var(--light-text, #6D7D93);
    background: var(--Background, #F8F9FD);
    outline: none;
    font-size: 13px !important;
    font-style: normal;
    font-weight: 400 !important;
}
form#inquiry-update-form {
  height:100% !important;
}
div.btn-edit-wrap {
  height: 196px !important;
}
.name-cate.name-cate-msg {
  height: auto !important;
  width: 87%;
}
.name-cate.name-cate-msg-form {
  height: 110px !important;
}

textarea#message{
  height: 100px !important;
  padding: 8px 10px 8px 11.968px;
} 
label#message {
  height: auto !important;
  width: 100%;
  min-height: 47px;
}
.name-cate.inquiry-name-cate {
  width: 87%;
}
label.inquiry-label{
  width: 100% !important;
}
  .page span {
    display: inline-flex;
    height: 19px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 2px;
    background: #FFF;
   font-size: 14px;
    font-weight: 600;
  }
  .form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
}
label {
  display: inline-block;
  margin-bottom: 0 !important;
}
  /* select#maxRows {
    display: flex;
    width: 48px;
    height: 26px;
    padding: 4px 1px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    background: #FFF;
    flex-shrink: 0;
    margin: 0;
  } */

  td.action {
    display: flex;
    justify-content: flex-end;
    align-items: center !important;
    gap: 2.842px;
  }
  
li.paginate_button.page-item.active {
  background: #c5c5c5 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, transparent));
  background: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
  background: -moz-linear-gradient(top, transparent 0%, transparent 100%);
  background: -ms-linear-gradient(top, transparent 0%, transparent 100%);
  background: -o-linear-gradient(top, transparent 0%, transparent 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 100%);
  box-shadow: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid transparent !important;
  background-color: #585858;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, transparent)) !important;
  background: -webkit-linear-gradient(top, transparent 0%, transparent 100%) !important;
  background: -moz-linear-gradient(top, transparent 0%, transparent 100%) !important;
  background: -o-linear-gradient(top, transparent 0%, transparent 100%) !important;
  background: linear-gradient(to bottom, transparent 0%, transparent 100%) !important;
}
table.dataTable thead th, table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #111;
  text-align: left !important;
}
.filter-data {
  width: 100%;
  height: 43px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 0 !important;
}
.filter-data .filter-data-inner {
  width: 87%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid #fff  !important;
  border-width: 0 2px 2px 0 !important;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}
input#date {
  height: 37.5px !important;
  font-family: "DM Sans";
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  width: 200px;
  padding: 10px;
  background: #fff !important;
  color: var(--dark-text, #898989);
  border: none !important;
}
[type=search]::placeholder {
  outline-offset: -2px;
  outline: 0;
  text-align: left;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  padding: 7.895px 10.842px 5px 11px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 7.895px;
  border: none;
  width: 190px;
  border-radius: 3.947px;
  background: #fff !important;
  color: var(--dark-text, #898989);
}
label {
  font-family: "DM Sans";
  font-size: 15px;
  font-weight: 600 !important;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
}
ul.pagination {
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: "DM Sans";
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  color: #fff !important;
}
a.page-link {
  color: #fff;
}
.table {
    width: 100% !important;
}
table.dataTable thead th, table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #111;
  height: 35px ;
}
div.dataTables_wrapper div.dataTables_filter input {
  width: 140px !important;
  height: 37.5px;
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
  position: relative;
  transform: translate(0%, -1257%) !important;
}
input::placeholder{
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--dark-text, #898989);
}
.form-control-sm {
  width: 225px;
  height: 39px;
  padding: 0.25rem 0.5rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  border: none !important;
  outline: none !important;
  background: #d5d5d5 !important;
}
.dataTables_wrapper .dataTables_length .form-control-sm {
  width: 56px !important;
  height: 30px;
  padding: 0.25rem 0.3rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  border: none !important;
  outline: none !important;
}

table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\2191";
  display: none !important;
}
table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
  right: 0.5em;
  content: "\2193";
  display: none !important;
}
.dataTables_wrapper {
  position: relative;
  clear: both;
  zoom: 1;
  margin-top: -45px;
}


input[name="example_length"]{
  width: auto; /* or adjust as needed */

}

.search-btn-wrap {
    width: 170px;
    padding: 0px 15px 0px 0px;
    display: flex;
    position: relative;
}

.fa-angle-left:before {
  content: "\f104";
  color: #fff !important;
}
/* .search-btn-wrap a {
    width: 120px;
    height: 32px;
    background-color: #000B14;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.search-btn-wrap a {
  width: auto; /* or adjust as needed */
  height: 32px;
  background-color: #000B14;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


.search-btn-wrap a:hover {
    color: #fff;
}

.col-md-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  background: #000B14;
  height: 45px;
}
.col-md-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  background: #000B14;
  max-width: 41.666667%;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 25px;
}
.dataTables_wrapper {
  margin-top: 0 !important;
  position: relative;
  clear: both;
  zoom: 1;
  height: 100% !important;
}

.col-md-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  z-index: 9999;
  padding-left: 30px;
  transform: none !important;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: -1px 10px !important;
  white-space: nowrap;
  justify-content: flex-end;
}
.dataTables_scrollHeadInner {
    box-sizing: content-box;
    width: 1131.25px;
    padding-right: 11px;
    width: 100% !important;
    color: #fff !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block !important;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__rendered ~ .select2-container{
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: space-between !important;
}

span#select2-select-role-container {
  display: flex !important;
  justify-content: flex-end;
}
  option {
    background-color: #fff;

  }

  .select:hover::after {
    color: #23b499;
  }

  /*  */
  .footer-inner {
    width: 1120px;
    padding: 5px 30px;
    position: absolute;
    bottom: -50%;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
  }

  footer {
    width: 1120px;
    position: absolute;
    bottom: -62%;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  footer p {
    color: var(--light-text, #6D7D93);
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.9px;
    /* 185% */
  }

  footer p span {
    color: var(--main, #000B14);
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.9px;
  }

  
  .header {
    display: none;
    background-color: #3498db;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .category img {
    position: absolute;
    bottom: 72.5%;
  }

  .prevBtn-2,
  .nextBtn-2 {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
  }

  .button-wrap label {
    color: var(--main, #000B14);
    font-family: "DM Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .frm-bottom {
    padding-top: 171px;
  }

  .frm-bottom label {
    color: var(--main, #000B14);
    font-family: "DM Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  td.td-in {
    width: 65px !important;
    display: flex;
    justify-content: flex-start;
  }

  td.td-g {
    width: 136px;
    display: flex;
  }

  td.td-w {
    width: 112px !important;
    display: flex;
    justify-content: center;
  }


  .category img {
    position: absolute;
    bottom: 72.5%;
  }

  .button-wrap label {
    color: var(--main, #000B14);
    font-family: "DM Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .frm-bottom {
    padding-top: 171px;
  }

  .frm-bottom label {
    color: var(--main, #000B14);
    font-family: "DM Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  td.td-in {
    width: 65px !important;
    display: flex;
    justify-content: flex-start;
  }

  td.td-g {
    width: 136px;
    display: flex;
  }

  td.td-w {
    width: 112px !important;
    display: flex;
    justify-content: center;
  }

  .ftr {
    background-color: #fff;
  }

  .table-container {
    width: 100%;
    overflow-x: visible;
  }

  .rc-anchor-normal{
    width: 353px !important;
  }
  

  /* Login Form */

  .left {
    width: 55%;
    background-color: #f2f2f2;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

  .left svg {
    width: 182.258px;
    height: 131.395px;
    flex-shrink: 0;
  }

  .email img {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 36px;
    left: 10px;
}

  .right {
    width: 45%;
    background-color: #fff;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 58px;
}

i#img-5 {
    position: absolute;
}
.select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: -3px;
  right: 15px;
  width: 20px;
}
.select2-selection__arrow b{
    border-color: #000B14 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
  }
.toggle-password {
  float: right;
  cursor: pointer;
  right: 10px;
  margin-top: -27px;
  position: relative!important;
}
.fa-eye:before {
  content: "\f06e" !important;
}
.fa-eye-slash::before{
  content: "\f070" !important;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
  display: block ;
}
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  display: BLOCK !important;
}
.password img.img-1 {
  position: absolute;
  z-index: 9;
  top: 120px;
  left: 12px;
}
  .cpassword  #img-2 {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 503px;
    right: 2px;
}
  .toggle-cpassword {
    float: right;
    cursor: pointer;
    right: 10px;
    margin-top: -27px;
    position: absolute !important;
}
.toggle-cpassword ~ .fa, .fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: block !important;
}
  .cpassword img.img-1 {
    position: absolute;
    z-index: 9;
    top: 126px;
    left: 12px;
  }

  .login-container {
    width: 100%;
    height: 100%;
  }

  .login-main {
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 15px;
  }
  .login-name-cate {
    height: 65px !important;
}

  .right .login-form {
    width: 355px;
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .login-form h6 {
    color: var(--main, #000B14);
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    text-align: center;
  }

  .login-form form {
    width: 100%;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .login-form form label {
    color: var(--dark-text, #000);
    font-family: "DM Sans";
   font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16.35px;
    /* 136.25% */
  }
  .login-form form input[type="email"] {
    display: flex;
    width: 357px;
    height: 37px;
    padding: 12px 0px 11px 35px;
    align-items: center;
    gap: 10px;
    border-radius: 7.5px;
    border: 0.75px solid rgba(109, 125, 147, 0.50);
    background: var(--White, #FFF);
    position: relative !important;
    outline: none;
    color: var(--dark-text, #000);
    font-family: "DM Sans";
    font-size: 15px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 16.35px;
}


  .login-form form input[type="text"]::placeholder {
    color: var(--dark-text, #000);
    font-family: "DM Sans";
   font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16.35px;
    /* 136.25% */
  }

  .login-form form .email {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .login-form form .password {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .login-form form .email svg {
    position: absolute;
    left: 11px;
    pointer-events: none;
    top: 40px;
  }
  .login-btn {
    cursor: pointer;
    display: flex;
    width: 357.831px;
    height: 40px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 7.5px;
    background: var(--main, #000B14);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
    border: none;
    outline: none;
    color: #FFF;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16.35px;
    margin-top: 35px;
}

  .edit-del {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 7px;
    padding-left: 8px;
}
input[type="password"]::placeholder{
  color: var(--dark-text, #898989) !important;
  font-family: "DM Sans";
 font-size: 13px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 16.35px;
}
input.login-input[type="password"] {
  display: flex;
  width: 357.831px;
  height: 37.5px;
  padding: 0px 10px 0px 35px !important;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5.5px;
  border: 0.75px solid var(--light-text, #6D7D93);
  background: var(--Background, #F8F9FD);
  outline: none;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600 !important;
}
input.login-input[type="text"] {
  display: flex;
  width: 357.831px;
  height: 37.5px;
  padding: 0px 10px 0px 35px !important;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5.5px;
  border: 0.75px solid var(--light-text, #6D7D93);
  background: var(--Background, #F8F9FD);
  outline: none;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600 !important;
}
a img {
  width: 16px;
}
a.logout-btn{
  padding: 7px 15px;
  background-color: #000B14;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}
.logout-modal{
  width: 50%;
  height: 50% !important;
}
.logout-close-btn{
  top: -13px;
}
.form-1 .logout-inner {
  width: 100% !important;
  gap: 30px;
}
.form-1 .logout-inner h2{
  font-weight: 500;
  font-size: 20px;
}
textarea {
  resize: none;
  height: 143px;
  min-height: 143px;
  max-height: 143px;
  width: 908px
}
.logout-buttons {
  margin: auto;
  display: flex;
  gap: 10px;
}
input[type="text"]::placeholder {
  color: var(--dark-text, #898989) !important;
  font-family: "DM Sans";
 font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.35px;
  /* 136.25% */
}

  .row {
    display: flex;
}


  .name-cate .error {
    position: relative;
    font-size: 12px !important;
    color: red;
}
.feature-name {
  margin-left: 30px;
  font-weight: 600;
}
th.sorting_disabled{
  width: 100px !important;
}

.kpi-row {
  display: flex;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}

.dashboard-page {
  padding-top: 28px !important;
  overflow-y: auto;
}

.dashboard-page .dashboard-kpis {
  width: 100%;
  margin-top: 20px;
  padding: 8px 12px 40px;
  overflow: visible;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  padding: 12px 8px 24px;
}

.dashboard-page .kpi-grid .kpi-card {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 135px;
  padding: 1.5em 1.75em;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: visible;
}

.dashboard-page .kpi-grid .card-value {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 8px;
}

.dashboard-page .kpi-grid .card-text {
  font-size: 0.95rem;
  line-height: 1.3;
  opacity: 0.95;
}

@media (min-width: 1400px) {
  .kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.inquiry-content p {
  padding: 0 !important;
}
.inquiries {
  background:rgb(207, 91, 120);
  color: #fff;
}
.users {
  background:rgb(59, 173, 151);
  color: #fff;
}
.project-inquiries {
  background: rgb(76, 120, 205);
  color: #fff;
}
.career-inquiries {
  background: rgb(143, 96, 191);
  color: #fff;
}
.blog-categories {
  background: rgb(230, 126, 34);
  color: #fff;
}
.blogs {
  background: rgb(52, 73, 94);
  color: #fff;
}
.open-positions {
  background: rgb(22, 160, 133);
  color: #fff;
}

/* end style */
  /* second calander */
  @media (max-width:992px) {
    .notification {
      display: flex;
      gap: 18px;
      cursor: pointer;
      display: none !important;
    }

    header .nav-bar {
      width: 45% !important;
      display: flex;
      justify-content: flex-end !important;
      gap: 136px;
    }

    .side-menu.resize {
      width: 200px;
      left: 0;
      border-right: 2px solid var(--primaryColor);
      background-color: #ffff !important;
      display: block;

    }

    .filter-data {
      display: flex;
      width: 50%;
      align-items: center;
      justify-content: flex-start;
      gap: 23px;
      flex-direction: column;
    }

    .ractangle {
      width: 568px !important;
      display: flex;
      width: auto;
      padding: 5px 20px;
      align-items: center;
      gap: 10px;
      background: var(--Background, #F8F9FD);
      margin-top: -10px;
    }

    .side-menu {
      position: fixed;
      left: -250px;
      width: 0;
      z-index: 8;
      display: none;
    }

    .content.resize header .nav-bar {
      width: calc(87% - 118px);
      float: right;
    }

    .content.resize .filter-data .dropdown {
      float: right;
    }

    .main {
      width: auto;
      height: calc(108% - 0px);
    }

    .login-main {
      width: 100%;
      height: 100%;
      display: flex;
      border-radius: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .form-1 {

      display: flex;
      padding: 10px;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      border-radius: 7.5px;
      background: var(--White, #FFF);
    }
    form#lead-form {
      padding-bottom: 26px !important;
  }
    .form-1 .form-inner {
      width: 49% !important;
      height: 350px;
      display: flex;
      flex-direction: column;
      padding: 20px;
      align-items: center;
      gap: 15px;
      border-radius: 7.5px;
      border: 0.75px solid var(--Background, #F8F9FD);
    }
  }

  @media (max-width: 768px) {
    .nav-bar label {
      color: var(--main, #000B14);
      font-family: "DM Sans";
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      display: none;
    }

    header .nav-bar {
      width: 50% !important;
      flex-shrink: 0;
      display: flex;
      justify-content: flex-start;
      gap: 136px;
    }

    .logo {
      display: flex;
      width: 137px;
      height: 59px;
      justify-content: center;
      align-items: center;
      margin-top: 0px;
      z-index: 90;
    }

    .logo svg {
      width: 48.258px;
      height: 43.442px;
      flex-shrink: 0;
    }

    .filter-data {
      display: flex;
      width: 1152px;
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: row;
      gap: 5px !important;
    }

    .side-menu.resize {
      width: 108px;
      left: 0;
      clip-path: circle(141.4% at 0 0);
      z-index: 2;
    }

    .left {
      width: 793px;
      background-color: #f2f2f2;
      border: 1px solid purple;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ractangle {
      margin-top: 45px !important;
    }

    .side-menu {
      position: fixed;
      left: -250px;
      width: 0;
      z-index: 99;
    }

    .content.resize {
      width: 100%;
      float: none;
    }

    .login-main {
      width: 100%;
      height: 100%;
      display: flex;
      border-radius: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .form-1 {
      flex-wrap: wrap;
    }

    .category input[type="text"] {
      display: flex;
      width: 241.831px;
      height: 37.5px;
      padding: 0px 10px 0px 11.968px;
      align-items: center;
      flex-shrink: 0;
      border-radius: 7.5px;
      border: 0.75px solid var(--light-text, #6D7D93);
      background: var(--Background, #F8F9FD);
      outline: none;
    }

    .custom-select-trigger {
      position: relative;
      display: block;
      color: var(--Primary-Text, #473130);
      font-family: "DM Sans";
     font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      cursor: pointer;
      display: flex;
      width: 241.831px;
      height: 37.5px;
      padding: 0px 137.863px 0px 11.968px;
      align-items: center;
      flex-shrink: 0;
      border-radius: 7.5px;
      border: 0.75px solid var(--light-text, #6D7D93) !important;
      background: var(--Background, #F8F9FD) !important;
    }

    button.searchbtn {
      display: inline-flex;
      padding: 17px 18.035px 13px 15.957px;
      justify-content: center;
      align-items: center;
      gap: 112.007px;
      border-radius: 7.5px;
      border: 0.75px solid var(--light-text, #6D7D93);
      background: var(--Background, #F8F9FD);
      color: #000;
      width: 241.831px;
      height: 37.5px;
      margin: 0;
    }

    .category {
      display: flex;
      flex-direction: column !important;
      justify-content: space-between;
      gap: 6px !important;
      align-items: flex-start;
    }

    .form-1 .form-inner {
      width: 25%;
      height: 350px;
      display: flex;
      flex-direction: column;
      padding: 20px;
      align-items: flex-start;
      gap: 15px;
      border-radius: 7.5px;
      border: 0.75px solid var(--Background, #F8F9FD);
    }

    .logo {
      z-index: 90;
    }

    .header_wrap {
      width: 52%;
      padding: 7px 9px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin: 21px 0px 0px;
      border-radius: 5px;
      background: var(--main, #000B14);
      gap: 30px;
    }

    .btn-wrap {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 590px;
      justify-content: center;
      margin-top: 100px;
      align-items: flex-start;
      margin-left: 80px;
    }

    .ractangle {
      margin-top: 85px !important;
    }

  }

  @media(max-width:1024px) {
    header .nav-bar {
      width: 934px;
      flex-shrink: 0;
      padding: 0px 26px;
    }

    .content.resize {
      width: calc(95% - 84px);
      float: right;
      z-index: 3;
    }

    .filter-data {
      display: flex;
      width: 1152px;
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: row;
      gap: 258px;
    }

    header {
      width: 1355px;
      height: 57px;
      padding: 15px 10px 15px 0px;
      display: flex;
      align-items: center;
      /* border: 1px solid black !important; */
      z-index: 99 !important;
    }

    header .nav-bar {
      width: 934px;
      flex-shrink: 0;
      padding: 0px 26px;
      justify-content: flex-start;
      gap: 348px;
    }

    .content.resize {
      width: calc(95% - 90px) !important;
      float: right;
      z-index: 3;
    }

    .logo {
      display: flex;
      width: 109px;
      height: 59px;
      justify-content: center;
      align-items: center;
      margin-top: 0px;
      z-index: 90;
    }

    .form-1 {
      width: 1160px;
      display: flex;
      padding: 10px;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      border-radius: 7.5px;
      background: var(--White, #FFF);
    }
  }

  @media(max-width:540px) {
    header .nav-bar {
      width: 21.5% !important;
      flex-shrink: 0;
      display: flex;
      justify-content: flex-start;
      gap: 0px;
    }
  }