body {
  display: block;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: #000;
  scroll-behavior: smooth;
  font-family: sans-serif !important;
  overflow-x: hidden;
  overflow-y: auto;
}
:root{
  --primary: #0b5ed7;
}
/* login page css start */

.login {
  height: 100%;
}
.login .man {
  width: 62%;
  margin: 0 auto;
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
}

.log_in_form {
  width: 62%;
  margin: 0 auto;
}
.addnew {
  padding: 10px 12px 33px ;
}
.loginform {
  width: 60%;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
.login_form_img {
  width: 40%;
  height: 100dvh;
  overflow: hidden;
  position: relative;
  background: #0b5ed7;
}
.login .login_form_img img {
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 10px;
  margin: 0 auto;
  padding: 10px;
}
.forgot {
  display: block;
  text-align: end;
}
.forgot a {
  text-decoration: none;
}
.submit {
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 30px;
}

.logoimg img {
  display: none;
}
/* login page css end */

/* all pages navbar start */
.menunav li {
  padding: 2px 20px;
}
.navmain.bg-light {
  border-bottom: 1px solid #e2e2e2;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-expand-lg {
  justify-content: space-between;
}
.navbar-brand img {
  width: 120px;
  height: auto;
}

a.nav-link.active {
  /* text-decoration: underline; */
  color: var(--primary) !important;
  border-bottom: 1px solid var(--primary);
}

.navbar-nav ul {
  padding: 0;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1 !important;
  width: max-content;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2) !important;
  border: none;
  z-index: 1;
  right: 0;
}

.dropdown-content{
  padding: 0;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #ddd !important;
}

/* .dropdown:hover .dropdown-content {
  display: block;
  top: 100%;
  left: 0;
  margin-top:0.125rem;
} */

.navbar-nav .nav-item.dropdown:not(:last-child):hover .dropdown-content {
  display: block;
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}
.navbar-nav .nav-item.dropdown:last-child:hover .dropdown-content {
  display: block;
  top: 100%;
  right: 0;
  margin-top: 0.125rem;
}

/* all pages navbar end */

/* addnew & export button on all page */
.addnew,
.export {
  padding: 33px 12px;
}
/* .export a {
  background: #0d6efd;
  padding: 11px 34px;
  text-decoration: none;
  color: #ffffff;
}
.addnew a {
  background: #0d6efd;
  padding: 11px 34px;
  text-decoration: none;
  color: #ffffff;
} */

/* addnew button on all page */

/* project page css start */
.select_user ul {
  max-height: 150px;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #ccc;
  list-style: none;
  padding: 5px;
}

.select_user::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 10px;
}
.select_user ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.tasktable {
  padding: 0 22px;
}
/* project page css end */

/* task page modal time start */
.time {
  display: flex;
  gap: 10px;
}
/* task page modal time end */

/* task page table view action css start */

.tasktable .edit .view {
  color: #fff;
}
.tasktable .edit .edit_in {
  display: flex;
  gap: 5px;
  justify-content: center;
}
/* task page table view action css end  */

/* table css on all page start */
.tasktable th {
  text-align: center;
}
tbody .date{
  white-space: nowrap;
}
.tasktable .edit {
  vertical-align: top;
  text-align: center;
}
/* table css on all page end */

.filters {
  padding: 10px 12px;
}
.filter_in {
  display: block;
  align-items: end;
  gap: 5px;
}
.dropfilter {
  position: relative;
}
.dropfilter .dropfilter-list {
  padding: 25px 20px;
  background: #fff;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  max-height: 223px;
  overflow-y: auto;
  background: #fff;
  display: none;
  z-index: 10;
}
.dropfilter .checkbox {
  opacity: 0;
  transition: opacity 0.2s;
}
.dropfilter .dropfilter-label {
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dropfilter .dropfilter-label:before {
  content: "▼";
  position: absolute;
  color: #595c5e;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s;
  transform-origin: center center;
}
.dropfilter.open .dropfilter-list {
  display: block;
}
.dropfilter.open .checkbox {
  transition: 2s opacity 2s;
  opacity: 1;
}
.dropfilter.open .dropfilter-label:before {
  transform: translateY(-50%) rotate(-180deg);
}

.checkbox {
  margin-bottom: 20px;
}
.checkbox:last-child {
  margin-bottom: 0;
}
.checkbox .checkbox-custom {
  display: none;
}

.checkbox .checkbox-custom + .checkbox-custom-label:before {
  content: "";
  background: transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  text-align: center;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  margin-top: -2px;
}
.checkbox .checkbox-custom:checked + .checkbox-custom-label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  height: 10px;
  padding: 2px;
  transform: rotate(45deg);
  text-align: center;
  border: solid #000;
  border-width: 0 2px 2px 0;
}
.checkbox .checkbox-custom-label {
  line-height: 16px;
  font-size: 16px;
  margin-right: 0;
  margin-left: 0;
  color: black;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}

.filter_submit {
  text-align: end;
  /* display: flex;
  align-items: end;
  height: 100%;
  gap: 5px;
  justify-content: flex-end; */
}

/* enable button css */
.tasktable .enable_btn {
  display: flex;
  justify-content: center;
  font-size: 22px;
}
label.error {
  color: #dc3545;
  font-size: 14px;
}
input[type='date'] {
    position: relative;
}

.dataTables_filter{
  margin-bottom: 15px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    background-position: right;
    background-size: auto;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: auto;
    right: 5px;
    top: 0;
    width: 100%;
    padding: 10px;
}
#task{
  display: table;
}
#data-table .details th{
  text-align: center;
}
