@font-face {
    font-family: 'PoppinsRegular';
    src: url('/fonts/PoppinsRegular.eot');
    src: url('/fonts/PoppinsRegular.eot') format('embedded-opentype'), url('/fonts/PoppinsRegular.woff2') format('woff2'), url('/fonts/PoppinsRegular.woff') format('woff'), url('/fonts/PoppinsRegular.ttf') format('truetype'), url('/fonts/PoppinsRegular.svg#PoppinsRegular') format('svg');
}

@font-face {
    font-family: 'PoppinsMedium';
    src: url('/fonts/PoppinsMedium.eot');
    src: url('/fonts/PoppinsMedium.eot') format('embedded-opentype'), url('/fonts/PoppinsMedium.woff2') format('woff2'), url('/fonts/PoppinsMedium.woff') format('woff'), url('/fonts/PoppinsMedium.ttf') format('truetype'), url('/fonts/PoppinsMedium.svg#PoppinsMedium') format('svg');
}

body
{
  font-family: 'PoppinsRegular' !important;
}

  .form-control
  {
    border-color: #E6E6E6;
  }
  .form-control:focus,
  .drop-select:focus
  {
    border-color: #393E46;
    box-shadow: none;
  }
  .form-floating .req
  {
    color: #FF2626;
  }



/* AdminPanel */
/**
* 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;
}

body {
  font-family: "PoppinsRegular", sans-serif;
  background: #fff;
  color: #444444;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'PoppinsRegular';
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 104px;
  padding: 20px;
  transition: all 0.3s;
  border-radius: 24px;
  background-color: #FFF;
  border: 1px solid #F6F5F5;
  box-shadow: 0px 4px 12px rgba(19, 19, 20, 0.06);
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-family: 'PoppinsRegular';
  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: #393E46;
  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: "PoppinsRegular", 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: "PoppinsRegular", 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
{
  border: 1px solid #EBEBEB;
  background-color: #FAFAFA;
  border-radius: 12px !important;
  margin-bottom: 12px;
}
.accordion-button:focus
{
  outline: 0;
  box-shadow: none;
  border: 1px solid transparent;
}
.accordion-button:not(.collapsed)
{
  color: #393E46;
  background-color: #FFF2E5;
  border: 1px solid #FFF;
  border-radius: 12px !important;
}
.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}
.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #393E46;
}
.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb 
{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  background: #FAFAFA;
  border: 1px solid #E7E7E7;
  border-radius: 16px;
  cursor: pointer;
  width: fit-content;
  max-width: 100%;
}
.breadcrumb .menu
{
  font-size: 16px;
  font-family: 'PoppinsRegular';
  color: #141313;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
}
.module-name
{
  color: #605A5B !important;
}
.breadcrumb .dashboard-icon
{
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border: 1px solid #F6F5F5;
  box-shadow: 0px 2px 4px rgba(19, 19, 20, 0.12);
  border-radius: 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141313;
}
.breadcrumb .arrow
{
  color: #605A5B;
  font-size: 16px;
}
/* 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: #393E46;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #393E46;
  border-bottom: 2px solid #393E46;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

/* @media (min-width: 1200px) {
  .logo {
    width: 254px;
  }
} */

.logo img {
  height: 40px;
  width: 175px;
  object-fit: contain;
}
.head-nav-bar
{
  padding: 20px 0px 15px 0px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: 'PoppinsRegular';
}

.header {
  transition: all 0.5s;
  z-index: 99;
  height: auto;
  /* border-bottom: 1px solid #F0F0F0; */
  padding: 0px;
  margin-left: 286px;
  border-radius: 20px;
  margin-top: 10px;
  margin-right: 10px;
  box-shadow: 0px 2px 12px rgb(145 145 145 / 20%);
}

.header .toggle-sidebar-btn {
  cursor: pointer;  
  color: #1F1F1F;
}
.toggleswitch
{
  font-size: 25px;
  background-color: transparent;
  border: 1px solid transparent;
  color: #1b1b1b !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  padding: 10px;
  /* position: absolute;
  right: -37px; */
}
.toggleswitch:hover
{
  background-color: #393E46;
}
.toggleswitch:hover i
{
  color: #fff;
}
.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;
  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: 140px;
  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,
.lib-assets .dropdown-menu .dropdown-item
{
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 6px;
  transition: 0.3s;
  font-family: 'PoppinsRegular';
  color: #0A0A0A;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover,
.lib-assets .dropdown-menu .dropdown-item:hover
{
  background-color: #FCEFEA;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 0px;
  left: 0;
  bottom: 0;
  width: 256px;
  z-index: 99;
  transition: all 0.3s;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  background-color: #393E46;
  padding: 6px 12px;
  margin: 10px;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 285px;
    margin-right: 24px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 24px;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.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;
}
.nav-item a
{
  justify-content: space-between;
}

.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;
  color: #fff;
  transition: 0.3s;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'PoppinsRegular';
}
.sidebar-nav .nav-link span
{
  display: flex;
  align-items: center;
}
.sidebar-nav .nav-link span i
{
  font-size: 18px;
  margin-right: 8px;
}

.sidebar-nav .nav-link.active,
.sidebar-nav .nav-link.active i
{
  background-color: #FFFFFF;
  color: #2C92D5 !important;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 4px;
  color: #fff;
  width: 20px;
}

.sidebar-nav .sub-active.collapsed
{
  background-color: #fff;
  color: #393E46;
}

.sidebar-nav .sub-active.collapsed i {
  color: #393E46;
}

.sidebar-nav .nav-link.sec-menu,
.sidebar-nav .nav-link.sec-menu i
{
  color: #393E46;
}

.sidebar-nav .nav-link:hover {
  color: #393E46;
  background: #fff;
}

.sidebar-nav .nav-link:hover i {
  color: #393E46;
}

.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: 4px;
  margin: 0;
  list-style: none;
  margin-top: 6px;
  background: #FFFFFF;
  border: 1px solid #F5F5F5;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}
.sidebar-nav .sec-menu-cont
{
  padding: 4px;
  margin-top: 8px;
  border: 1px solid #27A3F5;
  border-radius: 8px;
}
.sidebar-nav .nav-content a:hover
{
  border-radius: 8px;
  color: #1b1b1b;
  background-color: #393E4636;
}
.nav-content .submenu-active a
{
  color: #393E46 !important;
  background-color: #FFFFFF;
}
.nav-content .submenu-active a span
{
  position: relative;
}
.nav-content .submenu-active a span::after
{
  border-bottom: 1px solid #393E46;
  content: '';
  width: 100%;
  position: absolute;
  left: 0px;
  top: 24px;
}
.sidebar-nav .nav-content a
{
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: 'PoppinsRegular';
  color: #282828;
  transition: 0.3;
  padding: 10px 16px;
  transition: 0.3s;
  border-radius: 8px;
  line-height: 20px;
}
.sidebar-nav .sec-menu-cont a
{
  border-radius: 4px;
  border: 1px solid transparent;
}
.sidebar-nav .sec-menu-cont a:hover
{
  background-color: #F0F6FF;
}
.sidebar-nav .sec-menu-cont .sec-menu-active
{
  background-color: #EBF3FF;
  border-color: #ADCFFF;
} 
.nav-content .submenu-active a .menu-title i
{
  color: #393E46 !important;
}
.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}
.sidebar-nav .nav-content a i:hover
{
  color: #393E46;
}
.sidebar-nav .secondary-menu a i
{
  font-size: 16px;
  margin: 0px;
}

.sidebar-nav .secondary-menu a:hover i
{
  color: #2C92D5;
}

.sidebar-nav .nav-content a.active i {
  background-color: #393E46;
}

/*--------------------------------------------------------------
# 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: #393E46;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #393E46;
}

.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: #393E46;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #393E46;
  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: #393E46;
  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;
}
.add_role .btn-primary
{
  background-color: #393E46;
  border: 1px solid #393E46;
  color: #fff;
}
.add_role .btn-primary:hover
{
  background-color: #194abb;
  border: 1px solid #194abb;
}
/* Modal-Popup */
.show-modal {
opacity: 1;
visibility: visible;
transform: scale(1.0);
transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
/* ----------- */

/* table */
.table
{
  margin-bottom: 0px;
}
.table-data
{
  border: 1px solid #E1E1FE;
  border-radius: 12px;
  padding: 0px;
  overflow: hidden;
  overflow-x: auto;
  margin-top: 12px;
}
.datatable thead th
{
  padding-left: 12px;
  padding-right: 12px;
  background-color: transparent;
}
.datatable tbody td
{
  padding-left: 12px;
  padding-right: 12px;
  border-bottom: 1px solid #FFF4EB;
  background-color: transparent;
}
.datatable .check-box .form-check-input
{
  border-color: #5C5C5C;
}
.datatable thead th
{
  font-size: 16px;
  font-family: 'PoppinsRegular';
  color: #1B1B1B;
  border: none;
}
.datatable tbody td
{
  font-size: 15px;
  font-family: 'PoppinsRegular';
  color: #1B1B1B;
}
.datatable .tab-icons i
{
  margin-right: 4px;
}
.datatable thead tr {
    background-color: rgba(57, 62, 70, 0.1);
}
.tab-icons
{
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.datatable tbody .white-bg
{
  background-color: #FFFFFF;
}
.datatable tbody .sec-tabcell-bg
{
  background-color: #FAFAFA;
}
/* end of table */

/* Table-component */
.table-top-bar
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-content .delete-header h5
{
  font-size: 22px;
  font-family: 'PoppinsRegular';
  margin-bottom: 16px;
}
.table-top-bar .add-new-entry a {
    background-color: #393E46;
    color: #fff;
    padding: 8px 27px;
    border-radius: 5px;
    border: 1px solid #393E46;
    text-transform: uppercase;
    cursor: pointer;
}
.add-new-entry a:hover
{
  border: 1px solid #393E46;
  background-color: #fff;
  color: #393E46;
}
.add-new-entry .btn-primary:active
{
  background-color: #FFF5EF;
  color: #393E46;
  border: 0.5px solid #FAAF82;
}
.page-top.table-top-bar 
{
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.table-top-bar .add-new-entry .btn-primary i {
    margin-right: 6px;
}
.import .btn
{
  padding: 10px 20px 10px 12px !important;
}
.import .btn i
{
  margin-right: 8px !important;
}
.menu-title h3
{
  color: #141313;
  font-size: 24px;
  margin-bottom: 0px;
  font-family: 'PoppinsMedium';
}
.table-top-bar .add-new-entry
{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}
.filter-icon
{
  padding: 10px 14px;
  border-radius: 10px;
  background-color: #E0EDFF;
  display: inline-block;
}
.filter-icon i
{
  color: #2C92D5;
}
.tab-text-overflow
{
  max-width: 700px;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
  text-overflow: clip;
  scrollbar-width: thin;
  scrollbar-color: #EBEBEB #FFF;
}
.tab-checkbox .form-check-label,
.tab-checkbox .form-check-input
{
  cursor: pointer;
}
.tab-checkbox .form-check-input,
.check-border-color td .form-check .form-check-input
{
  border-color: #2C92D5;
}
.role-name
{
  font-family: 'PoppinsMedium' !important;
}
.rolename-bg
{
  background-color: #F5F5F5;
}
/* Table-component */

/* Add-New */
.back-arrow h5
{
  font-size: 22px;
  font-family: 'PoppinsSemiBold';
  margin-bottom: 16px;
  color: #0A0A0A;
}
.back-arrow i
{
  font-size: 18px;
}
.title-bar
{
  padding: 16px 8px;
  background-color: #F5F9FF;
  border-radius: 6px;
  margin-bottom: 16px;
}
.title-bar h5
{
  font-size: 16px;
  font-family: 'PoppinsMedium';
  margin-bottom: 0px;
  color: #2E2E2E;
}
.buttons
{
  display: flex;
  justify-content: end;
}
.buttons .btn
{
  margin-left: 8px;
  padding: 8px 20px;
  border-radius: 10px;
}
.buttons .primary
{
  background-color: #393E46;
  border: none;
  color: #FFF;
  font-family: 'PoppinsRegular';
  font-size: 16px;
  transition: 0.2s ease-in;
}
.buttons .primary:hover
{
  background-color: #FCEFEA;
  color: #393E46;
}
.buttons .primary:active
{
  background-color: #393E46;
  color: #FFF;
}
.radio-textfield
{
  padding: 0px 16px;
}
.radio-textfield .field-label
{
  color: #909294;
  font-family: 'PoppinsRegular';
  font-size: 16px;
  margin-bottom: 6px;
}
.radio-textfield .field-label .req
{
  color: #FF2626;
}
.radio-textfield .radio-options
{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.radio-textfield .radio-options
{
  color: #0A0A0A;
  font-family: 'PoppinsRegular';
  font-size: 16px;
}
.radio-textfield .radio-options .form-check-input:focus
{
  box-shadow: none;
}
/* Add-New */

/* Upload File */
.popup-header
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: #EBEBEB;
}
.popup-header h5
{
  margin-bottom: 0px;
}
.popup-header i
{
  background-color: #F0F0F0;
  color: #141414;
  font-size: 14px;
  padding: 7px 9px;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s ease-out;
}
.popup-header i:hover
{
  color: #FFFFFF;
  background-color: #141414;
}
.upload-area p
{
  font-family: 'PoppinsRegular';
  color: #474747 !important;
  margin: 0px;
}
.preview-container
{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.preview-item
{
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 8px;
  background-color: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  position: relative;
}
.preview-item img,
.preview-item video {
  width: 100%;
  height: 184px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.delete-btn 
{
  background-color: #F0F0F0;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border: 1px solid #DBDBDB;
}
.delete-btn i
{
  font-size: 14px;
  color: #141414;
}
.file-details
{
  font-family: 'PoppinsRegular';
  font-size: 14px;
  color: #141414;
  line-height: 24px;
  margin-right: 6px;
}
/* End of Upload File */

/* New Classes */
.login-img
{
  padding: 0px;
}
.login-img img
{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.register
{
  text-align: center;
  margin-top: 16px;
}
.register span
{
  font-family: 'PoppinsRegular';
  color: #141414;
  margin-right: 8px;
}
.register a
{
  font-family: 'PoppinsMedium';
  color: #141414;
  text-decoration: underline;
}
.register a:hover
{
  color: #141414;
}
.head-nav-bar .logo
{
  text-align: center;
  width: 256px;
}
.head-bar
{
  margin: 0px !important;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 10px;
  background-color: #fff;
  border-radius: 20px;
  
}
.head-bar .menu-name h4
{
  font-family: 'JosefinSansRegular';
  font-size: 32px;
  line-height: 42px;
  color: #0A0A0A;
  margin-bottom: 0px;
}
.header-icons
{
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  padding: 13px 14px;
  background-color: #FFFFFF;
  border-radius: 20px;
}
.header-icons i
{
  color: #fff;
  font-size: 18px;
}
/* .header-icons .profile
{
  padding: 6px 8px;
  background-color: #FFF;
  border: 1px solid #E7E6E6;
  border-radius: 16px;
} */
.header-icons .profile .pro-drop .btn
{
  background-color: transparent;
  border: none;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px;
  gap: 10px;
}
.header-icons .profile .pro-drop .btn .user-details
{
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.header-icons .profile .pro-drop .btn .user-details h5
{
  font-family: 'PoppinsMedium';
  font-size: 16px;
  color: #0A0A0A;
  margin-bottom: 0px;
  line-height: 20px;
}
.header-icons .profile .pro-drop .btn .user-details span
{
  font-family: 'PoppinsRegular';
  font-size: 14px;
  color: #0A0A0A;
  line-height: 20px;
}
.pro-drop .pro-options,
.lib-assets .dropdown-menu
{
  padding: 8px;
  border-radius: 12px;
  width: 100%;
}
.modal-mob-cont .title-header
{
  justify-content: space-between;
  border: none;
}
.modal-mob-cont .title-header h5
{
  font-family: 'PoppinsMedium';
  color: #141414;
  font-size: 18px;
}
.header-icons .form-select:focus
{
  box-shadow: none;
}
.topbar
{
  display: flex;
  align-items: center;
  background-color: #FFF;
  position: relative;
}
/* .main-page
{
  height: calc(100vh - 102px);
  position: relative;
} */
.footer-allrights
{
  background-color: #FFF;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 990;
  display: flex;
  justify-content: center;
  padding: 12px 24px;
  box-shadow: 0px 0px 4px rgba(116, 116, 116, 0.25);
}
.footer-allrights p
{
  margin-bottom: 0px;
  font-size: 16px;
  color: #141313;
  padding-left: 278px;
}
.selected-options 
{
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.selected-options .mem-price
{
  width: 50%;
}
.payment-period
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 12px;
}
.payment-period .schedule
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-period .for
{
  font-family: 'PoppinsRegular';
  font-size: 16px;
  color: #141313;
  margin-right: 6px;
}
.payment-period .repeat
{
  width: 48%;
}
.padd-0
{
  padding: 0px;
}
.providing-service
{
  display: flex;
  align-items: center;
}
.providing-service .form-check
{
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.providing-service .form-check .form-check-input
{
  width: 42px;
  height: 24px;
  margin-right: 6px;
  margin-top: 0px;
}
.providing-service .form-check .form-check-input:focus
{
  box-shadow: none;
}
.providing-service .form-check .form-check-label
{
  font-size: 16px;
  color: #141414;
  font-family: 'PoppinsRegular';
}
.add-invoice-item .browse-files
{
  border: 1px solid transparent;
  background-color: #F0F6FF;
  color: #27A3F5;
  padding: 8px 16px;
  font-size: 16px;
  font-family: 'PoppinsRegular';
  border-radius: 100px;
  margin-left: 8px;
}
.invoice-total
{
  text-align: end;
}
.invoice-total .amount
{
  margin-bottom: 6px;
}
.invoice-total .amount span
{
  font-size: 16px;
  color: #1B1B1B;
  font-family: 'PoppinsRegular';
}
.invoice-total .total-amount
{
  font-size: 20px;
  color: #1B1B1B;
  font-family: 'PoppinsMedium';
}
.text-end
{
  text-align: end;
}
.reports
{
  justify-content: end !important;
}
.upload-field .form-label .req
{
  color: #FF2626;
}
.upload-field .form-label
{
  font-size: 14px;
  font-family: 'PoppinsRegular';
  margin-bottom: 4px;
}
.upload-field .form-control
{
  padding: 4px;
  font-size: 14px;
  font-family: 'PoppinsRegular';
}
.reminder-notification .icons-drop .dropdown-toggle
{
  background-color: transparent;
  border: none;
  padding: 0px;
  display: flex;
}
.reminder-notification .icons-drop .dropdown-toggle::after
{
  display: none;
}
.reminder-notification .icons-drop .drop-content,
.drop-content
{
  left: auto !important;
  right: 10px !important;
  padding: 12px;
  background: #FFFFFF;
  box-shadow: 6px 6px 54px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  width: max-content;
}
.reminder-notification .icons-drop .notification-cont
{
  width: 400px;
}
.reminder-notification .icons-drop .drop-content hr,
.drop-content hr
{
  border-color: #C2C2C2;
  opacity: 100%;
}
.reminder-notification .message-cont .title-time,
.drop-content .message-cont .title-time
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.reminder-notification .message-cont .title-time h6,
.drop-content .message-cont .title-time h6
{
  font-family: 'PoppinsMedium';
  color: #141414;
  font-size: 18px;
  margin-bottom: 0px;
}
.reminder-notification .message-cont .title-time span,
.drop-content .message-cont .title-time span
{
  font-size: 14px;
  font-family: 'PoppinsRegular';
  color: #141414;
}
.reminder-notification .message-cont .text-message,
.drop-content .message-cont .text-message
{
  display: flex;
  flex-direction: column;
}
.reminder-notification .message-cont .text-message span,
.drop-content .message-cont .text-message span
{
  font-size: 14px;
  font-family: 'PoppinsRegular';
  color: #141414;
  line-height: 24px;
}
.modal-mob-cont .drop-content
{
  width: auto !important;
}
.modal-mob-cont .title-header i
{
  background-color: #F0F0F0;
  color: #141414;
  font-size: 14px;
  padding: 7px 9px;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s ease-out;
}
.modal-mob-cont .title-header i:hover
{
  color: #FFFFFF;
  background-color: #141414;
}
.gym-timing .titletxt-bar
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gym-timing .titletxt-bar h5
{
  color: #141414;
  font-size: 16px;
  font-family: 'PoppinsMedium';
}
.gym-timing .titletxt-bar .add-schedule
{
  border: 1px solid #2C92D5;
  background-color: #F0F6FF;
  color: #2C92D5;
  border-radius: 100px;
  padding: 9px 14px;
  display: inline-block;
  font-size: 14px;
  font-family: 'PoppinsRegular';
  transition: 0.2s linear;
}
.gym-timing .titletxt-bar .add-schedule:hover
{
  background-color: #2C92D5;
  color: #FFF;
}
.days-list
{
    display: flex;
    gap: 10px;
}
.days-list label
{
    cursor: pointer;
    border: 1px solid #2C92D5;
    background-color: #F0F6FF;
    color: #2C92D5;
    border-radius: 100px;
    font-size: 16px;
    font-family: 'PoppinsSemiBold';
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.days-list input[type="checkbox"]
{
    display: none;
}
.days-list input[type="checkbox"]:checked + span 
{
    background-color: #2C92D5;
    color: white;
    border-radius: 100px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.integ-card
{
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #C5C5C5;
}
.integ-card .toggle
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.integ-card .toggle .icon
{
  background-color: #FFE01B;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}
.integ-card .toggle .icon i
{
  font-size: 30px;
  color: #231F20;
}
.integ-card .content h6
{
  font-family: 'PoppinsMedium';
  font-size: 18px;
  color: #141414;
}
.integ-card .content p
{
  margin-bottom: 0px;
  font-family: 'PoppinsRegular';
  font-size: 16px;
  color: #202224;
}
.toggle .switch .form-check-input
{
  width: 42px;
  height: 24px;
  margin: 0px;
}
.toggle .switch .form-check-input:focus
{
  box-shadow: none;
}
.class-days
{
  border-radius: 12px;
  border: none;
}
.class-days .accordion-button
{
  padding: 11px;
  background-color: #F5F5F5;
  border-radius: 12px !important;
  border: none;
}
.class-days .accordion-body
{
  padding: 16px 16px 0px;
  border-radius: 10px;
  border: 1px solid #F5F5F5;
  margin-top: 8px;
}
.day-acticon
{
  display: flex;
  gap: 8px;
  justify-content: end;
}
.day-acticon i
{
  padding: 13px 14px;
  border-radius: 12px;
}
.day-acticon .fa-plus
{
  background-color: #2C92D5;
  color: #FFFFFF;
}
.day-acticon .fa-trash-can
{
  background-color: #D6E7FF;
  color: #2C92D5;
}
.class-days .accordion-button:not(.collapsed)
{
  color: #141414;
}
.class-days .scheduled-time
{
  padding: 8px;
  background-color: #FFF;
  border-radius: 10px;
  word-break: break-word;
}
.class-days .scheduled-time span
{
  font-family: 'PoppinsRegular';
  font-size: 14px;
  color: #141414;
  line-height: 20px;
}
.class-days .scheduled-time .seperator
{
  margin: 0px 4px;
}
.mar-bot-12
{
  margin-bottom: 12px;
}

/* Rich Text Editor */
.toolbar
{
  background: #FFF;
  border: 1px solid #99C3FF;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 8px;
  padding: 8px;
  font-family: 'PoppinsRegular';
}
#editor
{
  border: 1px solid #D6E7FF;
  padding: 10px;
  min-height: 100px;
  margin-top: 4px;
  border-radius: 8px;
}
#editor:focus
{
  border-color: #2C92D5;
  outline: none;
}
.toolbar button,
.color-picker
{
  background: none;
  border: 1px solid #C2DBFF;
  cursor: pointer;
  border-radius: 8px;
  font-size: 18px;
  color: #141414;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in;
}
.toolbar button:hover,
.color-picker:hover
{
  background-color: #E0EDFF;
  color: #2C92D5;
  border-color: #2C92D5;
}
.color-picker
{
  padding: 4px;
  width: fit-content;
  max-width: 100%;
  gap: 4px;
}
.color-picker input
{
  width: 24px;
  height: 24px;
  border: none;
  padding: 0px;
}
.toolbar  button:focus
{
  outline: none;
}
.toolbar #fontSize
{
  font-size: 16px;
  font-family: 'PoppinsRegular';
  padding: 6px;
  background: none;
  border: 1px solid #C2DBFF;
  border-radius: 8px;
}
.toolbar #fontSize:focus
{
  border-color: #2C92D5;
  outline: none;
}
.richtext-editor label
{
  margin-bottom: 8px;
}
.richtext-editor label .req
{
  color: #FF2626;
}
/* End of Rich Text Editor */
.mar-top
{
  margin-top: 24px;
}
.lib-file
{
  background-color: #FAFAFA;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.lib-file img
{
  width: 100%;
  margin-bottom: 12px;
}
.lib-file .file-name
{
  padding: 6px;
  background-color: #FFF;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  text-align: center;
  width: 100%;
}
.lib-file .file-name p
{
  font-size: 16px;
  font-family: 'PoppinsMedium';
  color: #141414;
  margin-bottom: 0px;
}
.lib-doc
{
  position: relative;
}
.lib-assets
{
  position: absolute;
  top: 6px;
  right: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #FFF;
  border: 1px solid #EBEBEB;
  border-radius: 100px;
}
.lib-doc img
{
  height: 136px;
  object-fit: contain;
} 
.lib-doc .file-name
{
  text-align: left;
}
.lib-doc .file-name p
{
  width: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-family: 'PoppinsRegular';
}
.asset-menu::after
{
  display: none;
}
.asset-details .file-name
{
  display: grid;
}
/* Upload File */
.lib-file-upld .upload-container
{
  border: 2px dashed #DBDBDB;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.lib-file-upld .upload-container i
{
  font-size: 36px;
  color: #141414;
}
.lib-file-upld .upload-area
{
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  flex-direction: column;
}
.lib-file-upld  .upload-area p
{
  font-family: 'PoppinsRegular';
  font-size: 16px;
  color: #141414;
}
.lib-file-upld .upload-area span
{
  font-family: 'PoppinsRegular';
  font-size: 14px;
  color: #333333;
  margin: 0px;
}
.lib-file-upld .preview-container
{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lib-file-upld .preview-item
{
  position: relative;
  width: 100%;
  max-width: 200px;
  height: auto;
  overflow: hidden;
  padding: 8px;
  background-color: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.preview-item img,
.preview-item video {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.lib-file-upld .preview-item .delete-btn
{
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #FFFFFF;
  color: #141414;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border: 1px solid #F0F0F0;
}
.delete-btn i
{
  font-size: 14px;
  color: #141414;
}
.file-details
{
  font-family: 'PoppinsRegular';
  font-size: 14px;
  color: #141414;
  padding: 4px 8px;
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #F0F0F0;
  width: fit-content;
  max-width: 100%;
  word-break: break-all;
}
/* End of Upload File */
/* Badge */
.schedule-badge
{
  background-color: #FFF;
  padding: 6px 12px;
  border-radius: 12px;
  color: #141414;
  font-size: 14px;
  font-family: 'PoppinsRegular';
  display: flex;
  align-items: center;
  border: 1px solid #E6E6E6;
}
.schedule-badge .badge
{
  background-color: #F0F0F0 !important;
  border: 1px solid #DBDBDB;
  font-size: 12px;
  font-family: 'PoppinsRegular';
  color: #141414 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  margin-left: 6px;
}
/* Badge */
.remove-reminder
{
  display: flex;
  gap: 8px;
  justify-content: end;
}
.remove-reminder span
{
  font-family: 'PoppinsRegular';
  font-size: 14px;
  background-color: #F0F6FF;
  border: 1px solid #E0EDFF;
  color: #2C92D5FF;
  border-radius: 100px;
  padding: 9px 14px;
  cursor: pointer;
}
.sidebar-nav .sub-active
{
  background-color: #fff;
  border-radius: 12px;
  color: #393E46;
}
.sidebar-nav .sub-active i
{
  color: #393E46;
}
/* New Classes */

.notification-profile 
{
  display: flex;
  align-items: center;
  gap: 16px;
}
.notification-profile .noti-icon
{
  padding: 13px 14px;
  border-radius: 16px;
  background-color: #FFFFFF;
  border: 1px solid #E7E7E7;
  display: flex;
  position: relative;
}
.noti-icon .badge
{
  transform: translate(-60%, -30%) !important;
}
.pro-icon
{
  padding: 9px 10px;
  border-radius: 10px;
  background-color: #393E46;
  display: flex;
}
.pro-drop .dropdown-toggle::after
{
  margin-right: 10px;
}
.pro-drop .pro-options
{
  transform: translate(10px, 42px) !important;
}
.bg-color
{
  background-color: #fdfdfd;
}

/* Masters */
.add
{
  display: flex;
  background-color: #E65F2B;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #FFFFFF;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.add:hover
{
  background-color: #FFA640;
}
.base-unit
{
  padding: 12px;
  background-color: #F6F6F6;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.base-unit .types
{
  font-size: 16px;
  color: #141313;
  font-family: 'InterRegular';
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.base-unit .types .unit-radio
{
  padding: 4px 8px;
  background-color: #FFF;
  border-radius: 8px;
}
.types .unit-radio .form-check-input:focus
{
  box-shadow: none;
}
.unit-entries .entry
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Image Preview */
.gallery
{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: 24px 0px;
}
.thumbnails-container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    gap: 8px;
}
.thumbnails-container i
{
    font-size: 16px;
    color: #E65F2B;
    padding: 11px 15px;
    background-color: #FAFAFA;
    border: 1px solid #EBEBEB;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.2s ease-in;
}
.thumbnails-container i:hover
{
    background-color: #FCEFEA;
    border: 1px solid #FFB499;
}
.thumbnails {
    display: flex;
    overflow: hidden;
    gap: 8px;
}
.thumbnails img {
    width: 72px;
    height: 72px;
    cursor: pointer;
    border: 0.5px solid transparent;
    transition: border 0.2s;
    object-fit: contain;
    border-radius: 12px;
}
.thumbnails img:hover {
    border: 0.5px solid #FFB499;
    border-radius: 12px;
}
.main-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.main-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}
.zoom-lens {
    position: absolute;
    border: 1px solid #d4d4d4;
    width: 100px;
    height: 100px;
    display: none;
    pointer-events: none;
}
.zoom-result {
    position: absolute;
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    left: 912px;
    top: 135px;
    display: none;
}
.zoom-result img {
    position: absolute;
}
/* Image Preview */

/* Popup-Modal */
.popup-modal
{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #F5F5F5;
}
.border-0
{
  border: none;
}
.popup-modal .popup-topbar
{
  justify-content: space-between;
  margin-bottom: 12px;
}
.popup-topbar .modal-title
{
  font-family: 'PoppinsMedium';
  font-size: 16px;
  margin-bottom: 0px;
  color: #141414;
}
.popup-topbar .close-icon
{
  background: #FAFAFA;
  border: 1px solid #EBEBEB;
  border-radius: 50px;
  padding: 7px 9px;
  display: flex;
  color: #3D3D3D;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.popup-topbar .close-icon:hover
{
  background: #6B6B6B;
  border: 1px solid #D1D1D1;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.28);
  border-radius: 100px;
  color: #FFFFFF;
}
.popup-footer .btn
{
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'PoppinsRegular';
  font-size: 16px;
  transition: 0.2s ease-in-out;
}
.popup-footer .btn-primary
{
  background-color: #393E46;
  border: 1px solid transparent;
}
.popup-footer .btn-primary:hover
{
  background-color: #fff;
  border: 1px solid #393E46;
  color: #393E46;
}
.popup-footer .btn-secondary
{
  background-color: #FFF2E6;
  border: 1px solid #393E46;
  color: #393E46;
}
.popup-footer .btn-secondary:hover,
.popup-footer .btn-secondary:active
{
  background-color: #FFEAD6;
  border-color: #FFFFFF;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  color: #393E46;
}
.delete-data
{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.delete-data img
{
  height: 56px;
}
.delete-data span
{
  font-size: 16px;
  font-family: 'PoppinsRegular';
  color: #141414;
}
.add-new-entry .multiple-delete
{
  padding: 9px 10px;
  background-color: #FFEBE0;
  border-radius: 12px;
  border: 0.5px solid #FFC9AD;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #393E46;
  transition: 0.2s ease-in-out;
  font-family: 'PoppinsRegular';
}
.add-new-entry .multiple-delete:hover
{
  border-color: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
}
.add-new-entry .multiple-delete:active
{
  border: 1px solid #393E46;
  color: #393E46;
}
/* Popup-Modal */

/* New Class */
.link a
{
  color: #1B1B1B;
}
.company-review
{
  position: relative;
}
.company-review .rounded-circle
{
  transform: translate(-110%,-40%)!important;
  padding: 4px !important;
}
/* tab component */
.categories
{
  padding: 6px;
  gap: 8px;
  background: #F5F5F5;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  width: fit-content;
  max-width: 100%;  
  margin-bottom: 8px;
}
.categories .side-nav-btns
{
  border: none;
  gap: 8px;
} 
.side-nav-btns .nav-link
{
  padding: 8px 10px;
  background: transparent;
  border-radius: 8px;
  font-family: 'PoppinsRegular';
  color: #141414;
  font-size: 14px;
  text-align: left;
  border: 1px solid transparent !important;
}
.side-nav-btns .active
{
  background: #FFFFFF !important;
  border: 1px solid #F0F0F0;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}
.mar-0
{
  margin: 0px;
}
.largetab-modal .accordion-item
{
  border: none;
}
.accordion-item .accordion-body
{
  padding: 8px;
}
/* For categorized input fields */
.grouped-textfields h4
{
  font-family: 'PoppinsMedium';
  font-size: 16px;
  color: #141414;
}
/* Multi-Select */
.multi-select-form
{
  padding: 22px 10px 6px 10px;
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
  position: relative;
}
.multi-select-form label
{
  position: absolute;
  top: 0px;
  font-size: 14px;
  color: #6F7174;
  padding: 8px 0px;
  line-height: 14px;
}
.multi-select-form .multi-select-container
{
  margin-top: 4px;
}
.multi-select
{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  cursor: pointer;
  background: #fff;
}
.multi-select .tag
{
  display: flex;
  align-items: center;
  color: #3E3B3B;
  font-size: 13px;
  font-family: 'PoppinsMedium';
  padding: 4px;
  background-color: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
}
.multi-select .tag .remove-btn
{
  margin-left: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 0.5px solid #EBEBEB;
  border-radius: 100px;
  transition: 0.2s ease-in;
}
.multi-select .tag .remove-btn:hover
{
  color: #E64E4E;
  background-color: #FFEBEB;
  border: 0.5px solid #E64E4E;
}
.multi-select .mulplaceholder
{
  color: #ADADAD;
  font-family: 'PoppinsRegular';
  font-size: 16px;
}
.multi-select-options
{
  display: none;
  background-color: white;
}
.multi-select-options div
{
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
  margin-top: 4px;
}
.multi-select-options div:hover
{
  background-color: #F5FBFF;
}
.multi-select.open .multi-select-options
{
  display: block;
}
.multi-select-form .req
{
  color: #FF2626;
}
.multi-select-options .active 
{
  background-color: #E5F5FF;
  color: #069AF1;
}
.extra-count
{
  align-items: center;
  justify-content: center;
  background: rgba(6, 154, 241, 0.08);
  border: 0.5px solid #069AF1;
  border-radius: 100px;
  font-size: 14px;
  width: auto;
  height: fit-content;
  color: #069AF1;
  font-family: 'PoppinsMedium';
  padding: 4px 7px;
}
.multiselect-dropdown
{
  position: relative;
}
.multiselect-dropdown i
{
  position: absolute;
  top: 6px;
  right: 0px;
}
/* Multi-Select */
/* textfield-image-upload */
.company-image-upload
{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.company-image-upload .form-label
{
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  font-family: 'PoppinsRegular';
  color: #3D3D3D;
}
.company-image-upload .form-control
{
  padding: 4px 6px;
  font-size: 15px;
  line-height: 22px;
}
.company-image-upload .req
{
  color: #FF2626;
}
.upload-content
{
  display: flex;
  align-items: center;
  gap: 4px;
}
.company-image-upload .close-btn
{
  border-radius: 24px;
  padding: 5px;
  border: 0.5px solid #E54E4E;
  color: #E54E4E;
  background-color: #FFEBEB;
}
.company-image-upload .close-btn i
{
  font-size: 14px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
}
.company-image-upload .close-btn:hover
{
  color: #FFF;
  background-color: #E54E4E;
}
/* textfield-image-upload */
.seperator-line hr
{
  border-color: #8b8b8b;
}
/* tab component */
.banner-order .drop-select
{
  padding: 0px;
  min-height: auto;
  border: none;
  height: auto;
}
.tab-h-scroll
{
  max-width: 150px;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
  text-overflow: clip;
  scrollbar-width: thin;
  scrollbar-color: #EBEBEB #FFF;
}
.layout-modifier
{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px;
  gap: 4px;
  background-color: #FFFFFF;
  border: 1px solid #F6F5F5;
  box-shadow: 0px 4px 12px rgba(19, 19, 20, 0.06);
  border-radius: 16px;
}
.layout-modifier .insights
{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px;
  gap: 6px;
  background-color: #FAFAFA;
  border: 1px solid #F6F5F5;
  border-radius: 12px;
}
.layout-modifier .insights span
{
  font-family: 'PoppinsRegular';
  font-size: 14px;
  color: #3E3B3B;
}
.layout-modifier .insights h6
{
  padding: 5px 6px;
  background-color: #FAFAFA;
  border: 1px solid #E7E6E6;
  box-shadow: 0px 2px 4px rgba(19, 19, 20, 0.08);
  border-radius: 8px;
  font-family: 'PoppinsMedium';
  font-size: 16px;
  margin: 0px;
}
.layout-modifier .btn-primary
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 11px !important;
  background-color: #FCFDFF !important;
  border: 1px solid #FFFFFF !important;
  box-shadow: 0px 2px 4px rgba(152, 181, 255, 0.24), inset 0px 2px 8px rgba(152, 181, 255, 0.32);
  border-radius: 16px !important;
  color: #1C1B1F;
  transition: 0.2s ease-in !important;
  font-size: 20px !important;
}
.layout-modifier .btn-primary i
{
  margin: 0px !important;
}
.layout-modifier .btn-primary:hover
{
  box-shadow: 3px 3px 0px #E0EBFF, 0px 2px 4px rgba(152, 181, 255, 0.24), inset 0px 2px 8px rgba(152, 181, 255, 0.32);
  color: #1C1B1F;
}
.layout-modifier .btn-primary:active
{
  border: 1px solid #C2D8FF !important;
}
.banner-count
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #EBEBEB;
  margin-bottom: 8px;
}
.banner-count span
{
  font-family: 'PoppinsRegular';
  color: #141414;
  font-size: 16px;
}
/* Increase and Decrease */
.number-input
{
  display: flex;
  align-items: center;
  padding: 4px;
  gap: 8px;
  background: #FFFFFF;
  border: 0.5px solid #F6F5F5;
  border-radius: 10px;
  width: fit-content;
}
.number-input button
{
  background: #FFFFFF;
  border: 1px solid #E7E7E7;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 14px !important;
}
.number-input button.plus:after
{
  transform: translate(-50%, -50%) rotate(90deg);
}
.number-input input[type=number]
{
  background: #FFFFFF;
  border: 1px solid #E7E6E6;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-family: 'PoppinsMedium';
  color: #141414;
  font-size: 20px;
}
/* Increase and Decrease */
.mar-12-0
{
  margin: 12px 0px;
}
.width-324
{
  max-width: 324px;
  width: 100%;
}
.table-filter
{
  display: flex;
  justify-content: space-between; 
}
.privilege-tab .form-check input
{
  border-color: #C2C2C2;
}
.privilege-tab .form-check input:focus
{
  box-shadow: none;
}
/* Dashboard */
.insights-topbar
{
  padding: 4px;
}
.insights-topbar .insights
{
      display: flex;
      flex-direction: row;
      align-items: center;
      border-radius: 20px;
      border: 1px solid transparent;
      gap: 30px;
}
.insights .name
{
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.insights .name .icon
{
  border-radius: 100px;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insights .name h6
{
  font-family: 'PoppinsRegular';
  color: #3E3B3B;
  font-size: 16px;
  margin: 0px;
}
.insights .name h2
{
  margin-bottom: 0px;
  font-family: 'PoppinsMedium';
}
.insights .name p
{
  margin-bottom: 0px;
  font-family: 'PoppinsMedium';
}
.insights .metrics
{
  border-radius: 14px;
  padding: 10px;
  background-color: #FFFFFF;
  border: 0.5px solid transparent;
  max-width: fit-content;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center; 
}
.insights .metrics h4
{
  font-family: 'PoppinsMedium';
  color: #141414;
  font-size: 24px;
  margin: 0px;
}
/* Insight Card 1 */
.insights-topbar .insight-card-1
{
  background: rgba(121, 162, 255, 0.03);
  border-color: #79A2FF;
}
.insight-card-1 .name .icon
{
  background-color: #F3E8FF;
  padding: 30px;
  color: #79A2FF;
}
.insight-card-1 .metrics
{
  border-color: #79A2FF;
}
/* End of Insight Card 1 */

/* Insight Card 2 */
.insights-topbar .insight-card-2
{
  background: #F3E8FF;
  padding: 30px;
}
.insight-card-2 .name .icon
{
  background-color: rgba(205, 193, 255, 0.12);
  color: #CDC1FF;
}
.insight-card-2 .metrics
{
  border-color: #CDC1FF;
}
/* End of Insight Card 2 */

/* Insight Card 3 */
.insights-topbar .insight-card-3
{
  background: rgba(160, 214, 131, 0.02);
  border-color: #A0D683;
}
.insight-card-3 .name .icon
{
  background-color: rgba(160, 214, 131, 0.2);
  color: #A0D683;
}
.insight-card-3 .metrics
{
  border-color: #A0D683;
}
/* End of Insight Card 3 */

/* Insight Card 4 */
.insights-topbar .insight-card-4
{
  background: rgba(255, 173, 96, 0.02);
  border-color: #FFAD60;  
}
.insight-card-4 .name .icon
{
  background-color: rgba(255, 173, 96, 0.2);
  color: #FFAD60;
}
.insight-card-4 .metrics
{
  border-color: #FFAD60;
}
/* End of Insight Card 4 */
.chart-bg
{
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #F6F5F5;
  box-shadow: 0px 4px 12px rgba(19, 19, 20, 0.06);
  border-radius: 24px;
  margin-bottom: 30px;
  font-family: 'PoppinsRegular' !important;
}
.chart-name h5
{
  font-family: 'PoppinsRegular';
  color: #141414;
  font-size: 16px;
}
.chart-key
{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
}
.chart-key .key
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #E7E6E6;
  border-radius: 16px;
}
.key .cate-name
{
  display: flex;
  align-items: center;
  gap: 4px;
}
.key .cate-name span
{
  font-family: 'PoppinsRegular';
  color: #3E3B3B;
  font-size: 14px;
}
:root
{
  --category-1: #A9C46C;
  --category-2: #CDC1FF;
  --category-3: #FCDE70;
  --category-4: #4379F2;
  --category-5: #FF6B6B;
  --category-6: #FD8B51;
  --category-7: #4CC9FE;
}
.key .BM i
{
  color: var(--category-1);
}
.key .CONS i
{
  color: var(--category-2);
}
.key .CONT i
{
  color: var(--category-3);
}
.key .ST i
{
  color: var(--category-4);
}
.key .EF i
{
  color: var(--category-5);
}
.key .PB i
{
  color: var(--category-6);
}
.key .CP i
{
  color: var(--category-7);
}
.key .count
{
  padding: 4px 8px;
  background: #FAFAFA;
  border: 1px solid #E7E6E6;
  box-shadow: 0px 2px 4px rgba(19, 19, 20, 0.08);
  border-radius: 8px;
}
/* Dashboard */
.login-page
{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.padd-24
{
  padding: 24px;
}
.login-image img
{
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}
.h-100
{
  height: 100%;
}
.h-100vh
{
  height: 100vh;
}
.login-section
{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.login-section .login-card
{
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 10px;
  background: #FFFFFF;
  /* border: 1px solid #F6F5F5;
  box-shadow: 0px 8px 16px rgba(0, 104, 161, 0.08); */
  border-radius: 24px;
  width: 424px;
}
.login-section .login-card img
{
  height: 48px;
  width: 175px;
  object-fit: contain;
  margin: 0 auto;
}
.login-card h5
{
  font-family: 'PoppinsMedium';
  color: #141414;
  font-size: 24px;
}
.login-button i
{
  margin-right: 6px;
}
.login-button .btn
{
  width: 100%;
}
.forgot-password 
{
  text-align: end;
}
.forgot-password .btn
{
  padding: 0px;
  background: #fff;
  border-bottom: 1px solid transparent !important;
  color: #393E46;
  border-radius: 0px;
  margin-bottom: 10px;
}
.popup-footer .btn:hover, .popup-footer .btn:focus, .btn:first-child:active
{
  border-bottom: 1px solid #393E46 !important;
}
.popup-footer .btn:first-child:active
{
  border: 1px solid transparent;  
}

/* .form-floating label::after
{
  background-color: transparent !important;
} */
/* New Class */
.file > input[type='file'] {
  display: none
}
.table-data a
{
  color: #1b1b1b;
}
.table-data a:hover
{
  color: #393E46;
}
.filters {
  display: flex;
  justify-content: center;
}
.filters button {
  background: #ddd;
  border: none;
  padding: 8px 15px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
}
.filters button.active {
  background: #393E46;
  color: #141414;
}
.filters button:hover {
  background: #393E46;
  color: #141414;
}
.chart-name
{
  display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}


/* Interation */
.reports-top
{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.reports-top .table-filter-icon .dropdown-toggle
{
  background-color: #FFF;
  color: #1A1A1A;
  border: 1px solid #EBEBEB;
}
.reports-top .table-filter-icon .dropdown-toggle:active,
.reports-top .category:active
{
  border: 1px solid #CCC;
}
.reports-top .category
{
  padding: 8px 12px;
  background-color: #FFF;
  border: 1px solid #EBEBEB;
  border-radius: 14px;
  color: #1A1A1A;
  cursor: pointer;
}

.table-filter-icon .dropdown-toggle
{
  padding: 8px 12px;
  background-color: #F5F5F5;
  border: 1px solid #EBEBEB;
  border-radius: 14px;
  color: #1A1A1A;
}
.table-filter-icon .dropdown-toggle:hover
{
  background-color: #393E4636;
}

.table-filter-icon .dropdown-toggle:active
{
  background-color: #393E4636;
  border-color: #393E4636;
  color: #1b1b1b;
}
.table-filter-icon .dropdown-menu.show
{
  padding: 6px;
  border-radius: 14px;
}
.table-filter-icon .dropdown-menu li a
{
  border-radius: 8px;
  color: #1A1A1A;
}
.table-filter-icon .dropdown-menu li a:hover
{
  background-color: #393E4636;
  color: #1A1A1A;
}
.table-filter-icon .dropdown-menu li a:active,
.table-filter-icon .dropdown-menu li .active
{
  background-color: #393E4636;
  color: #1b1b1b;
}
.table-data td span
{
  color: #fff;
  padding: 5px 10px;
  border-radius: 15px;
}
.viewed
{
  background-color: #4CAF50; 
}
.liked
{
  background-color: #2196F3;
}
.downloaded
{
  background-color: #f25044;
}
/* Interation */
.sign-up-option
{
  display: flex;
  gap: 10px;
  margin-bottom: 0px;
  margin-top: 20px;
  justify-content: center;
}
.title-card h3
{
  margin-bottom: 0px;
  margin-left: 15px;
  font-size: 23px;
  color: #212121;
}
.toggle-sidebar .header
{
  margin-left: 24px;
}
.insights .icon
{
  background-color: #bf83ff;
  width: 56px;
  height: 56px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insights .icon i
{
  font-size: 24px;
  color: #fff;
}
.in-card02
{
  background-color: #DCFCE7 !important;
}
.in-card02 .icon
{
  background-color: #3CD856 !important;
}
.in-card03
{
  background-color: #FFE2E5 !important;
}
.in-card03 .icon
{
  background-color: #FA5A7D !important;
}
.in-card04
{
  background-color: #FFF4DE !important;
}
.in-card04 .icon
{
  background-color: #FF947A !important;
}
.order-sum h3
{
  font-size: 20px;
  font-family: 'PoppinsMedium';
  margin-bottom: 20px;
}
.order-sum
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#activityChart {
    font-family: 'PoppinsRegular';
}
.chart-bg h3
{
  font-size: 18px;
  font-family: 'PoppinsMedium';
}
.donut-chart {
  gap: 40px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.legend {
  font-size: 16px;
  color: #6F6F85;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.legend-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
}

.legend-label {
  flex: 1;
}

.legend-value {
  margin-left: 10px;
  color: #000;
} 
.table-top-bar h3
{
  margin-bottom: 0px;
}
.btn-primary a
{
    color: #fff;
}
.btn-primary:hover a
{
    color: #393E46;
}
.action-add {
    display: flex;
    justify-content: end;
    gap: 15px;
}
.order-sum h3 i {
    color: #393E46;
}
.table-top-bar h3 {
    margin-bottom: 0px;
}

.order-sum h3 {
    display: flex;
    align-items: baseline;
    gap: 15px;
}
.action-add .btn-primary {
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'PoppinsRegular';
    font-size: 16px;
    transition: 0.2s ease-in-out;
    background-color: #393E46;
    border: 1px solid transparent;
}

.action-add .btn-primary{
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'PoppinsRegular';
    font-size: 16px;
    transition: 0.2s ease-in-out;
    background-color: #393E46;
    border: 1px solid transparent;
}
.action-add .btn-primary:hover {
    background-color: transparent;
    border: 1px solid #393E46;
    color: #393E46;
}
.action-add .btn-primary:active {
    background-color: transparent;
    border: 1px solid #393E46;
    color: #393E46;
}
.action-add .btn-secondary:active {
    background-color: transparent;
    border: 1px solid #D0D0D0;
    color: #D0D0D0;
}
.action-add .btn-secondary 
{
    background-color: #D0D0D0;
    color: #212121;
    border-color: #d0d0d0;
}
.action-add .btn-secondary:hover
{
    background-color: transparent;
    border: 1px solid #D0D0D0;
    color: #212121;
}

/*Upload-style*/
#upload-container {
    border: 2px dashed #393E46;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

    #upload-container p {
        font-family: 'PoppinsRegular';
        font-size: 16px;
        color: #141414;
        margin-bottom: 0px;
    }

    #upload-container i {
        font-size: 36px;
        color: #393E46;
    }

    #upload-container .browse-files {
        border: 1px solid #393E46;
        background-color: #393E46;
        color: #fff;
        padding: 8px 20px;
        font-size: 15px;
        font-family: 'PoppinsRegular';
        border-radius: 8px;
    }
        #upload-container .browse-files:hover {
            background-color: #fff;
            color: #393E46;
        }
#upload-area span
{
    color: #393E46;
}


#upload-container {
    cursor: pointer;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.factory-filter .drop-select {
    border-color: #f8f8ff;
    background-color: #f5f5f5;
    padding: 13px 20px;
    width: 310px;
    border-radius: 10px;

}
.logo-upload h5
{
   font-size: 15px;
   margin-bottom: 15px;
   color: #1b1b1b;
   margin-top: 20px;
}
.logo-upload h5 .btn
{
    padding: 0px;
    border-radius: 0px;
    border: 0px;
   
    color: #393E46;
    font-family: 'PoppinsMedium';
    margin-left: 15px;
    border-bottom: 1px solid #393E46 !important;
}
.logo-upload h5 .btn:active, .logo-upload h5 .btn:hover
{
    padding: 0px;  
    border-radius: 0px;
     border-bottom: 1px solid transparent !important;
}

.chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: 500;
}

.to-start {
    border: 1px solid #165ACD;
    color: #165ACD !important;
    background-color: #165ACD10;
}

.in-progress {
    border: 1px solid #FF8A15;
    color: #FF8A15 !important;
    background-color: #FF8A1510;
}

.completed {
    border: 1px solid #37833B;
    color: #37833B !important;
    background-color: #37833B10;
}
.tooltip {
    display: none;
    position: absolute;
    background-color: #ffffff;
    color: #333;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    white-space: nowrap;
    font-size: 0.8em;
    z-index: 10;
    border: 1px solid #ddd;
}

.chip:hover .tooltip {
    display: block;
}
.tbl-heading {
    font-size: 25px;
    font-family: 'PoppinsMedium';
    color: #212121;
    margin-top: 20px;
}

.dz-message{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.datatable-wrapper-user, .datatable-wrapper-role {
    padding: 10px;
}

.toast-left {
    top: 1rem;
    right: 1rem;
    position: fixed;
    z-index: 9999;
}