/**
* Template Name: NiceAdmin
* Updated: May 30 2023 with Bootstrap v5.3.0
* Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

body {
  font-family: 'Work Sans';
  background: #f1f1f1;
  color: #444444;
  font-size: 14px;
}

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

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

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 90px;
  padding: 20px 30px;
  transition: all 0.3s;
}

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

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

.pagetitle h1 {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 500;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# 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: 0px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 10px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  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: #ebebeb;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

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

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

.card-title {
  font-size: 20px !important;
  font-weight: 500;
  color: #012970;
  font-family: 'Work Sans';
  margin-bottom: 7px;
}

.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: none;
  border-top: 1px solid #D4DEEE;
  border-bottom: 1px solid #D4DEEE;
  background: none;
}
.accordion-button{color: #345EA7; background: none; padding: 8px 0;}
.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}
.accordion-button::after{background-size: 16px;}
.accordion-body{padding: 0;}
.accordion-button:not(.collapsed) {
  color: #345EA7;
  background-color: transparent;
  box-shadow: none;
}
.accordion-item:last-of-type{border-radius: 0;}

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

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

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}
.accordion-item:first-of-type, .accordion-item:last-of-type .accordion-button.collapsed{border-radius: 0;}

/* 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: 180px;
  } */
}

.logo img {
  max-height: 80px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.sidebar .logo img {
  max-height: 40px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #FFF;
  font-family: "Nunito", sans-serif;
}
.register .logo span{color: #012970;}

.header {
  transition: all ease .2s;
  z-index: 997;
  /* height: 60px; */
  /* box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.05); */
  background-color: #FFFFFF;
  padding-left: 20px;
  margin-left: 290px;
  /* Toggle Sidebar Button */
  /* Search Bar */
  top: 30px;
  right: 30px;
}
.header.header-scrolled{top: 0;}
body.toggle-sidebar .header{margin-left: 30px;}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  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;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #000;
  flex-direction: column;
}

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

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

.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: 220px;
  padding-bottom: 0;
  top: 16px !important;
  /* padding: 23px; */
  border-radius: 0px;
}

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

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

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

.header-nav .profile .dropdown-item span{margin-left: 10px; display: inline-block;}

.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: 30px;
  left: 30px;
  bottom: 30px;
  width: 229px;
  z-index: 996;
  transition: all 0.3s;
  /* padding: 20px; */
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #ffffff;
}

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

.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: 260px;
  }
}

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

.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: 14px;
  font-weight: 400;
  color: #000000;
  transition: 0.3;
  background: #ffce00;
  padding: 10px 15px;
  border-radius: 0px;
}

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

.sidebar-nav .nav-link.collapsed {
  color: #000000;
  background: #f9f9f9;
}

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

.sidebar-nav .nav-link:hover {
  color: #ffffff;
  background: #000000;
}

.sidebar-nav .nav-link:hover i {
  color: #ffffff;
}

.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: #000;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn{height: 45px; border-radius: 25px; padding-left: 25px; padding-right: 25px;}
.btn-primary{background-color: #345EA7; border-color: #1d4486;}
/* .btn-primary:hover{background-color: #eb910a; border-color: #F9A21E;} */
.pagetitle .btn {
  height: auto;
  padding: 6px 16px;
  border: 1px solid #000;
  color: #000;
}
.pagetitle .btn:hover{
  border: 1px solid #f4cb14;
    color: #000;
    background-color: #f4cb14;
}

.img-profile{border-radius: 10px; margin-bottom: 30px; border: 5px solid #003796;}
/* table.dataTable{border-spacing: 0 0.85rem !important; border-collapse: separate !important;} */
table.dataTable{width: 100% !important; padding-top: 20px;}
.table>thead tr th, table.dataTable thead th{background-color: #000000;color: #f9b84b;font-weight: 400;}
/* .table-striped>tbody>tr:nth-of-type(odd)>*{background: #EEEEEE;} */
table.dataTable thead th, table.dataTable thead td{font-size: 14px; padding: 10px 15px; border-right: 1px solid #3e4148;}
table.dataTable.no-footer, .table-striped>tbody>tr:nth-of-type(odd)>*, .table>:not(caption)>*>*, table.dataTable thead th, table.dataTable thead td{border-bottom: none;}
.table>:not(caption)>*>*{background: rgba(52, 94, 167, 0.03);}
.table-borderless.table>:not(caption)>*>*{background-color: transparent;}
.table-borderless.table th{font-weight: 400; color: #000000;}
.table-borderless.table td{font-weight: 300; color: #020202;}
.form-label, label{font-weight: 500;}
[class|="col"] {position: relative;}
.invalid-feedback{position: absolute; bottom: -20px;}
.dashboard-card{position: relative; z-index: 1; align-items: center;}
table.dataTable tbody td{border-right: 1px solid #d5d5d5}
table.dataTable tbody td:last-child{border: none;}

.dashboard-content .count{font-size: 30px;line-height: 1;margin-bottom: 10px; font-weight: 100;}
.dashboard-content .title{font-size: 16px;line-height: 1; font-weight: 600;}
.table-list-dashboard .table{border-spacing: 0 0.85rem !important; border-collapse: separate !important;}
.table-list-dashboard .table tbody tr td{padding: 12px 10px; border-bottom: 1px solid #e7ecf6; border-top: 1px solid #e7ecf6;}

[class*="bgC"]{background: linear-gradient(45deg, #e6e6e6, rgb(0 0 0 / 2%)); border: 1px solid #dedede; box-shadow: none;}
/* [class*="bgC"]::after{width: 120px;content: '';bottom: 0;position: absolute;top: 0;right: 0;border-top-left-radius: 97px;border-left: 7px solid; border-bottom-right-radius: 5px; border-top-right-radius: 5px; background: #ffffff; border-color: #9f9f9f;} */
[class*="bgC"].card{margin-bottom: 15px;}
[class*="bgC"] svg, [class*="bgC"] i{width: 45px; height: 45px; text-align: center; padding: 10px; font-size: 24px; border-radius: 5px; background: rgb(127 127 127 / 30%); fill: #000000; color: #000000;}
[class*="bgC"] .dashboard-content{color: #000000;}
/* .bgC-one{background: rgb(255 114 114 / 30%);}
.bgC-one::after{ border-color: #ffa2a2;}
.bgC-one svg, .bgC-one i{background-color: rgb(255 114 114 / 30%); fill: #f65050; color: #f65050;}
.bgC-one .dashboard-content{color: #f65050;}
.bgC-two{background: rgb(140 111 247 / 30%);}
.bgC-two::after{ border-color: #b3a1f6;}
.bgC-two svg, .bgC-two i{background-color: rgb(140 111 247 / 30%); fill: #6f51e1; color: #6f51e1;}
.bgC-two .dashboard-content{color: #6f51e1;}
.bgC-three{background: rgb(88 221 156 / 30%);}
.bgC-three::after{ border-color: #9ee9c5;}
.bgC-three svg, .bgC-three i{background-color: rgb(88 221 156 / 30%); fill: #31c47c; color: #31c47c;}
.bgC-three .dashboard-content{color: #31c47c;}
.bgC-four{background: rgb(85 181 227 / 30%);}
.bgC-four::after{ border-color: #98deff;}
.bgC-four svg, .bgC-four i{background-color: rgb(85 181 227 / 30%); fill: #3e9cc9; color: #3e9cc9;}
.bgC-four .dashboard-content{color: #3e9cc9;}
.bgC-five{background: #fcc2fd;}
.bgC-five::after{ border-color: #fd91ff;}
.bgC-five svg, .bgC-five i{background-color: rgb(245 54 248 / 30%); fill: #f536f8; color: #f536f8;}
.bgC-five .dashboard-content{color: #f536f8;}
.bgC-six{background: rgb(237 255 0 / 30%);}
.bgC-six::after{ border-color: #e6eb9c;}
.bgC-six svg, .bgC-six i{background-color:rgb(237 255 0 / 30%); fill: #b2c004; color: #b2c004;}
.bgC-six .dashboard-content{color: #b2c004;}
.bgC-seven{background: rgb(107 98 255 / 30%);}
.bgC-seven::after{ border-color: #9e98ff;}
.bgC-seven svg, .bgC-seven i{background-color: rgb(107 98 255 / 30%); fill: #6b62ff; color: #6b62ff;}
.bgC-seven .dashboard-content{color: #6b62ff;}
.bgC-eight{background: rgb(255 186 50 / 30%);;}
.bgC-eight::after{ border-color: #ffd98d;}
.bgC-eight svg, .bgC-eight i{background-color: rgb(255 186 50 / 30%); fill: #ffad0a; color: #ffad0a;}
.bgC-eight .dashboard-content{color: #ffad0a;} */

.login-container .card{height: 100vh; justify-content: center; box-shadow: none;}
.login-container .card .card-body{flex: none; padding-bottom: 0; padding-left: 4em; padding-right: 4em;}
.login-container .carousel-indicators {
  top: auto;
  bottom: 0px;
  height: 20px;
  margin: auto;
}
.login-container .carousel-indicators .active{background-color: #f4cb14;}
.login-container .carousel-indicators [data-bs-target]{height: 6px;}
.login-container .carousel-caption {
  text-align: center;
  width: 77%;
  margin: auto;
  margin-top: 24px;
  height: 135px;
}
.login-container .carousel-caption h5 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 7px;
  color: #f4cb14;
}

.form-switch .form-check-input{border: 1px solid #c0c6cc;}

.login-container .credits {
  position: fixed;
  bottom: 0;
  padding: 7px;
  width: 100%;
  text-align: center;
  width: 100%;
}
.login-container .credits a {
  color: #f4cb14;
}
@media (min-width: 768px) {
  .login-container .credits{color: #FFF;}
}
.h-100vh{height: 100vh;}

/* .login-container .input-group{margin-bottom: 10px;} */
.login-container .input-group>.form-control {
  height: 50px;
  border-radius: 10px;
  border: 2px solid #E7D9D9;
  border-left: 0;
  background: #fbfbfb00;
  color: #ffff;
}
.login-container .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: none;
  color: #ffffff;
  border: 2px solid #E7D9D9;
  padding-left: 25px;
  padding-right: 5px;
  border-right: none;
}

.login-container .btn-primary {
  height: 50px;
  border-radius: 30px;
  width: 100%;
}

/* Edit by zeeshan */

.serviceBox{
  /* border: 1px solid #fdefb5; */
  background-color: #FFF;
  /* display: flex;
  align-items: center; */
  /* padding: 34px 15px; */
  margin-bottom: 20px;
}
/* .serviceBox:hover{
  border: 1px solid #eee;
} */

.serviceBox .service-icon{
  line-height: 44px;
  font-size: 18px;
  /* color: #000000; */
  text-align: center;
  /* border-radius: 50px; */
  background: #20232a;
  color: #f9b84b;
  /* margin-right: 20px; */
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 15px;
}
.serviceBox .service-icon svg{fill: #f9b84b;}
/* .serviceBox:hover .service-icon{ 
  transform: translateY(20px);
  margin-top: -18px;
} */
/* .serviceBox .service-icon:before,
.serviceBox .service-icon:after{
  content: "";
  height: 2px;
  background: #003796;
  position: absolute;
  top: -7px;
  left: 16px;
  right: 10px;
  transition: all 0.3s ease 0s;
  width: 10px;
}
.serviceBox .service-icon:after{
  top: auto;
  bottom: -8px;
  left: 17px;
  right: 10px;
} */
/* .serviceBox:hover .service-icon:before{
  top: -12px;
  transform: rotate(90deg);
}
.serviceBox:hover .service-icon:after{
  transform: rotate(-90deg);
  bottom: -15px;
} */
.serviceBox .title{
  display: block;
  text-transform: uppercase;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #000000;
  margin-bottom: 0px;
  text-align: center;
  padding: 35px;
}
.serviceBox .description{
  margin: 0;
  text-transform: uppercase;
  color: #f9b84b;
  font-family: Work Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  margin-bottom: 7px;
}



/* Edit by Zeeshan 03|07|2023 */
.box-header{
  /* background: #6284bf3b; */
  display: flex;
  padding: 2px 10px;
  margin-right: 12px;
  align-items: center;
  border-right: 1px solid #d8d8d8;
}
.box-header h5{
  font-size: 14px;
  margin-bottom: 0px;
  color: #000000;
}
.box-header p{
  font-size: 12px;
  margin-bottom: 0px;
  color: #000000;
  font-weight: 400;
}
.box-header i{
  color: #fff;
  margin-right: 10px;
}

.closet-btn-set{border: none;background: #D62828;border-radius: 50%;position: relative;top: 10px;height: 30px;width: 30px;color: #FFF;}
.btn-outline-primary{color: #000;border-color: #f4cb14;}
.btn-outline-primary:hover{color: #000;background-color: #f4cb14;}
.btn-primary{color: #000; background-color: #fbbe01; border: none;}
.btn-primary:hover{color: #f4cb14; background-color: #000;}

/* Edit by Zeeshan 06|07|2023 */
.servicesbox-set {
  --bs-gutter-x: 0.7rem;
  margin-bottom: 20px;
}
.manage-profile{
  /* background-color: #000000; */
  padding: 8px 24px 8px 15px !important;
  color: #000;
}
.username{
  margin-bottom: 0px;
}
.user-icon{
  font-size: 28px;
  /* margin-right: 15px; */
}
.dropdown-header a{
  text-align: left;
  font-size: 15px;
}
.profile li{
  /* padding: 10px 10px !important; */
  border-bottom: 1px solid #eee;
  cursor: pointer;
  text-transform: capitalize;
}
.profile li.dropdown-header{padding: 10px 15px; background: #ebebeb;}
.profile li a{
  font-size: 14px !important;
  color: #2e2c2c;
}
.profile li:last-child{
  border-bottom: none;
}

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

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


.form-control{
  border: 1px solid #CDDBF2;
background: #F4F7FA;
height: 45px;
border-radius: 5px;
font-size: 14px;
}
.form-control:focus{box-shadow: none;}
.form-control:valid{background: #FFF;}
.form-control::placeholder {
  color: #767373;
  transform: scale(0.9);
  transform-origin: left top;
  font-size: 1rem
}
.form-element-label {
  top:21px;
  left: 19px;
  position: absolute;
  line-height: 1.5rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  font-size: 14px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  transform: translateY(-50%);
  transform-origin: left center;
  transition: transform .28s ease,color .28s linear,opacity .28s linear;
  will-change: transform,color,opacity;
  color: #a3a3a3;
  letter-spacing: 0.3px;
}
.form-control:disabled{
  padding: 0;
    text-align: center;
}
.form-control:valid~.form-element-label,.form-control:focus~.form-element-label, .form-control:disabled~.form-element-label{
  transform: translateY(-100%) translateY(-0.5em) translateY(-2px) scale(0.9);
  cursor: pointer;
  pointer-events: auto;
  font-weight: 500;
  color: #000;
  font-size: 14px;
  background: #FFF;
}
.form-control:disabled~.form-element-label{background: none;}
.add-more-credits-btn{
    border: 1px solid #f4cb14;
    color: #f4cb14;
    padding: 12px;
    margin-top: 0px;
    display: inline-block;
    transition: all ease .4s;
}
.add-more-credits-btn:hover{
  color: #000;
  background: #f4cb14;
  border-color: #000;
}

.no-data{margin-top: 15px; height: calc(100vh / 2 + 135px); align-items: stretch;}
.no-data-content{
  /* background: url(../img/no-data-found.png) no-repeat center; */
  height: 100%; text-align: center;  position: absolute; width: 100%; top: 15px;}
.no-data-content h4{font-size: 28px; color: #000; font-weight: 400;}
.no-data-content p{color: #696969; font-size: 16px;}

.searched-details{
  display: none;
  margin-top: 15px;
  /* background: #F4F7FA; */
  /* border: 1px solid #E9EEF8; */
  /* padding: 15px;*/
}

.table-bg-colored.table th, .table-bg-colored.table td{background: #DFE5EF; border-bottom: 3px solid #F4F7FA;}
.table-bg-colored.table th{font-weight: 400; color: #000;}
.table-bg-colored.table th[colspan]{background: none; font-size: 16px;}
.table-bg-colored.table td{font-weight: 300; color: #000;}



.error-message{color: #F00;}
.form-element-label + .error-message{position: absolute; margin: 0; bottom: 0; display: none;}
.error-message p{margin-top: 10px; margin-bottom: 0;}

.loader-wrapper{
  position: fixed;
  background-color: rgb(255 255 255 / 83%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1111;
  display: none;
}
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.loader-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.loading-logo {
  color: white;
}
.loading-logo img{width: 80px;}

.ring {
  width: 190px;
  height: 190px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
}

.ring:nth-child(1) {
  border-bottom: 8px solid #f4cb14;
  animation: rotate1 2s linear infinite;
}

@keyframes rotate1 {
  from {
    transform: rotateX(50deg) rotateZ(110deg);
  }

  to {
    transform: rotateX(50deg) rotateZ(470deg);
  }
}

.ring:nth-child(2) {
  border-bottom: 8px solid #000000;
  animation: rotate2 2s linear infinite;
}

@keyframes rotate2 {
  from {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
  }

  to {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
  }
}

.ring:nth-child(3) {
  border-bottom: 8px solid #0a0a0a;
  animation: rotate3 2s linear infinite;
}

@keyframes rotate3 {
  from {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
  }

  to {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
  }
}

.ring:nth-child(4) {
  border-bottom: 8px solid #f4cb14;
  animation: rotate4 2s linear infinite;
}

@keyframes rotate4 {
  from {
    transform: rotateX(70deg) rotateZ(270deg);
  }

  to {
    transform: rotateX(70deg) rotateZ(630deg);
  }
}

/* Edit by Zeeshan 12|07|2023 */
.select2-container--default .select2-selection--multiple {
  height: 46px;
  overflow: auto;
  border-radius: 5px !important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #cddbf2 1px !important;
}
.select2-container--default .select2-selection--multiple {
  border: 1px solid #cddbf2 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #a0c7f4 !important;
  border: 1px solid #a0c7f4 !important;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

/* Edit By Zeeshan Ahmad 19|07|2019 */
.notification-btn{
  padding-right: 15px;
  border-right: 1px solid #d8d8d8;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 5px;
}

.notification-btn  .dropdown-menu {
  min-width: 340px !important;
  padding: 25px;
  top: 15px!important;
}
.notification-btn .dropdown-menu-arrow::before{background: #ffffff; right: 7px;}
.notify span{
  position: absolute;
  right: 1px;
  background: green;
  color: #fff;
  line-height: 14px;
  text-align: center;
  border-radius: 50px;
  font-size: 12px;
  padding: 3px;
  top: -4px;
  width: 5px;
  height: 5px;
}
.notify circle {
  fill: #0080003d;
}
.notify path{
  fill: green;
}

.notify-defult circle{
  fill: #DFE5EF;
}
.notify-defult path{
  fill: #1D4487;
}
.notification-btn a{
  position: relative;
}
.green-color-add{
  background: #42a310;
}

/* Edit by Zeeshan 09|08|20123 */
.nodata-table{
  padding-top: 0px !important;
}

table.nodata-table {
  border-spacing: 0 0.1rem !important;
  border-collapse: separate !important;
}
.table-heading{
  background-color: #000000;
  padding: 6px;
}
.table-heading h3{
  font-size: 14px;
  margin-bottom: 0px;
  color: #fff;
}

table.nodata-table tbody th, table.nodata-table tbody td {
  padding: 1px 5px;
}
.nodata-table.table>:not(caption)>*>* {
  background-color: #f7f7f7;
}
.nodata-table>tbody>tr:nth-of-type(odd)>* {
  background: #f9f9f9;
}

.box-devided{
  border-right: 1px solid #899bbd;
}

/* Edit By Zeeshan 17|08|2023 */
.bg-fixed{
  background-image: url(../../assets/img/bg-login.jpg);
  height: 100vh;
  width: 100%;
  position: relative;
  background-size: cover;
}
.l-0{
      right: 0%;
      left: 0%;
}
.text-yellow{
  color: #f4cb14;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px !important;
  border-radius: 50px !important;
  border-top: 0px solid transparent;
  border-bottom: 0px solid transparent
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: #000;
  background-color: #efc715;
  border-color: #efc715;
}
.login-container .input-group>.form-control::placeholder{
  color: #fff;
}
.manage-height{
  height: 95vh;
}
.th-transparent{
  background: transparent !important;
  width: 30%;
  color: #000 !important;
}
.th-yelow-bg{
  background: #ffce00 !important;
  color: #000 !important;
}
.table-bordered-white{
  border-color: #ffffff;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0.1em 0.6em !important;
  border-radius: 50px !important;
}
.th-font-size tbody td:first-child{
  text-align: left;
  padding-left: 80px;
}

.th-font-size tr:hover {
  border-spacing: 0 0.3rem !important;
  border-collapse: separate !important;
  width: 100%;
  border-spacing: 0 0.3rem !important;
  border-collapse: separate !important;
}
.th-font-size>tbody>tr:hover>* {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}




.th-font-size {
  overflow: hidden;
  background-color: transparent;
  color: var(--main-color);
  border-left: solid white 1px;
}
.th-font-size td,
.th-font-size th {
  cursor: pointer;
  /* padding: 1rem; */
  position: relative;
}
.th-font-size td:hover::after,
.th-font-size th:hover::after {
  background-color: var(--background-color);
  content: "\00a0";
  height: 99999px;
  left: 0;
  position: absolute;
  top: -5000px;
  width: 100%;
  z-index: -1;
}
.th-font-size tr:hover {
  background-color: var(--background-color);
}

.th-font-size td:hover,
.th-font-size th:hover {
  background-color: var(--main-color);
  color: black;
}

:root {
  --main-color: #f9b84b;
  --background-color: rgba(65, 63, 60, 0.3);
}



/* added by Zeeshan 19-01-2024 */

.upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.upload__btn {
  display: inline-block;
  font-weight: 600;
  color: #000;
  text-align: center;
  min-width: 100%;
  padding: 10px 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px dashed;
  background-color: #ffce0000;
  border-color: #aab7cf;
  border-radius: 0;
  line-height: 26px;
  font-size: 18px;
}
.upload__btn:hover {
  background-color: unset;
  color: #4045ba;
  transition: all 0.3s ease;
}
.upload__btn-box {
  width: 100%;
}
.upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0px 0px 0px 5px;
  justify-content: center;
}
.upload__img-box {
  width: 180px;
  padding: 3px 10px 3px 8px;
  margin-bottom: 0;
}
.upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: -9px;
  right: -11px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
  display: none;
}
.upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}
.upload__btn p{
    margin-bottom: 0rem;
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 64%;
  background-size: contain;
}
/* .upload__box{
  display: flex;
} */

.btn-adjust{
  margin-top: 20px;
}