/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --GreenColor: #476f66;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f5f5f5;
  color: #444444;
}

a {
  color: var(--GreenColor);
  text-decoration: none;
}

a:hover {
  color: #ff501b;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  background-color: var(--GreenColor);
  /* padding: 20px 30px; */
  transition: all 0.3s;
}

.main_inner {
  background: #f6f6f6;
  padding: 10px 26px;
  border-radius: 20px 20px 0px 0px;
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.filterbutton{
  display: none !important;
}
.pagetitle h1 {
  font-size: 24px;
  color: #000;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  display: none !important;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--GreenColor);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.maxChek {
  width: 20px !important;
  min-width: auto;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.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;
}

.nav-profile i {
  margin-left: 5px;
}

@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

.buttonContainer {
  display: flex;
  gap: 10px;
}

/* Card */
.card {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: #fefefe;
  border: 1px solid #e5e9ee;

}

.bgshadow {
  filter: drop-shadow(-0.707px 0.707px 11px rgba(83, 70, 134, 0.1));
  border-radius: 20px;
}

/* .card.no-mg {
  margin-bottom: 0;
} */

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  font-size: 18px;
  line-height: 20px !important;
  font-weight: 600;
  color: #000;
  font-family: 'Roboto', sans-serif;
}

.clientNum {
  font-size: 26px;
  margin: 20px 0px;
  color: #000000;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #2b2b2b;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

p.forgPass a {
  font-size: 18px;
  color: #2b2b2b;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.card-body {
  padding: 20px 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: 'Roboto', 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: var(--GreenColor);
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  color: #8b8b8b;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #8b8b8b;
  font-weight: 400;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: var(--GreenColor);
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: var(--GreenColor);
  border-bottom: 2px solid var(--GreenColor);
}

.greenText {
  color: var(--GreenColor) !important;
}


input[type=checkbox] {
  accent-color: var(--GreenColor);
}

option:hover {
  background-color: yellow;
}

.form-check-input:checked {
  background-color: var(--GreenColor);
  border-color: var(--GreenColor);
}

input[type=radio] {
  accent-color: var(--GreenColor);
}

ul.pagination {
  justify-content: end;
}

div#invoiceTable_filter {
  display: flex;
  justify-content: flex-end;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

label.form-check-label {
  font-weight: 500;
}

.login_title {
  font-size: 24px;
  color: var(--GreenColor);
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.logo img {
  width: auto;
  max-width: 200px;
  height: 40px;
  object-fit: contain;
}

.logoLogin img {
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: 'Roboto', sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  /* height: 60px; */
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: var(--GreenColor);
  color: #fff;
  padding: 10px 26px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}



.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: #fff;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #fff;
}

.header-nav .nav-profile img {
  max-height: 36px;
  height:auto;
  width:2.1rem;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 400;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

div#portalUserTable_wrapper .col-sm-12.col-md-6,
div#invoiceSummary_wrapper .col-sm-12.col-md-6,
div#cStaff_wrapper .col-sm-12.col-md-6 {
  display: none;
}

.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-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 200px;
  padding: 10px;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 16px;
  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: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}



.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}


.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.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: var(--GreenColor);
  transition: 0.3;
  background: #f6f9ff;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--GreenColor);
}

.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover {
  color: var(--GreenColor);
  background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i {
  color: var(--GreenColor);
}

.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 {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: var(--GreenColor);
}

.sidebar-nav .nav-content a.active i {
  background-color: var(--GreenColor);
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.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: var(--GreenColor);
}

.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;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  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: var(--GreenColor);
  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: var(--GreenColor);
}

.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;
}

.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: var(--GreenColor);
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: var(--GreenColor);
}

.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;
  -webkit-animation: animate-loading 1s linear infinite;
  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: var(--GreenColor);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--GreenColor);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@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: var(--GreenColor);
  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;
}

/*--------------------------------------------------------------
# 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;
}

.page-link:focus {
  color: var(--GreenColor);
}

.btn-primary {
  --bs-btn-bg: var(--GreenColor);
  --bs-btn-border-color: var(--GreenColor);
  height: 35px;
  padding: 4px 20px;
}

ul.pagination {
  height: 35px;
}

div#cStaff_paginate {
  margin-top: 10px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #26574d !important;
}

.btn:hover {
  background-color: #26574d;
  border-color: #26574d;
  color: #fff;
}

.form-label {
  font-weight: 500;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  margin-top: 1.5rem;
}

button.cancelBtn.btn.btn-sm.btn-default {
  height: 40px;
}

.lPass {
  position: relative;
}

.lPass i {
  position: absolute;
  top: 7px;
  right: 10px;
}

.centerNav ul li a:hover {
  background: #6c8c84;
  color: #fff;
}

.centerNav ul li a {
  color: #fff;
  font-size: 14px;
  padding: 8px 20px !important;
  border-radius: 50px;
  margin: 0 5px;
}

.centerNav ul li a.active {
  background: #6c8c84;
  color: #fff !important;
}

.centerNav nav {
  padding: 0;
}

ol.breadcrumb i.ri-home-8-line {
  font-size: 18px;
  color: var(--GreenColor);
  background: #e0e0e0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lGreen {
  background: #1ec59c;
}

.lDGreen {
  background: var(--GreenColor);
}

.lorrange {
  background: #df8732;
}

.lred {
  background: #bd5150;
}

.pNum {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-top: 12px;
  color: #8b8b8b;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.headRight img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.5;
}

.headRight {
  flex: 0 0 36px;
}

.headLeft {
  flex: 1;
}

.progress {
  background: #eeeeee;
}

span.notofy {
  width: 23px;
  display: inline-flex;
  height: 23px;
  background: #fd6074;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 12px;
}

.tableActions button:hover {
  background: var(--GreenColor);
  color: #fff;
}

.tableActions button {
  min-width: 94px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  border: none;
  color: var(--GreenColor);
  padding: 0 3px;
  border-radius: 5px;
  background-color: #f1f3f2;
  height: 30px;
  margin-right: 10px;
}

.tableActions button.viewDispute{
  min-width: 170px;
}
.tableActions button.viewInvoice{
  min-width: 130px;
}

tr {
  vertical-align: text-bottom;
}

table.dataTable.table-striped>tbody>tr.odd>* {
  box-shadow: none;
}

table.dataTable thead th {
  background-color: #eeeeee;
  color: #8b8b8b;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  min-height: 40px;
}

table.dataTable thead th:before,
table.dataTable thead th:after {
  /* display: none !important; */
  opacity: 1 !important;
}

.tableActions button i.ri-login-box-line {
  font-size: 16px;
  padding: 0 8px;

}

.tableActions button i {
  font-size: 10px;
  font-weight: 900;
}

.tableActions {
  /* display: flex; */
  align-items: center;
  gap: 6px;
}

.active>.page-link,
.page-link.active {
  background-color: var(--GreenColor);
  border-color: var(--GreenColor);
}

.page-link {
  color: #8b8b8b;
}

.tableActions button img {
  width: 10px;
}

button.nofx {
  min-width: auto;
}

div#cStaff_length {
  text-align: right;
}

table#invoiceSummary .badge {
  min-width: 120px;
}

.badge {
  border: 1px solid;
  min-width: 98px;
  font-size: 14px;
  font-weight: 400;
}

button:active {
  background: var(--GreenColor) !important;
  border-color: rgb(71 111 102) !important;
}

.btn:focus-visible,
:focus,
.form-control:focus,
.form-select:focus {
  border-color: rgb(71 111 102);
  outline: 0px;
  /* box-shadow: rgb(71 111 102 / 18%) 0px 0px 0px 0.25rem !important; */
  box-shadow:none;
}

.btn:first-child:active,
.btn:focus-visible {
  background: var(--GreenColor);
}

select#inputSname {
  min-width: 110px;
}

.page-link:hover {
  z-index: 2;
  color: var(--GreenColor);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}



select#inputCname {
  min-width: 200px;
}

.tableActions button:hover img {
  filter: brightness(22);
}

.text-info {
  color: #1ec59c !important;
  border-color: #1ec59c !important;
}
.text-partial {
  color: #FFC000 !important;
  border-color: #FFC000 !important;
}

.header-nav .profile .dropdown-item img {
  width: 14px;
  margin-right: 14px;
}

div#portalUserTable_info,
div#cStaff_info {
  position: absolute;
  right: 350px;
  bottom: 24px;
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: "Roboto";
}

div#invoiceSummary_info{
  position: absolute;
  right: 450px;
  bottom: 24px;
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: "Roboto";
}

button.borderBtn:hover {
  background: var(--GreenColor);
  color: #fff;
}

button.borderBtn {
  padding: 6px 14px;
  height: 35px;
  min-width: 110px;
  font-size: 14px;
  color: var(--GreenColor);
  font-weight: 700;
  border-radius: 5px;
  background-color: #fefefe;
  border: 1px solid var(--GreenColor);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.addNewClient {
  margin-top: -38px;
}

/* ============================= */
table tr td .switch {
  height: 30px;
  width: 50px !important;
}

table tr td .slider:before {
  height: 22px;
  width: 20px;
  bottom: 4px;
}

table tr td input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}


.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  border-radius: 5px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0px;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 5px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 13px;
  border-radius: 2px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

/* p.checkLabel.col-md-9 {
  margin: 0;
} */

input:checked+.slider {
  background-color: var(--GreenColor);
}

input:focus+.slider {
  box-shadow: 0 0 1px var(--GreenColor);
}

input:checked+.slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.addNewModel {
  /* width: 100% !important; */
  max-width: 600px;
}

.checkLabel {
  text-align: left;
  display: inherit;
}

.addNewClient .modal-body {
  padding: 16px 23px;
}

.modal-footer {
  background: #f6f6f6;
  border: 0;
}

.addNewClient .modal-header {
  padding: 16px 24px 0px 24px;
}

.modal-header {
  border-bottom: 0;
  padding-bottom: 0;
}

h5.sPrm,
.modal-title {
  font-size: 18px !important;
  font-weight: 700;
}

/* h5.sPrm {
  margin-bottom: -2px;
  margin-top: 10px;
} */
.mobFilter .btn-secondary,
.addNewClient .btn-secondary {
  background: none;
  border: none;
  font-weight: 700;
  color: #000000;
}

.tableHead p {
  margin: 0;
  color: #fff;
}

.tableHead {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: var(--GreenColor);
  align-items: center;
  padding: 10px;
}

.table>:not(caption)>*>* {
  background-color: white;
  box-shadow: none;
}

thead tr th {
  background: #eeeeee !important;
}

.billingSec table {
  margin: 0;
}

.red {
  color: #fd5353 !important;
}

.orrange {
  color: #ff9353;
}

.green {
  color: #1ec59c !important;
}

.dgreen {
  color: var(--GreenColor);
}

.tableFooter ul.pagination {
  margin: 0;
}

.tableFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.tableFooter nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loginForm .card {
  margin-bottom: 0 !important;
}

.tableFooter nav p {
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  text-align: right;
  margin: 8px 0 0 0;
}

.mobFilter .modal-footer {
  justify-content: center;
}

.modal-footer {
  border-radius: 0px 0px 20px 20px;
}

.modal-content {
  border-radius: 20px;
}

.fillLeft {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.bill-search-bar input {
  width: 100% !important;
  padding-left: 30px;
}

.bill-search-bar {
  position: relative;
}

.bill-search-bar i {
  position: absolute;
  top: 7px;
  left: 10px;
}

.fillLeft .form-control,
.fillLeft .form-select {
  width: auto;
  color: #8b8b8b;
  font-size: 14px;
  height: 35px;
  font-weight: 500;
}

.topFilters {
  margin-bottom: 8px;
  display: flex;
  align-items: end;
}

.topFilters div#cStaff_length label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

table tr td {
  font-size: 14px;
  font-weight: 500;
  min-height: 40px;
}

.overX {
  overflow: auto;
}

.inv_customDate input {
  min-width: 230px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--GreenColor);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.modal-body p {
  font-size: 14px;
}

table tr th {
  color: #8b8b8b;
  font-weight: 500;
  font-size: 14px;
}

.tableHead p {
  font-size: 14px;
  font-weight: 700;
}

td.cent {
  text-align: center;
  vertical-align: middle;
}

.billingSec table tr th,
.billingSec table tr td {
  border: 1px solid #dee2e6;
}



.customDate {
  position: relative;
}

.customDate i {
  position: absolute;
  pointer-events: none;
  top: 7px;
  right: 10px;
  color: #8b8b8b;
}

button.btn-close {
  background: #f5f4f7;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px !important;
  min-width: auto;
  min-height: auto;
  height: 20px;
}

button.btn-close img {
  width: 16px;
  height: 16px;
}

.customDate i.bi.bi-chevron-left {
  left: 0;
  background: #eee;
  height: 35px;
  top: 0;
  display: flex;
  align-items: center;
  width: 36px;
  justify-content: center;
  border-radius: 5px 0px 0px 5px;
  border-right: 1px solid #dde1e5;
}

.customDate i.bi.bi-chevron-right {
  right: 0;
  background: #eee;
  height: 35px;
  top: 0;
  display: flex;
  align-items: center;
  width: 36px;
  justify-content: center;
  border-radius: 0px 5px 5px 0px;
  border-left: 1px solid #dde1e5;
}

.customDate i.bi.bi-calendar {
  right: 44px;
}

.customDate {
  border: 1px solid #dde1e5;
  border-radius: 5px;
}

.customDate input {
  padding: 0 100px 0 42px;
  border: none;
  height: 35px;
}

.calendar-table th {
  background: none !important;
}

.loginForm {
  padding: 0 16px;
}

.loginForm .card {
  width: 100%;
  max-width: 463px;
}


button.navbar-toggler {
  background: none !important;
  border: none;
  background-image: none !important;
  padding: 0 !important;
}

button.navbar-toggler span i {
  color: #fff;
  font-size: 30px;
}

button.navbar-toggler span {
  background: none !important;
  border: none;
  background-image: none !important;
  padding: 0 !important;
}

/*table#cStaff {
  border: 1px solid #f4f4f4;
  overflow-x: scroll;
}*/

.needs-validation {
  align-items: baseline;
}

.mobFilter {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.filter_toggle {
  border-radius: 5px;
  background-color: #fefefe;
  border: 1px solid var(--GreenColor);
  padding: 0 11px;
  height: 35px;
  font-size: 14px;
  color: var(--GreenColor);
  font-weight: 400;
  font-family: "Roboto";
}

div#mobFill label select,
div#mobFill label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: "Roboto";
}


header {
  background: var(--GreenColor);
  padding: 10px 26px;
}

.mob_header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #ced4da;
}

.mobLogio img {
  width: 100%;
  max-width: 150px;
}

.close_icon img {
  width: 19px;
}

.close_icon {
  cursor: pointer;
}

.mobSignout a {
  background: var(--GreenColor);
  display: block;
  color: #fff;
}

.mobSignout a img {
  width: 20px;
  float: right;
  filter: invert(1);
}

.mobSignout a {
  background: var(--GreenColor);
  display: block;
  color: #fff;
  padding: 13px;
  border-radius: 5px;
}

.mobSignout {
  display: none;
  padding: 20px;
  position: absolute;
  bottom: 0%;
  width: 100%;
}

.close_icon i {
  font-size: 38px;
  color: #000;
  line-height: 20px;
}

.greenCard .card-title {
  color: #fff;
  margin-bottom: 10px !important;
}

.greenCard {
  background: var(--GreenColor);
}

.greenCard h4,
.greenCard p {
  color: #fff;
  text-align: left;
}

.greenCard p {
  color: #d3cfe5;
  line-height: 22px;
}

.clientNum span {
  font-size: 14px;
  display: block;
  color: #8b8b8b;
  font-weight: 500;
}

.plus {
  color: #40d5a8;
}

.minus {
  color: #fd5353;
}

.tabArrows a img {
  width: 30px;
  height: 30px;
}

div#invoiceTable_wrapper .col-sm-12.col-md-5,
div#invoiceTable_wrapper .col-sm-12.col-md-7,
div#invoiceTable_wrapper .col-sm-12.col-md-6 {
  display: none;
}

div#agingTable_wrapper .col-sm-12.col-md-5,
div#agingTable_wrapper .col-sm-12.col-md-7,
div#agingTable_wrapper .col-sm-12.col-md-6 {
  display: none;
}

div#recentTable_wrapper .col-sm-12.col-md-5,
div#recentTable_wrapper .col-sm-12.col-md-7,
div#recentTable_wrapper .col-sm-12.col-md-6 {
  display: none;
}

.tabArrows {
  display: flex;
  gap: 10px;
  /* position: absolute; */
  /* right: 20px;
  top: 14px; */

}

img.listTick {
  max-width: 140px;
  margin: 0 auto;
  display: block;
}

.fixDOnut {
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 150px;
  position: relative;
}


h3.chartNum {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 54%;
  left: 49%;
  transform: translate(-50%, -50%);
}

select {
  font-size: 1rem !important;
  color: #212529 !important;
  font-weight: 400 !important;
  font-family: "Roboto";
}

.filt1 .col-sm-2 {
  padding-left: 0 !important;
}

.filt1 form {
  padding-left: 10px;
}

.countSingle p {
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 500;
  font-family: "Roboto";
  margin: 0;
}

.countSingle h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.countSingle {
  text-align: center;
  padding: 12px 0;
}

.hcpCounters {
  margin-top: 16px;
}

.hcpCounters .col-md-6,
.hcpCounters .col-md-3 {
  background: #f9fbfc;
  border: 1px dashed #dedede;
}

.hcpCounters .row {
  margin: 0 -20px;
}

p.vs {
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: "Roboto";
  margin: 7px 8px;
}

.filt1 .col-sm-7 {
  padding: 0;
}

.hcpFilters {
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: 16px;
  padding-left: 10px;
  padding-right: 15px;
}


.loginTooltip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 20%;
  border: 1px solid var(--GreenColor);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}

.loginTooltip p {
  margin: 0;
}

.loginTooltip i.ri-information-line {
  font-size: 24px;
  line-height: 16px;
  margin-right: 5px;
}

.loginTooltip a img {
  width: 11px;
  margin-right: 4px;
  margin-top: -3px;
}

.loginTooltip a {
  min-width: 93px;
  margin-left: 35px;
  color: var(--GreenColor);
}

.loginTooltip i {
  color: var(--GreenColor);
}

.lastYear {
  /*max-width: 130px; */
  margin-left: auto;
}

.headLeft p img {
  width: 18px;
  margin-right: 8px;
}

.headLeft p {
  margin: 0;
  font-size: 14px;
}

.headLeft p a:hover {
  color: var(--GreenColor);
}

.headLeft p a {
  color: #000;
}

.billDetails {
  display: flex;
  align-items: center;
  gap: 26px;
}

.billSing img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 8px;
  border-radius: 5px;
  background-color: #f0f0f2;
}

.billSing p {
  margin: 0;
  font-size: 14px;
  text-align: left;
}

.visaImg {
  width: 100%;
  max-width: 24px;
}

img.elipses {
  width: 100%;
  max-width: 270px;
}

.billSing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accSumm span {
  font-size: 14px;
  text-align: left;
  display: block;
  color: #000000;
  font-weight: 500;
  font-family: "Roboto";
  margin-bottom: 16px;
}

.accSumm h2 {
  font-size: 26px;
  margin-bottom: 0;
  text-align: left;
  color: #000000;
  font-weight: 700;
  font-family: "Roboto";
}

.dbSwit {
  display: flex;
  gap: 5px;
}

.dbSwit input:checked+.slider {
  background-color: #1ec59c;
}



.accSumm p {
  font-size: 18px;
  text-align: left;
  color: #000000;
  font-weight: 500;
  font-family: "Roboto";
  margin: 0;
}

.accSumm {
  border-radius: 20px;
  background-color: #f6f6f6;
  width: 100%;
  max-width: 300px;
  min-height: 241px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card.debitCard {
  min-height: 310px;
  background-image: url(../img/debitCard.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.summBG {
  background-image: url(../img/summBG.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.card.debitCard .row {
  height: 100%;
}

.dcTop button {
  border-radius: 5px;
  background-color: #fefefe;
  font-size: 14px;
  font-weight: 700;
}

.align-content-center {
  align-items: center;
}

.dcMiddle h2 {
  font-size: 26px;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-family: "Roboto";
}

.dcMiddle {
  gap: 20px;
}

.autoPay p,
.expDate p {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Roboto";
  text-align: left;
  margin: 0;
}

.expDate h2 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Roboto";
  text-align: left;
  margin: 0;
}

.cardDates {
  gap: 50px;
}

.align-content-end {
  align-items: end;
}

.dbSwit p {
  font-size: 18px;
}

.dcTop {
  align-items: flex-start;
  gap: 20px;
}

.dcTop h5 {
  color: #fff;
}

.mx-200 {
  max-width: 250px;
}

.circ {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}

.redCir {
  background: #bd5150;
}

.blueCir {
  background: #1a8bd9;
}

.purpCir {
  background: #534686;
}

.orrCir {
  background: #ff9353;
}

.textGreen {
  color: #1ec59c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.greenCir {
  background: #1ec59c;
}

tfoot tr th {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  font-family: "Roboto";
}

table#agingTable {
  border-color: #eeeeee;
}
#agingTable .tableActions button{
  min-width: 50px;
  margin-bottom: 10px;
}
#agingTable .tableActions button i{
  font-size: 18px;
} 
#agingTable td img, #agingTable td svg{
  width:24px;
  margin-right: 5px;
}

.table> :not(caption)>*>* {
  padding: 0.5rem 1rem;
}

img.vIsa {
  width: 30px;
  margin-right: 10px;
}

a.vAll {
  position: absolute;
  right: 5px;
  top: 0;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

a.vAll:hover {
  color: var(--GreenColor);
}

/* ==============Billing Detail Page CSS=========== */
.userImg {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.cPass {
  background: #000; 
  min-width: 197px !important;
}

p.usDesignation {
  text-align: left;
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: "Roboto";
}

.usName {
  font-size: 20px;
  color: #2b2b2b;
  font-weight: 700;
  font-family: "Roboto";
  margin: 0;
}

.detailForm h2 {
  font-size: 20px;
  color: #2b2b2b;
  font-weight: 500;
  font-family: "Roboto";
}

.detailForm input,
form.updateUserDetails input,
form.updateUserDetails select {
  background-color: #f6f6f6;
  border: 1px solid #e5e9ee;
}

form.updateUserDetails label {
  /* color: #000; */
  font-weight: 500;
}

.detailForm h2 img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #f0f0f2;
  padding: 8px;
  margin-right: 6px;
}

hr {
  background: #e5e9ee;
}

a.changeAdd {
  position: absolute;
  right: 0;
  top: 4px;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.passChangeButtons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

a.changeAdd:hover {
  color: var(--GreenColor);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

p.disclaimer {
  font-size: 13px;
  line-height: 22px;
  color: #8b8b8b;
  font-weight: 400;
  font-style: italic;
  font-family: "Roboto";
  text-align: left;
  margin: 0;
}



.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: #000;
  opacity: 0.200 !important;
  border-color: #000;
}

.tableActions button:disabled:hover img {
  filter: none;
}

.tableActions button:disabled:hover {
  background-color: #f1f3f2 !important;
  color: var(--GreenColor);
}

.tableActions button:disabled {
  opacity: 0.502;
}

.invoiceTabs .nav-link:active {
  background: #fff !important;
}

.invoiceTabs a:focus {
  box-shadow: none !important;
}

.invoiceTabs a:hover:before,
.invoiceTabs a.active:before {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #476f66;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


.invoiceTabs a:hover,
.invoiceTabs a.active {
  color: #000;
  border-color: #476f66;
}

.invoiceTabs {
  padding: 0 5px;
}

.invoiceTabs a {
  display: inline-block;
  position: relative;
  font-size: 16px;
  padding: 10px 16px;
  color: #8b8b8b;
  font-weight: 500;
  font-family: "Roboto";
  border-bottom: 2px solid #fff;
}

.card.greenCard .clientNum {
  margin: 10px 0px;
}

.outerBorder {
  border: 1px solid #eee;
}

.outerBorder table {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.dataTables_scrollHeadInner {
  width: auto;
  background: #eeeeee;
}

tfoot tr th {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #fff !important;
}

a.changeAdd img {
  width: 14px;
}

.cardNumb img {
  position: absolute;
  right: 8px;
  top: 10px;
}

.cardNumb input {
  padding-right: 46px;
}

button.btn.btn-secondary {
  background: none;
  border: none;
  color: #000;
  font-weight: 500;
}

button.btn.removePay {
  position: absolute;
  left: 0;
  transition: none;
  border: 1px solid transparent !important;
  font-weight: 500;
  font-size: 14px;
}

button.btn.removePay:hover {
  background: none;
  border: none;
  color: var(--GreenColor);
}

.payBy li button p {
  font-size: 12px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 400;
  font-family: "Roboto";
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.payBy li button:focus {
  box-shadow: none !important;
}

.payBy li button.active {
  border-color: var(--GreenColor) !important;
}

.payBy li button.active img,
.payBy li button.active p {
  opacity: 1 !important;
}

.payBy li button {
  background-color: #fefefe !important;
  border: 1px solid #e5e9ee !important;
  border-radius: 0 !important;
  width: 100%;
  max-width: 183px;
  height: 89px;
  position: relative;
}

.payBy {
  margin-top: 10px;
  padding: 0 1rem;
  border: none;
  gap: 16px;
  margin-bottom: 10px;
}

.payBy li button p,
.payBy li button img {
  opacity: 0.2;
}

.payBy .nav-link.active:after {
  content: "\f26e";
  font-family: bootstrap-icons !important;
  background: var(--GreenColor);
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

img.vIsa.cv {
  top: 5px;
}

button.btn-close:active {
  background: #f5f4f7 !important;
}

.scheuleRadio {
  display: flex;
  gap: 12px;
}

.max-840 {
  max-width: 840px;
}

.inv_customDate i.bi.bi-calendar {
  position: absolute;
  right: 11px;
  top: 8px;
}

table#invoiceTable tr td {
  border: 1px solid #eee;
}

.inv_customDate {
  margin-right: 20px;
}

.cCross img {
  filter: brightness(17.5);
  width: 60%;
}

.cCross {
  width: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--GreenColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

p.autopayTip {
  font-size: 12px;
  color: #8b8b8b;
  font-weight: 700;
  font-style: italic;
  font-family: "Roboto";
  text-align: left;
  border: 1px solid #8b8b8b;
  padding: 10px;
  margin-bottom: 0;
  margin-top: 8px;
}

.radioContainer {
  border: 1px solid #eee;
  padding: 20px 11px;
}
.radioContainer .defCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  padding: 0px;
}

.defCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #476f66;
  padding: 20px;
}

.cardDetNUm h2 {
  font-size: 18px;
  color: #2b2b2b;
  font-weight: 700;
  font-family: "Roboto";
  margin-bottom: 0;
  text-align: left;
}

.carddLeft {
  display: flex;
  align-items: center;
  gap: 16px;
  width:100%;
}

.cardDetNUm p {
  font-size: 16px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: "Roboto";
  text-align: left;
  margin-bottom: 0;
}

.chekIconn {
  width: 25px;
  height: 25px;
  background: #476f66;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.chekIconn img {
  filter: brightness(10.5);
}

.defCard span {
  background: #f6cfcf;
  padding: 3px 15px;
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  font-family: "Roboto";
  text-align: center;
  border-radius: 5px;
}

.totalInv {
  position: absolute;
  left: 23px;
  font-size: 18px;
  color: #000;
  font-weight: 700;
  font-family: "Roboto";
  margin: 0;
}

table#invoiceTable {
  margin: 0;
}

p.autopayTip img {
  margin-right: 4px;
}

button.borderBtn img {
  margin-top: -3px;
  margin-right: 6px;
}

.drop-container {
  position: relative;
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 114px;
  border-radius: 5px;
  padding: 20px;
  border: 2px dashed #eee;
  color: #000;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

input#images {
  display: none;
}

.drop-container:hover {
  background: #f7f7f7;
  border-color: #111;
}

.drop-container:hover .drop-title {
  color: #222;
}

.drop-title {
  color: #444;
  font-size: 14px;
  text-align: center;
  transition: color .2s ease-in-out;
}

button.browFile {
  width: 119px;
  height: 34px;
  border-radius: 5px;
  background-color: #f6cfcf;
  border: none;
  font-size: 14px;
  padding: 5px;
}

img.cloudComp {
  position: absolute;
  left: 12px;
}

.uploadData {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.uplaodProg {
  flex: 1;
}

div#filterModal .modal-dialog {
  position: fixed;
  top: auto;
  right: auto;
  left: 0;
  bottom: 0 !important;
  min-height: auto;
  width: 100%;
  margin: 0;
  border: none;
}

div#filterModal .modal-content {
  border: none;
}

div#filterModal .modal-content {
  border-radius: 20px 20px 0px 0px;
}

div#removePortal .modal-content {
  max-width: 548px;
  width: 100%;
  min-height: 380px;
}

div#removePortal .modal-body {
  flex-direction: column;
  justify-content: center;
}

.confButtuns button.btn.btn-primary {
  width: 125px;
  height: 42px;
  border-radius: 5px;
  background-color: #476f66;
  color: #fff;
}

.confButtuns button.btn.btn-secondary {
  background: #000;
  color: #fff;
  width: 125px;
  height: 42px;
  border-radius: 5px;
  background-color: #000000;
}

div#removePortal .modal-body h2 {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  font-family: "Roboto";
}

div#removePortal .modal-body img {
  margin-bottom: 16px;
}

.confButtuns {
  display: flex;
  gap: 20px;
}

.otherInvoiceSearch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.otherInvoiceSearch img {
  width: 30px;
}

.searchWrapper input::placeholder {
  color: var(--GreenColor) !important;
}

.searchWrapper input {
  padding-left: 30px;
  font-size: 14px;
  color: var(--GreenColor) !important;
  border-color: var(--GreenColor);
}

.searchWrapper button {
  background: #fff;
  color: #476f66;
  font-size: 14px;
  padding-left: 28px;
  padding-right: 10px;
  height: 32px;
}

.searchWrapper {
  /* width: 176px; */
  position: relative;
}

select option:hover {
  background-color: yellow !important;
}

.searchWrapper i {
  position: absolute;
  top: 6px;
  left: 10px;
  color: var(--GreenColor);
}

.notSelected .defCard {
  border-color: #eee;
}

.topRightButtons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

button.btn.btn-primary:hover i {
  color: #fff;
}

.topRightButtons img {
  width: 12px;
  filter: brightness(18.5);
}

.topRightButtons button, .topRightButtons #saveInvoice a{
  display: flex;
  height: 26px;
  min-width: fit-content;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  padding: 0 12px;
}

.selectCont i {
  position: absolute;
  top: 0;
  right: 6px;
  color: #fff;
  border-left: 1px solid #ebebeb;
  height: 26px;
  display: flex;
  align-items: center;
  padding: 8px 5px 8px 10px;
  pointer-events: none;
  font-size: 10px;
}

.selectCont select {
  background: #476f66;
  color: #fff !important;
  border: none;
  height: 26px;
  font-size: 14px !important;
  padding-top: 0;
  padding-bottom: 0;
}

.topRightButtons .btn:disabled {
  background: #f1f3f2;
  border-color: #f1f3f2;
  opacity: 1 !important;
  color: #476f667d;
}

.topRightButtons .btn:disabled img {
  filter: none;
  opacity: 0.5;
}

.printOn i.ri-printer-line {
  left: 0;
  font-size: 15px;
}

.printOn select {
  padding-left: 32px;
}

p.textStyle1 {
  font-size: 18px;
  color: #8b8b8b;
  font-weight: 700;
  font-family: "Roboto";
  margin: 0;
}

.text-right p,
.text-right h2 {
  text-align: right;
}

.text-left p,
.text-left h2 {
  text-align: left;
}

.textStyle2 {
  font-size: 24px;
  text-transform: uppercase;
  color: #8b8b8b;
  font-weight: 700;
  font-family: "Roboto";
  margin-bottom: 0;
}

.textStyle3 {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  font-family: "Roboto";
}

img.invLogo {
  max-width: 140px;
}

h2.invCompName {
  font-size: 24px;
  color: #000000;
  font-weight: 700;
  font-family: "Roboto";
  text-align: right;
}

.font-14 {
  font-size: 14px !important;
}

.invoiceGreenTable {
  align-items: center;
  display: flex;
  border-radius: 10px;
  height: 82px;
  background-color: #476f66;
  border: 1px solid #e5e9ee;
  color: #fff;
  overflow: hidden;
}

.invCol {
  padding: 20px 20px;
  flex: 1;
  border-right: 1px solid #577b73;
}

.invCol h2 {
  font-size: 18px;
  margin-bottom: 0;
}

.invCol h2 span {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  font-family: "Roboto";
}

.timeSheet {
  border: 1px solid #eee;
  height: 100%;
  max-height: 500px;
  overflow: auto;
}

.timeSheet h2 {
  font-size: 16px;
  line-height: 18px;
  color: #8b8b8b;
  font-weight: 700;
  font-family: "Roboto";
  padding: 16px;
  background: #eeeeee;
  margin: 0;
  position: sticky;
  top: 0;
}

.tdCardHeading {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  align-items: center;
  padding: 8px 16px;
}

.tdCardHeading i {
  color: #476f66;
  font-size: 16px;
}

.tsRightBtn {
  display: flex;
  gap: 13px;
}

.tdCardHeading p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #476f66;
  font-weight: 700;
  font-family: "Roboto";
}

.tdCardData p span {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: "Roboto";
  display: block;
}

.tdCardData p {
  font-size: 14px;
  flex: 1;
  color: #8b8b8b;
  font-weight: 700;
  font-family: "Roboto";
  text-align: left;
  margin: 0;
}

.tdCardData {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
}

.height100 {
  height: 100%;
}

.height500 {
  height: 500px;
}

.btnHeader p {
  margin: 0;
}

.btnHeader {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button.accordion-button {
  background: #eeeeee;
  border-radius: 0 !important;
  padding-left: 44px;
}

.accordion-item {
  border-radius: 0 !important;
  margin-bottom: 1px;
}

.accordion-button:not(.collapsed),
.accordion-button:focus,
.accordion-button:active {
  background: #eeeeee !important;
  box-shadow: none !important;
}


.accordion-button::after {
  content: "\ebc0";
  font-family: boxicons !important;
  position: absolute;
  left: 5px;
  background-image: none;
  font-size: 25px;
  top: 11px;
  color: #476f66;
}

.accordion-button:not(.collapsed)::after {
  content: "\eb8b";
  font-family: boxicons !important;
  position: absolute;
  left: 5px;
  background-image: none;
  font-size: 25px;
  top: 11px;
  transform: none;
  color: #476f66;
}

p.textStyle4 {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  font-family: "Roboto";
}

div#invoiceAccordian {
  height: 500px;
  overflow: auto;
}

.invoiTable tr th {
  background: #fff !important;
}

.totalDiv {
  border: 1px solid #eee;
  max-width: 460px;
  margin-left: auto;
}

.totalDiv p b {
  color: var(--GreenColor);
}

.totalDiv p {
  margin-bottom: 0;
  padding: 12px 16px;
  text-align: left;
  font-size: 18px;
  color: #8b8b8b;
  font-weight: 400;
  font-family: "Roboto";
}

.totalDiv hr {
  margin: 0;
  background: #eee;
  color: #eee;
  opacity: 1;
  border-width: inherit;
}

.paidBy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}

.paidBy img {
  max-width: 41px;
  margin: 0 8px;
}

.paidBy p {
  margin: 0;
}

.payOther p {
  margin-left: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--GreenColor);
  z-index:999;
}

.radioContainer .payOther {
  border: none;
  align-items: center;
  padding: 0;
  height: auto;
}

.payOther {
  display: flex;
  border: 1px solid var(--GreenColor);
  align-items: center;
  padding: 17px;
  height: 87px;
}

.uncheck {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #eee;
}

.payAmnt {
  position: absolute;
  left: 10px;
  display: flex;
  align-items: center;
}

.amountSelect {
  position: relative;
}

.amountSelect p.doll {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 800;
  border-right: 1px solid #ced4da;
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  width: 30px;
  margin: 0;
  color: #000;
}

.amountSelect input {
  padding: 0 36px;
  height: 38px;
  width: 190px;
}
.amountSelect .grey_color{
  background: #D3D3D3;
}
.amountSelect i {
  position: absolute;
  top: 6px;
  right: -28px;
  font-size: 18px;
  color: var(--GreenColor);
  width: 60px;
  z-index: 999;
  height: 55px;
  padding-left: 5px;
}

.payAmnt p {
  font-size: 14px;
  margin: 0;
  font-weight: 800;
  margin-right: 10px;
  color: var(--GreenColor);
}

#removePortal .modal-header {
  position: absolute;
  right: 0;
  z-index: 1;
}

label.switch p {
  position: absolute;
  left: 116%;
  top: -1px;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  font-family: "Roboto";
}
div#removePortal p {
  font-size: 16px;
}

p.paid {
  position: absolute;
  top: 15%;
  left: 50%;
  font-size: 86px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1ec59c;
  opacity: 0.102;
  transform: translateX(-50%) rotate(-23deg);
  pointer-events: none;
}

p.Unpaid {
  position: absolute;
  top: 15%;
  left: 43%;
  font-size: 86px;
  text-transform: uppercase;
  color: red;
  opacity: 0.2;
  transform: translateX(-50%) rotate(-23deg);
  pointer-events: none;
}

p.Partial {
  position: absolute;
  top: 15%;
  left: 43%;
  font-size: 86px;
  text-transform: uppercase;
  color: #FFC000;
  opacity: 0.2;
  transform: translateX(-50%) rotate(-23deg);
  pointer-events: none;
}

div#saveInvoice,
div#printInvoice {
  position: relative;
}


div.printInvoice {
  position: relative;
}

div#saveInvoice ul,
div#printInvoice ul {
  position: absolute;
  background: #fff;
  top: 35px;
  box-shadow: 0px 0px 20px -7px #919191;
  width: max-content;
  list-style: none;
  padding: 0 8px;
  z-index: 1;
  display: none;
}

div.printInvoice ul {
  position: absolute;
  background: #fff;
  top: 35px;
  box-shadow: 0px 0px 20px -7px #919191;
  width: max-content;
  list-style: none;
  padding: 0 8px;
  z-index: 1;
  display: none;
}


div#saveInvoice ul li:last-child,
div#printInvoice ul li:last-child {
  border: none;
}

div.printInvoice ul li:last-child {
  border: none;
}

div#saveInvoice ul li a,
div#printInvoice ul li a {
  color: #000;
}
div.printInvoice ul li a {
  color: #000;
}

div#saveInvoice ul li a:hover,
div#printInvoice ul li a:hover {
  color: var(--GreenColor);
}
div.printInvoice ul li a:hover {
  color: var(--GreenColor);
}

div#saveInvoice ul li,
div#printInvoice ul li {
  border-bottom: 1px solid #eee;
  padding: 10px;
}
div.printInvoice ul li {
  border-bottom: 1px solid #eee;
  padding: 10px;
}


div#saveInvoice ul:before,
div#printInvoice ul:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  top: -7px;
  box-shadow: 10px 10px 30px -9px grey;
}
div.printInvoice ul:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  top: -7px;
  box-shadow: 10px 10px 30px -9px grey;
}

.subMenu ul {
  display: block !important;
}

div#saveInvoice i.bi.bi-caret-down-fill,
div#printInvoice i.bi.bi-caret-down-fill {
  border-left: 1px solid;
  padding-left: 10px;
  height: 27px;
  display: flex;
  align-items: center;
}
div.printInvoice i.bi.bi-caret-down-fill {
  border-left: 1px solid;
  padding-left: 10px;
  height: 27px;
  display: flex;
  align-items: center;
}



/* ------------------------------ */

/* The radioContainer */
.radioContainer {
  display: block;
  position: relative;
  /* padding-left: 35px; */
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radioContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.rdCheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border-radius: 0;
  transform: none;
  border: 1px solid rgb(238, 238, 238);
}

/* On mouse-over, add a grey background color */
.radioContainer:hover input ~ .rdCheckmark {
  background-color: transparent;
}

/* When the radio button is checked, add a blue background */
.radioContainer input:checked ~ .rdCheckmark {
  background-color: transparent;
  border: 1px solid var(--GreenColor);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.rdCheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioContainer input:checked ~ .rdCheckmark:after {
  display: flex;
}
.mBRnone br {
  display: none;
}
/* Style the indicator (dot/circle) */
.radioContainer .rdCheckmark:after {
  top: 50%;
  left: 10px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #476f66;
  transform: translateY(-50%);
  content: "\f633";
  font-family: bootstrap-icons !important;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 3px 0 0 0;
}

.introjs-helperLayer {
  box-shadow: rgba(33, 33, 33, 0.8) 0px 0px 0px 0px, rgba(33, 33, 33, 0.5) 0px 0px 2px 5002px !important;
}

h1.introjs-tooltip-title {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  font-family: "Roboto";
}
.introjs-tooltip {
  min-width: 435px !important;
  border-radius: 10px !important;
}

.introjs-tooltipbuttons {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  gap: 10px;
  padding: 20px 0px;
  margin: 0 20px;
}
.introjs-arrow {
  display: none !important;
}

a.introjs-button.introjs-prevbutton:after{
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-image: url(/admin/assets/img/left-arrow.svg) !important;
  background: #fff;
}
a.introjs-button.introjs-nextbutton:after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-image: url(/admin/assets/img/right-arrow.svg) !important;
  background: #fff;
}
a.introjs-button.introjs-prevbutton,
a.introjs-button.introjs-nextbutton 
{
  padding: 0;
  font-size: 0;
  border: none;
}


.introjs-button:focus {
  box-shadow: none !important;
  border: none !important;
}


.introjs-helperNumberLayer {
  position: absolute;
  background: var(--GreenColor);
  color: #fff;
  display: flex;
  width: auto;
  left: 20px;
  bottom: 21px;
  border-radius: 50px;
  font-size: 14px;
  height: 26px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
}

.introjs-tooltip-header {
  border-bottom: 1px solid #eee;
  padding: 20px 0px;
  margin: 0 20px;
}
.introjs-tooltiptext {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  font-weight: 400;
  font-family: "Roboto";
}

a.introjs-skipbutton:hover{
  background: var(--GreenColor);
  color: #fff;
}
a.introjs-skipbutton {
  border-radius: 5px;
  background-color: #f5f4f7;
  top: 13px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
}

.introjs-tooltipbuttons:after{
  display: none;
}
.form-control.is-valid, .was-validated .form-control:valid, .form-control.is-invalid, .was-validated .form-control:invalid, .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"]{
	background:none;
}
.select2-container{
	z-index: 999999;
}
.navbar-nav .select2-container{
  max-width: 250px;
}
.topFilters .select2-container {
	z-index: 99;
}
.select2-container .select2-selection--single{
	height:35px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
	line-height:33px;
	color:#8b8b8b;
	font-size:14px;
	font-weight:500; 
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
	height:32px;
}
.select2-container--default .select2-selection--single .select2-selection__clear{
	height:32px;
}
.form-select-sm{ height:35px; }
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before{
	background-color: #476f66;
}
.mobFilter .select2-container{
	width:95% !important;
}
.active > .page-link, .page-link.active{
 color: #fff;	
}
#appendAuditDetail{
	height: 500px;
	overflow-y: scroll;
}
.sorting_disabled:before, .sorting_disabled:after{
	display:none !important;
}
/*
table.dataTable.nowrap th, table.dataTable.nowrap td{
	white-space: break-spaces;
}*/
div.dataTables_processing{
  border:none; background:none;
}
div.dataTables_processing > div:last-child > div{
  background: #26574d;
}
.mb-top-15{
  margin-top: 15px;
}
.mb-bottom-15{
 margin-bottom: 15px;
}
.mb-15{
  margin-bottom: 15px; margin-top: 15px;
}
.appendImages{
  width: 100%; height: 100px; margin-bottom: 15px; margin-top: 15px; float: left; overflow: scroll;
}
.appendImages img{
  margin-right: 10px;
  width: 150px !important;
  height: 150px !important;
}
.swal2-actions .swal2-cancel{
  margin-right: 20px;
}
.owl-theme .owl-dots{
  margin-top:15px;
}

.dashboard-due .owl-nav{
    position: absolute;
    right: 0;
    top: -25px;
}
.dashboard-due .owl-nav img{
    width:32px;
}
.slick-arrow{ width:32px; }
.slick-arrow.prev-arrow{ position:absolute; right:40px; top:0; z-index: 999; cursor: pointer;}
.slick-arrow.next-arrow{ position:absolute; right:0px; top:0; cursor: pointer;}

.account_no_pay{ text-align: center; margin: auto; margin-top: 17%; margin-bottom: 17%; }
.edit_img_icon{
  width: 18px !important;
  height: 18px !important;
  float: right;
  position: absolute;
  right: 0;
  cursor: pointer;
}
.dropzone{
  border:3px dashed rgba(0,0,0,.3);
  border-radius: 5px;
}
#appendAuditDetail h3{
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}
.form-row{ margin-top:10px; }
#invoiceSummary_wrapper .dt-row .col-md-12{
  overflow: auto;
}
#inputSname.form-select{ padding-top: 4px; }
#mass_other_card_section, #other_card_section{ margin-top:-20px; }
#invoiceTable .trash-btn{ position:absolute; right: 52px; top:175px; }
.removed_value{ cursor: pointer; }

#warning-message img {
 width:100%;
 max-width:100px
}
#warning-message p {
 font-size:18px;
 font-weight:700;
 margin-top:10px;
 text-transform:capitalize
}
#warning-message {
 display:none;
 padding:20px;
 height:100vh;
 width:100vw;
 justify-content:center;
 align-items:center;
 flex-direction:column;
 z-index:99999;
 position:relative
}
.green-text{
  color: var(--GreenColor);
}

.nested_boxes{ max-width:400px; margin:auto; padding:15px;}
.nested_boxes .form-row{
  border: 1px solid #bbb;
  padding: 10px;
}
.nested_boxes p{
  color:black;
}
.nested_boxes .form-row .form-group {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 12px 0;
}
.nested_boxes .form-row .form-group.active {
  background: #d9e2e1;
  padding: 10px;
  width: 100%;
}
.nested_boxes .form-row .form-group .nested_check_in {
  position: relative;
}
.nested_boxes .form-row .form-group .nested_check_in input {
  position: absolute;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  z-index: 99;
}
.nested_boxes .form-row .form-group .nested_check_in label::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: -1px;
  top: 2px;
}
.nested_boxes .form-row .form-group .nested_check_in label::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 0px;
  width: 10px;
  height: 17px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  display: none;
}
.nested_boxes .form-row .form-group .nested_check_in label {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  color: #575757;
}
.nested_boxes .form-row .form-group .nested_check_in input:checked ~ label::before {
  opacity: 1;
  display: block;
}
.nested_boxes .form-row .form-group .nested_check_in input:checked ~ label::after {
  opacity: 0;
}
.conveince_fees{
  font-size: 13px;
}
.payAmnt .conveince_fees{
  position: absolute;
  top: 45px;
  width: 125%;
  font-weight: bold;
  display: flex;
}
.select2-container--default .select2-results > .select2-results__options{
  max-height: 400px;
}


.barHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.barText h3 {
  font-size: 18px;
  line-height: 20px !important;
  font-weight: 600;
  color: #000;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}

.barText span {
  font-size: 11px;
  color: #8b8b8b;
}

.barNum h2 {
  font-size: 24px;
  color: #000000;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}

.progress-bar {
  border-radius: 0.375rem;
}

.mrsBars.mb-3 {
  margin-bottom: 30px !important;
}

.greenTitle {
  font-size: 14px;
  margin: 0;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  color: var(--GreenColor);
}

.bigNum.f24 {
  font-size: 24px;
  margin: 0;
}

.bigNum {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  margin: 6px 0;
}

p.timePeriod {
  font-size: 14px;
  text-align: left;
  margin: 0;
}

.with_Outline .line {
  height: 100px;
  margin: 0 18px;
}

.line {
  width: 1px;
  height: 100%;
  background: #e5e9ee;
  margin: 0 auto;
}

.subCard {
  position: relative;
  margin-top: 10px;
}

.headRight button:active,
.headRight button {
  border: none;
  background: none !important;
}

.subCard .clientNum {
  margin: 0;
  font-size: 30px;
}

.barText h3 {
  color: #476f66;
}

.pgreen {
  color: #476f66 !important;
}

.form-check label {
  cursor: pointer;
}

.deltsNums p {
  margin: 0;
}

.deltsNums h2 {
  font-size: 20px;
  margin: 0;
  color: #7f7f7f;
}

.deltsNums {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;

}

.deltsNums .badge.plus {
  background: #d1f3ea;
  border-color: #d1f3ea;
  min-width: auto;
}

.deltsNums .badge.minus {
  background: #f1dbdb;
  border-color: #f1dbdb;
  min-width: auto;
}

.rightPopups .modal-content {
  border-radius: 0;
  border: 0 !important;
  /* height: 100%; */
}

.rightPopups .dataTables_scrollBody {
  border: 1px solid #dee2e6;
}

.with_Outline .subCard {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.with_Outline {
  border: 1px solid #dee2e6;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  /* height: 100px; */
}

.rightPopups .modal-dialog {
  background: #fff;
}

.rightPopups.max600 .modal-dialog {
  max-width: 600px !important;
}

.rightPopups.max900 .modal-dialog {
  max-width: 920px !important;
}

.rightPopups.max440 .modal-dialog {
  max-width: 440px !important;
}

.rightPopups .modal-dialog {
  max-width: 910px !important;
  height: 100vh !important;
  margin-left: auto !important;
  margin: 0;
}

.modal.fade.rightPopups .modal-dialog {
  transform: translate(125%, 0px);
}

.modal.show.rightPopups .modal-dialog {
  transform: none;
}

.modal .dataTables_scrollHeadInner {
  width: 100% !important;
}

.modal table.table.display.nowrap.dataTable.no-footer {
  width: 100% !important;
}

.rightPopups .modal-header {
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 13px;
}

.rightPopups .badge {
  min-width: 130px;
}

.rightPopups .fillLeft select {
  width: 100%;
  max-width: 250px;
}

.weekBill .bigNum {
  font-size: 20px;
}

.weekBill .greenTitle {
  font-size: 12px;
}

.vsDiv {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vsDiv select {
  width: 150px;
}

.radioSec input {
  margin-right: 10px;
}

.radioSec {
  display: flex;
  align-items: center;
  gap: 16px;
}

.firstFilter select {
  width: 300px;
}

.firstFilter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sCheck input {
  margin-right: 6px;
}

.viewChange .nav-link img {
  margin-right: 6px;
}

.viewChange .nav-pills .nav-link.active img {
  filter: invert(1);
}

.modal-body hr {
  margin: 0;
  border-color: #dee2e6;
  height: 1px;
  opacity: 1;
}

.viewChange .nav-link {
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid #dde1e5;
  color: #000;
  padding: 5px 16px;
}

.viewChange .nav-pills .nav-link.active {
  background: var(--GreenColor);
  color: #fff;
}

.viewChange .nav-pills {
  justify-content: flex-end;
  gap: 10px;
  border: none;
  z-index: 2;
}

.list_view_card {
  border-radius: 10px;
  background-color: #fefefe;
  border: 1px solid #e5e9ee;
  padding: 10px;
  height: 340px;
  overflow-x: hidden;
  overflow-y: auto;
}

h2.lvHeading {
  font-size: 14px;
  color: var(--GreenColor);
  font-weight: 700;
  font-family: "Roboto";
}

.singleRep h3 {
  font-size: 12px;
  line-height: 18px;
  color: #476f66;
  font-weight: 700;
  font-family: "Roboto";
}

.row.singleRep p {
  opacity: 0.502;
  font-size: 14px;
  margin: 0;
  color: #000000;
  font-weight: 700;
  font-family: "Roboto";
}

.row.singleRep h2 {
  font-size: 14px;
  color: #020000;
  font-weight: 700;
  font-family: "Roboto";
  text-align: right;
  justify-content: flex-end;
}

.singleRep {
  margin-top: 10px;
}

.lvHeader p {
  font-size: 14px;
  color: #020000;
  font-weight: 400;
  font-family: "Roboto";
  margin: 10px 0 0 0;
}

.lvHeader button {
  padding: 10px 0px;
  font-size: 12px;
  color: #020000 !important;
  font-weight: 400 !important;
  font-family: "Roboto";
  text-align: right;
  margin: 0;
  float: right;
}

/* .lvHeader {
  padding: 10px 0;
} */
.weekBill .dropdown-menu-arrow::before,
.lvHeader .dropdown-menu-arrow::before {
  border-color: var(--GreenColor);
}


.lvHeader ul li a {
  padding: 6px 8px !important;
}

.viewChange {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.weekBill .dropdown button {
  border: 1px solid var(--GreenColor);
  font-size: 12px;
  height: 35px;
}

.filterBtn {
  border: 1px solid var(--GreenColor) !important;
  padding: 2px 6px;
  font-size: 14px;
  display: flex;
  color: var(--GreenColor) !important;
  align-items: center;
  gap: 8px;
  height: 36px;
}
.filterBtn img {
  width: 16px;
}


.detFilter hr {
  margin-top: 20px;
}

.vsDiv div {
  display: flex;
  gap: 10px;
}