/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Nunito-Regular";
  src: url(../font/Nunito-Regular.ttf);
}

@font-face {
  font-family: "Nunito-medium";
  src: url(../font/Nunito-Medium.ttf);
}

@font-face {
  font-family: "Nunito-Bold";
  src: url(../font/Nunito-Bold.ttf);
}

@font-face {
  font-family: "Nunito-SemiBold";
  src: url(../font/Nunito-SemiBold.ttf);
}

.mb-20 {
  margin-bottom: 1.25rem;
}
.mb-10 {
  margin-bottom: 10px;
}

html {
  font-size: 16px;
}

body {
  font-family: "Nunito-Regular";
  background: #ffffff;
  color: #000000;
}

.main-bg::before {
  content: "";
  background: url(../img/bakground-img.png);
  position: fixed;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.main-bg::before {
  z-index: -1;
  /* This sends the background behind everything */
}

.logo {
  position: relative;
  z-index: 1;
  /* Brings logo above the background */
}

a {
  color: #000000;
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

.pad_15 {
  padding: 1rem;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 7.5rem;
  padding: 0.625rem 1.25rem;
  transition: all 0.2s;
  transition: margin-left 0.3s ease;
}


@media (max-width: 1199px) {
  #main {
    padding: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/

.pagetitle h1 {
  font-family: "Nunito-Bold";
  font-size: 1.75rem;
  line-height: normal;
  margin-bottom: 0;
  color: #000000;
}

.filter-btn {
  position: relative;
  font-family: "Nunito-regular";
  font-size: 1rem;
  line-height: normal;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 7px;
  padding: 5px 10px;
}

.filter-btn:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #000;
}

.delete-btn {
  position: relative;
  font-family: "Nunito-regular";
  font-size: 1rem;
  line-height: normal;
  color: #FF0000;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 7px;
  padding: 5px 10px;
}

.delete-btn:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #FF0000;
}


.delete-btn-milestone {
  position: relative;
  font-family: "Nunito-regular";
  font-size: 1rem;
  line-height: normal;
  color: #FF0000;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 7px;
  padding: 5px 10px;
}

.delete-btn-milestone:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #FF0000;
}

.delete-btn-sub {
  position: relative;
  font-family: "Nunito-regular";
  font-size: 1rem;
  line-height: normal;
  color: #FF0000;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 7px;
  padding: 5px 10px;
}

.delete-btn-sub:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #FF0000;
}

.delete-btn-project {
  position: relative;
  font-family: "Nunito-regular";
  font-size: 1rem;
  line-height: normal;
  color: #FF0000;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 7px;
  padding: 5px 10px;
}

.delete-btn-project:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #FF0000;
}

.delete-btn-task {
  position: relative;
  font-family: "Nunito-regular";
  font-size: 1rem;
  line-height: normal;
  color: #FF0000;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 7px;
  padding: 5px 10px;
}

.delete-btn-task:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #FF0000;
}



/*--------------------------------------------------------------
# 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: 1.5rem;
  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: 0.938rem;
  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: 0.875rem;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 1.125rem;
  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: 15px;
  border-radius: 5px;
  border: 1px solid #cfcfcf;
  overflow: hidden;
}

.card-header,
.card-footer {
  border-color: #cfcfcf;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding-bottom: 15px;
  margin-bottom: 0px;
  font-size: 2rem;
  color: #000000;
  font-family: "Nunito-Bold";
}

.card-title span {
  color: #899bbd;
  font-size: 0.875rem;
  font-weight: 400;
}

.card-body {
  padding: 15px;
}

.card-body2 {
  padding: 0px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
}

/* 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: #000000;
  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: #000000;
  font-size: 0.938rem;
}

/* 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: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo img {
  max-width: 180px;
  margin-bottom: 30px;
}

.logo span {
  font-size: 1.625rem;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", 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: #fff;
  padding: 20px;
}

.header .toggle-sidebar-btn {
  font-size: 2rem;
  padding-left: 10px;
  cursor: pointer;
  color: #000000;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 1.375rem;
  color: #000000;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #000000;
  font-size: 0.875rem;
  font-family: "Nunito-regular";
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 0.875rem;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 0.75rem;
  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: 1.5rem;
}

.header-nav .notifications .notification-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 0.813rem;
  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: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 0.813rem;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 1.125rem;
  margin-bottom: 0;
  font-weight: 600;
  color: #000000;
}

.header-nav .profile .dropdown-header span {
  font-size: 0.875rem;
  color: #333333;
}

.header-nav .profile .dropdown-item {
  font-size: 0.875rem;
  padding: 10px 15px;
  transition: 0.3s;
  color: #333333;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 1.125rem;
  line-height: 0;
  color: #333333;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 996;
  padding: 10px 15px;
  overflow-y: auto;
  background-color: #F1F3F4;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

.sidebar-open {
  margin-left: 250px !important;
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin: 0px 5px;
}

.sidebar-nav .nav-heading {
  font-size: 0.688rem;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 0.938rem;
  font-weight: 600;
  color: #000000;
  padding: 5px 10px;
  border-radius: 5px;
  background: #D5D9DF;
}

.sidebar-nav .nav-link i {
  font-size: 1rem;
  margin-right: 10px;
  color: #000000;
}

.sidebar-nav .nav-link.collapsed {
  color: #000000;
  background: transparent;
}

.sidebar-nav .nav-link.collapsed i {
  color: #000000;
}

.sidebar-nav .nav-link:hover {
  color: #000000;
  background: #D5D9DF;
}

.sidebar-nav .nav-link:hover i {
  color: #000000;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
  margin-left: 5px;
  z-index: 1;
}

.sidebar-nav .nav-content {
  padding: 10px;
  margin: 11px 0 0 0;
  list-style: none;
  position: fixed;
  left: 0;
  background: #F1F3F4;
  height: 100%;
  width: 250px;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  padding: 8px;
}

.sidebar-nav .nav-content a i {
  font-size: 0.375rem;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #000000;
  background: #D5D9DF;
  border-radius: 5px;
}

.sidebar-nav .nav-content a.active i {
  background-color: #FE9F43;
}

.sidebar-nav .nav-content .reports-menu {
  padding: 0px 15px 0px 20px;
  margin: 0;
}

.sidebar-nav .nav-content a .bi-chevron-down {
  font-size: 0.75rem;
}

/*--------------------------------------------------------------
# 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: 1rem;
}

.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: 0.875rem;
  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: 1.75rem;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 2rem;
  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: 0.875rem;
}

.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: 0.688rem;
  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: 0.938rem;
  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: 0.875rem;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 0.875rem;
}

.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: 0.875rem;
}

.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: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .col-xl-4 .card {
  border: 0;
}

.profile .col-xl-8 .card {
  margin-bottom: 0;
}

.profile .profile-card {
  background-color: #F1F3F4;
}

.profile .profile-card img {
  max-width: 120px;
}

.profile .tab-content {
  border-top: 0;
  margin-top: 0;
}

.profile .profile-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 1.125rem;
  color: #333333;
}

.profile .profile-card .social-links a {
  font-size: 1.25rem;
  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: 0.938rem;
}

.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: 1.125rem;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 2.5rem;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 1.25rem;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 0.875rem;
  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: 0.875rem;
  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-content-box {
  position: relative;
  padding: 30px;
  background-color: #fff;
  width: 100%;
  max-width: 650px;
  margin: auto;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.error-404 h1 {
  font-size: 10rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.error-404 .btn {
  position: relative;
  font-family: "Nunito-Medium";
  font-size: 1rem;
  line-height: normal;
  color: #fff;
  border-radius: 7px;
  padding: 8px 12px;
  background-color: #000;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 0.875rem;
  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: 0.813rem;
  color: #012970;
}



/*--------------------------------------------------------------
# new-css
--------------------------------------------------------------*/
.form-label {
  position: relative;
  font-family: "Nunito-Regular";
  font-size: 1rem;
  line-height: normal;
  color: #000000;
  margin-bottom: 5px;
}

.form-control {
  position: relative;
  border: 1px solid #cfcfcf;
  font-family: "Nunito-Regular";
  font-size: 1rem;
  color: #333333;
  padding: 12px 15px;
  border-radius: 7px;
}

.form-select {
  position: relative;
  border: 1px solid #cfcfcf;
  font-family: "Nunito-Regular";
  font-size: 1rem;
  color: #333333;
  padding: 12px 15px;
  border-radius: 7px;
}

.form-group {
  margin-bottom: 15px;
}

.form-check-label {
  font-family: "Nunito-Regular";
  line-height: normal;
  font-size: 1rem;
  color: #333333;
}

.signin-btn {
  position: relative;
  background-color: #000000;
  color: #ffffff;
  font-family: "Nunito-bold";
  line-height: normal;
  font-size: 1rem;
  padding: 12px 15px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
}

.form-check-input {
  border-radius: 2px;
  border: 1px solid #cfcfcf;
  height: 14px;
  width: 14px;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pwd-check {
  font-family: "Nunito-Regular";
  line-height: normal;
  font-size: 1rem;
  color: #333333;
}

/*--------------------------------------------------------------
# new-css (header-sidebar)
--------------------------------------------------------------*/
.header-logo img {
  max-height: 40px;
}

/* .sidebar-nav .nav-content-sidebar :hover {
  color: #FE9F43;
  background-color: transparent !important;
} */
.sidebar-nav .nav-content-sidebar li a:hover {
  color: #FE9F43;
  background-color: transparent !important;
}

.nav-content-sidebar li a:hover i {
  color: #FE9F43;
  background-color: transparent !important;
}

.action-btn {
  position: relative;
  display: flex;
  gap: 10px;
}

.view-icon {
  position: relative;
  font-size: 1rem;
  color: #58AFFF;
  border: 1px solid #58AFFF;
  border-radius: 3px;
  padding: 5px;
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.view-icon:hover {
  background-color: #58AFFF;
  border: 1px solid #58AFFF;
  color: #fff;
}

.edit-icon {
  position: relative;
  font-size: 1rem;
  color: #37B663;
  border: 1px solid #37B663;
  border-radius: 3px;
  padding: 5px;
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.edit-icon:hover {
  background-color: #37B663;
  border: 1px solid #37B663;
  color: #fff;
}

.delete-icon {
  position: relative;
  font-size: 1rem;
  color: #FF0000;
  border: 1px solid #FF0000;
  border-radius: 3px;
  padding: 5px;
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.delete-icon:hover {
  background-color: #FF0000;
  border: 1px solid #FF0000;
  color: #fff;
}


.delete-icon-milestone {
  position: relative;
  font-size: 1rem;
  color: #FF0000;
  border: 1px solid #FF0000;
  border-radius: 3px;
  padding: 5px;
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.delete-icon-milestone:hover {
  background-color: #FF0000;
  border: 1px solid #FF0000;
  color: #fff;
}


.download-icon {
  position: relative;
  font-size: 1rem;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 3px;
  padding: 5px;
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.download-icon:hover {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
}

.status-check {
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Nunito-Bold';
}

.status-fill-1 {
  position: relative;
  font-size: 0.375rem;
  background: #0000FF;
  width: 14px;
  height: 14px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  border: 4px solid #BFBFFf;
}

.status-fill-2 {
  position: relative;
  font-size: 0.375rem;
  background: #FF0000;
  width: 14px;
  height: 14px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  border: 4px solid #FFBFBF;
}

.status-fill-3 {
  position: relative;
  font-size: 0.375rem;
  background: #008000;
  width: 14px;
  height: 14px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  border: 4px solid #BFDFBF;
}

.status-fill-4 {
  position: relative;
  font-size: 0.375rem;
  background: #FFA500;
  width: 14px;
  height: 14px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  border: 4px solid #FFE8BF;
}

.pdf-icon {
  position: relative;
  color: #DD2025;
}

.devider-line {
  position: relative;
  border: 1px solid #cfcfcf;
  width: 100%;
}

.save-btn {
  position: relative;
  font-family: "Nunito-Medium";
  font-size: 1rem;
  line-height: normal;
  color: #fff;
  border-radius: 7px;
  padding: 8px 12px;
  background-color: #000;
  border: 1px solid #000;
}

.cancel-btn {
  position: relative;
  font-family: "Nunito-Medium";
  font-size: 1rem;
  line-height: normal;
  color: #000;
  border-radius: 7px;
  padding: 8px 12px;
  background-color: #fff;
  border: 1px solid #000;
}

.page-link {
  padding: 5px 10px;
  position: relative;
  color: #333;
  background-color: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
}

.page-item:first-child .page-link {
  position: relative;
  color: #333;
  background-color: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
}

.active>.page-link,
.page-link.active {
  position: relative;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 5px;
}

.page-item:last-child .page-link {
  position: relative;
  color: #333;
  background-color: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
}

.status-btn {
  position: relative;
  color: #FF0000 !important;
  background-color: #FFE5E5;
  padding: 4px 20px;
  border-radius: 5px;
}

.status-btn-2 {
  position: relative;
  color: #A020F0;
  background-color: #F5E9FD;
  padding: 4px 20px;
  border-radius: 5px;
}

.status-btn-3 {
  position: relative;
  color: #008000;
  background-color: #E5F2E5;
  padding: 4px 20px;
  border-radius: 5px;
}

.modal-title {
  position: relative;
  font-family: "Nunito-Bold";
  font-size: 1.125rem;
  line-height: normal;
  color: #000;
}

.btn-close {
  position: relative;
  font-size: 1.125rem;
  color: #000;
  opacity: 1;
}

.btn-close:hover {
  opacity: 1;
}

.modal-dialog {
  margin: 0;
  margin-left: auto;
  padding: 15px 15px 15px 15px;
}

.modal-content {
  border-radius: 10px;
  height: 95vh;
  overflow: auto;
}

.modal-header {
  border-bottom: 1px solid #cfcfcf;
}

.view-cll-box {
  flex: 0 0 auto;
  width: 20%;
}

.view-data-table {
  width: 100%;
}

.view-data-table td {
  position: relative;
  font-family: "Nunito-Regular";
  font-size: 1rem;
  line-height: normal;
  color: #333;
  padding-bottom: 15px;
  vertical-align: baseline;
}

.view-data-table td span {
  position: relative;
  font-family: "Nunito-SemiBold";
  font-size: 1rem;
  line-height: normal;
  color: #000;
  white-space: nowrap;
}

.nav-pills {
  position: relative;
  gap: 10px;
  padding: 15px 15px 0px 15px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #000;
  color: #fff;
}

.nav-pills .nav-link {
  position: relative;
  font-family: "Nunito-regular";
  font-size: 1rem;
  line-height: normal;
  background-color: #fff;
  color: #000;
  border: 1px solid #cfcfcf;
  padding: 10px 15px;
  border-radius: 7px;
}

.tab-content {
  border-top: 1px solid #cfcfcf;
  margin-top: 15px;
}

.pagination li {
  margin: 0px 5px;
}

.add-task-btn {
  position: relative;
  font-family: "Nunito-regular";
  font-size: 1rem;
  line-height: normal;
  color: #000;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  padding: 5px 10px;
}

.add-task-btn:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #000;
}

.hidden {
  display: none;
}

/*--------------------------------------------------------------
# tree-folder css
--------------------------------------------------------------*/
.tree-file {
  padding-left: 0;
  margin-top: 1rem;
}

.tree-folder {
  cursor: pointer;
}

.folder-body {
  padding-left: 1rem;
  display: none;
}

.tree-file li {
  position: relative;
  list-style: none;
  padding-top: 10px;
}

.photo-img-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.img-icon-btn {
  position: relative;
  display: flex;
  gap: 10px;
}

.img-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-content span {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.bi-folder-fill::before {
  position: relative;
  color: #FE9F43;
}

.active {
  display: block;
}

/*--------------------------------------------------------------
# delete-modal css
--------------------------------------------------------------*/
.delete-modal .delete-btn {
  color: #fff;
  background: #FF0000;
  padding: 8px 12px;
}

.delete-modal .delete-btn-milestone {
  color: #fff;
  background: #FF0000;
  padding: 8px 12px;
}


.delete-modal .delete-btn-sub {
  color: #fff;
  background: #FF0000;
  padding: 8px 12px;
}



.delete-modal .modal-header {
  background-color: #FF313A;
}

.delete-modal .modal-content {
  height: auto;
}

.delete-modal .modal-dialog {
  margin: auto;
}

.delete-modal .modal-title {
  position: relative;
  font-family: "Nunito-Bold";
  font-size: 1.125rem;
  color: #fff;
}

.delete-modal .btn-close {
  filter: brightness(0) invert(1);
}

.delete-modal .modal-footer {
  justify-content: center;
  border-top: 1px solid #cfcfcf;
}

.modal-p {
  position: relative;
  font-family: "Nunito-Regular";
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 0;
  text-align: center;
}

/*--------------------------------------------------------------
# project-info-toggle css
--------------------------------------------------------------*/
.project-info-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.project-info-toggle .form-label {
  position: relative;
  font-family: "Nunito-SemiBold";
  font-size: 1.125rem;
  line-height: normal;
  color: #000;
  margin-bottom: 0;
}

.view-project-infocontent {
  display: none;
  margin-top: 15px;
}

.upload-photos-box {
  position: relative;
  background-color: #F1F3F4;
  border-radius: 7px;
  width: 100%;
  padding: 20px 0px;
  text-align: center;
}

.status-btn-4 {
  position: relative;
  color: #fff;
  background-color: #58AFFF;
  border: 1px solid #58AFFF;
  padding: 4px 20px;
  border-radius: 5px;
}

.photos-box {
  position: relative;
  border: 1px solid #cfcfcf;
  padding: 10px 20px;
  border-radius: 7px;
  margin-top: 15px;
}

.photos-accordion {
  position: relative;
  padding: 15px;
}

.photos-accordion .accordion-item {
  position: relative;
  background-color: #fff;
  border: 1px solid #cfcfcf !important;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
}

.photos-accordion .accordion-button {
  padding: 0;
}

.photos-accordion .accordion-body {
  padding: 0;
}

/*--------------------------------------------------------------
# project-budget css
--------------------------------------------------------------*/
.budget-cardbox {
  padding: 15px;
}

.budget-bodybox {
  border-radius: 5px;
  border: 1px solid #cfcfcf;
}

.budget-bodybox .tab-content {
  border-top: 0;
  margin-top: 0;
}

.qty-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 5px 10px;
  width: fit-content;
}

.qty-btn {
  border: none;
  background-color: white;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 4px 8px;
}

.qty-input {
  width: 30px;
  text-align: center;
  font-size: 1rem;
  border: none;
  background: transparent;
}

.qty-input:focus {
  outline: none;
}

.edit-unitrate-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
}

.budget-table {
  margin-bottom: 0;
}

.budget-table .form-control,
.budget-table .form-select {
  min-width: 150px;
}

.budget-table th {
  box-sizing: content-box;
  background: #F1F3F4;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  color: #000;
  font-size: 1rem;
  font-family: "Nunito-SemiBold";
  padding: 10px 20px;
  vertical-align: middle;
}

.budget-table td {
  vertical-align: middle;
  padding: 10px 20px;
}

.photos-accordion .budeget-item-box {
  padding: 15px 0px;
}

.budeget-item-box .accordion-header {
  padding: 0px 15px;
}

.budeget-item-box .accordion-button:not(.collapsed) {
  padding-bottom: 15px;
}

.budget-total-box {
  width: 100%;
  text-align: end;
  padding-right: 15px;
  padding-top: 15px;
}

.budget-total-box tr:last-child td {
  padding-bottom: 0;
}

.pad-15 {
  padding-top: 15px;
  padding-right: 15px;
}

.budget-total-summarybox {
  position: relative;
  width: auto;
  min-width: 20%;
  padding: 15px 30px 0px 0px;
}

.budgettotal-amount {
  position: relative;
  font-size: 1.125rem;
}

.purchase-order-box {
  position: relative;
  border: 1px solid #cfcfcf;
  border-radius: 7px;
}

.scheduletemplate-tablebox{
  position: relative;
  border-left: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf;
}

/*--------------------------------------------------------------
# invoice-css
--------------------------------------------------------------*/
.invoice-gridpreview-box {
  overflow: auto;
}

.invoice-gridpreview-box .col-lg-4 {
  flex: 0 0 auto;
  width: auto;
}

.invoice-logo {
  position: relative;
  max-width: 200px;
}

.invoice-headtext {
  position: relative;
  color: #000;
  font-size: 1.125rem;
  font-family: "Nunito-SemiBold";
  margin-bottom: 0;
}

.invoice-subtext {
  position: relative;
  color: #333333;
  font-size: 1.125rem;
  font-family: "Nunito-Regular";
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# editor-css
--------------------------------------------------------------*/
.ql-toolbar.ql-snow {
  border: 1px solid #E6E6E6;
  background-color: #ECEDF0;
  border-radius: 5px 5px 0px 0px;
  padding: 10px 20px;
}

.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background-color: #fff;
  border: 1px solid #CECECE;
  border-radius: 3px;
  margin-right: 5px;
}

.ql-toolbar.ql-snow .ql-formats {
  margin-right: 0;
}

.ql-snow .ql-picker.ql-header {
  display: none;
}

.ql-snow .ql-stroke {
  stroke: #000;
}

.ql-container {
  min-height: 100px;
}

.ql-container.ql-snow {
  border: 1px solid #E6E6E6;
  border-radius: 0;
}

.note-entry {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.note-initials {
  background: #FE9F43;
  color: #000000;
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.note-content {
  flex: 1;
}

.note-actions {
  font-size: 1rem;
  margin-top: 10px;
  font-family: "Nunito-SemiBold";
}

.note-actions .edit {
  color: #008000;
  margin-right: 10px;
}

.note-actions .delete {
  color: #FF0000;
}

.note-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #f5f5f5;
}

.attach-files {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  color: #333333;
  font-size: 1.125rem;
}

.attach-file-icon {
  background-color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 3px;
  border: 1px solid #CECECE;
  display: flex;
  justify-content: center;
  align-items: center;
}

.attach-files i {
  margin-right: 8px;
}

.action-buttons {
  text-align: right;
  padding: 10px;
}

.note-button {
  background: black;
  color: #ffffff;
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 8px;
}

.cancel-button {
  padding: 6px 14px;
  border: 1px solid #CECECE;
  border-radius: 4px;
  cursor: pointer;
}

.pro-img {
  position: relative;
  max-width: 36px;
}

.view-project-infocontent .view-data-table tr td:first-child {
  width: 180px;
}

/* CSS For Drag & DROP plugin*/
.upload-container {
  position: relative;
  background-color: #F1F3F4;
  border-radius: 7px;
  width: 100%;
  padding: 20px 15px;
  text-align: center;
  margin-top: 10px;
}

.upload-container .jFiler-theme-dragdropbox {
  text-align: center;
}

.upload-container .jFiler-theme-dragdropbox .jFiler-input-caption {
  margin-bottom: 10px;
}

.upload-container .jFiler-theme-dragdropbox .jFiler-input-caption span {
  position: relative;
  font-size: 1rem;
  color: #000;
  font-family: "Nunito-Regular";
}

.upload-container .jFiler-theme-dragdropbox .jFiler-input-button {
  cursor: pointer;
  position: relative;
  font-size: 1rem;
  font-family: "Nunito-Regular";
  color: #fff;
  background-color: #58AFFF;
  border: 1px solid #58AFFF;
  padding: 4px 20px;
  border-radius: 5px;
  display: inline-block;
}

.required-field::after {
  content: " *";
  color: red;
}

.datatable-overflow {
  overflow: auto;
}

.addon-datatable-ele {
  display: inline;
  margin-left: 10px;
  margin-right: 10px;
}

.project-infobox {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}

.project-infobox h6 {
  position: relative;
  font-family: "Nunito-SemiBold";
  font-size: 1rem;
  line-height: normal;
  color: #000;
  white-space: nowrap;
  margin-bottom: 10px;
}

.project-infobox p {
  position: relative;
  font-family: "Nunito-Regular";
  font-size: 1rem;
  line-height: normal;
  color: #333;
  vertical-align: baseline;
  margin-bottom: 10px;
}

/*invoice expand start */

.invoice-preview-box .invoice-row {
  cursor: pointer;
  transition: background-color 0.2s;
}

.invoice-preview-box .invoice-row:hover {
  background-color: #f8f9fa;
}

.invoice-preview-box .invoice-row.selected {
  background-color: #e9ecef;
}

.invoice-preview-box .invoice-preview-container {
  display: none;
}

.invoice-preview-box .invoice-preview-container.active {
  display: block;
}

.invoice-preview-box .no-preview-message {
  padding: 2rem;
  text-align: center;
  color: #6c757d;
}

.invoice-preview-box .table-container-col {
  transition: all 0.3s ease;
}

.invoice-preview-box .preview-container-col {
  display: none;
  transition: all 0.3s ease;
}

.invoice-preview-box .preview-container-col.active {
  display: block;
}

@media (min-width: 992px) {
  .invoice-preview-box .preview-container-col.active {
    display: block;
    flex: 0 0 auto;
    width: 50%;
  }

  .invoice-preview-box .table-container-col.preview-active {
    flex: 0 0 auto;
    width: 50%;
  }
}

.invoice-preview-box .close-preview {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #6c757d;
  z-index: 10;
}

.invoice-preview-box .close-preview:hover {
  color: #000;
}

/* Prevent flash of unstyled content */
.invoice-preview-box .d-flex-invoices {
  display: flex;
  overflow: hidden;
}

.invoice-preview-box .d-flex-invoices .col-lg-6 {
  display: flex;
  padding: 0px 10px;
}

.invoice-preview-box #previewContainer {
  display: none;
}

.invoice-preview-box #previewContainer.active {
  display: block;
}

/*invoice expand end */
.wrapped-text {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
}


.budget-total-top {
  position: absolute;
  right: 30px;
}

.accordion-flush .accordion-button:not(.collapsed) {
  color: #000;
}

.mark-up-input {
  padding: 5px 10px;
  max-width: 100px;
  margin-left: auto;
}


.daily-surveys-p-text {
  position: relative;
  font-family: "Nunito-Regular";
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
}

.daily-sur-sectionhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 15px 15px 0px;
}

.daily-sur-sectionhead .info-box {
  display: inline-block;
  background: #D5D9DF;
  border: 0;
  border-radius: 100px;
  padding: 6px 10px;
  font-size: 14px;
  color: #000;
}

.daily-uploadfile-text {
  position: relative;
  font-family: "Nunito-Regular";
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

.k-button-solid-base.k-selected {
  background-color: #000 !important;
  border-color: #000 !important;
}

.prior-modal {
  z-index: 1100 !important;
}

div.dataTables_wrapper div.dataTables_processing {
  margin-top: unset !important;
}

table thead span.sort-arrow {
  /* display: none!important; */
  opacity: 0 !important;
}

.page-item:last-child .page-link:hover{
  color: #fff;
  border: 1px solid #fff;
  background: #000;
}
.page-item:first-child .page-link:hover{
  color: #fff;
  border: 1px solid #fff;
  background: #000;
}
.cancel-btn:hover{
  color: #fff;
  border: 1px solid #fff;
  background: #000;
}
.save-btn:hover{
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}

/* dashboard css */
.dash-top-box{
  background: #f1f3f4;
}
.dash-top-box .card-title{
  padding-bottom: 5px;
  font-size: 1.5rem;
}
.dash-top-box .card-text{
  color: #333;
  margin-bottom: 0;
  font-size: 16px;
}
.dash-top-box .right-label-box{
  color: #fff;
  font-size: 16px;
  background: #1cc88a;
  padding: 5px 10px;
  margin-bottom: 5px;
  border-radius: 5px;
} 
.dash-top-box .top-flex-box{
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ongoing-project-title{
  padding-bottom: 0;
  margin-bottom: 0;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
}
.activity-card-header {
  background: #fff;
  padding: 1rem;
  border-bottom: 1px solid #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.activity-badge {
  background: #000;
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}
.activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.activity-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #cfcfcf;
  cursor: pointer;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.activity-icon {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}
.activity-action {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 5px;
  color: #000;
}
.activity-desc {
  color: #333;
  font-size: 1rem;
  margin-bottom: 5px;
}
.activity-time {
  display: inline-block;
  align-items: center;
  color: #008000;
  font-size: 1rem;
}
.activity-time i {
  margin-right: 0.35rem;
}
.activity-list .activity-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.activity-empty {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 5px;
  color: #000;
  text-align: center;
}
.activity-card-footer {
  padding: 1rem;
  background: #f1f3f4;
  text-align: center;
  border-top: 1px solid #cfcfcf;
}
.activity-view-all {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}
.activity-view-all i {
  margin-left: 0.5rem;
}

.stat-card {
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: none;
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 100%;
  border: 1px solid #cfcfcf;
  margin-bottom: 0;
}
.stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #cfcfcf;
}
.stat-label {
  font-size: 1.3rem;
  line-height: normal;
  color: #000;
  font-weight: 500;
}
.stat-number {
  font-size: 1.5rem;
  line-height: normal;
  font-weight: 700;
}
.stat-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.3rem;
  padding: 10px;
  border-radius: 100px;
  color: #fff;
}
.stat-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stat-item small {
  position: relative;
  font-size: 1rem;
  line-height: normal;
  color: #333;
}
.badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
  border-radius: 100px;
  padding: 5px;
}
/* PRIMARY (Projects) */
.border-left-primary {
  border-left: 5px solid #4e73df;
}
.border-left-primary .stat-number {
  color: #4e73df;
}
.border-left-primary .stat-icon, .border-left-primary .badge {
  background: #4e73df;
  color: #fff;
}
/* SUCCESS (Users) */
.border-left-success {
  border-left: 5px solid #1cc88a;
}
.border-left-success .stat-number {
  color: #1cc88a;
}
.border-left-success .stat-icon, .border-left-success .badge {
  background: #1cc88a;
  color: #fff;
}
/* INFO (Invoice) */
.border-left-info {
  border-left: 5px solid #36b9cc;
}
.border-left-info .stat-number {
  color: #36b9cc;
}
.border-left-info .stat-icon, .border-left-info .badge {
  background: #36b9cc;
  color: #fff;
}
/* WARNING (Purchase Order) */
.border-left-warning {
  border-left: 5px solid #f6c23e;
}
.border-left-warning .stat-number {
  color: #f6c23e;
}
.border-left-warning .stat-icon, .border-left-warning .badge {
  background: #f6c23e;
  color: #fff;
}

.sidebar .nav-content a.active,
.sidebar .nav-link.active,
.sidebar .nav-content a.active i {
  color: #4e73df;
  font-weight: 600;
  background: transparent;
}
.sidebar .nav-link:not(.collapsed) {
  color: #000;
  font-weight: 600;
}
.sidebar .nav-link.active {
    background: #0d6efd !important;
    color: #fff !important;
  }
  .sidebar .nav-link.active i {
    color: #fff !important;
  }
.select2-container .select2-selection--single .select2-selection__rendered
{
      padding: 6px 15px!important;
}  
.readonly {
  pointer-events: none;
  /* Optional: Add styling to make it look disabled */
  opacity: 0.9; 
}