:root {
  scroll-behavior: smooth;
  --primary-color:#393a3e;
  --secondary-color:#2aa217;
  --text-color:#fff;
  --primary-font: 'Roboto', sans-serif;
  --light-black:#4c4747;
  --dark-blue:#008481;
  --medium-blue:#05bfbe;
  --light-blue:#00d8d8;
  --black:#000;
  --border-color:rgba(0,0,0,0.1);
}

body {
  font-family: var(--primary-font);
  background:#fff;
  color: #444444;
  font-size:14px;
  letter-spacing: .9px;
  text-transform:capitalize;

}




input:focus {

  outline-style: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
}



/*--------------------------------------------------------------
# table
--------------------------------------------------------------*/
.tblrow {
  width: auto!important;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: var(--primary-font);
  font-size: 20px;
}

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

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

/* 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-item .bi-chevron-down::before{
  font-size:10px;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

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

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

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

.logo span {
  font-size: 20px;
  font-weight: 500;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  padding: 20px;
  color:  var(--secondary-color);
  font-family: var(--primary-font);
}

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

.header .bi-list::before{
  color:black;

}
.header .toggle-sidebar-btn {
  font-size: 20px;
  /*padding-left: 10px;*/
  cursor: pointer;
  color:  var(--text-color);
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}
.sidebar-nav .nav-content{
  background-color: var(--light-black);
}


@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 Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

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

.header .search-container {
  position: relative;

}

.header .search-container input[type=text] {
  padding: 6px;
  font-size: 17px;
  border-bottom:2px solid rgba(0,0,0,0.09);
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
  width: 200px;
  transition: width 0.4s ease-in-out;
}

.header .search-container button {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 4px;
  padding: 6px 10px;
  background: transparent;
  font-size: 14px;
  color:var(--primary-color);
  font-weight: 600;
  border: none;
  cursor: pointer;
 
}
.header .search-container:hover input[type=text] {
  width: 300px;
  padding: 6px;
  font-size: 17px;
}

.header .header-nav .nav-icon {
  font-size: 17px;
  color:  var(--primary-color);
    margin-right: 25px;
  position: relative;
}

.header .header-nav .nav-profile {
  color:  var(--text-color);
}


.header .nav-profile { 
  display: inline-block; 
  position: relative;
 width: 35px; 
  height: 35px; 
  overflow: hidden;
   border-radius: 50%; } 

  .nav-profile img { 
    width: auto; 
    height: 100%; 
  margin-left: -10px; }

.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: 9px;
  padding: 2px 4px;
}

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

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

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

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color:  var(--text-color);
}

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

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

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

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

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

@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: 300px;
  }
}

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

@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-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: 13px;
  font-weight: inherit;
  color: var(--text-color);
  transition: 0.3;
  background: var(--primary-color);
  padding: 7px 12px;
  font-weight:400;
  text-transform: uppercase;
  font-family:var(--primary-font);
}

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

.sidebar-nav .nav-link.collapsed {
  color:  var(--text-color);
  background: var(--primary-color);
}

.sidebar-nav .nav-link.collapsed i {
  color:  var(--text-color);
}

.sidebar-nav .nav-link:hover {
  color:  var(--text-color);
  background:var(--black);
  width: 100%;
}

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

.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: 12px;
  letter-spacing: .9px;
  font-weight: 400;
  color:  var(--text-color);
  transition: 0.3;
  text-transform: uppercase;
  padding: 3px 0 3px 20px;
  transition: 0.3s;
}

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

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

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

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

.progress-bar .progressbarnav .progress-bar{
  background-color: var(--light-blue);
}
.progress{
height:5px;
}
.progress-bar .progressinner .progress-item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 10px;

}
.sidebar .progress-bar{
  padding: 10px;
}
.progress-bar .progressinner 
{
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding:10px 0px;
}
.progress-bar .progressinner .flexpro{
  color:white;
   white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
    max-width:80%;
}

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

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


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

.footer .copyright {
  text-align: center;
  color: #012970;
}
/* mai */
.text-theme{
  color: #fe8100 !important;
}
.bg-theme{
  background-color: #fe8100 !important;
}
/* 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;
}
.send-otp{
  position: absolute;
  top: 0.4px;
  right: 0px;
  height: 37px;
  border-radius: 0px 5px 5px 0px;
}
.header{
  width: 100vw;
  padding: 10px 0px;
  color: white;
}
.select2-container{
  width: 100% !important;
}
label{
  font-size:15px;
}
span.require{
  color: red;
}
.dragBox {
  width: 250px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  font-weight: bold;
  line-height: 95px;
  color: #999;
  border: 2px dashed #ccc;
  display: inline-block;
  transition: transform 0.3s;
}
input[type="file"] {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
}
.draging {
  transform: scale(1.1);
}
#preview {
  text-align: center;
  width:100px;
  height: 100px;
  border: 1px solid #89828273;
  margin-top: 35px;
}
#preview img{
  width:98px;
  height: 98px;
}
.has-error .form-control{border:1px solid red;}
.has-error small{color:red;}
.copy{
  cursor: pointer;
  color: #0041ff;
}
#datatable_wrapper .row .col-sm-12{
  overflow: scroll;
}
/* Hide scrollbar for Chrome, Safari and Opera */
#datatable_wrapper .row .col-sm-12::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#datatable_wrapper .row .col-sm-12 {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.notification{
  color: #31708f;
  background-color: #d9edf7 !important;
  border-left: 5px solid !important;
  border-color: #bcdff1 !important;
  position: relative;
}
.cancel-notify{
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}




body {
  background-color: #fbfbfb;
}
@media (min-width: 991.98px) {
  main {
    padding-left: 240px;
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 58px 0 0; /* Height of navbar */
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
  width: 240px;
  z-index: 600;
  /*new css on 16/09/23*/
  transition: left 0.5s !important;
}
/*new css on 16/09/23*/
a{
    text-decoration: none !important;
}
/*commented on 16/09/23*/
/*@media (max-width: 991.98px) {*/
/*  .sidebar {*/
/*    width: 100%;*/
/*  }*/
/*}*/

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
.list-group-item.active {
  background-color: #fe8100 !important;
  border-color: #fe8100 !important;
}
/* QR Code Style */

#main img{
  border:0;
}
#main #header{
  background:white;
  margin:auto;
}
#main #mainbody{
  background: white;
  width:100%;
display:none;
}
#main #footer{
  background:white;
}
#main #v{
  width:634px;
  height:480px;
}
#main #qr-canvas{
  display:none;
}
#main #qrfile{
  width:auto;
  height:auto;
}
#main #mp1{
  text-align:center;
  font-size:35px;
}
#main #imghelp{
  position:relative;
  left:0px;
  top:0px;
  z-index:100;
  font:18px arial,sans-serif;
  background:#f0f0f0;
margin-left:35px;
margin-right:35px;
padding-top:10px;
padding-bottom:10px;
border-radius:20px;
}
#main .selector{
  margin:0;
  padding:0;
  cursor:pointer;
  margin-bottom:-5px;
}
#main #outdiv
{
  width:640px;
  height:480px;
border: solid;
border-width: 3px 3px 3px 3px;
}
#main #result{
  border: solid;
border-width: 1px 1px 1px 1px;
padding:20px;
}

#main ul{
  margin-bottom:0;
  margin-right:40px;
}
#main li{
  display:inline;
  padding-right: 0.5em;
  padding-left: 0.5em;
  font-weight: bold;
  border-right: 1px solid #333333;
}
#main li a{
  text-decoration: none;
  color: black;
}

#main #footer a{
color: black;
}
#main .tsel{
  padding:0;
}
.social{
  padding: 10px;
  color: white;
  border-radius: 5px;
  margin-right: 10px;
}
.social:hover{
  color:#fff;
}
.social i{
  font-size: 18px;
}
.social i:hover{
  color: #fff;
}
.d_box{
  width: 255px;
  height: 150px;
  margin:10px;
  border-radius: 20px;
  color: white;
  box-shadow: 5px 5px 5px #0000008c;
  padding: 10px;
}
.d_box h3{
  margin-left: 15px;
  margin-top: 10px;
}
.boxes{
  display: flex;
}
.count_d{
  font-size: 50px;
}
.first_box_d{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.first_box_d i{
  font-size: 80px;
}