@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 6px;
  height: 6px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: #FF00AA;
}

body {
  font-family: "Inter", sans-serif !important;
  /* background: #f6f9ff; */
  color: #444444;
}

a {
  color: #ff00aa;
  text-decoration: none;
}

a:hover {
  color: #FF00AA;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 80px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width:1024px) {
  #main {
    padding: 20px;
  }
}

[class^="ri-"],
[class*=" ri-"] {
  font-weight: lighter;
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

h4.page-title {
  color: #FF00AA;
  font-size: 20px;
  font-weight: 600;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  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;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.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;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item: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;
  }
}

@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: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2E2F31;
  margin-bottom: 0px;
  /* font-family: "Poppins", sans-serif; */
}

.text-success {

  color: #55CA42 !important;
}

.text-pink {
  color: #FF00AA;
}

.text-gray {
  color: #999999;
}

.font-16 {
  font-size: 16px;
  font-weight: 600;
}

.font-14 {
  font-size: 14px;
  font-weight: 600;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.form-card {
  box-shadow: none;
  padding: 0;
}

.card.form-card .card-header {
  border-bottom: 1px solid #A6A6A6;
  margin-bottom: 30px;
}

.form-card .card-title {
  color: #616161;
}

.form-control, .form-select {
  border-radius: 20px !important;
  font-size: 14px;
  border-color: #CFCFCF !important;
  padding: 4px 6px;
  text-indent: 3px;
}
input.form-control,.form-select {
  height: 39px;
 
}
form.search-form button {
  border-color: #ff00aa !important;
  border-radius: 0px 20px 19px 0px !important;
  height: 39px;
  background: #ff00aa;
  border: 1px solid;
}
form.search-form button i {
  color: #fff;
  font-size: 18px;
  padding: 10px;
}
form.search-form input {
  border-color: #ff00aa !important;
  border-radius: 20px 0px 0 20px !important;
}
.basic-multi-select div {
  border-radius: 20px  !important;
  /* border: none !important; */
  box-shadow: none !important;
  font-size: 14px;
  line-height: 20px;
  border-color: #CFCFCF;
  color: #212529;
}
.basic-multi-select {
  border-radius: 20px !important;
  /* border: 1px solid #000; */
  font-size: 14pX;
}
.tempaltes {
  padding-top: 25px;
}

.tempaltes .form-control,
.tempaltes .form-select {
  border-color: #D9D9D9 !important;
}

.tempaltes label.col-form-label {
  color: #737373 !important;
}

label.col-form-label {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  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: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  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: 3px solid #D9D9D9;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
  font-weight: 600;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #FF00AA;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #FF00AA;
  border-bottom: 4px solid #FF00AA;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width:1025px) {
  .logo {
    width: 260px;
  }
}

.logo img {
  max-height: 35px;
  margin-right: 50px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  /* box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1); */
  background-color: #F7F9FB;
  padding-left: 20px;
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width:1024px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .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: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 10px;
  position: relative;
}

a.nav-link.nav-icon .badge {
  background: #FF00AA;
  border-radius: 20px;
}

.header-nav .nav-profile {
  color: #fff;
  background: #FF00AA;
  border-radius: 50px;
  height: 36px;
  width: 36px;
}

.header-nav .nav-profile i {
  font-size: 25px;
  text-align: center;
  display: block;
  margin: 0px auto;
}


.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-select select {
  background: transparent;
  border: 0px;
  border-bottom: 2px solid #FF00AA !important;
  border-radius: 0px !important;
  outline: 0;
  box-shadow: 0;
  background-image: url("/assets/img/select-arrow.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
  width: 260px;
  font-weight: 600;
  color: #2E2F31;
}

/* .header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
} */

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 15px !important;
  right: 12px;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 250px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  /* box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1); */
  background-color: #fff;
  border-right: 2px solid #ECECEC;
}

.toggle-sidebar-btn {
  text-align: right;
  position: relative;
  right: -3px;
  top: -10px;
}

.toggle-sidebar-btn img ,.toggle-header-btn img{
  width: 35px;
}
.logo-sidebar
{
  display: none;
}
@media (min-width:1025px) {
  .header .toggle-header-btn {
    display: none;
  }
}

@media (max-width:1024px) {
  .header-select select {
    width: auto;
}
  .sidebar {
    left: -300px;
  }
    .sidebar .toggle-sidebar-btn {
    display: none;
  }

.toggle-sidebar .sidebar {
    width:250px;
}
 .logo-header
{
  display: none;
}
.toggle-sidebar .logo-sidebar
{
  display: block;
}
}


.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width:1025px) {

  #main,
  #footer {
    margin-left: 250px;
  }
}

@media (max-width:1024px) {
  .toggle-sidebar .sidebar {
    left: 0;
    top: 0px;
    padding-top: 50px;
}
  .toggle-sidebar .header {
    width: calc(100% - 250px);
    left: 250px;
}

  body.toggle-sidebar aside span {
    display: block !important;
}
}

@media (min-width:1025px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 74px;
  }

  .toggle-sidebar .sidebar {
    width: 74px;
  }

  .toggle-sidebar .nav-content .sidebar-nav span {
    display: none;
  }
}



.toggle-sidebar aside span {
  display: none !important;
}

.toggle-sidebar aside .bi-chevron-down {
  display: none !important;
}

.toggle-sidebar aside .bi-circle {
  display: none !important;
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  top: -10px;
  position: relative;
}
.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #616161;
  transition: 0.3;
  /* background: #f6f9ff; */
  padding: 10px 30px;

}

.sidebar-nav .nav-link i {
  font-size: 18px;
  margin-right: 10px;
  color: #616161;
}

.sidebar-nav .nav-link.collapsed {
  /* color: #012970;
  background: #fff; */
}

.sidebar-nav .nav-link.active,
.sidebar-nav .nav-link:hover {
  background-color: #FF00AA;
  color: #fff;
}

.sidebar-nav .nav-link.active i,
.sidebar-nav .nav-link:hover i {

  color: #fff;
}

/* .sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
} */


.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

/* .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
} */

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {

  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  background-color: #FF00AA;
  color: #fff;
}

.sidebar-nav .nav-content a.active i {
  color: #fff;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.filter-select .form-select {
  border-radius: 20px !important;
  font-size: 16px;
  color: #FF00AA;
  font-weight: 500;
  border-color: #616161;
  background-image: url(/assets/img/select-arrow.png);
  background-repeat: no-repeat;
  /* background-position-x: right; */
  background-position-y: center;
  background-size: auto;
  padding: 4px 18px;
}

.filter-select {
  width: 300px;
}

.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
  box-shadow: 0px 0px 22.4px 2px #0000000D;
}

.info-card .card-title {
  padding: 20px 0 40px 0;
}

.dashboard .info-card .card-body {
  padding-bottom: 5px;

}

span.filter-text {
  color: #999999;
  font-size: 14px;
  font-weight: 600;
}

.dashboard .info-card .small {
  color: #5E6165;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.dashboard .info-card h6 {
  font-size: 40px;
  color: #FF00AA;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.datatable-top,
.datatable-bottom {
  padding: 0 !important;
}

.datatable-top>nav:first-child,
.datatable-top>div:first-child,
.datatable-bottom>nav:first-child,
.datatable-bottom>div:first-child {
  float: right !important;
}

.datatable-top>nav:last-child,
.datatable-top>div:not(first-child),
.datatable-bottom>nav:last-child,
.datatable-bottom>div:last-child {
  float: left !important;
}

.datatable-search {
  position: relative;
}

.datatable-dropdown label {
  display: flex;
  flex-direction: row-reverse;
  text-transform: capitalize;
  align-items: center;
}

.datatable-selector {
  margin-left: 8px;
}

.datatable-container {
  box-shadow: 0px 0px 22.4px 2px #0000000D;

  margin-top: 20px;
}

.datatable-table>tbody>tr>td,
.datatable-table>tfoot>tr>td,
.datatable-table>thead>tr>td,
.rdt_TableCell {
  color: #000 !important;
  font-size: 14px;
  padding: 6px 12px !important;
  border-bottom: 3px solid #ECECEC;
  vertical-align: middle;
}
.rdt_TableHeadRow, .rdt_TableRow
{
  border-bottom: none !important;
}
.datatable-table>thead>tr>th, .rdt_TableHead .rdt_TableHeadRow .rdt_TableCol {
  font-weight: 600;
  color: #000;
  padding: 10px 11px !important;
  border-bottom: 4px solid #ECECEC;
  line-height: 18px;
  vertical-align: top;
  font-size: 14px;
  background: #ffff;
  justify-content: start
}
button.datatable-sorter {
  padding: 0;
}

button.btn.fs-4.py-0 {
  height: 32px;
  line-height: 24px;
}

button.datatable-pagination-list-item-link {
  border: 1px solid #616161;
  margin-top: 20px;
  padding: 3px 10px;
}

.datatable-pagination .datatable-active a,
.datatable-pagination .datatable-active a:focus,
.datatable-pagination .datatable-active a:hover,
.datatable-pagination .datatable-active button,
.datatable-pagination .datatable-active button:focus,
.datatable-pagination .datatable-active button:hover {
  background-color: #fff;
  cursor: default;
  border: 1px solid #FF00AA;
  color: #FF00AA;
}
.data-table-extensions
{
  display: block !important;
  padding: 0 !important;
}
.datatable-wrapper.no-footer .datatable-container {
  border-bottom: none !important;
}
.data-table-extensions > .data-table-extensions-filter
{
  border: 1px solid #616161;
  border-radius: 20px;
  height: 40px;
}
.data-table-extensions > .data-table-extensions-filter > .icon {
  float: right !important;
  display: block;
  width: 27px !important;
  height: 33px !important;
  background: url('../img/search.png') no-repeat 0px center !important;
  background-size: 20px !important;
  background-position: left center;
}
.data-table-extensions > .data-table-extensions-filter > .filter-text {
  border: 0;
  border-bottom:none !important;
  outline: none;
  padding: 0px;
  line-height: 34px;
  text-indent: 9px;
  background-color: transparent;
}
.datatable-search input[type="search"], .datatable-search .search{
  padding-right: 35px;
  background: url('../img/search.png') no-repeat 10px center;
  background-size: 20px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #616161;
  border-radius: 20px;

  height: 40px;
  background-position-x: 96%;
}

.datatable-search input[type="search"]::placeholder {
  color: #D9D9D9;
  font-size: 16px;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.btn.btn-pink {
  background: #FF00AA;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
 
}
.btn {
  border-radius: 20px;
}
.btn.btn-pink:hover {
  background: #fff;
  border: 1px solid #FF00AA;
  color: #FF00AA;

}

.btn.btn-sm-pink:hover {
  background: #FF00AA;
  border: 1px solid #FF00AA;
  color: #FFf;
}

.btn.btn-sm-pink {
  border: 1px solid #ff00aa;
  color: #ff00aa;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 9px;
}

.btn.rounded {
  border-radius: 50px !important;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 25px;
  height: 38px;
  line-height: 22px;
}
.ql-editor {

  min-height: 200px;
  resize: vertical;

}

/* Fix AdminSidebar template path: update quote template path for correct navigation */

body.modal-open {
  padding-right: 0px !important;
}


.modal-header {
  padding: 10px;
}

.modal-title.h4 {
  color: #ff00aa;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.modal button.btn-close {
  font-size: 40px;
}

.modal-title.h4 i {
  font-size: 25px;
}

.modal-content {
  border: 0 !important;
  border-radius: 10px !important;

}

.modal-content label.form-check-label {
  font-size: 14px;
}

.modal-content .form-check .form-check-input {
  box-shadow: none !important;
  float: left;
  margin-right: 0.3em;
}

.modal-content .form-check-input:checked {
  background-color: #ff00aa;
  border-color: #ff00aa;
}

.modal .form-check-input[type=checkbox] {
  border-radius: 0px !important;
  border-color: #616161;
}


.modal-content .form-check {
  margin-right: 15px;
}
.text-semidark {
  color: #616161;
}

input[type=date]:required:invalid::-webkit-datetime-edit {
  color: transparent;
}

input[type=date]:focus::-webkit-datetime-edit {
  color: black !important;
}

input.form-control.date-feild {
  border-color: #616161 !important;
  border: none;
  font-size: 14px;
  border-bottom: 1px solid #616161;
}

button.btn.btn-outline-secondary {
  font-size: 14px;
}

.form-switch .form-check-input:checked {
  background-color: #E0FBDB;
  border-color: #000;
}

.form-switch .form-check-input {
  background-color: #FBE1DB;
  border-color: #000;
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("../img/green-circle.png") !important;
  background-size: contain;
}

.form-switch .form-check-input {
  width: 2.8em;
  height: 1.3em;
  background-image: url("../img/red-circle.png") !important;
  background-size: contain;
}

span.currency {
  border: 1px solid;
  border-right: 0;
  line-height: 31px;
  padding: 0px 5px;
}

.border-right-0 {
  border-right: 0px !important;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none !important;
}

select.form-select.w-25.border-right-0 {
  background-position: right 0 center;
}

.error-text {

  color: #ff00aa !important;
  font-size: 12px;
  padding: 0px 3px;
  margin-top: 1px;
  margin-bottom: 18px;
  line-height: 14px;


}

.form-check .form-check-input[type=checkbox] {
  border-radius: 2px;
  border: 1px solid;
  box-shadow: none !important;
  width: 20px;
  height: 20px;
}

.form-check .form-check-input:checked {
  background-color: #FF00AA;
  border-color: #FF00AA;
}

button.tag-btn {
  background: #fff;
  border: 1px solid #616161 !important;
  color: #616161;
  font-size: 12px;
  border-radius: 3px;
  margin: 5px;
  padding: 4px 10px;
  /* display: block; */
  white-space: break-spaces;
  word-break: break-all;
}

button.tag-btn i {
  padding-right: 5px;
  font-size: 14px;
  color: #616161;
}

.btn-outline-pink {
  border: 1px solid #FF00AA;
  color: #FF00AA;
}

.btn-outline-pink:hover {
  border: 1px solid #FF00AA;
  background-color: #FF00AA;
  color: #fff;
}

span.input-group-text {
  border: 1px solid #CFCFCF;
  border-radius: 0;
  background: #fff;
  padding: 4px 6px;
}

.custom-table thead th {
  background-color: #efefef;
  font-size: 14px;
  font-weight: 600;

}

.custom-table tbody td {
  font-size: 14px;
  vertical-align: middle;
}

/* .form-control:disabled {
  border: none;
} */

.datatable-pagination li.datatable-hidden {
  visibility: visible !important;
}


.css-1qltlow-MuiTabs-indicator {
  background-color: #FF00AA !important;
  height: 5px !important;
}



.filter-select .formselect {
  color:#000 ;
  width: 230px !important;
  border: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23343a40%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: auto 15px;
}


.multiselect{
  border: none !important;
}

.css-1u9des2-indicatorSeparator{
  display: none !important;
}

.expanded-content {
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #ddd;
  margin-top: 10px;
}
.table-select
{
  border: none !important;
}
/* .table-select div
{
  border-radius: 0px !important;

} */
.expandable-table .rdt_TableRow button[data-testid] {
 display: none;
}
 
.expandable-table .rdt_TableHead .rdt_TableHeadRow .rdt_TableCol {
  justify-content: start;
}
.expandable-table .rdt_Table
{
  margin-left: -30px;
}
.expandable-table .rdt_Table .form-control, .expandable-table .form-select, .expandable-table  .table-select div
{
  font-size: 14px;
  color: #000 !important;
}
.rdt_ExpanderRow 
{
  background-color: #F0EDED !important;
}
.expandableContent {
  background-color: #F0EDED;
  display: flex;
  justify-content: end;
}
.expandableContent-div {
  width: 30%;

  padding-left: 25px;
  padding-top: 20px;
  background-color: #fff;
  justify-content: space-between;
  padding-bottom: 20px;
}
.table-custom thead {
  --bs-table-bg: #efefef !important;
}

.table-custom thead th{
font-weight: 400;
    color: #616161;
    padding: 15px 15px !important;
    border-bottom: 4px solid #ECECEC;
    line-height: 18px;
    vertical-align: top;
    font-size: 14px;
}
.search-form i {
  border: 0;
  padding: 0;
  /* margin-left: -30px; */
  background: none;
  color: #333333;
  font-size: 20px;
}
div:where(.swal2-container) div:where(.swal2-popup) {
 
  border-radius: 0 !important;
  
}
div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
  background: rgb(0 0 0 / 56%) !important;
}
div:where(.swal2-container) .swal2-html-container {
  
  padding: 0.75em 1.6em .3em !important;
  font-size: 1em !important;
  
}

div:where(.swal2-icon) {
  width: 3em !important;
  height: 3em !important;
}

div:where(.swal2-container) h2:where(.swal2-title) {

  padding: 0em 1em 0 !important;
  font-size: 1.5em !important;
 
}
div:where(.swal2-icon) .swal2-icon-content {
  font-size: 2.2em !important;
}
.swal2-actions button{
  font-size: 14px !important;
  line-height: 24px;
}
div:where(.swal2-container) div:where(.swal2-actions) {
  margin: 0.75em auto 0 !important;

}
div:where(.swal2-icon).swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: -2.5em;
  left: 3.625em;
  width: .4375em;
  height: 5.625em;

}
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line] {

  width: 100% !important;
  height: auto !important;
  
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long] {
  top: 21px !important;
  right: 0px !important;
  width: 37px !important;
 
}
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip] {
  top: 27px !important;
  left: 0px !important;
  width: 23px !important;
  
}
div:where(.swal2-icon).swal2-success .swal2-success-fix {
display: none !important;
}
.swal2-cancel , .swal2-confirm {
  font-size: 14px !important;
  background-color: #616161 !important;
}
.swal2-confirm {
  background-color: #FF00AA !important;
  font-size: 14px !important;
}
.service-table-container {
  height: 300px;
  overflow-y: auto;
}
.datatable-table thead th{
  position: sticky;
  top: 0;
}
.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
  
  top: 0.3em !important;
  width: 0.25em !important;
  height: 2.4em !important;
  
}

div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 21px !important;
  
}
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 21px !important;
  
}
.border-gray {
  border: 1px solid #aaaaaa !important;
}
.btn-link {
 text-decoration: none;
}
.bg-pink
{
  background-color: #FF00AA;
}
.toggle-sidebar .toggle-sidebar-btn img {
  transform: rotate(179deg);
}
.toggle-sidebar .toggle-sidebar-btn {
  right: -5px;
}
.service-filter  label.form-check-label {
  font-size: 12px;
}
.service-filter .form-check-input[type=checkbox] {
  border-radius: 0px !important;
  border-color: #616161 !important;
}

input[readonly] {
  border: 0;
  background: #e9ecef !important;
  border: 1px solid #000 !important;
}
.view-package .basic-multi-select  {

  border: none !important;
 
}
/* body .view-package .basic-multi-select div[aria-disabled="true"] {
  border-radius: 0px  !important;
  background: #FBFBFB !important;

} */
.view-package .basic-multi-select  div[aria-disabled="true"] div div{
  /* border-radius: 0px  !important; */
  border: none !important;
  box-shadow: none !important;
  font-size: 14px;
  background-color: #F1F1F1 !important;
  line-height: 9px;
  color: #212529;
}

.view-package .default-select:disabled {
  background: #FBFBFB !important;
  border: none;
}
/* .view-package .basic-multi-select  div[aria-disabled="true"]:last-child div{
display: none;
} */
i.pricing-icon {
  transform: rotate(-45deg);
}
.input-group .form-control {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
span.input-group-text {
  border-bottom-left-radius: 20px !important;
  border-top-left-radius: 20px !important;
}
.css-1nmdiq5-menu
{
  background-color: #f8f8f8 !important;
  box-shadow: 0px 0px 22.4px 2px #0000000D;
  padding: 10px 20px;
 position: absolute;
}
body .css-13cymwt-control {
  border-radius: 20px !important;
  /* border: 1px solid #000 !important; */
}
textarea.form-control {
  padding-top: 7px;
}
.input-group-text[disabled],
.input-group-text.disabled {
 
  cursor: not-allowed; /* Indicates it’s non-interactive */
  pointer-events: none; /* Prevents interaction */
  background-color: var(--bs-secondary-bg);
}
button.MuiTab-root {
  font-weight: 600;
  font-family: 'Inter';
  text-transform: capitalize;
}
button.btn.bg-dark {
  height: 35px;
  line-height: 10px;
}
.css-1dyz3mf {
  padding-top: 5px;
}
.css-b62m3t-container:focus-visible {
outline: none !important;
}
.css-t3ipsp-control
{
  border-radius: 20px !important;
  border: 1px solid #616161 !important;
}
body .css-v7duua:hover {
  background-color: #FFBDAD;
  color: #DE350B !important;
}
.template-modal p{
  margin-bottom: 0px;
}
.template-modal img{
  width: 100%;
  display: block;
}
.dark-table-thead .rdt_TableHeadRow .rdt_TableCol{
  background-color: #EFEFEF !important;
}
.dark-table-thead .datatable-container  {

  border: 1px solid #999999 !important;
  
}

.dark-table-thead .datatable-container .rdt_TableCell div p:first-child {
  font-weight: 700;
  margin-bottom: 10px;
}
.dark-table-thead .datatable-container .rdt_TableCell div p:last-child {
  margin-bottom: 0px;
}
/* .package-table .rdt_TableCell div{
  overflow: visible !important;
  width: 100%;
} */

.applicable-data
{
  background-color: #F0EDED;
  margin: 5px 0;
  padding: 2px 5px;
  border-radius: 5px;
}
.applicable-data i {
  color: gray;
}
/* .package-table .datatable-container div
{
  overflow-y: visible !important;
} */

.datatable-container .rdt_TableBody .rdt_TableRow .rdt_TableCell div{
  white-space: normal !important;
}


.single-select div
{
  line-height: 14px !important;
}

.data-table-extensions{
  margin-bottom: 15px;
}
.form-select {
  padding-right: 35px !important;
}
.datatable-container div div ,.sc-eUlrpB
{
  /* overflow-y: unset !important; */
  /* overflow-x: unset !important; */
}

.dropdown-menu.custom-dropdown.show {
  z-index: 999 !important;
}
.data-table-extensions > .data-table-extensions-filter > .icon {
  display: none !important;
}
.data-table-extensions > .data-table-extensions-filter > .filter-text {
  width: 96%;
}

.setting-drop-down .dropdown-item:hover {
  background-color: transparent !important;
}

.setting-drop-down .dropdown-item.btn-info:hover {
  background-color: #FF00AA !important;
}

ul.pagination {
  margin-top: 40px;
}
ul.pagination li {
  padding: 2px 8px;
  border: 1px solid #4b4b4b;
  margin: 2px;
  border-radius: 3px;
}
.perpage-select {
  border-radius: 3px;
  border: 1px solid #4b4b4b;
  padding: 5px 8px;
  float: right;
  margin-top: -45px;
}
ul.pagination li.active a {
  color: #FF00AA;
}
li.previous.disabled a,
li a[aria-label="Next page"] {
  text-decoration: none;
}
ul.pagination li.active {
  border: 1px solid #FF00AA;
}
button.btn.dropdown-toggle.btn-light span {
    font-size: 14px;
    color: #4b4b4b;
}
button.btn.dropdown-toggle.btn-light {
    border-radius: 20px;
    color: #4b4b4b;
    border: 1px solid #c5c5c5 !important;
}
.bg-soft-primary {
  background-color: rgb(237 247 251) !important;
  color: #FF00AA !important;
}

tbody.list.form-check-all tr:last-child td {
  border: none;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  --b: 8px; 
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(#0000 10%,#FF00AA) content-box;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),
    radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
  animation:l4 1s infinite steps(10);
}
@keyframes l4 {to{transform: rotate(1turn)}}


.datatable-container .loader {
  position: absolute;
  left: calc(50% - 60px);
  top: 50%;
}

 
.jodit-container p
{
  margin-bottom: 0px;
}
.rotate {
  transform: rotate(180deg) !important;
  transition: transform 0.3s ease-in-out;
}
.modal-body.preview-body {
  height: 500px;
  overflow-y: auto;
}
.sticky-card
{
  width:100%;   display:inline-block; float:left; position:sticky; top:80px;
}
/* button.btn.btn-plus {
    border: 1px solid #ff00aa;
    color: #ff00aa;
    padding: 7px -8px;
    border-radius: 40px;
    width: auto !important;
    height: 37px;
    font-size: 17px;
} */
 .gray-card ,.gray-card .table {
  background: #FAFAFA !important;
  --bs-table-bg:#FAFAFA !important;
  box-shadow: none;
padding-top: 20px;
padding-bottom: 20px;
}
.plusMinus-circle::before
{
  font-weight: 200 !important;
}
.fs-14 {
  font-size: 14px;
}
.bg-pink{
  background-color: #FF00AA !important;
}
.table {
 
 
  --bs-table-accent-bg: transparent !important;
  
}
.service-plus-modal
{
  height: 380px;
  overflow-y: auto;
}
.jodit-workplace {
  font-size: 14px;
}
.sticky-card .tab-content
{
  height: 500px;
  overflow-y: auto;
}
.quote-table .rdt_TableCell div {
  width: 100%;
}
.modal.fade.show.d-block {
    background: rgb(0 0 0 / 56%) !important;
}
.ant-picker.ant-picker-range {
    padding: 8px 20px;
    border-radius: 25px;
    border-color: #CFCFCF ;
}
/* Change placeholder text color inside the Ant Design date picker */
.ant-picker input::placeholder {
  color: #616161 !important;  /* or any color you want */
}
.config-setting-container .card .card-header {
  padding: 10px 20px;
  background-color: #E9E9E9;
  border-bottom: none;
   color: #000;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.single-thumb .range-slider__thumb:nth-of-type(1) {
  display: none;
}
.range-slider .range-slider__range {
    position: absolute;
    z-index: 1;
    transform: translate(0, -50%);
    top: 50%;
    width: 100%;
    height: 100%;
    background: #ff00aa !important;
}

.range-slider {
    background: #f7bfe4 !important;
}
.range-slider .range-slider__range {
    
    left: 1px !important;

    border-radius: 10px;
}
.range-slider .range-slider__thumb {

    background: #f9fcff !important;
}

.progress-bar-track {
  background-color: #f7bfe4 ;
  border-radius: 4px;
  height: 10px;
  overflow: hidden;
}
.datatable-container svg.lucide {
  
    border: 1px solid;
    width: 30px;
    height: 30px;
    font-size: 33px;
    padding: 5px;
    margin:3px 4px;
    border-radius: 16px;
}
.datatable-container .ri-edit-line {
    border: 1px solid;
    width: 20px;
    height: 20px;
    font-size: 20px;
    padding: 4px;
    /* margin: 3px 4px; */
    border-radius: 16px;
}
.datatable-container i.bx.bx-trash {
    color: red;
    border: 1px solid;
    padding: 6px;
    border-radius: 16px;
    font-size: 16px;
}

.datatable-container i.ri-download-2-line {
    color: #17b904;
    border: 1px solid;
   padding: 6px;
    border-radius: 16px;
    font-size: 16px;
}
.datatable-container i.ri-timer-line {
    color: aqua;
    border: 1px solid;
    padding: 6px;
    border-radius: 16px;
    font-size: 16px;
}
.datatable-container i.ri-send-plane-line {
    color: blueviolet;
     border: 1px solid;
    padding: 6px;
    border-radius: 16px;
    font-size: 16px;
}
svg.lucide.lucide-pen-line ,.ri-edit-line {
    color: #0095ff;

}
svg.lucide.lucide-trash2
{
    color: #f80a0a;
    
   
}
svg.lucide.lucide-eye
{
color:#ffb100;
}
.datatable-container .btn.active,.datatable-container .btn.show, .datatable-container .btn:first-child:active, :not(.btn-check)+.btn:active {
    border: none !important;
}
/* Fix for react-select dropdown going behind elements */
.react-select__menu,
.react-select__menu-portal {
  z-index: 9999 !important;
  position: absolute !important;
}

/* Optional: In case menu renders in portal */
.react-select__menu-portal {
  position: fixed !important;
}

/* Ensure the dropdown control sits above too, if necessary */
.react-select__control {
  z-index: 1;
  position: relative;
}
.z-index-999,.basic-multi-select
{
  z-index: 999 !important;
}
.css-1ruy4pc div{
    z-index: 999 !important;
  
}
.range-slider .range-slider__thumb {
    z-index: 1 !important;
}
.input-group>.form-control {
    width: unset !important;
    
}
.input-group {
    flex-wrap: nowrap !important;
}
.jodit-workplace {
    padding: 0px 10px;
}
.jodit .jodit-workplace .jodit-wysiwyg {

    overflow: initial;
}
.contract-header img
{
  margin-left: 0px !important;
}
.company-info

{
  margin-right:0px !important;
}
.swal2-timer-progress-bar {
  display: none !important;
}

/* .swal2-timer-progress-bar {
display: flex !important;
  height: 4px !important;
    animation: grow-bar 5s ease-out forwards;
  background-color: #4caf50 !important; 
  transform-origin: right !important; 
  transition: width 5s ease-out !important;
}
.custom-progress-bar {
  width: 0%;
  height: 4px;
  background-color: #4caf50;
  animation: grow-bar 5s ease-out forwards;
  margin-top: 10px;
  border-radius: 2px;
}


@keyframes grow-bar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
} */
