/**
* Template Name: NiceAdmin
* Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
* Updated: Apr 20 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  /* --theme-color-main:#B07AF3; */
  /* --theme-color-main:#410093; */
  --theme-color-main:#1A59D6;
  --theme-color-secondary:#4a87ff;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #f6f9ff;
  color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
} 
.wiz-theme-txt{
  color: var(--theme-color-main) !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}
h5{
  font-size: 20px !important;
  font-weight: bold !important;
  color: black;
} 
p{
  font-size: 14px;
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
  background: white;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

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

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

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

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

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

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

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

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

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

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

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

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

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

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

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

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

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

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 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 {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 26px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  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-left: 20px;
  /* 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;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

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

.header-nav .nav-profile img {
  max-height: 36px;
}

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

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

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

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

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-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: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

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

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px 0px;
  overflow-y: auto;
  /* scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent; */
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  background: var(--theme-color-main);
  /* background: #410093; */
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

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

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




/* 
.sidebar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.sidebar::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.sidebar::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
} */


@media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}
.g-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

.g-scroll::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

.g-scroll::-webkit-scrollbar-thumb {
  background-color: #555555;
  border: 2px solid #555555;
}
.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: #ffffff;
  transition: 0.3;
  background: #f6f9ff;
  background: transparent;
  padding: 10px 15px 10px 20px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #4154f1;
  color: white;
}

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

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

.sidebar-nav .nav-link:hover {
  color: #4154f1;
  background: #f6f9ff;
  background: white;
  border-radius: 25px 0px 0px 25px;
  color: black;
}

.sidebar-nav .nav-link:hover i {
  color: #4154f1;

}

.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 20px;
  transition: 0.3s;
  color: white;
}

.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: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}
li.nav-item.active {
  background: white;
  border-radius: 25px 0px 0px 25px;
}
li.nav-item.active span {
  color: black;
}


.main.width-toggle {
  margin-left: 80px !important;
  transition: width 0.3s ease !important;
}
.sidebar.collapsed {
  width: 80px; /* Example width for collapsed state */
  transition: width 0.3s ease;
}
.sidebar.collapsed .sidebar-nav span {
  display: none; /* Hides text inside links */
}

.sidebar.collapsed .sidebar_switch_icon i {
  transform: rotate(180deg); /* Rotates the switch icon */
  transition: transform 0.3s ease;
}
.sidebar_switch_icon {
  width: 20px;
  height: 20px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  /* border: 2px solid #0771EF; */
  cursor: pointer;
  z-index: 99999999;
  position: relative;
  left: 10px;
  top: -10px;
}

img.sidebar-icon {
  width: 20px;
  height: auto;
  filter: invert(1);
}

.sidebar-nav .nav-item span {
  font-size: 17px;
}
.sidebar svg {
  min-width: 20px;
  min-height: 20px;
  margin-right: 6px;
  width: 20px;
  height: 20px;
}

.onboarding-image-container .circle:nth-child(2) {
  margin-left: -15px;
}
.onboarding-image-container .circle:nth-child(3) {
  margin-left: -15px;
}
.onboarding-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -20px; /* Overlap the circles */
}

.onboarding-image-container .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease, z-index 0.3s ease;
}

.onboarding-image-container .circle:hover {
  transform: scale(1.2); /* Enlarge the image on hover */
  z-index: 10; /* Bring the hovered image to the front */
}
.onboarding-rounded-circle .rounded-circle {
  background: var(--theme-color-main);
}
/*--------------------------------------------------------------
# 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: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.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: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.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;
}
.user-detail-card {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.user-detail-card .avatar {
  width: 65px;
  height: 65px;
  background-color: var(--theme-color-main);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.user-detail-card .owner-icon {
  font-size: 0.9rem;
  color: gray;
  display: flex;
  align-items: center;
}
.owner-icon i {
  margin-right: 5px;
}  

.onboarding {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  box-shadow: none;
  margin: auto;
}

.onboarding .icon {
  font-size: 3rem;
  color: var(--theme-color-main);
  margin-bottom: 15px;
}

.onboarding .card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
  text-align: left;
  padding: 0px;
}

.onboarding .btn-custom {
  background-color: var(--theme-color-main);
  border-color: var(--theme-color-main);
  color: white;
  max-width: fit-content;
  margin: 0 auto;
}

.onboarding .btn-custom:hover {
  background-color: #A383E5;
  border-color: #A383E5;
}

.help-btn-wrap>.btn {
  margin: 0px;
  background: transparent;
  color: black;
}

.help-btn-wrap {
  justify-content: center;
  gap: 10px;
}
.help-btn-wrap>.btn {
margin: 0px;
background: transparent;
color: var(--theme-color-main);
}

.member-onboarding p {
  color: #606060;
  font-weight: 600;
}
    .member-onboarding {
      border-radius: 8px;
      border: 1px solid #ddd;

      margin: auto;
    }

    .member-onboarding .invite-member {
      border-left: 1px solid #d2d2d2;
      height: 100%;
      padding-left: 30px;
    }

    .member-onboarding .vertical-divider {
      border-left: 1px solid #ddd;
      height: 100%;
    }

    .btn-custom {
      background-color: var(--theme-color-main);
      border-color: var(--theme-color-main);
      color: white;
    }

    .btn-custom:hover {
      background-color: #A383E5;
      border-color: #A383E5;
    }
/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

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

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

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.card.projects-card i.fa-pen-to-square {
  color: green;
}

.card.projects-card i.fa-trash-can {
  color: red;
}
.card.projects-card .progress-bar {
  background: #00a312 !important;
}
.card.projects-card span.small {
  background: palevioletred;
  color: white;
  font-size: 12px;
}



.card.projects-card span.small {
    background: palevioletred;
    color: white;
    font-size: 12px;
}

.card.projects-card i.fa-regular.fa-clock {
    color: blueviolet;
}

.card.projects-card i.fa-solid.fa-paperclip {
    color: chocolate;
}

.card.projects-card i.fa-solid.fa-users {
    color: darkred;
}

.card.projects-card i.fa-regular.fa-comment-dots {
    color: orange;
}
.wiz-dashboard .main-heading {
  font-weight: 900;
  font-size: 30px;
}

.boxes-home-page {
  border-radius: 10px;
  min-height: 150px;
  padding: 10px;
}
i.fa-solid.fa-chart-column {
  font-size: 25px;
  margin-right: 10px;
}
.boxes-home-page p {
  font-size: 24px;
  font-weight: 700;
}
main#main {
  /* height: calc(100vh - 120px); */
  min-height: 100vh;
}
.project-timeline-wrap {
  padding: 10px;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ====== */
.task-mgt-page .top-cards {
  min-height: 200px;
  border-radius: 10px;
}

.task-mgt-page .top-cards .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .table-responsive .table thead th {
  background: #0085ff;
  color: white;
} */

.progress-bar.bg-info {
  width: 20%;
}

.progress>span {
  position: absolute;
}

.progress.mb-3.marketing {}

.progress.mb-3.marketing .progress-bar.bg-success {
  width: 15%;
}

.progress.mb-3.equipment.progress-bar.bg-warning {
  background: 40%;
}

.progress-bar.bg-warning {
  width: 40%;
}

.daily-metrics-card {
              
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.daily-metrics-card .highlight-text {
  color: var(--theme-color-secondary);
  /* Light purple color */
  font-weight: bold;
}

.daily-metrics-card .time-box {
  background-color: var(--theme-color-secondary);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.daily-metrics-card .metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
}

.daily-metrics-card .metrics div {
  text-align: center;
}

.dropzone-wrap {
  background: var(--theme-color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 200px;
  border-radius: 5px;
}

.activity-card {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.activity-card .activity-icon {
  font-size: 40px;
  color: #8a4af3;
}

.activity-card .no-data-text {
  color: #888;
}


.all-task-card {
                
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); 
}
.all-task-card .chart-container {
  display: flex;
  align-items: center;
}
.all-task-card .status-list {
  margin-left: 20px;
  font-size: 14px;
}
.all-task-card .status-list span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 3px;
}
.all-task-card .progress-bar-custom {
  height: 5px;
  background-color: #e0e0e0;
  border-radius: 5px;
}
.all-task-card .progress-bar-active {
  background-color: var(--theme-color-secondary);
}



/* ====== */

.custom-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  min-height: 300px;
}
.nav-tabs .nav-link {
  font-weight: bold;
  color: black;
}
.nav-tabs .nav-link.active {
  color: black;
  border-color: transparent;
  border-bottom: 2px solid var(--theme-color-secondary); /* Purple underline */
}
.empty-state {
  text-align: center;
  margin-top: 50px;
  color: #b0b0b0;
}
.empty-state-icon {
  font-size: 48px;
  color: var(--theme-color-secondary);
  margin-bottom: 10px;
}
.calendar-wrap>svg {
  position: absolute;
  top: 8px;
  right: 10px;
}

.calendar-wrap>input {
  color: grey;
  height: 35px;
}


/* ===============Select2 Global Style Start=========================== */
.g-m-select-check-box {
  width: 300px;
  font-family: Arial, sans-serif;
  position: relative;
}

.g-m-select-check-box .multipleSelection {
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #fff;
  height: 35px;
}

.g-m-select-check-box .selectLabel {
  display: flex;
  align-items: center;
}
.g-m-select-check-box .checkBoxesList label {
  font-size: 13px;
}
.g-m-select-check-box .selectLabel img {
  width: 20px;
  margin-right: 10px; 
}

.g-m-select-check-box .checkBoxes {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
}

.g-m-select-check-box .checkboxSearch {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.g-m-select-check-box .checkBoxesTop {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.g-m-select-check-box .actionsBtn {
  color: blue;
  cursor: pointer;
}

.g-m-select-check-box .checkBoxesList {
  max-height: 150px;
  overflow-y: auto;
}

.g-m-select-check-box .checkBoxesList div {
  margin-bottom: 5px;
}

.g-select+.select2-container .select2-selection--single {
  height: 35px;
  border: 1px solid #d7d7d7;
}

.g-select+.select2-container .select2-selection--single .select2-selection__rendered {
  color: grey;
  line-height: 32px !important;
}

.g-select+.select2-container .select2-selection--single .select2-search--dropdown {
  display: none;

}

.g-select+.select2-container .select2-selection--single .select2-selection__clear>span {
  display: none;

}


.select2-results__options::-webkit-scrollbar-track
{

	background-color: #ffffff;
}

.select2-results__options::-webkit-scrollbar
{
	width: 4px;
	background-color: #ffffff;
}

.select2-results__options::-webkit-scrollbar-thumb
{
	background-color: var(--theme-color-main);

}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--theme-color-main) !important;
  color: white;
}

.select2-search--dropdown {
  display: none;
  padding: 4px;
}
 
 
/* ===============Select2 Global Style End=========================== */

/* ===============Global Table Start=========================== */

.g-table {
  background-color: #f5e9ff;
  border-radius: 12px;
  overflow: auto;
}
.g-table thead th {
  background-color: var(--theme-color-main);
  color: white;
}
.g-table td, 
.g-table th {
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}
.g-table tr td {
  background-color: #EDDFFE;
  font-size: 13px;
}
.g-table thead th:first-child {
  border-radius: 10px 0px 0px 0px;
  text-align: start;
  padding-left: 15px;
}

.g-table thead th:last-child {
  border-radius: 0px 10px 0px 0px;
}



/* ===============Global Table End=========================== */

.g-table .avatar-tbl-img{
  width: 50px;
  height: 50px;
  border-radius: 100%;
} 


.custom_checkbox input{
  padding:0;
  height:initial;
  width: initial;
  display: none;
  cursor:pointer;
}
.custom_checkbox label{
  position: relative;
  cursor: pointer;
  color:#fff;
  font-size:20px;
}
.custom_checkbox label:before{
  content:'';
  background-color: transparent;
  border:2px solid #ddd;
  padding:12px;
  border-radius: 5px;
  display:inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 15px; 
  transition: background-color 0.3s ease-in-out;
}
.custom_checkbox input:checked + label::after{
  content:'';
  display: block;
  position: absolute;
  top:3px;
  left:9px;
  width:8px;
  height:14px;
  border:2px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom_checkbox input:checked + label::before {
 content: '';
 background-color: #00b66500;
 border-color: var(--theme-color-main);
}

button.g-button {
  background-color: var(--theme-color-main);
  color: white;
  border: none;
  width: fit-content;
  padding: 5px 15px;
  line-height: 21px;
  font-weight: 600;
  height: 32px;
  border-radius: 5px;
}
.addproject-wrap {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.btn-secondary.dropdown-toggle {
  background: transparent;
  color: black;
  height: 32px;
  line-height: 20px;
  border: 1px solid #ccc;
}
button.g-button:hover {
  background-color: #257dff;
}
button.g-button:hover {
  background-color: #6f00fc;
  border-radius: 5px;
}
.wiz-nav-tabs .nav-link.active {
  color: #9e6bf0;
  border-color: transparent;
  border-bottom: 3px solid #9e6bf0; 
}
.wiz-nav-tabs .nav-link {
  color: black; 
  cursor: pointer; 
}

.wiz-nav-tabs .tab-pane {
  display: none; 
}
.wiz-nav-tabs .tab-pane.active {
  display: block; 
}

.wiz-nav-tabs {
  border-bottom: 2px solid #b4b4b4;
}
.dropdown.wiz-dropdown-menu-checks .dropdown-menu.show li a {
  display: flex;
  gap: 10px;
}

.add-contract-item {
  background-color: lightgrey;
  padding: 2px 7px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
}
.avatar-group {
  background-color: var(--theme-color-main);
  padding: 2px 7px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  color: white;
}
.h-40{
  height: 40px;

}
.after-none.dropdown-toggle:after{
  display: none;
}
.after-none:after {
  display: none;
}


.projects-group-page .group-container {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
}

.projects-group-page .group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.projects-group-page .group-content {
  height: 200px;
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
}

.projects-group-page .group-name {
  font-weight: bold;
}


.projects-group-page .sidebar {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  background-color: #f8f9fa;
}
a#design-group-dd:after {
display: none;
}
.projects-group-page .dropdown-toggle {
cursor: pointer;
color: black;
}
.projects-group-page .group-container textarea {
background: #f7f7f7;
}
div#group-container {}

div#group-container .group-content {
margin-bottom: 15px;
}

div#group-container .group-content:last-child {
margin-bottom: 0px;
}
.g-table-wrap{
  /* overflow: auto; */
}

.team-pople-right-wrap .tabs-container {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
}

.team-pople-right-wrap .tab-links {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.team-pople-right-wrap .tab-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  padding-bottom: 5px;
}

.team-pople-right-wrap .tab-links a.active {
  color: var(--theme-color-main);
  border-bottom: 2px solid var(--theme-color-main);
}

.team-pople-right-wrap .tab-content {
  display: none;
}

.team-pople-right-wrap .tab-content.active {
  display: block;
}

.team-pople-right-wrap .member-card {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 10px;
}

.team-pople-right-wrap .member-initial {
  width: 50px;
  height: 50px;
  background-color: var(--theme-color-main);
  color: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 10px;
}

.team-pople-right-wrap .search-bar {
  position: relative;
}

.team-pople-right-wrap .search-bar input {
  width: 100%;
  padding: 5px 30px;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.team-pople-right-wrap .search-bar i {
  position: absolute;
  top: 10px;
  left: 10px;
}

#createContractModal .selected-member {
  display: flex;
  align-items: center;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  background-color: #eafaf1;
  border: 1px solid #d1e7dd;
  width: fit-content;
}

#createContractModal .member-initial {
  background-color: #a5d6a7;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

#createContractModal .remove-member {
  margin-left: 10px;
  color: #ff6b6b;
  cursor: pointer;
  font-weight: bold;
}

.table .day-button {
  border: 1px solid #ced4da;
  border-radius: 5px;
  /* padding: 5px 10px; */
  color: #6c757d;
  cursor: pointer;
  margin: 0 2px;
  display: inline-block;
  width: 35px;
  text-align: center;
  font-size: 14px;
}

.standup-Modal .day-btns button {
  border: 1px solid #7c4dff;
  color: #7c4dff;
  margin-right: 5px;
  padding: 6px 12px;
  border-radius: 5px;
  transition: all 0.3s;
}
.standup-Modal .day-btns button.active {
  background-color: #7c4dff;
  color: white;
}
/* =============global code for tan switch start ================ */

.g-tabs {
  display: flex;
  gap: 20px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.g-tab-link {
  text-decoration: none;
  color: #6c757d;
  padding-bottom: 5px;
  position: relative;
}

.g-tab-link.active {
  color: var(--theme-color-secondary); /* Active color (purple) */
}

.g-tab-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--theme-color-secondary); /* Active underline color */
}
.g-nav-tabs {
  border-bottom: 2px solid lightgrey;
  display: flex;
  gap: 30px;
}

/* =============global code for tan switch start ================ */

.progress-td-wrap .progress-td {
  width: 100%;
  height: 10px;
  background: #5900ff;
  max-width: 100px;
  border-radius: 10px;
}

.g-table tr td.members-group>img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.announcement-table td, .announcement-table th {
  vertical-align: middle;
  padding: 1rem;
}
.announcement-table .announcement-icon {
  background-color: #EDE7FE;
  color: #7c4dff;
  border-radius: 50%;
  padding: 8px;
  margin-right: 8px;
  min-width: 30px;
  min-height: 30px;
  max-height: 30px;
  text-align: center;
  vertical-align: middle;
  line-height: 15px;
}
.announcement-table .team-badge {
  background-color: #EDE7FE;
  color: #7c4dff;
  padding: 5px 10px;
  border-radius: 5px;
}


/* screenshot page code start  */


.computer-details .label-title {
    font-weight: bold;
    color: #6c757d;
}

.computer-details .value-text {
    font-weight: bold;
    color: #3f3d56;
}

.computer-details .badge-version {
    background-color: #eae8fc;
    color: #6c63ff;
    font-weight: bold;
    padding: 0.4em 0.8em;
    border-radius: 0.5rem;
}

.computer-details .icon {
    vertical-align: middle;
    margin-right: 0.5em;
}


.ss-page .btn-custom {
    background-color: #f8f9fa;
    border: 1px solid #6c757d;
    color: #6c757d;
    font-weight: bold;
}

.ss-page .btn-custom.active {
    background-color: #e7e7ff;
    border-color: #6c63ff;
    color: #6c63ff;
}

.ss-page .project-title {
    color: #6c757d;
    font-size: 14px;
}

.ss-page .details-text strong {
    display: block;
    margin-bottom: 0.3rem;
}


.ss-page .ss-card-wrap .ss-check {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.ss-page .ss-card-wrap {
    min-height: 150px;
    border: 1px solid lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.ss-card-wrap i {
    color: grey;
    font-size: 40px;
}

.ss-card-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ss-card-wrap:hover:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #0000006b;
    border-radius: 10px;
}

.ss-card-wrap:hover:after {
    content: "\f00e";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: FontAwesome;
    font-size: 30px;
}

.ss-detail .card-title {
    font-size: 11px;
}

.ss-detail .card-timer {
    font-size: 12px;
}

.ss-detail {
    position: absolute;
    bottom: -8px;
    width: 100%;
    padding: 0px 10px;
}

/* ================== */


.wiz-g-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.wiz-g-tabs {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.wiz-g-tabs.active {
    color: #6c63ff;
    border-bottom: 2px solid #6c63ff;
}

.wiz-g-tab-content {
    display: none;
    font-size: 14px;
    color: #333;
}

.wiz-g-tab-content.active {
    display: block;
}

.wiz-g-tab-content .project-title {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.tabs.wiz-g-tabs .tab.active {
    color: #9e6bf0;
    border-color: transparent;
    border-bottom: 3px solid #9e6bf0;
}
/* screen shot page code end  */

/* productivity page code start  */

.progress {
    height: 8px;
    background-color: #f8f9fa; /* Light grey background */
}
.progress-bar {
    border-radius: 10px;
}
.time-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.time-label span {
    font-size: 0.9rem;
    color: #6c757d; /* Grey text */
}

  
    .productivity-page .card-task .stat {
      font-weight: bold;
      font-size: 1.25rem;
    }
    .productivity-page .card-task .stat-label {
      color: #6c757d;
      font-size: 0.875rem;
    }
    .productivity-page .card-task .divider {
      border-left: 1px solid #ddd;
      height: 40px;
      margin: 0 1rem;
    }




    .engagement-container {
      max-width: 100%;
      
      width: 100%;
  }
  .engagement-container .progress-bar {
      display: flex;
      align-items: center;
      margin: 10px 0;
  }
  .engagement-container .progress-bar-icon {
      width: 30px;
      height: 30px;
      margin-right: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 50%;
  }
  .engagement-container .progress-bar-label {
      flex: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .engagement-container .progress {
      width: 70%;
      height: 8px;
      background-color: #f0f0f0;
      border-radius: 4px;
      position: relative;
      margin-left: 10px;
  }
  .engagement-container .progress-fill {
      height: 100%;
      border-radius: 4px;
      background-color: #3f51b5;
      position: absolute;
  }
  .productivity-page .card-task .average {
    margin-top: 1rem;
    font-size: 0.875rem;
  }


  .productivity-page .categories-container {
    max-width: 100%;
    width: 100%;
}
.productivity-page .categories-container .progress {
    height: 8px;
}
.productivity-page .categories-container .category-item {
    margin-bottom: 20px;
}
.productivity-page .categories-container .category-item:last-child {
    margin-bottom: 0;
}
.switch-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 3px solid var(--theme-color-main);
  border-radius: 5px;
}

.switch-wrap .switch-tabs.active {
  background: var(--theme-color-main);
  color: white;
  padding: 2px 10px;
}

.switch-wrap .switch-tabs {
  padding: 2px 10px;
}

a.g-button {
  background-color: var(--theme-color-main);
  color: white;
  border: none;
  width: fit-content;
  padding: 5px 15px;
  line-height: 21px;
  font-weight: 600;
  height: 32px;
  border-radius: 5px;
}
.all-reports-row .card-title {
  font-size: 17px !important;
  width: fit-content;
  max-width: min-content;
}
.all-reports-row a.view-more-btn.g-button {
  font-size: 12px;
  min-width: 90px;
}
.all-reports-row .card {
  height: 100%;
  justify-content: space-between;
}

.avatar {
  background: grey;
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-weight: 700;
  font-size: 12px;
  width: 40px;
  height: 40px;
  background-color: var(--theme-color-main);
}
.hand-drag {
  top: -15px;
  left: -15px;
  cursor: pointer;
}

.square-block img {
  width: 50px;
  height: auto;
}

.square-block h6 {
  width: max-content;
  margin: 0 auto;
}

.square-block .team-title-block {
  width: max-content;
}

.square-block {
  text-align: center;
  width: max-content;
  background: #d6d6d6;
  padding: 10px;
  border-radius: 5px;
  position: relative;
}

.square-block .fa-times-circle {
  position: absolute;
  top: -7px;
  right: -6px;
  font-size: 21px;
  background: white;
  border-radius: 50%;
}

.g-table tbody th:first-child {
  text-align: start;
  padding-left: 15px;
}
.g-table tr td:first-child {
  text-align: start;
  padding-left: 15px;
}
.avatar-wrap .avatar:nth-child(2),
.avatar-wrap .avatar:nth-child(3), 
.avatar-wrap .avatar:nth-child(4), 
.avatar-wrap .avatar:nth-child(5) {
  margin-left: -17px;
  transition: ease 1s;
  border: 1px solid;
}
.avatar-wrap .avatar:nth-child(1){
  transition: ease 1s;
}
.mw-300 {
  max-width: 300px;
}


.onboarding-rounded-circle {
  border: 2px solid;
  border-radius: 50%;
  justify-content: flex-end;
  justify-content: center;
  align-items: center;
}


.onboarding-rounded-circle {
  border: 2px solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.onboarding-rounded-circle {
  z-index: 99;
}

    @media (max-width: 576px) {
      .productivity-page .card-task .divider {
        border-left: none;
        border-top: 1px solid #ddd;
        width: 100%;
        height: 1px;
        margin: 1rem 0;
      }
    }
   
/* productivity page code end  */