@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}


#logo, .svg-logo {
  display: none;
}


:root {

  --light: #e3e3e3;
  --lightSelectb: #e3e3e3;
  --lightSelct: #f3f3f3;
  --blue: #3c91e6;
  --light-blue: #cfe8ff;
  --grey: #eee;
  --dark-grey: #aaaaaa;
  --dark: #342e37;
  --red: #db504a;
  --yellow: #ffce26;
  --light-yellow: #fff2c6;
  --orange: #fd7238;
  --light-orange: #ffe0d3;
  --white: #80808094;
  --hover-subnav: #e5e5e5;
  --subnav: #d8d9d9;
  /* --bodybg: #f3f3f3; */
  --bodybg: url(../img/bg.png);
  --dev: #f0f1f5;
  --dev1: #0eff00;
  --navbg: #2e2f2b;
  --tablethcolor: #f0f1f5;
  
  /* --paneltitle: #2e2f2b; */
  --paneltitle:  #2e2f2b;
  --ptitlecolor: var(--tablethcolor);
  --panebody: #f1f1f1;
  --panebodym2: #d7f1e4;
  --bodytext: #2b2b2b;
  --topPanel: #2e2f2b;
  --faicon: #2e2f2b;
  --btnbg: #2e2f2b;
  --btnborder: var(--panebody);
  --tableTrbg: #7070701c;
  --tableth: #2c2c2c;
  --tablethbg: #c5c5c59e;
  --tabletd: #2e2f2b61;
  --fromborder: #03020261;
  --greendiv: #9f0000;;
  --blinfo: #262835;
  /* font-family: sans-serif;
  font-weight: 100; */
  --dragenave: var(--paneltitle);
  --Addbutton: #c9d1d9;
  --fieldset: var(--panebody);
  --dashboard1: #2e4a7d;
  --dash4: #e3e3e3;
  --dashborder: var(--panebody);
  --datepiker: #fff;
  --blockcolor: #b7b7b7eb;
  --devChart: #262835;
  --navHoverbg: #e4e4e4;
  --asllkd: #2e2f2b;
  --asllkd2: #ffffff12;
  --asllkd3: none;
  --panelBD: #cecece;
  --fafaicon:#005c5c;
  --SideNavbar:#2e2f2bbf;
  /* --lato: "Lato", sans-serif; */
  
}

html {
  overflow-x: hidden;
}

body.dark {
  --light: #262835;
  --lightSelectb: #d3d3d4;
  --lightSelct: #262835;
  --grey: #060714;
  --dark: #d3d3d4;
  --white: #f3f3f340;
  --hover-subnav: #535a5f;
  --subnav: #40464c;
  --bodybg: #262835;
  --dev: #0eff00;
  --dev1: #faad14;
  --navbg: #1f1f1f;
  --paneltitle: #1f1f1f;
  --ptitlecolor: #c3c3c3;
  --panebody: #262835;
  --panebodym2: #262835;
  --bodytext: var(--ptitlecolor);
  --topPanel: #262835;
  --faicon: light#b4b4b461;
  --btnbg: #1f1f1f;
  --btnborder: #d3d3d4;
  --tableTrbg: #a9a9a91c;
  --tableth: #c3c3c3;
  --tablethbg: #333;
  --tabletd: #c6c6c62b;
  --fromborder: #c6c6c62b;
  --tablethcolor: #c3c3c3;
  /* font-family: sans-serif;
  font-weight: 100; */
  --greendiv: #0eff00;
  --blinfo: #0eff00;
  --dragenave: var(--topPanel);
  --Addbutton: #1f1f1f;
  --fieldset: var(--topPanel);
  --dashboard1: var(--topPanel);
  --dash4: var(--topPanel);
  --dashborder: #b4b4b461;
  --datepiker: var(--topPanel);
  --blockcolor: #30373df2;
  --devChart: #0eff00;
  --navHoverbg: black;

  --asllkd: #262835;
  --asllkd2: #262835;
  --asllkd3: #b4b4b461;
  --panelBD: #b4b4b461;
  --fafaicon:#ffa500;
  /* --lato: sans-serif; */
}



body {
  background: var(--bodybg);
}

.navbar_bottom {
  display: none; /* Initially hide the navbar */
}


/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
  .navbar_bottom {
    position: fixed;
    bottom: 0;
    left: 30px;
    width: calc(100% - 40px); /* Adjust left and right padding */
    padding: 0px 0; /* Adjust top and bottom padding */
    background-color: var(--panebody); /* Adjust background color */
    z-index: 999; /* Ensure navbar stays on top of other content */
    display: block; /* Display the navbar for mobile devices */
    border-top: 0.5px solid #b4b4b461;
    color: var(--bodytext);
  }
}

.navbar_bottom ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.navbar_bottom ul li {
  display: inline-block;
  /* border-right: 0.5px solid #b4b4b461; 
  border-left: 0.5px solid #b4b4b461;  */
  padding: 5px 5px; /* Adjust top and bottom padding */
}



.profilenavMobilw ul li a {
  display: block;
  padding: 9px;
  color: #fff;
  text-decoration: none;
}


.searchbox {
  border: 0.5px solid #b4b4b461;
  border-radius: 3px;
  background: var(--grey);
  width: 100%;
  color: var(--dark);
  height: 20px;
  padding: 3px;
  font-family: var(--lato);
  margin-bottom: 4px;
}

.SelectAllBox{
  /* background: var(--grey); */
  color: var(--dark);
  font-size: 13px;
}

.selectize-dropdown-content .active {
  /* background-color: var(--grey) !important; */
  background-color: yellow;
  font-size: 13px;
}


.Addbutton {
  width: 47%;
  float: right;
  margin-top: 1px;
  cursor: pointer;
  border: 0.5px solid var(--tablethbg);
  height: 20px;
  border-radius: 3px;
  background: var(--Addbutton);
}

.AddGroup {
  width: 47%;
  float: left;
  margin-top: 2px;
  cursor: pointer;
  border: 0.5px solid var(--dark);
  height: 20px;
  border-radius: 3px;
  background: var(--Addbutton);
}

.AddGroup i {
  color: var(--dark);
}

.Addbutton i {
  color: var(--dark);
}

.coverProfile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  font-size: 13px;
  border: 5px solid #dfdfdf;
  background: #b4b4b461;
}

.profilenav {
  background-color: var(--Addbutton);
  height: 25.5px;
  border: 0.5px solid #b4b4b461;
}



.profilenav ul li a {
  display: block;
  padding: 4px;
  color: #fff;
  text-decoration: none;
}

.profilenav .nav li {
  position: relative;
}
  .profilenav .nav li .badge {
  position: absolute;
  top: 0;
  right: -1px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.2;
}

.profilenav .sactive li a {
  color: whitesmoke;
}



.badgeDesk {
  position: relative;
  top: -26px;
  right: 3px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.2;
  float: right;
}


/* ====panel Close Button */

/* ======== Page Griding System =========== */
* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 3px;
}

/* For desktop: */
.col-1 {
  width: 8.33%;
}

.col-1-5 {
  width: 12.5%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

.col-chart {
  width: 22%;
}

.col-profile {
  width: 78%;
}
.col-BlPc {
  width: 12.5%;
}
@media only screen and (max-width:768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }

  
  [class*="col-chart"] {
    width: 100%;
  }

  [class*="col-dash"] {
    width: 50%;
  }

  [class*="col-BlPc"] {
    width: 50%;
  }

  [class*="col-profile"] {
    width: 100%;
  }
  [class*="col-1 mobile"] {
    width: 8.33%;
  }

  [class*="col-2 mobile"] {
    width: 16.66%;
  }
  [class*="col-3 mobile"] {
    width: 25%;
  }

  [class*="col-4 mobile"] {
    width: 33.33%;
  }

  [class*="col-5 mobile"] {
    width: 41.66%;
  }

  [class*="col-6 mobile"] {
    width: 50%;
  }

  [class*="col-7 mobile"] {
    width: 58.33%;
  }

  [class*="col-8 mobile"] {
    width: 66.66%;
  }

  [class*="col-10 search"] {
    width: 80%;
  }

  [class*="col-2 plusAdd"] {
    width: 20%;
  }
  

  [class*="col-12 buttom"] {
    margin-bottom: 60px;
  }

 
.mobileClassdiv {
  width: 50%;
  float:left;
  display: block;
white-space: nowrap;
}
.mobileClassdiv2 {
  width: 50%;
  float:right;
  display: block;
  white-space: nowrap;
}

.mobileClass tr td {
  font-size: 10px;
  line-height: 10px;
}

label {
  font-size: 11.5px;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400;
  font-family: var(--lato);
}

}
.col-dash {
  width: 50%;
}

.col-dash_m {
  width: 33%;
}


/* ======== Page Griding System =====END====== */

.menu-side {
  font-size: 20px;
  color: white;
}

/* SIDEBAR */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 135px;
  height: 100%;
  background: var(--bodybg);
  z-index: 2000;
  font-family: var(--lato);
  transition: 0.3s ease;
  overflow-x: hidden;
  overflow-y: hidden;
  border-right: 0.8px solid #404040;
}

#sidebar:state(webkit-scrollbar) {
  display: none;
}

#sidebar.hide {
  width: 37px;
}

#sidebar .brand {
  font-size: 15px;
  font-weight: 700;
  height: 33.4px;
  display: flex;
  align-items: center;
  color: #ffffff;
  position: sticky;
  top: 0;
  left: 0;
  background: var(--topPanel);
  z-index: 500;
  box-sizing: content-box;
  border-bottom: 0.5px solid #b4b4b461;
  border-top: 0.5px solid #b4b4b461;
}

#sidebar .brand .bx {
  min-width: 38px;
  display: flex;
  justify-content: center;
}

#sidebar .side-menu {
  width: 100%;
}

#sidebar .side-menu li {
  height: 32px;
  margin-left: 0px;
  padding: 0px;
  border-bottom: 0.01px solid #adadad24;
}

#sidebar .side-menu li.active {
  background: var(--navbg);
  color: var(--dev);
  position: relative;
}

#sidebar .side-menu li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--bodytext);
  white-space: nowrap;
  overflow-x: hidden;
}

#sidebar .side-menu li a i {
  color: var(--fafaicon);
  font-size: 16px;
}
#sidebar .side-menu.top li.active a {
  color: var(--dev);
}

#sidebar .side-menu.top li.active a i {
  color: var(--dev);
}

#sidebar.hide .side-menu li a {
  width: calc(48px - (4px * 2));
  transition: width 0.3s ease;
}

#sidebar .side-menu li a.logout {
  color: var(--red);
}

#sidebar .side-menu.top li a:hover {
  color: var(--dev);
  padding: 0px;
  font-size: 15px;
  background: var(--SideNavbar);
}

#sidebar .side-menu.top li:hover a i {
  color: var(--dev); /* i ট্যাগের হোভার রঙ */
  cursor: pointer;
}


#sidebar .side-menu li a .fa {
  min-width: calc(60px - ((4px + 7px) * 2));
  display: flex;
  justify-content: center;
}

.user-nav {
  border-bottom: 0.5px solid var(--white);
  border-right: 0.5px solid var(--white);
  border-radius: inherit;
  background: #10585f12;
}

.user-nav a {
  border-radius: inherit;
  background: none;
}

/* SIDEBAR */

/* SIDEBAR Bottom */
.side-bottom {
  bottom: 0;
  position: absolute;
}

/* Sidebar Text  */
.text {
  font-size: 13px;
  margin-top: -2px;
}

/* CONTENT */
#content {
  position: absolute;
  width: calc(100% - 135px);
  left: 135px;
  transition: 0.3s ease;
  height: 100vh;
}

#sidebar.hide ~ #content {
  width: calc(100% - 37px);
  left: 37px;
}

/* #content nav .scenav {
  position: static;
} */

/* NAVBAR */

.scenav {
  position: fixed;
    width: 100%;
    display: flex;
    color: var(--dark);
    background:var(--light);
    font-size: 13px;
    z-index: 1000;
    border-bottom: 0.5px solid #b4b4b461;
    /* border-top: 0.5px solid #b4b4b461; */
    /* background-image: linear-gradient(to right, var(--Addbutton), var(--topPanel)); */
}
.subViewCss{
  /* position: fixed; */
  float:left;
  width: 100%;
  margin-top: 31px;
  /* height: 100vh; */
}
.scenav nav a {
  display: block;
  padding: 5.5px;
  color: #fff;
  text-decoration: none;
  /* white-space: nowrap;
	position: relative; */
}

#content nav {
  display: flex;
      align-items: center;
      grid-gap: 15px;
      font-family: var(--lato);
      position: sticky;
      top: 0;
      left: 0;
      z-index: 1000;
      border-bottom: 0.5px solid #b4b4b461;
      border-top: 0.5px solid #b4b4b461;
      justify-content: space-around;
}



#content nav a {
  color: var(--dark);
  font-size: 13px;
}

#content nav .bx.bx-menu {
  cursor: pointer;
}

#content nav .nav-link {
  font-size: 16px;
  transition: 0.3s ease;
}

#content nav .nav-link:hover {
  color: var(--blue);
}

#content nav form {
  max-width: 400px;
  width: 100%;
  margin-right: auto;
}

#content nav form .form-input {
  display: flex;
  align-items: center;
  height: 36px;
}

#content nav form .form-input input {
  flex-grow: 1;
  padding: 0 16px;
  height: 100%;
  border: none;
  background: var(--grey);
  border-radius: 36px 0 0 36px;
  outline: none;
  width: 100%;
  color: var(--dark);
}

#content nav form .form-input button {
  width: 36px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  color: var(--light);
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 0 36px 36px 0;
  cursor: pointer;
}

#content nav .notification {
  font-size: 20px;
  position: relative;
}

#content nav .notification .num {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--light);
  background: var(--red);
  color: var(--light);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#content nav .profile img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  border-radius: 50%;
}

#content nav .switch-mode {
  display: block;
  min-width: 34px;
  height: 17px;
  border-radius: 61px;
  background: var(--grey);
  cursor: pointer;
  position: relative;
}

#content nav .switch-mode::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: calc(17px - 4px);
  background: var(--blue);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#content nav #switch-mode:checked + .switch-mode::before {
  left: calc(100% - (18px - 4px) - 2px);
}

/* NAVBAR */

/* MAIN */
#content main {
  width: 100%;
  padding: 36px 24px;
  font-family: var(--lato);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}

.panel-title {
  background: var(--paneltitle);
  color: var(--ptitlecolor);
  border: 0;
  border-bottom: 0.5px solid var(--grey);
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  padding: 3px 6px 3px 6px;
  font-family: var(--lato);
  font-size: 13px;
  font-weight: 500;
}

.panel-body {
  padding: 5px;
  overflow: hidden;
  background: var(--light);
  color: var(--bodytext);
  font-family: var(--lato);
  border-radius: 3px;
  /* height: 100vh; */
  min-height: 300px;
}

.panel-body-profile {
  padding: 5px;
  overflow: hidden;
  background: var(--light);
  color: var(--bodytext);
  font-family: var(--lato);
  /* height: 100vh; */
  height: -webkit-fill-available;
  overflow: overlay;
}

.panel-bd {
  /* overflow: hidden; */
  border-left: 0.5px solid var(--white);
border-right: 0.5px solid var(--white);
border-bottom: 0.5px solid var(--white);
border-top: none; /* Remove the top border */
  /* border: 0.5px var(--panelBD); */
  border-radius: 3px;
  font-family: var(--lato);
  background: var(--dash4);
  /* height: 100vh; */
  /* position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    overflow: auto; 
    max-width: 90%; 
    max-height: 90%;  */
    
}

.panel-bd1 {
  /* overflow: hidden; */

  /* border: 0.5px solid #b4b4b461; */
  border-radius: 0px;
  font-family: var(--lato);
  /* height: 100vh; */
  /* box-shadow: 1px 1px 50px rgba(0,0,0,.3); */
}
.fullscreen {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 98%;
  /* width: 100%;
  height: 100%; */
  z-index: 9999;
  border-left: 0.5px solid var(--white);
  border-right: 0.5px solid var(--white) #80808094;
  border-bottom: 0.5px solid var(--white);
  /* padding: 10px; */
}
/* .panel-bd.fullscreen, .panel-bd1.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: white;
  overflow: auto;
} */

.panel-title h4 {
  font-size: 13px;
  font-family: var(--lato);
}

span {
  font-size: 13px;
}

/* 
@media screen and (max-width:768px) {
  #sidebar {
    width: 135px;
  }

  #content {
    width: calc(100% - 60px);
    left: 135px;
  }

  #content nav .nav-link {
    display: none;
  }




} */

/* @media screen and (max-width: 576px) {
  #content nav form .form-input input {
    display: none;
  }

  #content nav form .form-input button {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: none;
    color: var(--dark);
  }

  #content nav form.show .form-input input {
    display: block;
    width: 100%;
  }

  #content nav form.show .form-input button {
    width: 36px;
    height: 100%;
    border-radius: 0 36px 36px 0;
    color: var(--light);
    background: var(--red);
  }

  #content nav form.show ~ .notification,
  #content nav form.show ~ .profile {
    display: none;
  }

  #content main .box-info {
    grid-template-columns: 1fr;
  }

  #content main .table-data .head {
    min-width: 420px;
  }

  #content main .table-data .order table {
    min-width: 420px;
  }

  #content main .table-data .todo .todo-list {
    min-width: 420px;
  }






} */

/*//////////  Top Header Area///////*/
/* input {
    display: none;
} */

label {
  cursor: pointer;
  display: inline-block;
}

.contenttest {
  -webkit-transition: height 0.1s ease;
  height: 35px;
  overflow: hidden;
  width: 100%;
  background: var(--topPanel);
  padding: 0px 10px;

}

input:checked + .contenttest {
  height: 0;
  position: fixed;
 
}

/*  /////////////// Scrollable Submenu style /////////////// START////////////// */

div.scrollmenu {
  overflow: auto;
  white-space: nowrap;
}

.navwrap {
  max-width: 600px;
  margin: auto;
  overflow-y: auto;
  white-space: nowrap;
  /* -webkit-overflow-scrolling: touch; seems to confine overflow in error  */
  padding-bottom: 14px;
}

.nav {
  display: table;
  /*white-space fix*/
  width: 100%;
  text-align: center;
  word-spacing: -9em;
  /*white-space fix*/
}

.nav li {
  display: inline-block;
  text-align: left;
  word-spacing: normal;
  /*white-space fix*/
  border-right: 0.5px solid var(--white);
}

.nav li > a {
  position: relative;
}

.nav li:hover,
.nav > li > a:hover,
.nav li:focus,
.nav > li > a:focus {
  z-index: 105;
}

.nav li li {
  display: block;
  border: 0.5px solid var(--white);
}

.nav a {
  display: block;
  padding: 4.5px;
  color: var(--dark);
  text-decoration: none;
  font-family: var(--lato);
  /* white-space: nowrap;
	position: relative; */
}

#nav li a:hover {
  color: var(--bodytext);
  text-decoration: none;
  /* background: var(--navHoverbg); */
  /* white-space: nowrap;
	position: relative; */
  /* #sidebar .side-menu.top li a:hover */
}

.nav li.active {
  background: var(--navbg);
  color: var(--dev);
}

#nav li.active a {
  color: var(--dev);
}

label {
  font-size: 12.5px;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400;
  font-family: var(--lato);
}

.from .finput {
  width: 100%;
  border-radius: 3px;
  box-shadow: none;
  height: 22px;
  border: 0.5px solid var(--fromborder);
  margin-bottom: 4px;
  padding: 3px 5px;
  font-family: var(--lato);
  line-height: 1.42857143;
  background: var(--panebody);
  color: var(--faicon);
  font-size: 15px;
}

.text-muted {
  font-size: 11px;
  margin-top: -6px;
}

textarea {
  width: 100%;
  border: 0.5px solid var(--tabletd);
  border-radius: 4px;
  resize: vertical;
  background: var(--panebody);
  color: var(--faicon);
  font-family: var(--lato);
  padding: 3px;
}

.btn {
  background: var(--btnbg);
  color: white;
  font-family: var(--lato);
  padding: 3px 4px;
  border: 0.5px solid var(--btnborder);
  border-radius: 3px;
  cursor: pointer;
  margin-right: 2px;
  margin-top: 3px;
}

.bx {
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  font-size: 15px;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  speak: none;
  font-family: var(--lato);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav a:click {
  background: var(--hover-subnav);
}

.nav ul {
  position: absolute;
  z-index: 104;
  left: -999em;
  top: 0;
  opacity: 0;
  /* transition: opacity 0.5s, left 0s 0.5s, top 0.5s; */
  background: var(--topPanel);
}

.nav li:click > ul {
  left: auto;
  top: auto;
  opacity: 1;
  /* transition: opacity 0.5s linear, top 0.5s; */
}

.nav li:focus-within > ul {
  left: auto;
  top: auto;
  opacity: 1;
}

.nav ul ul {
  /* transition: opacity 0.4s, left 0s 0.4s, margin 0s 0.4s; */
  z-index: 103;
}

.nav li li:hover ul {
  top: auto;
  margin-left: 100%;
  transform: translateY(-2.2rem);
  opacity: 1;
  transition: opacity 0.5s linear, margin 0.5s;
}

.nav li li:focus-within ul {
  top: auto;
  margin-left: 100%;
  transform: translateY(-2.2rem);
  opacity: 1;
  transition: opacity 0.5s linear, margin 0.5s;
}

/* arrows */
.nav li a:first-child:not(:last-child) {
  padding-right: 20px;
  /* make space for arrows*/
}

.nav li a:first-child:not(:last-child):after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #8d8d8d;
}

.nav > li > a:first-child:not(:last-child):after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #8d8d8d;
  border-bottom: none;
  margin-top: -3px;
}

.nav li:hover a:first-child:not(:last-child):after {
  border-left-color: #fff;
}

.nav li:focus-within a:first-child:not(:last-child):after {
  border-left-color: #fff;
}

.nav > li:hover > a:first-child:not(:last-child):after {
  border-left-color: transparent;
  border-top-color: #fff;
}

.nav > li:focus-within > a:first-child:not(:last-child):after {
  border-left-color: transparent;
  border-top-color: #fff;
}

/* allow touch to play but probably won't work with this scrolling version*/
.nav .touch-only {
  display: none;
  left: -10px;
}

.touch-device .nav .touch-only {
  display: inline-block;
}

.touch-device .nav .touch-only a {
  background: #000;
  color: #fff;
}

/* remove hover when scrolling  */
.isScrolling .nav ul.dropdown {
  left: -999em;
  opacity: 0;
}

/*  /////////////// Scrollable Submenu style /////////////// END////////////// */

/* Hide Top Section Toogle Button */
/* i.fa {
    cursor: pointer;
    user-select: none;
}

.fa:hover {
    color: darkblue;
} */

/* ********* */

.dropdown {
  background: var(--panebody);
  color: #342e37;
  border: 0.5px solid #b4b4b461;
}

#nav li .sactive a {
  color: var(--dev);
}

.dropdown2 {
  background: var(--panebody);
  color: #342e37;
  border: 0.5px solid #b4b4b461;
  margin-top: 6px;
  font-family: var(--lato);
}

.subconfg {
  right: 0;
  position: fixed;
  z-index: 999;
  background: var(--light);
  border-left: 0.5px solid #b4b4b461;
  height: 24px;
  padding: 5px 5px 0px 5px;
  cursor: pointer;
}

.subconfg2 {
  right: 27px;
  position: fixed;
  z-index: 999;
  background: var(--light);
  border-left: 0.5px solid #b4b4b461;
  height: 24px;
  padding: 3px 5px 0px 5px;
  cursor: pointer;
}

/* ====== Icon Color Navbar on= select color======= */
.fa {
  /* color: ; */
  font-size: 15px;
}

.fa:hover {
  color: var(--dev);
  font-size: 14px;
}

.fa-close {
  cursor: pointer;
}



.ttable {
  width: 100%;
  margin-bottom: 3px;
  border: 0.5px solid var(--tabletd);
  padding: 0px;
  line-height: 15px;
  border-spacing: 0px;
  font-size: 12px;
  border-radius: 0px;
  overflow-x: auto; /* Ensure horizontal scrolling */
  max-width: 100%;
  overflow-wrap: anywhere;
  border-collapse: collapse; /* Collapse the borders of table cells */
  font-family: var(--lato);
}


th {
  padding: 2px;
  /* background: var(--tableth); */
  background: var(--tablethbg);
  position: sticky;
  color: var(--tableth);
  /* border: 0.5px solid #7b7e81; */
  border-left-color: var(--tableth);
  border-right-color: var(--tableth);
  font-family: var(--lato);
}

td {
  border: 0.5px solid var(--tabletd);
  padding: 2px 2px 2px 2px;
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  color: var(--bodytext);
  font-family: var(--lato);
}

/* Ensure full table visibility when printing */
@media print {
  .ttable {
    height: auto; /* Remove height restriction for print */
    display: table; /* Revert to default table behavior */
  }
  .theadtb {
    display: table-header-group; /* Proper thead behavior for print */
  }
  .tbodytb {
    display: table-row-group; /* Proper tbody behavior for print */
    overflow: visible; /* No scrolling in print */
    height: auto; /* Full height for print */
  }
}

.ttableReport {
  width: 100%;
  /* margin-bottom: 3px; */
  border: 0.5px solid var(--tabletd);
  padding: 0px;
  /* line-height: 15px; */
  border-spacing: 0px;
  font-size: 12px;
  border-radius: 0px;
  overflow-x: auto; /* Ensure horizontal scrolling */
  max-width: 100%;
  overflow-wrap: anywhere;
  border-collapse: collapse; /* Collapse the borders of table cells */
  font-family: var(--lato);
}

.ttableMenu {
  width: 100%;
  margin-bottom: 3px;
  /* border: 0.5px solid var(--tabletd); */
  padding: 0px;
  line-height: 15px;
  border-spacing: 0px;
  font-size: 13px;
  border-radius: 0px;
  overflow-x: auto; /* Ensure horizontal scrolling */
  max-width: 100%;
  overflow-wrap: anywhere;
}


/* .ttable {
  width: 100%;
  margin-bottom: 3px;
  border: 0.5px solid var(--tabletd);
  padding: 0px;
  line-height: 15px;
  border-spacing: 0px;
  font-size: 13px;
  border-radius: 2px;
} */

/* th {
  padding: 2px;
  background: var(--tableth);
  position: sticky;
  color: var(--ptitlecolor);
} */


.ttableReport td {
  border: 0.5px solid var(--tabletd);
  padding: 0px 0px 0px 0px;
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  color: var(--bodytext);
  font-family: var(--lato);
}

td input {
  height: 18px;
  background: var(--panebody);
  color: var(--faicon);
  border: 0.5px solid #b4b4b461;
  border-radius: 2px;
  padding: 1px;
  font-family: var(--lato);
  width: 100%;
}

td .checkbox {
  height: 12px;
  background: var(--panebody);
  color: var(--faicon);
  border: 0.5px solid #b4b4b461;
  border-radius: 2px;
  padding: 0px;
  font-family: var(--lato);
  width: 100%;
  cursor: pointer;
}

th .sl {
  width: 10%;
}

tr:hover {
  background-color: var(--tableTrbg);
  cursor: pointer;
  /* border: 0.5px #ddd solid; */
  box-shadow: 0px 0px 4px 0px rgb(194 194 194); /* Add border shadow */
  /* border-radius: 5px; */
  transition: all 0.1s ease;
}

.brnone {
  border: none;
  padding: 2px 2px 2px 2px;
  cursor: pointer;
}

.balanceinfo {
  background: var(--paneltitle);
  border-top: 0.5px solid #b4b4b461;
  color: var(--blinfo);
  font-size: 14px;
}

/* .selected {
    background-color: brown;
    color: #FFF;
} */

.hline {
  margin-top: 0px;
  margin-bottom: 0px;
}

.linebt {
  border-bottom: 0.5px solid var(--faicon);
}

.linetop {
  border-bottom: 0.5px solid var(--faicon);
}

.treechart ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.treechart ul {
  margin-left: 6px;
  position: relative;
}


.treechart ul ul {
  margin-left: 0.5em;
}

.treechart ul:before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 1px solid #b4b4b461;
}

.treechart li {
  margin: 0;
  padding: 2px 12px;
  line-height: 26px;
  color: var(--bodytext);
  position: relative;
  cursor: pointer;
  font-size: 13px;
  padding-right: 0px;
  border-bottom: 0.2px solid var(--tabletd);
  /* border-top: 0.2px solid var(--tabletd); */
}

/* .treechart li :hover {
  background: var(--tabletd);
} */
.hoverable:hover {
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.3); /* Add border shadow */
}


.treechart li:hover {
  font-size: 13px;
  color: var(--greendiv);
  /* background: var(--tabletd); */
  box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 65%); /* Add border shadow */
    border-radius: 5px;
    transition: all 0.2s ease;
}


.treechart li .lgview:hover {
  font-size: 13px;
  color: var(--greendiv);
  /* background: var(--tabletd); */
  box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 65%); /* Add border shadow */
    border-radius: 5px;
    transition: all 0.2s ease;
}



.treechart li .fa {
  padding-right: 5px;
  font-size: 15px;
  color: #005c5c;
}

.treechart ul li:before {
  content: "";
  display: block;
  width: 12px;
  height: 0;
  border-top: 1px solid #b4b4b461;
  margin-top: -1.6px;
  position: absolute;
  top: 15px;
  left: 0;
  cursor: pointer;
}

/* 
.treechart ul li:hover {
    box-shadow: 0 0 11px rgba(33,33,33,.2); 
    border-radius: 5px;
  } */

.treechart ul li:last-child:before {
  background: var(--light);
  height: auto;
  top: 15.5px;
  bottom: 0;
}

.fieldset {
  padding: 8px;
  border-radius: 5px;
  border: 0.8px solid #b4b4b461;
  color: var(--faicon);
  background: var(--fieldset);
  height: -webkit-fill-available;
    overflow: overlay;
}

.fieldsetnoPad {
  padding: 0px;
  border-radius: 5px;
  border: 0.8px solid #b4b4b461;
  color: var(--faicon);
  background: var(--fieldset);
}

legend {
  font-weight: 500;
  font-size: 13px;
  /* background: var(--navbg); */
  padding: 3px;
  /* border-radius: 3px;
  color: var(--tablethcolor);
  border: 0.5px solid #b4b4b461; */
  text-transform: uppercase;
}

.dash1 {
  height: 63px;
background: var(--dashboard1); 
  /* background:  #005c11; */
  padding: 5px;
  font-size: 13px;
  border-radius: 3px;
  border: 0.5px solid var(--dashborder);
}


.dash2 {
  height: 63px;
  background: #2e2f2b;
  padding: 5px;
  border-radius: 3px;
  font-size: 13px;
  border: 0.5px solid var(--dashborder);
}

.dash2mt {
  height: 72px;
  background: var(--light);
  padding: 5px;
  font-size: 13px;
  color: var(--bodytext);
  border: 0.5px solid #717171;
}


.SubMenuList {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  padding-top: 5px;
  font-size: 13px;
  font-family: var(--lato);
  border: none;
}


.dash4 {
  height: 192px;
  background: var(--dash4);
  padding: 0px;
  border-top-left-radius: 5px;
  font-size: 13px;
  border-top-right-radius: 5px;
}


.dash4_m {
  height: 100px;
  background: var(--dash4);
  padding: 0px;
  font-size: 13px;
}

.dash5 {
    height: 250px;
    background: var(--dash4);
    padding: 0px;
    font-size: 13px;
    border: 0.5px solid #b4b4b461;
  }

  .dash6 {
    height: 20px;
    background: #262835;
    padding: 0px;
    font-size: 13px;
    margin-bottom: -3px;
  }
.dashicon {
  color: #ffffff;
  font-size: 20px;

}

.dashicon_m {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 4px;
}

.dashicon_mTm {
  font-size: 20px;
  margin-bottom: 4px;
}


.dashtable {
  border: none;
  margin-top: 8px;
  line-height: 18px;
}
.dashtable td {
  border: none;
  padding: 0px;
  color:var(--ptitlecolor);
}

.dashtable_m {
  border: none;
  margin-top: 5px;
}
.dashtable_m td {
  border: none;
  padding: 0px;
  /* color:var(--ptitlecolor); */
}


.dashtable_Menu td {
  border: none;
  padding: 4px;
  color:var(--faicon);
}

.dashtitle{
    border-bottom: 0.5px solid #b4b4b461;
    padding: 3px 6px 3px 6px;
    font-size: 13px;
    font-weight: 500;
}

.Dashbody{
  background: none;
  padding: 3px;
  font-size: 13px;
  font-weight: 500;
  color:var(--ptitlecolor);
}





.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: var(--dark);
  background: var(--datepiker);
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.pika-single:after,
.pika-single:before {
  content: " ";
  display: table;
}
.pika-single:after {
  clear: both;
}
.pika-single.is-hidden {
  display: none;
}
.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}
.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}
.pika-title {
  position: relative;
  text-align: center;
}
.pika-label {
  display: inline-block;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  background-color: var(--datepiker);
}
.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  opacity: 0;
}
.pika-next,
.pika-prev {
  display: block;
  cursor: pointer;
  position: relative;
  outline: 0;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
}
.pika-next:hover,
.pika-prev:hover {
  opacity: 1;
}
.is-rtl .pika-next,
.pika-prev {
  float: left;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);
}
.is-rtl .pika-prev,
.pika-next {
  float: right;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);
}
.pika-next.is-disabled,
.pika-prev.is-disabled {
  cursor: default;
  opacity: 0.2;
}
.pika-select {
  display: inline-block;
}
.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
.pika-table td,
.pika-table th {
  width: 14.285714285714286%;
  padding: 0;
}
.pika-table th {
  color: #999;
  font-size: 13px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}
.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: 0;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 13px;
  line-height: 15px;
  text-align: right;
  background: var(--datepiker);
}
.pika-week {
  font-size: 11px;
  color: #999;
}
.is-today .pika-button {
  color: #3af;
  font-weight: 700;
}
.has-event .pika-button,
.is-selected .pika-button {
  color: #fff;
  font-weight: 700;
  background: #3af;
  box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}
.has-event .pika-button {
  background: #005da9;
  box-shadow: inset 0 1px 3px #0076c9;
}
.is-disabled .pika-button,
.is-inrange .pika-button {
  background: #d5e9f7;
}
.is-startrange .pika-button {
  color: #fff;
  background: #6cb31d;
  box-shadow: none;
  border-radius: 3px;
}
.is-endrange .pika-button {
  color: #fff;
  background: #3af;
  box-shadow: none;
  border-radius: 3px;
}
.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: 0.3;
}
.is-outside-current-month .pika-button {
  color: #999;
  opacity: 0.3;
}
.is-selection-disabled {
  pointer-events: none;
  cursor: default;
}
.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
  color: #fff;
  background: #ff8000;
  box-shadow: none;
  border-radius: 3px;
}
.pika-table abbr {
  border-bottom: none;
  cursor: help;
}
/*# sourceMappingURL=pikaday.min.css.map */

.searchbtn {
  margin-top: 23px;
  padding: 3px;
  font-family: var(--lato);
}

.padding0 {
  padding: 0px;
}

.paddinghaf {
    padding: 1.2px;
  }

  .paddinghaf_m {
    padding: 0px;
  }
.padding1 {
  padding: 0px;
}

.padding1_m {
  padding: 7px;
}
.padding2 {
  padding: 2px;
}



.styletk{
  text-align: right;
}



@media screen and (max-width:768px) {
  .Successtoast {
    display: none;
    position: fixed;
    top: 0;
    left: 50%; /* Adjust as needed */
    transform: translateX(-50%);
    background-color: #0D7200;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    border-radius: 0;
    border: 0.5px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Adjust as needed */
  }

.errortoast {
  display: none;
  position: fixed;
  left: 40px;
  top: 0px;
  right: 0px;
  background-color: red;
  color: #fff;
  padding: 5px;
  font-size: 16px;
  width: 100%;
  border-radius: 0px;
  border: 0.5px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.showToast {
  display: none;
  position: fixed;
  left: 40px;
  top: 0px;
  right: 0px;
  background-color: #0D7200;
  color: #fff;
  padding: 5px;
  width: 100%;
  font-size: 16px;
  border-radius: 0px;
  border: 0.5px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}


.PupUpView {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  padding: 0px 0;
  background-color: var(--panebody);
  z-index: 9999;
  transition: opacity 0.1s ease, visibility 0s linear 0.1s;
  height: -webkit-fill-available;
  overflow: overlay;
}

.PupUpView1 {
  /* display: none; */
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%; /* Change to 100% for full width */
  /* height: 100%;  */
  /* height: 100vh; */
  padding: 0px 0;
  /* padding: 26px 0; */
  background-color: var(--blockcolor);
  z-index: 9999;
  overflow-y: scroll;
  transition: opacity 0.1s ease, visibility 0s linear 0.1s;
  height: -webkit-fill-available;
  overflow: overlay;
}

.mobileClassdiv {
  width: 50%;
  float:left;
  display: block;
white-space: nowrap;
}
.mobileClassdiv2 {
  width: 50%;
  float:right;
  display: block;
  white-space: nowrap;
}

.mobileClass  {

  width: 100%;
    margin-bottom: 3px;
    border: 0.5px solid var(--tabletd);
    padding: 0px;
    line-height: 10px;
    border-spacing: 0px;
    font-size: 10px;
    border-radius: 0px;
    overflow-x: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
    border-collapse: collapse;
    font-family: var(--lato);
    white-space: nowrap;
}


.mobileDatecl  {
    font-size: 10px;

}



.ttable tr td {
  font-size: 14px;
  /* font-family: ui-monospace; */
  line-height: 18px;
}

.ttable tr th {
  font-size: 14px;
  /* font-family: ui-monospace; */
}

.mttable {
  font-size: 11px;
  display: block;
  white-space: nowrap;
  width: 100%;

}
.mttablenoPr {
  font-size: 12px;
  /* display: block; */
  /* white-space: nowrap; */
  width: 100%;

}
.mttablenobl {
  font-size: 12px;
  display: block;
  /* white-space: nowrap; */
  width: 100%;

}
.searchbtn{
  font-size: 12px;
}
.mdate{
  width: 45%;
}
.mdatech{
  width: 10%;
}
.mdLedger{
  width: 70%;
}
.mdQrC{
  width: 30%;
}


.closebtn {
  margin-top: -19px;
  margin-right: -1px;
  cursor: pointer;
  background: red;
  width: 40px;
  height: 40px;
  position: fixed;
  border-radius: 50%;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  bottom: 8%;
  border: 2px solid white;
  left: 45%;
  font-size: 21px;
  color: white;
  font-weight: 700;
}



.treechart li {
  margin: 0;
  padding: 0 12px;
  line-height: 35px;
  color: var(--bodytext);
  position: relative;
  cursor: pointer;
  font-size: 15px;
  padding-right: 0px;
  font-weight: bold;
  /* border-bottom: 0.2px solid #4d4d4d; */
 /* border-top: 0.2px solid #4d4d4d; */
}
.treechart li .fa {
  padding-right: 5px;
  font-size: 16px;
  font-weight: bold;
}
.selectize-input {
  font-size: 15px;
}

.treechart ul li:before {
  content: "";
  display: block;
  width: 12px;
  height: 0;
  border-top: 1px solid #4d4d4d;
  margin-top: 3px;
  position: absolute;
  top: 9.5px;
  left: 0;
  cursor: pointer;
}

.treechart ul:before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 1px solid #4d4d4d;
}

#content nav a {
  color: var(--dark);
  font-size: 14px;
}

label {
  font-size: 14.5px;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400;
  font-family: var(--lato);
}
.from .finput {
  width: 100%;
  border-radius: 3px;
  box-shadow: none;
  height: 25px;
  border: 0.5px solid var(--fromborder);
  margin-bottom: 5px;
  padding: 3px 5px;
  font-family: var(--lato);
  line-height: 1.42857143;
  background: var(--panebody);
  color: var(--faicon);
  font-size: 14px;
}

.btn {
  font-size: 18px;
}

#sidebar .side-menu li a i {
  color: var(--fafaicon);
  font-size: 17px;
}

.nav li a:first-child:not(:last-child) {
  padding-right: 20px;
  font-size: 15.5px;
}

.nav li li {
  display: block;
  border: 0.5px solid var(--white);
  font-size: 14px;
}

span {
  font-size: 14px;
}
.panel-title {
  font-size: 15px;
}

#sidebar .side-menu li {
  height: 32px;
  margin-left: 0px;
  padding: 0px;
  border-bottom: 0.01px solid #606060;
}



}

@media screen and (min-width:768px) {
  .Successtoast {
    display: none;
    /* position: absolute; */
    position: fixed;
    top: 0;
    left: 50%; /* Adjust as needed */
    transform: translateX(-50%);
    background-color: #0D7200;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    border-radius: 0;
    border: 0.5px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Adjust as needed */
  }
.errortoast {
  display: none;
  /* position: absolute; */
  position: fixed;
  top: 3px;
  left: 50%;
  background-color: red;
  color: #fff;
  font-size: 18px;
  padding: 2px;
  border-radius: 5px;
  border: 0.5px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  /* height: 100vh; */
  height: -webkit-fill-available;
  overflow: overlay;
}

.showToast {
  display: none;
  position: fixed;
  top: 3px;
  font-size: 18px;
  left: 50%;
  background-color: #0D7200;
  color: #fff;
  padding: 2px;
  border-radius: 5px;
  border: 0.5px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  /* height: 100vh; */
  height: -webkit-fill-available;
  overflow: overlay;
}

/* .PupUpView  {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%; 
  padding: 0px 0;
  background-color: var(--panebody);
  z-index: 9999;
  transition: opacity 0.1s ease, visibility 0s linear 0.1s;
  height: -webkit-fill-available;
  overflow: overlay;
} */




.PupUpView {
  position: absolute;
  top: 36px;
  left: 50%;
  /* transform: translateX(-50%);  */
  transform: translateX(-50%);
  width: 100%; 
  background-color: var(--panebody);
  z-index: 9998;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  /* height: 100vh; */
  height: -webkit-fill-available;
  overflow: overlay;
  visibility: hidden; 
  opacity: 0; 
}

.PupUpView.open {
  visibility: visible; /* Make the popup visible */
  opacity: 1; /* Fully opaque */
  /* transform: translateX(-50%) scale(1);  */
  transform: translateX(-50%) scale(1); 
  padding: 6px;
  /* background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px), linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px); */
  /* background-image: url(../img/bg.png); */
  background-image: var(--bodybg);
  background-size: 2px 2px;
}

/* Optional: Smooth fade-in on page load for better initial appearance */
body {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.PupUpView1  {
  /* display: none; */
  /* position: absolute; */
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%; /* Change to 100% for full width */
  /* height: 100%;  */
  /* padding: 62px 0; */
  padding: 0px 0;
  background-color: var(--blockcolor);
  z-index: 9999;
  overflow-y: scroll;
  transition: opacity 0.1s ease, visibility 0s linear 0.1s;
  /* height: 100vh; */
  height: -webkit-fill-available;
  overflow: overlay;
}


/* .closebtn {
  display: none;
} */



.closebtn {
  float: right;
  margin-right: 2px;
  margin-left: 10px;
  font-size: 12px;
  margin-top: 0px;
  /* font-weight: bold; */
  cursor: pointer;
  /* background: brown; */
  -webkit-text-stroke: 2px #0eff00;
}


}


.loaderPopup {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #2e2f2b;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px; /* Half of the height */
  margin-left: -15px; /* Half of the width */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


#content nav .nav-link {
  display: none;
}


#sidebar.hide .PupUpView {
  left: 155px;
}

.Successtoast i {
  font-size: 20px;
  border-radius: 50%;
  border: 1px solid white;
  padding: 1px;
}

.errortoast i {
  font-size: 20px;
  border-radius: 50%;
  border: 1px solid white;
  padding: 1px;
}


.showToast i {
  font-size: 20px;
  border-radius: 50%;
  border: 1px solid white;
  padding: 1px;
}

/* .PupUpView {
  display: none;
  position: fixed;
  top: 61px;
  left: 36;
  width: auto;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.20);
  z-index: 9999;
  overflow-y: auto;
} */


.selected {
  background-color: brown;
  color: #FFF;
}





.refreshBtn {
  cursor: pointer;
  font-size: 16px;
  float: right;
  margin-right: 5px;
}


.ToClassPrint {
  float: right;
  margin-right: 2px;
  margin-left: 10px;
  font-size: 11px;
  margin-top: 0px;
  /* font-weight: bold; */
  cursor: pointer;
}


/* .sactiver {
  padding: 3px 3px;
  line-height: 19px;
} */

.highlighted-row {
  background-color: red;
  color: white; /* Optional: Adjust text color for better contrast */
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Apply the animation to the closebtn class */
.blink {
  animation: blink 1s infinite; /* Blinking duration */
  color:#2dff00
}

.border{
  border: 0.5px solid #b4b4b461;
    border-radius: 5px;
}

#contextMenu {
  position: absolute;
  display: none;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  z-index: 9999;
  border-radius: 5px;
  width: 10%;
}

#contextMenu ul {
  list-style: none;
  margin: 0;
  padding: 0px;
}

#contextMenu li {
  padding: 5px 5px;
  cursor: pointer;
  font-size:13px;
}

#contextMenu li:hover {
  background-color: #f1f1f1;
}


.table-conDashboard {
  max-height: 226px; /* ১০টি রো-এর জন্য উচ্চতা, আপনি সামঞ্জস্য করতে পারেন */
  overflow-y: auto; /* উল্লম্ব স্ক্রলিং চালু করা */
  overflow-x: auto; /* অনুভূমিক স্ক্রলিং (প্রয়োজনে) */
  position: relative;
}




.folder-view {
  display: flex;
  flex-wrap: wrap;
  gap: 5px; /* ফোল্ডারগুলোর মধ্যে ব্যবধান কমানো */
  padding: 5px;
  justify-content: flex-start;
  min-height: 200px; /* কন্টেইনারের ন্যূনতম উচ্চতা */
}

.folder-item {
  width: 100px; /* ফোল্ডার আইটেমের সাইজ কমানো */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px; /* নিচে অতিরিক্ত স্পেস */
}

.folder-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.folder-container:hover {
  /* background-color: #e6f3ff;  */
  transform: scale(1.1); /* হোভারে সামান্য বড় করা */
}

.folder-icon {
  font-size: 30px; /* আইকন সাইজ সামঞ্জস্যপূর্ণ করা */
  /* color: #f07601;  */
  color: #007bff; /* কমলা রঙ */
  display: flex;
  justify-content: center;
  align-items: center;
}

.folder-icon i {
  display: block;
}

.folder-name {
  font-size: 12.5px; /* নামের ফন্ট সাইজ কমানো */
  font-weight: 600;

  text-align: center;
  max-width: 82px;
  word-wrap: break-word;
  line-height: 1.3;
  margin-bottom: 4px; /* নাম এবং কাউন্টের মধ্যে ব্যবধান */
}

.folder-count {
  font-size: 11px; /* কাউন্টের ফন্ট সাইজ */
  /* color: #555; */
  text-align: center;
  line-height: 1.2;
  color: #015d5c;
}

/* ব্যাক আইকনের জন্য স্টাইল */
.folder-container .tbk-arrow-left::before {
  content: "\f060"; /* Font Awesome-এর arrow-left আইকনের ইউনিকোড */
}

/* ফোল্ডার আইকনের জন্য স্টাইল */
.tbk-folder::before {
  content: "\f07b"; /* Font Awesome-এর folder আইকনের ইউনিকোড */
}
.tbk-folder-open::before {
  content: "\f07c"; /* Font Awesome-এর folder-open আইকনের ইউনিকোড */
}
.tbkfolder.tbk-folder {
  font-size: 35px; /* আইকন সাইজ .folder-icon এর সাথে মিলিয়ে */
} 

.tbkfolder.tbk-folder-open {
  font-size: 35px; /* আইকন সাইজ .folder-icon এর সাথে মিলিয়ে */
} 

.tbkfolder:hover {
  color: #007bff;
  font-size: 35px;
}

/* রেসপনসিভ ডিজাইন */
@media (max-width: 600px) {
  .folder-view {
      gap: 2px;
      padding: 6px;
  }
  .folder-item {
      width: 80px; /* মোবাইলে ছোট সাইজ */
  }
  .folder-container {
      padding: 6px;
  }
  .folder-icon {
      font-size: 32px;
      height: 40px;
  }

  .tbkarrow.tbk-arrow-left {
      font-size: 32px;
      color:#007bff;
  }

  .folder-count {
      font-size: 10px;
      color: #015d5c;
  }
}

/* বড় স্ক্রিনের জন্য অতিরিক্ত স্টাইল */
@media (min-width: 1200px) {
  .folder-item {
      width: 120px;
  }
  .folder-icon {
      font-size: 38px;
  }

  .tbkarrow.tbk-arrow-left {
      font-size: 38px;
      color:#007bff;
  }

  .folder-count {
      font-size: 12px;
      color: #015d5c;
  }
}