@charset "utf-8";
* {
  margin: 0px;
  padding: 0px;
}
html,
body {
  scroll-behavior: smooth;
  padding: 0 !important;
  max-width: 100%;
  overflow-x: hidden; 
  /*height:100%;*/
}

a {
  text-decoration: none;
  color: #000;
}
* {
  box-sizing: border-box; 
}

.dashboard#content {
  background-color: none;
}
body {
  text-align: center;
  margin: 0px auto;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ---move to top btn--- */
/* Default: hidden everywhere */
/* Default hidden */
#moveTopBtn,
#moveDownBtn {
  opacity: 0;
  /*visibility: hidden;*/
  display:none;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Mobile only */
@media (max-width: 991px) {
  #moveTopBtn,
  #moveDownBtn {
    position: fixed;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background: rgb(0 0 0 / 9%);
    color: #000;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 10px;
  }

  #moveTopBtn {
    bottom: 72px; /* up arrow */
  }

  #moveDownBtn {
    bottom: 120px; /* down arrow above it */
  }

  .show {
    opacity: 1 !important;
    display: block !important;
    pointer-events: auto !important;
  }
}


/* ==================loader----start================= */
#loader {
 position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;        /* ← this perfectly centers it */
  z-index: 999;
  width: 70px;
  height: 70px;
  border: 0.8em dotted transparent;
  border-top-color: #1bac61;
  border-right-color: #5d78ff;
  border-bottom-color: #1bac61;
  border-left-color: #5d78ff;
  border-radius: 50%;
  -webkit-animation: 2s loader-01 linear infinite;
  animation: 2s loader-01 linear infinite;
}

@keyframes loader-01 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*Bar loader start here*/
.loader-bars {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: flex-end;
  height: 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999;
}

.loader-bars span {
  width: 6px;
  height: 100%;
  background: #1bac61;
  animation: bounceBars 0.6s infinite alternate;
  border-radius:6px;
}

.loader-bars span:nth-child(2) {
  background: #5d78ff;
  animation-delay: 0.1s;
}

.loader-bars span:nth-child(3) {
  background: #1bac61;
  animation-delay: 0.2s;
}

.loader-bars span:nth-child(4) {
  background: #5d78ff;
  animation-delay: 0.3s;
}

.loader-bars span:nth-child(5) {
  background: #1bac61;
  animation-delay: 0.4s;
}

.loader-bars span:nth-child(6) {
  background: #5d78ff;
  animation-delay: 0.5s;
}

@keyframes bounceBars {
  from { transform: scaleY(0.4); opacity: 0.6; }
  to   { transform: scaleY(1); opacity: 1; }
}
/*Dot loader start here*/
#loader-dot{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  display: flex;
  gap: 10px;
  display:none;
}

#loader-dot span{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1bac61;
  animation: loaderPulse 1.4s infinite ease-in-out;
}

#loader-dot span:nth-child(2){
  background: #5d78ff;
  animation-delay: 0.2s;
}

#loader-dot span:nth-child(3){
  background: #1bac61;
  animation-delay: 0.4s;
}
#loader-dot span:nth-child(4){
  background: #1bac61;
  animation-delay: 0.6s;
}
#loader-dot span:nth-child(5){
  background: #1bac61;
  animation-delay: 0.8s;
}
@keyframes loaderPulse{
  0%, 80%, 100%{
    transform: scale(0.4);
    opacity: 0.5;
  }
  40%{
    transform: scale(1);
    opacity: 1;
  }
}
/* ==================loader----end================= */

/*================header start=======================*/
#header {
  width: 100%;
  text-align: left;
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logic-navbar-section {
  /*background-color: #5d78ff !important;*/
  background: linear-gradient(90deg, #1877F2, #1877F2) !important;
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

#header_middle {
  display: flex;
  text-align: end;
  justify-content: end;
  align-items: center;
  gap: 5px;
}
#header .form-select {
  padding: 4px 32px 4px 11px;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.dropdown-toggle {
  color: #000 !important;
  display: flex;
  align-items: center;
}
.dropdown-submenu .dropdown-toggle::after {
  transform: rotate(-90deg);
}
.dropdown-menu {
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.dropdown-menu .dropdown-item {
  margin-bottom: 2px;
  font-size: 14px;
  padding: 9px;
  margin: 0;
}
/* For mobile: Ensure submenus inside offcanvas */
.offcanvas .dropdown-submenu .dropdown-menu {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 0;
  display: none;
  transition: all 0.5s;
}
.dropdown-item {
  color: #212529 !important;
}
.header {
  width: 100%;
  display: flex;
  align-items: center;
}

.navbar {
  height: 40px;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  width:100%;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-toggler {
  color: #fff !important;
  border: 1px solid #fff !important;
  padding: 3px 5px !important;
  margin: 2px 0;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar-toggler-icon {
  background-image: url("../images/menu.png") !important;
  width: 23px !important;
  height: 23px;
  background-size: cover;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #fff !important;
  font-weight: 600;
}
.nav-link {
  color: #fff !important;
}
.btn-link {
  padding: 12px 16px;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 12px 3px 2px;
}
.offcanvas .nav-link {
  color: #000 !important;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  position: relative;
  border-bottom: 2px solid white;
}
.offcanvas .nav-link::before {
  position: absolute;
  content: "";
  background-color: #28a745;
  width: 5px;
  opacity: 0;
  visibility: hidden;
  height: 2px;
  border-radius: 20px;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}
.offcanvas .nav-link:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.offcanvas-header {
  background-color: #1877F2;
  color: white;
}
.navbar-nav {
  gap: 7px;
}
.navbar-nav .nav-link {
  position: relative;
}
#logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login_detail{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 #logo h3 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  /*width: 80%;*/
  text-align: right;
  margin: 0;
}
 #logo h4 {
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    text-align: right;
    display: flex;
    margin: 0;
    padding-left: 7px;
}
#logo img {
  /*max-width: 152px;*/
  max-width:145px;
}
#header_links a:link,
#header_links a:visited {
  font-size: 10px;
  color: #000;
  margin: 0px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
#header_links a:link,
#header_links a:visited {
  font-size: 12px;
  line-height: 14px;
  color: #000;
  font-weight: 600;
  margin: 3px;
  text-align: center;
  text-transform: capitalize;
}
#header_links a:hover {
  color: #3d978e;
  text-decoration: underline;
}
.top_header {
  width: 700px;
  height: 10px;
  float: center;
  padding-left: 0px;
  margin-top: -10px;
  margin-left: 0px;
}
.bg-danger {
  font-size: 8px;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 999 !important;
  display:block;
}
.dropdown-item svg {
  width: 10px;
}
.navbar .dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
  padding: 0;
}
.navbar .nav-item {
  font-size: 14px;
  line-height: 14px;
}
.dropdown-submenu {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logic-navbar-section .dropdown-submenu {
  position: relative;
  padding: 0px;
}
.align_center {
  text-align: center;
}
.align_right {
  text-align: right;
}
.dropdown-submenu .dropdown-menu {
  display: none;
  position: absolute;
  left: 98%;
  top: 0;
  margin-left: 0.1rem;
}
.dropdown-submenu.show > .dropdown-menu {
  display: block;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent !important;
}
.dropdown-submenu:hover,
.dropdown-submenu .dropdown-menu .dropdown-item:hover {
  background-color: #28a745 !important;
}
.dropdown-submenu:hover .dropdown-subitem,
.dropdown-submenu:hover .dropdown-toggle {
  color: white !important;
}
.submenu-li:hover,
.submenu-li:hover .dropdown-item {
  background-color: #28a745 !important;
  color: white !important;
  display: block;
}
.dropdown-submenu:hover a:first-child {
  color: white;
}
.dropdown-menu:hover .dropdown-item {
  color: white;
}
.notification-btn {
  border: none !important;
  background-color: transparent !important;
}
.dropdown-toggle::after {
  font-size: 22px;
  line-height: 22px;
  margin-right: 2px;
}
.logic-navbar-section .mobile-logo-title {
  display: none;
}
#p_bill_to{
    margin-bottom:5px;
}
.header.container-fluid { position: relative; z-index: 1; }
.logic-navbar-section.nav-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #fff; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

#form_top.fixed-below {
  position: fixed !important;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  padding:5px;
  z-index:1;
}
._dynamic-placeholder {
  display: none;            
  width: 100%;
  height: 0;
}
._dynamic-placeholder.active {
  display: block;
}

.logic-navbar-section,
#form_top {
  transition: box-shadow .18s ease, transform .18s ease;
  z-index:99;
}
@media (max-width: 991px) {
  .navbar-collapse {
    display: none;
  }
  .dropdown-submenu {
    position: relative;
    padding: 7px 2px 9px;
    display: block;
  }
  .btn-link {
    padding: 5px 16px !important;
  }
  .offcanvas .dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
  }
  .offcanvas .dropdown-menu.show {
    display: block;
    margin-left: 0px !important;
    left: 151px;
  }
  .offcanvas .dropdown-menu {
    margin-bottom: 3px;
  }
  .offcanvas-body {
    padding: 15px 15px 280px 15px;
    text-align: start;
    background: aliceblue;
  }
  .dropdown-submenu:hover > .dropdown-menu {
    display: auto;
  }
  .dropdown-submenu:focus > .dropdown-menu {
    display: block;
  }
  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }
  .logic-navbar-section .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show {
    color: #000 !important;
  }
  .logic-navbar-section.navbar > .container-fluid {
    justify-content: space-between;
  }
  .logic-navbar-section .mobile-logo-title {
    display: block;
    color: #fff;
    margin-bottom: 0;
  }
  .dropdown-menu.show {
    display: block;
    margin-left: 20px !important;
  }
  #message .date_heading select {
    padding: 0px !important;
  }
  #message p.date_heading {
    margin-left: 0;
  }
  #header_middle {
    display: flex;
    flex-direction: column !important;
    text-align: center !important;
    gap: 17px !important;
    margin-top: 13px !important;
  }
  .navbar > .container {
    flex-direction: row-reverse;
  }
  #logo {
    text-align: center;
    margin: 10px auto 0px;
  }
  #header {
    display: block !important;
    padding:0;
  }
  .dropdown-submenu.show > .dropdown-menu {
    display: block;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 0.1rem;
    z-index: 1000;
  }
  .navbar-nav {
    gap: 0;
  }
  .dropdown-toggle::after {
    font-size: 26px;
    line-height: 26px;
  }
  .dropdown-menu .dropdown-item {
    font-size: 16px;
    line-height: 16px;
    display: inline;
    padding-left: 14px;
  }
  .offcanvas .nav-link {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-toggle {
    display: inline;
    padding: 10px 16px;
  }
  .offcanvas .dropdown-submenu .dropdown-menu {
    position: static;
  }
  .offcanvas .dropdown-submenu .dropdown-menu .submenu-li{
    border-bottom: 1px solid #9e9e9e80;
    padding: 4px 0px;
  }
  .addmore_hr{
    border-top: 1px solid gray;
    background-color: #37aba00a;
    padding: 11px 0px 0px;
  }
  .addmore-delete{
      position:relative;
      bottom:30px;
  }
  .flex_item{
      display:flex !important;
  }
  .grid_layout{
      display:grid !important;
  }
  .bottom_space{
      min-height:50px;
  }
 select{
     width:100% !important;
 }
  #currency_rate td{
      display:flex !important;
  }
  #currency_rate input[type="button"]{
        padding: 8px 14px !important;
        font-size: 14px !important;
        position: relative;
        z-index: 1;
        margin-bottom: 0px !important;
        bottom: 4px;
        left:6px;
  }

  .logic-navbar-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050; 
    width: 100%;
    }
    .header.container-fluid{
        margin-top:5px !important;
    }

    .mobile-logo-title .arrow {
          display: inline-block;
          border-left: 6px solid transparent;
          border-right: 6px solid transparent;
          border-top: 6px solid #ffffff; 
          transition: transform 0.3s ease;
          position: relative;
          top: 8px;
          left: 9px;
    }
    .row-2col-mobile {
        display: flex !important;
        flex-wrap: wrap;
        background-color: white !important;
      }

      .row-2col-mobile td {
        flex: 1 1 50%;
        box-sizing: border-box;
      }
      }

@media (max-width: 575px) {
  .offcanvas .dropdown-submenu .dropdown-menu {
    left: 50%;
    top: 100%;
  }
  #header_links a:link,
  #header_links a:visited {
    font-size: 14px;
    line-height: 14px;
  }
}
.container-selector {
    overflow-x: auto !important;
}
#contact_wrap {
    position: relative !important;
}

#contact_wrap .formError {
    position: absolute !important;
}


/*================header end=======================*/

/* =====================common-css ----start------------------ */
.dropdown-toggle::after {
  margin-left: 5px !important;
}
#message {
  width: 100%;
  padding-left: 10px;
}
#message .row .col-select {
  display: flex;
  gap: 4px;
  justify-content: center;
  padding: 0 4px 0 0;
}
#message h3 {
  font-size: 16px;
  color: #c8ff91;
  margin-top: 15px;
  font-style: italic;
  margin-right: 0px;
}
#message p.date_heading {
  font-size: 16px;
  color: #ffffff;
  margin: 15px 0px 0px 40px;
  font-weight: bold;
}
#message p.date {
  font-size: 12px;
  color: #ffffff;
  margin: 17px 10px 0px 0px;
  float: left;
}
#message .date_heading select {
  padding: 3px;
  border-radius: 8px;
}
#content {
  text-align: left;
  flex: 1;
}
#content .divider {
  background: url("../images/list_page_divider.gif") repeat-x;
  height: 2px;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 3px;
}
#content h2 {
  font-size: 18px;
  margin: 10px auto;
  line-height: 20px;
  color: #000000;
  text-align:center;
}
#content h2 center {
  white-space: nowrap;
  color:#ff0000;
}
td {
  font-weight: 500;
}
.student-list-top-select {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  padding-top: 20px;
  background-color:white;
}

.student-select-field {
  display: flex;
  gap: 8px;
  align-items: center;
}
.content_heading_center {
  display: flex;
  align-items: center;
}

.table_div #contact_wrap{
    border:none !important;
}

.table_div table {
  width: 100%;
  height: auto;
  border-color: #333366;
  border-style: solid;
  border-width: 1px;
}
.table_div table th {
  font-size: 16px !important;
  line-height: 18px !important;
  font-weight: 500;
}
.table_div table td,
.table_div table td a.domain_name {
  font-size: 14px !important;
  line-height: 16px !important;
  font-weight: 500 !important;
  width:auto;
}
.table_div table th {
  text-align: center;
  line-height: 20px;
  color: #ffffff;
  font-size: 14px;
  background: #1bac61;
  padding: 14px 5px;
  border-color: #000;
  border-style: none solid none;
  border-width: 0pt 1px 1px 0pt;
  margin: 0pt;
}
.fa-bell {
  font-size: 24px;
}
.btn .badge {
  font-size: 10px;
  left: 25px;
  top: 20px;
}
.quick-icon li a img {
  width: 22px;
  height: 22px;
  object-fit: cover;
}
table::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
table::-webkit-scrollbar-track {
  background: #f1f1f1;
}
table::-webkit-scrollbar-thumb {
  background: #888;
}
table::-webkit-scrollbar-thumb:hover {
  background: #555;
}
table {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}
#content_heading_center {
  display: flex;
  gap: 2px;
  align-items: center;
}
#content_heading_center h4 {
  font-size: 18px;
  margin: 0px 0px 0px 0px;
  color: #000000;
  text-align: left;
  font-weight: 600;
}
#content_heading_left p {
  color: #3d978e !important;
  font-weight: 600;
}
#content_heading_left p.count {
  font-size: 16px;
  margin: 0px 0px 0px 0px;
  color: #ff6600;
}
.sub-heading{
    color: #9E9E9E;
    font-weight: 600;
}
.common-btn {
  padding: 10px 30px !important;
  font-size: 14px !important;
  line-height: 16px !important;
  position: relative;
  z-index: 1;
}
.btn:focus-visible {
  box-shadow: none;
}
.common-btn:after {
  position: absolute;
  content: "";
  background-color: #1bac61;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.5s;
}
.common-btn:hover::after {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.sm_btn{
   background: #9E9E9E !important;
   padding: 4px 11px !important;
   font-size: 12px !important;
   border-radius: 5px !important;
}
#contact_wrap {
    /*min-height: 95vh;*/
    min-height: 68vh;
}
#contact_wrap table {
  width: 100%;
  margin: 0 auto 10px;
}
#contact_wrap table td {
  border: 0 none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 3px;
  white-space:normal;
}

#contact_wrap table td a.domain_name {
  color: #c64000;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
#contact_wrap .cell_left{
    text-align:left;
}

select {
  padding: 2px 6px 2px 3px;
  margin-bottom: 3px;
  background-color: transparent;
}

th {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  padding-bottom: 8px;
}
input[type="button"] {
  width: auto;
  background: #1bac61;
  padding: 10px 12px;
  border-radius: 10px;
  border: 0 !important;
  color: #fff;
  position: relative;
  z-index: 0;
  transition: all 0.5s;
  margin-bottom: 20px !important;
}
input[type="button"]:focus,
input[type="button"]:hover {
  background-color: #196029 !important;
}
#content {
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}
#contact_wrap {
  padding: 17px;
  border: 1px solid #145d89 !important;
  border-radius: 5px;
  width: auto;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  margin-bottom:10px;
  box-sizing: border-box;
}
.form-control,
.form-select,
.form-check-input,
input,
select,
textarea {
  border: 1px solid #81a2b6 !important;
  font-size: 14px !important;
  line-height: 18px;
}
#contact_wrap input {
  padding: 4px 6px 3px 4px;
  margin-right: 4px;
  margin-bottom: 4px;
}
#contact_wrap input[type="radio"]{
    margin:0;
}
.form-control:focus,
.form-check-input:focus,
.form-select:focus {
  box-shadow: none !important;
}
.form-select:disabled {
  background-color: #bbd4c74f;
}
.form-check-input {
  width: 18px;
  height: 18px;
  margin: 0;
}
@media (max-width: 1265px) {
  .student-list-top-select {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 1199px) {
  .student-select-field {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  #header_links {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: center !important;
  }
  #header_links {
    padding: 0;
  }
  #content_heading_center h4 {
    margin-bottom: 0px;
  }
  #content_heading_left {
    float: left;
    width: auto;
  }
  #content_heading_center h4 {
    margin-top: 0;
  }
  #LBForm table {
    overflow-x: auto;
    width: 100%;
  }
    #emp_payslip_block  tr{
    display:block;
    border-bottom: 1px solid #ddd;
}
}
@media (max-width: 991px) {
  .student-list-top-select {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px 7px;
    z-index: 999;
   
  }
    #form_top{
        box-shadow: 0 4px 3px -2px rgb(0 0 0 / 7%);
    }
  .student-select-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .student-list-top-select .select-btn-grp {
    text-align: center !important;
    margin: auto;
  }
  .student-list-top-select .btn-group,
  .student-list-top-select .btn-group-vertical {
    position: relative;
    display: table-cell !important;
    vertical-align: middle;
  }
  .student-list-top-select .btn-group .btn {
    margin-bottom: 2px;
  }
  .table_div table {
    border: 0 !important;
  }
  .select-btn-grp:empty,
.row.g-2.align-items-center:empty {
  display: none !important;
}
.count_link{
    text-align:left !important;
    padding: 5px 13px 5px 0px !important;
}
.table-hover.table-bordered{
    display: block;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}
.table-hover.table-bordered [data-label="Employee Name"]{
    background-color: #28a74500;
}
.table-hover.table-bordered tr{
    background-color:white !important;
}
.table-hover.table-bordered td{
    vertical-align: top !important;
}
}
@media (max-width: 810px) {
  #content_heading_center {
    width: auto;
  }
}
@media (max-width: 768px) {
  table td input {
    width: 100%;
  }
  .table-full-width input[type="checkbox"] {
      width: auto !important; 
      height:30px;
      /*height: auto;            */
      margin: 0 auto;           
      vertical-align: middle;   
}
table td input[type="checkbox"]{
    width:10%;
}
#myDiv{
    margin-top:48px !important;
}
}
@media (max-width: 767px) {
  .login_detail{
     display:block;
  }
  #message .row .col-select {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .dropdown-item {
    font-size: 12px;
  }
  #LBForm table:first-child td,
  #LBForm table:nth-child(5) td {
    display: block;
  }
  .search-table td {
    margin-bottom: 1px !important;
  }
  #LBForm table:nth-child(4) tbody tr:nth-child(2) td:first-child input {
    width: 100%;
    min-width: 100px;
  }
  #header {
    height: 100%;
  }
  #header_middle {
    width: 100%;
    position: relative;
    left: 3px;
  }
  .common-btn {
    padding: 10px 25px !important;
    /*margin: 0 -40px 0px !important;*/
    text-align: center;
    display: block;
    text-transform: capitalize;
  }
}
@media (max-width: 575px) {
  #content_heading_center h4 {
    margin-bottom: 0;
  }
  .offcanvas .nav-link {
    font-size: 16px;
    line-height: 20px;
  }
  #header_links {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  #contact_wrap {
    padding: 10px;
  }
  #content {
    width: 100%;
    flex: 1; 
    /*min-height: calc(120vh - 100px);*/
    min-height: calc(100dvh - 96px);
  }
  .wrapper{
      min-height : auto;
  }
  #contact_wrap input,textarea {
    padding: 5px 6px 5px 4px;
  }
    #contact_wrap select {
    padding: 5px 6px 5px 0px;
  }
  #contact_wrap input[type="radio"]{
      width:10%;
  }
}
/* =====================common-css ----end------------------ */

/* =============freeze table start ========== */
.table-freeze {
  position: relative;
  overflow: auto;
  max-height: 400px;
  width: 100%;
  overflow-x: auto;
}
.table-freeze th,
.table-freeze td {
  min-width: 140px;
}
.table-freeze th,
.table-freeze tbody th {
  position: sticky;
  top: 0;
  z-index: 5;
}
.table-container thead th {
  background: #1bac61;
  color: white;
}
.table-freeze tbody tr td:first-child,
.sticky-column,
.table-freeze th:first-child {
  position: sticky !important;
  left: 0 !important;
  z-index: 5;
}
.table-freeze th:first-child {
  z-index: 7;
  background-color: #1bac61 !important;
  color: white !important;
}
.table-freeze .table_div table td {
  text-align: center;
  line-height: 20px;
  color: #000;
  font-size: 14px;
  height: auto;
  background-color: #eaeef3;
  border-color: -moz-use-text-color #333366 rgb(51, 51, 102) -moz-use-text-color;
  border-style: none solid solid none;
  border-width: 0pt 1px 1px 0pt;
  margin: 0pt;
  padding: 13px 10px;
}
.table-freeze tr th {
  background: #1bac61;
  color: white;
  z-index: 3;
  padding: 7px 4px;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
}
.sticky-column {
  background: #37aba0 !important;
  color: #fff !important;
  z-index: 3;
}
.sticky-column a {
  color: #fff !important;
}
/* =============freeze table end =========== */

/* =============dashboard page --- start================= */
.dashboardalert.alert {
  padding: 5px 5px;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 7px;
  width: auto;
  max-width:max-content;
  background-color: pink;
  color: #721c24;
}
.dashboardalert.alert div {
  font-size: 14px;
  line-height: 16px;
  color: #721c24;
  text-align: left;
}
.dashboardalert .btn-close {
  padding: 2px 16px !important;
}
/* --dahsboard plus icon -- */
.sortable-table .icon-link > .bi {
  fill: red !important;
}
    /*#snackbar {*/
    /*  visibility: hidden;*/
    /*  min-width: 250px;*/
    /*  margin-left: -125px;*/
    /*  background-color: #333;*/
    /*  color: #fff;*/
    /*  text-align: center;*/
    /*  border-radius: 8px;*/
    /*  padding: 16px;*/
    /*  position: fixed;*/
    /*  left: 50%;*/
    /*  bottom: 30px;*/
    /*  font-size: 16px;*/
    /*  z-index: 9999;*/
    /*  opacity: 0;*/
    /*  transition: opacity 0.5s, bottom 0.5s;*/
    /*}*/

    #snackbar.success {
      background-color: #28a745;
    }

    #snackbar.fail {
      background-color: #dc3545;
    }
    /*#snackbar.show {*/
    /*  visibility: visible;*/
    /*  opacity: 1;*/
    /*  bottom: 50px;*/
    /*}*/
    #snackbar {
  position: fixed;          
  top: 50%;                  
  left: 50%;                 
  transform: translate(-50%, -50%); 
  width: 285px;
  
  background-color: #c1e8e4; 
  color: black;              
  padding: 12px 15px;        
  border-radius: 8px;       
  font-size: 16px;
  max-width: 100%;            
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  z-index: 9999;
  margin:0 auto;
  
  opacity: 0;                
  pointer-events: none;     
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#snackbar.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

    

/* =============dashboard page ---end=================== */
/*Visiting card CSs*/
.visting_card.container {
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  padding: 10px 20px;
  display: contents;
}
.visting_card .visit-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 18px; 
}
.visting_card .visit-item {
  background: linear-gradient(145deg, #ffffff, #f9fafc);
  border-radius: 12px;
  padding: 14px 10px; 
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  margin-bottom: 18px;
}
.visting_card .visit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.visting_card .visit-header {
  margin-bottom: 0px; 
  display:flex;
}
.visting_card .flag {
  padding: 4px 11px; 
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}
.visting_card .flag.onway { background: linear-gradient(135deg, #ff9800, #ffb547); }
.visting_card .flag.planned { background: linear-gradient(135deg, #007bff, #3399ff); }
.visting_card .flag.completed { background: linear-gradient(135deg, #28a745, #4cd964); }
.visting_card .flag.cancelled { background: linear-gradient(135deg, #f44336, #ff7b6b); }
.visting_card .flag.regret {background: linear-gradient(135deg, #7d7979, #cfcac9);}
.visting_card .flag.Yellow { background: linear-gradient(135deg, #ff9800, #ffb547); }
.visting_card .flag.Blue { background: linear-gradient(135deg, #007bff, #3399ff); }
.visting_card .flag.Green { background: linear-gradient(135deg, #28a745, #4cd964); }
.visting_card .flag.Red { background: linear-gradient(135deg, #f44336, #ff7b6b); }
.visting_card .flag.Gray {background: linear-gradient(135deg, #7d7979, #cfcac9);}
.visting_card .info {
  margin: 3px 0; 
  font-size: 14px;
  width:70%;
}
.visting_card  .flag_block{
    width:30%;
    text-align:right;
}
.visting_card .info_name{
  margin: 3px 0; 
  font-size: 14px;
  display:flex;
  line-height: 17px;
  padding-bottom: 5px;
}
.visting_card .info_name div{
    width:50%;
}
.visting_card .info_name div:nth-child(2){
    text-align:right;
}
.visting_card .company_name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}
.visting_card .schedule-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.visting_card .time-info {
  display: flex;
  gap: 0px; 
  font-size: 11px;
  justify-content: start;
  margin-right: 11px;
  flex-wrap: wrap;
  padding: 3px 1px;
  background: #f4f7fc;
  border-radius: 6px;
  border: 1px dashed #cbd5e1;
}
.visting_card .time-range{
    font-weight: 600;
    text-align: left;
}
.visting_card .duration{
    color: #777;
    font-size: 13px;
}
.visting_card .time-info div {
  padding: 2px 3px;
  border-radius: 4px;
}
.visting_card .details div {
  margin: 6px 0; 
  padding: 6px 10px;
  background: #f9fafc;
  border-left: 3px solid #007bff;
  border-radius: 5px;
  font-size: 13px;
  color: #444;
}
.visting_card .action-icons {
  display: flex;
  gap: 7px;
  justify-content: flex-start;
}
.visting_card .action-icons i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}
.visting_card .fa-info { background: linear-gradient(135deg, #ff9800, #ffc266);font-size: 16px;  }
.visting_card .fa-phone { background: linear-gradient(135deg, #28a745, #5dd067);font-size: 14px; }
.visting_card .fa-envelope { background: linear-gradient(135deg, #007bff, #409eff);font-size: 16px; }
.visting_card .fa-sms { background: linear-gradient(135deg, #ff9800, #ffc266);font-size: 17px; }
.visting_card .fa-whatsapp { background: linear-gradient(135deg, #25d366, #2ee279);font-size: 19px;}
.visting_card .action-icons i:hover {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
  .interaction-table {
    width: auto;
    border-collapse: collapse;
    text-align: center;
  }

  .dashboard-tables .interaction-table th {
    background: #eceef3;
    padding: 9px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
  }

  .dashboard-tables .interaction-table td {
    padding: 11px;
    border: 1px solid #ddd;
  }

  .dashboard-tables .interaction-table th i {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .dashboard-tables .interaction-table th span {
    display: block;
    font-size: 13px;
    font-weight: normal;
  }
  .dashboard-tables .interaction-table .heading_icon{
      display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .dashboard-tables .interaction-table h5{
    font-size: 15px;
    font-weight: 600; 
  }
  .punch_block{
     display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 5px 5px 0px 0px;;
  }
  .punch_detail{
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    word-break: break-word;
  }
  .punch-time input{
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 7px;
    
  }

td[data-label="In Punch"] p,
td[data-label="Out Punch"] p{
  padding-top:5px;
}

@media (max-width: 768px) {
  .visting_card .visit-section {
    grid-template-columns: 1fr; 
  }
  .interaction-table{
      width:100%;
  }
}

/* ====== Task list page css ====== */
.top-button-block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.top-button-block a {
  background: #0077cc;
  color: #fff;
  text-decoration: none;
  padding: 5px 18px;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size:14px;
}
.top-button-block h3{
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 32px;
}
.top-button-block span{
    position: relative;
    top: 5px;
}
.top-button-block a:hover {
  background: #005fa3;
}
.top-button-block .button {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.top-button-block .button:hover {
  background: #f0f6ff;
  border-color: #0077cc;
  transform: translateY(-2px);
}
.top-button-block .button b {
  display: block;
  font-size: 18px;
  margin-top: 4px;
  color: #0077cc;
}
.tasklist_tab {
    display: flex;
    justify-content: end;
    gap: 12px;
    align-items: center;
    margin: 20px;
    flex-wrap: wrap;
}
.tasklist_tab button {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
}
.task_list h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}
.Tlist_count {
  display: inline-block;
  margin-left: 6px;
  font-size: 14px;
  color: #666;
}
.plan-data-show {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 15px 18px;
  margin: 15px 0;
  /*box-shadow: 0 3px 8px rgba(0,0,0,0.1);*/
  transition: all 0.3s ease;
}
.plan-data-show:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.inner-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sub-data-block strong.high {
  color: #0077cc;
}
.sub-data-block strong.low {
  color: #cc3300;
}
.generate-content .low,
.generate-content img{
    position:relative;
    bottom:3px;
    left:4px;
}
.sub-data-block .date p {
  font-size: 14px;
  color: black;
  text-align:center;
}
.sub-data-block .sub_div{
    display:flex;
}
.show-field {
  font-size: 15px;
  line-height: 1.5;
}
.show-field-discription p {
  margin: 4px 0;
  font-size: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.show-field .refer_link{
    color: #3436f1;
    text-decoration: underline;
    font-weight: 600;
    padding-left: 9px;
}
.high-light {
  color: #2171b9;
  font-weight: bold;
}
.star, .star_select, .star_sub_task, .star_sub_task_select {
  font-size: 20px;
  transition: transform 0.2s;
}
.star:hover, .star_sub_task:hover {
  transform: scale(1.2);
}
.link-all{
    text-align:right;
}
.mobile-flex{
    width:33.33%;
}
.slect-link{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top:7px;
}
.slect-link a{
    color:blue;
}
.link-all a{
    padding-left: 5px;
}
.formError{
    z-index:1 !important;
}
.top-button-block.select_site select{
    padding: 7px;
    border-radius: 6px;
}
.sub-input.first-flex input{
    width: 100%;
    padding: 7px !important;
    border-radius: 6px;
    border: 1px solid #bfbfbf !important;
}
.sub-input.first-flex-textarea textarea{
    width: 100%;
    padding: 7px !important;
    border-radius: 6px;
    border: 1px solid #bfbfbf !important;
}
.add-submit{
    margin: 10px auto 0px;;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add-submit .domain_name{
    cursor: pointer;
    width: auto;
    background: #1bac61;
    padding: 10px 12px;
    border-radius: 10px;
    border: 0 !important;
    color: #fff;
    position: relative;
    z-index: 0;
    transition: all 0.5s;
    margin-bottom: 20px !important;
}
#emp_payslip_block th,
#emp_payslip_block td {
  border: 1px solid #ddd !important;
  padding: 5px;
}
#display_cust_schedule_sales{
    width: 100%;
    max-width: 1300px;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

/* ====== Mobile Responsiveness ====== */
@media (max-width: 768px) {
  .top-button-block {
    justify-content: center;
    padding-top:7px;
  }
  .plan-data-show {
    padding: 12px;
  }
  .show-field {
    font-size: 13px;
  }
  .top-button-block .button b {
    font-size: 16px;
  }
  .show-field-discription p {
      display: block;
      white-space: normal;
}
.select-data{
    display:grid;
}
.select-data select{
    width:100% !important;
    margin-top: 3px;
}
.mobile-flex.date{
    display: block;
    white-space: normal;
}
  .field_gap{
      margin-bottom:19px !important;
  }
#map_company_head .grid_layout{
    text-align:center !important;
    width:100%;
}
#map_company_head input{
    margin:0 auto;
}
#map_company_head .flex_item{
    padding-bottom:10px;
}
#emp_payslip_block td{
    margin-bottom:5px !important;
}
#emp_payslip_block th,
#emp_payslip_block td {
  border: none !important;
}
}
.status_btn{
    /*background-color: #dc3545;*/
    color: #fff;
    border: none;
    padding: 2px 4px;
    border-radius: 6px;
    cursor: pointer;
    margin: 4px 0px;
    display: inline-block;
}
.status_btn.Green{background-color:#4caf50 ;}
.status_btn.Blue{background-color:#2196f3 ;}
.status_btn.Red{background-color: #dc3545 ;}
.status_btn.Gray{background-color: #9e9e9e;}
.add_task_form{
    background: #f0f8ff8a;
    padding: 4px 13px 0px;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid #808080b0;
    width:40%;
    margin:0 auto;
}
.add_task_form input{
    width:100%;
}
.add_task_form label{
    font-size: 14px;
    color: black;
    font-weight: 500;
    padding: 3px 4px;
}
.add_task_form .add-submit{
    display: block;
    margin: 10px auto 0px;
    text-align: center;
    border-radius: 10px;
}
.add_task_form .submit-btn{
    width:20%;
    background: #1bac61;
    color:white;
    padding:7px !important;
}
.add_task_form  .domain_name{
    padding: 9px 20px;
    background: #1bac61;
    color:white;
    border-radius: 10px;
}
.auto-textarea {
    min-height: 40px;
    max-height: 300px;
    box-sizing: border-box;
    margin: 6px 0;
}
.show-table {
    width: 100%;
    margin: 25px 0px;
}
.show-table.overview_block select{
    padding:5px;
    border-radius:4px;
}
.show-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.show-table table td {
    border: 1px solid #ddd !important;
    padding: 6px 4px;   
    font-size: 13px;
    text-align: center;
    word-wrap: break-word;
}
.show-table table tr:first-child {
    background: #f3f4f6;
    font-weight: 600;
}
.show-table table tr:not(:first-child){
    background:white !important;
}
@media (max-width: 768px) {
    .auto-textarea {
        width: 100%;
        resize: none;
        overflow: hidden;
    }
}
@media (min-width: 769px) {
    .auto-textarea {
        resize: both;       
        overflow: auto;
        width: auto;        
        min-width: 250px;
        max-width: 100%;
    }
}

@media (max-width: 991px){
    .add_task_form{
        width:100%;
    }
    .hightlight_block{
    background: #b9b4b424;
    padding: 1px 5px 6px;
    border: 1px solid #8080807d !important;
    border-radius: 5px;
    margin-top: 10px;
    }
    .hightlight_block input,
    .hightlight_block
}
/*#form_top {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  z-index: 1000;*/
/*  margin-top: 40px;*/
/*  background:white;*/
/*}*/

/*#add_form {*/
/*  position: relative;*/
/*  margin-top: 70px !important; */
/*  height: calc(100vh - 70px); */
/*  overflow-y: auto;*/
/*}*/
/* ====== End Task list page css ====== */

/*================footer style --start--=======================*/
#footer {
  width: 100%;
  padding: 8px 0;
  background: linear-gradient(90deg, #1877F2, #1877F2);
  text-align: center;
  margin-top: 30px;
  position:relative;
  bottom:0;
  z-index:1;
}
#footer p {
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  text-decoration: none;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #footer p {
    font-size: 14px;
  }
}
/*================footer style --end--=======================*/

/*================Dashboard---start======================*/

.dashboard-tables .collapsible-table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.16), 0 1px 1px rgba(0, 0, 0, 0.23);
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
}
.dashboard-tables .collapsible-table:hover {
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.25), 0 8px 6px rgba(0, 0, 0, 0.22);
  transform: scale(1.01);
}
.dashboard-tables .collapsible-table .base-row td {
  height: 100%;
}
.dashboard-tables .collapsible-table .base-row td:not(:last-child) {
  padding: 5px;
}
.dashboard-tables .collapsible-table .base-row td a {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}
.dashboard-tables .collapsible-table .baserow.open td {
  border-bottom: none;
}
.dashboard-tables .collapsible-table .details-row td {
  /*display: none;*/
  text-align: center;
}
.dashboard-tables .collapsible-table .details-row .details {
  /*display: none;*/
  padding: 2px;
}
.dashboard-tables .collapsible-table,
.dashboard-tables th,
.dashboard-tables td,
.heading1 table tr td {
  padding: 5px;
}
.dashboard-tables .details-row .details tr th,
.dashboard-tables .details-row .details td {
  border: 1px solid black;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #000000;
  padding: 4px;
}
.dashboard-tables .base-row {
  background: #1bac61;
}
.icon-link {
  color: red !important;
  font-size: 20px;
  line-height: 20px;
}
.dashboard-tables .details a.domain_name {
  text-decoration: none;
  color: #660000;
  font-weight: bold;
}
.dashboard-tables th {
  background-color: #f2f2f2;
  text-align: left;
}
.dashboard-tables .red {
  color: red;
}
.dashboard-tables .icon {
  display: flex;
  align-content: space-around;
  justify-content: end;
  flex-direction: column;
  padding: 5px;
  cursor: pointer;
  margin: auto;
}
.dashboard-tables .icon .bars {
  margin: 0 0 0 auto;
  height: 8px;
  width: 29px;
}
.dashboard-tables .fold-icon .bars .bar {
  transition: all ease-in-out 0.3s;
  background-color: #fff;
  width: 50%;
  min-height: 2px;
  border-radius: 1px;
}
.dashboard-tables .fold-icon .bars .bar:first-child {
  margin-top: 3px;
}
.dashboard-tables .fold-icon .bars .bar:last-child {
  margin-top: -2px;
  transform: rotate(89deg);
}
.dashboard-tables .fold-icon.open .bars .bar:first-child {
  transform: rotate(179deg);
}
.dashboard-tables .fold-icon.open .bars .bar:last-child {
  transform: rotate(0deg);
}
.dashboard-tables .sortable-table {
  width: 100%;
}
.dashboard-tables .drag-handler {
  width: 1.4em;
  position: relative;
  background-size: 10px 20px;
  cursor: move;
}
.dashboard-tables .drag-handler:active {
  background-size: 10px 20px;
}
.dashboard-tables .ui-sortable {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  flex-wrap: wrap;
}
.dashboard-tables .base-row a {
  color: #fff !important;
  text-decoration: none;
}
.dashboard-tables  .details.table-responsive table{
    width:100%;
}
.alert-dismissible .btn-close {
  position: relative !important;
}
.dashboard-alert.alert.text-center {
  padding: 10px;
  border: 1px solid #3d978e;
  background: #fff;
  font-size: 18px;
  max-width: 500px;
  margin: auto;
  color: #000;
  font-weight: 600;
}
.heading1 {
  width: auto;
  height: auto;
  margin: 20px 20px 3px 0px;
  list-style-type: none;
  padding-bottom: 10px;
}
.dashboard-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.paging .heading1:last-child {
  width: auto;
  height: auto;
  float: left;
  border: 1px solid #f2f1f1;
  list-style-type: none;
  padding-bottom: 10px;
}
.heading1 h3 {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-weight: bold;
  background: #3d978e;
  padding: 6px 6px 6px 6px;
}
.heading1 ul {
  list-style: none;
  float: left;
  padding-left: 10px;
  margin: 0px;
  padding-top: 3px;
  margin-left: 13px;
  line-height: 30px;
}
.heading1 li {
  float: left;
}
.heading1 ul li {
  list-style: square;
  float: left;
  padding-left: 4px;
  padding-right: 10px;
  margin: 0px;
  line-height: 20px;
  font-size: 13px;
  clear: left;
}
.heading1 ul li a {
  font-weight: bold;
  font-size: 13px;
  color: #660000;
  text-decoration: none;
  padding-left: 8px;
}
.heading1:nth-child(5) table {
  overflow-x: auto;
  white-space: nowrap;
  border-collapse: collapse;
}
.heading1 table tr th {
  border: 1px solid #666666;
  font-size: 13px;
}
.heading1 table tr td {
  border: 1px solid #666666;
  text-align: center;
  font-size: 13px;
}
.heading1 table tr td a {
  text-decoration: none;
  color: #660000;
  font-weight: bold;
}
.heading1 table th {
  padding: 3px;
  font-size: 13px;
  font-weight: bold;
}
.details table td {
  padding: 0 10px;
  border: 1px solid #000;
}
.details-row .details tr th,
.details-row .details td {
  font-size: 14px;
  padding: 7px 14px;
}
.heading1 {
  text-align: start !important;
}
.top-button-block{
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-button-block select{
    padding: 7px;
    border-radius: 6px;
    background-color:white;
}
@media (max-width: 991px) {
  .dashboard-tables .ui-sortable {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .collapsible-table .details-row .details {
    padding: 8px;
  }
  .details-row .table-responsive table {
    overflow-x: auto;
    width: 100%;
  }
  .progresive-list {
    top: 70% !important;
    /*box-shadow: 0 0 0 2px #3b82f6 inset, 0 6px 18px rgba(0,0,0,.08);*/
  }

  .grid-vertical{
      display:grid !important;
  }
  td[id^="remove"]{
      position:relative;
      /*bottom:15px;*/
  }
  .panel-custm-table:empty {
  display: none;
}
    .table-container .table td:empty{
        display:none;
    }
.progresive-list table tr {
    display: revert !important;
}
.progresive-list .no-content{
    margin-top:11px !important;
}

}
@media (min-width: 769px) and (max-width: 803px) {
  .heading1:nth-child(5) table {
    width: 84%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    border-collapse: collapse;
  }
  .heading1:last-child table {
    width: 90%;
    overflow-x: auto;
    display: inline-block;
    white-space: nowrap;
    border-collapse: collapse;
  }
}

@media (max-width: 767px) {
  .progresive-list td input {
    min-width: auto !important;
  }
  .heading1:nth-child(5) table {
    width: 94%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    border-collapse: collapse;
  }
  .heading1:last-child table {
    width: 93%;
    overflow-x: auto;
    display: inline-block;
    white-space: nowrap;
    border-collapse: collapse;
  }
}
@media (max-width: 575px) {
  .paging .heading1:last-child,
  .paging .heading1:nth-child(5) {
    width: 89%;
    height: auto;
    float: left;
    border: 1px solid #f2f1f1;
    list-style-type: none;
    background: #e8e8e8;
    padding-bottom: 10px;
  }
  .progresive-list {
    top: 63% !important;
  }
  .heading1:last-child table,
  .heading1:nth-child(5) table {
    width: 95%;
    height: auto;
  }
}
@media (max-width: 399px) {
  .heading1:last-child table,
  .heading1:nth-child(5) table {
    width: 94%;
  }
  .heading1 {
    margin-left: 0;
  }
}
/*================Dashboard---end======================*/
/* ----take page css start */
.takepage_btns{
  display: flex;
  flex-wrap:  wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}
.tack-btn{
background-color: #1bac61;
border: none;
padding: 8px 22px;
color: #fff;
text-transform: capitalize;
font-weight: 700;
border-radius: 3px;
box-shadow: 0px 3px 19px -10px black;
outline: none;
text-decoration: none;
margin-bottom: 0px;
font-size: 14px;
}
.takepage_btns .break_msg{
    font-size:15px;
    padding-left:6px;
}
.add_task_sec h3{
font-size: 18px;
margin: 0px 0px 0px 0px;
color: #000000;
text-align: left;
font-weight: 600;
margin-bottom: 15px;
border-bottom: 1px dashed #ddd;
padding-bottom: 10px;
}
.task-form-label{
  border: 0 none;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 4px;
}
.add_task_sec select{
  border: 0 none;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  width: 100%;
  padding: 4px;
  background: white;
  border-radius: 3px;
}

.add_task_sec input{
  width: 100%;
  padding: 4px;
  background: white;
  border-radius: 3px;
}

.input_select_grid{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 22px;
 margin-bottom: 10px;
 flex-wrap: wrap;
}

.Estimate-field{
  display: flex;
  align-items: center;
  position: relative;
}
.Estimate-field span {
  background: #ddd;
  display: block;
  padding: 4px 6px 4px 6px;;
  text-transform: capitalize;
  position: absolute;
  top: 3%;
  right: 3%;
}
.duration_tag{
    width:15%;
}
.duration_tag .Estimate-field span{
    padding: 2px 8px 1px 8px;
}
.cutm-width-input {
  width: 100%;
  max-width: 400px;
}
.btm_input_select textarea{
  width: 100%;
  /*max-width: 600px;*/
}

.select_submit{
 display: flex;
 justify-content: end;
 margin-top: 20px;
 gap: 10px;
 align-items: center;
 margin-right: 40px;
}
.select_submit input[type="button"]{
    padding: 10px 12px !important;
}
.cross_domain{
  font-weight: 600;
  font-size: 14px;
  width: 35px;
  height: 35px;
  border: 1px solid #f44336;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #ff5722;
}
.daily_plan_inner{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.daily_plan_inner li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.daily_plan_div{
  margin-top: 30px;
}
.snackbar_text{
  font-size: 14px;
  line-height: 16px;
  font-weight: 16px;
  margin-top: 10px;
}
.daily_plan_inner li a{
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #3F51B5;
}
.input_check_boxes{
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  /*gap: 5px;*/
  /*margin-bottom: 20px;*/
  flex-wrap: wrap;
}

.input_check_boxes input{
  margin: 0 !important;
  cursor: pointer;
}
.input_check_boxes label{
  border: 0 none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-left: 5px;
  cursor: pointer;
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  /*width: 120px;  */
}
.input_check_boxes div{
    margin-bottom:18px;
}
.checkboxs-selector{
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
  margin-bottom: 10px;
}
.checkboxs-selector select ,.checkboxs-selector input{
  width: 100%;
  padding: 6px 3px;
  border-radius: 5px;
}
.selector-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.pending_task_button {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pending_task_button a{
  text-align: center;
}

.tasklist_tab{
  display: flex;
  justify-content: end;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tasklist_tab button{
  padding: 6px 12px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  border: 1px solid #2a2a2a;
  border-radius: 5px;
}
.task_list{
  border: 1px dashed #ddd;
  padding: 20px 10px;
}
.task_list_title{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.task_list_title h3{
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #2467A0;
  margin-bottom: 0;
}
.task_list_title span{
  margin-bottom: 0; 
  color: #ff6600;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 15px;
}
.task_list_data {
  background-color: #F4F4F4;
  padding: 20px;
  margin-top: 20px;
  border-radius:5px;
  margin: 15px 0px 0px;
}

.task_data_dashboard{
    background: #f4f4f4;
    position: relative;
    bottom: 4px;
    padding: 5px 0px;
    margin:0px 0px;
}
.task_data_dashboard:not(:has(p)) {
    display: none;
}
.task_data_generate_middel .cross_select{
    cursor: pointer;
    color: red;
    padding: 3px 7px;
}
.task_data_generate_top{
  display: flex;
  /*gap: 40px;*/
  margin-bottom: 10px;
  flex-wrap: wrap;
  align-items:flex-start;
  width:100%;
}
.task_data_generate_top > .generate-content{
    flex:0 0 20%;
}

.task_data_generate_top > div:nth-child(2){
    flex:0 0 50%;
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.task_data_generate_top > div:nth-child(2) > div{
    flex:1;
}
.task_data_generate_top > div:nth-child(3){
    flex:0 0 30%;
}

.task_data_generate_top h3,
.task_data_generate_top p{
    margin:0;
}
.generate-content{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.star{
  font-size: 30px;
  line-height: 14px;
}
.task-data-h3 {
  font-size: 15px;
  line-height: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.blue-text{
  color: #2467A0;
}
.green-text{
  color: #4caf50;
}
.task-text{
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 10px;
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.edit_status{
    padding: 2px 0px;
    background: #f4f4f4;
    margin: 0px;
}
.edit_status label{
    font-size: 14px;
    font-weight: 600;
}
.edit_status .sub-input.first-flex{
    margin-bottom:10px;
}
.edit_status .input-box.drop-after input,
.edit_status .input-box.drop-after select{
    padding: 5px 4px;
    width: 100%;
    border-radius: 4px;
    background: white;
}
.select_link a{
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #2467A0;
}
.select_submit .domain_name {
    cursor: pointer;
    width: auto;
    background: #1bac61;
    padding: 10px 12px;
    border-radius: 10px;
    border: 0 !important;
    color: #fff;
    position: relative;
    z-index: 0;
    transition: all 0.5s;
    margin-bottom: 20px !important;
}
.task_data_generate_bottom{
  display: flex;
  gap: 20px;
  align-items: center;
  /*margin-bottom: 20px;*/
  flex-wrap: wrap;
}
.task_data_generate_bottom.bottom_block{
    background-color: #f4f4f4;
    /*margin: 0px 15px 0px;*/

}
/*.overview_block select{*/
/*    padding: 6px;*/
/*    border-radius: 4px;*/
/*}*/
.select_link{
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 7px 0px;
}
.open-red{
  display: flex;
  gap: 5px;
  /*align-items: flex-start;*/
  justify-content: flex-end;
  flex-wrap: wrap;
}
.open-red h3 , .open-red a{
  
  font-size: 15px;
  line-height: 16px;
  font-weight: 700;
}
.open-red a ,.red-text{
  color: #ff0000;
}
.open-red strong.high,
.generate-content .high{
    color:red;
    font-size: 15px !important;
}
.open-red strong.medium,
.generate-content .medium{
    color: #06a6bb;
    font-size: 15px !important;
}

.open-red strong.low,
.generate-content .low{
    color: #4caf50;
    font-size: 15px !important;
}
.open-red strong.high-light,
.generate-content .high-light{
    color: #0278bb;
    font-size: 15px !important;
}

.open-red strong.low-light,
.generate-content .low-light{
    color: #0278bb9e;
    font-size: 15px !important;
}
.progress-block.input-box,
.allot-block{
    text-align:right;
}
.progress-block.input-box input,
.allot-block input,
.allot-block select{
    padding: 3px;
    width: 20%;
}
.progress-block.input-box img,
.allot-block img{
    width: 23px;
    height: 25px;
    position: relative;
    bottom: 2px;
}
.task-attachment{
  padding: 20px 0;
}
.attchment-filed{
  display: flex;
  flex-direction: column;
}
.border-btm{
  border-bottom: 1px solid #2a2a2a;
}
.read_more{
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #5518ab;
}
.text-bold{
  font-weight: 700;
}
.check-lable{
  border: 0 none;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  margin-left: 5px;
  cursor: pointer;
}
.spaeration-checkbox .form-check-input{
  margin: 0 !important;
}
.spaeration-checkbox{
  margin-bottom: 14px;
}
.spaeration-checkbox , .spaerate-select{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.project-wise-status{
  margin-top: 30px;
}
.project-wise-status table td ,.project-wise-status table td a{
  font-size: 14px !important;
  line-height: 14px;
}
.project-wise-status table td a{
  text-decoration: underline;
}
.status-td-flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.status-h3{
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
}
.status_section{
    display:block;
    text-align:center;
    font-size:16px;
    margin-top:15px;
}

/* checkbox size */
.status_section input[type="checkbox"]{
    transform: scale(1.4);
    margin-right:6px;
    margin-left:15px;
    cursor:pointer;
}

/* label styling */
.status_section label{
    font-size:17px;
    margin-right:25px;
}

/* select dropdown spacing */
.status_section select{
    width: 140px !important;
    padding: 6px 6px;
    margin: 10px 12px;
    font-size: 15px;
    border-radius: 4px;
}

/* Apply button */
.status_section input[type="button"]{
    width:100px !important;
    padding:10px 6px !important;
    font-size:15px;
    cursor:pointer;
    margin-top:10px !important;
}
.status_table th,
.status_table td{
    border-color :#ddd !important;
    
}
.status_table .project-column{
    text-align:left;
    border-right: 1px solid white !important;
    padding-left:10px;
}
.status_table a{
    text-decoration: underline;
}
.status_table tfoot a{
    color: #ffffff;
    text-decoration: underline;
}

.sub-data-block{
    font-size: 22px !important;
}

.add_task_sec{
    background: #dcdcdc26;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
h2.sub-data-block{
    margin-top:30px !important;
}

@media(max-width:1520px){
  .input_check_boxes{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
}
@media(max-width:1440px){
  .input_select_grid{
    margin-bottom: 10px;
  }
}
@media(max-width:1024px){
  .input_select_grid{
    grid-template-columns :repeat(5, 1fr);
  }
  .input_check_boxes, .checkboxs-selector{
    grid-template-columns: repeat(6, 1fr);
  }
  .tasklist_tab{
    justify-content: start;
    gap: 9px;
  }
  .task_data_generate_top{
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  }
  .task_data_generate_bottom ,.select_link{
    gap: 10px;
  }
  .task_data_generate_bottom.bottom_block{
      margin:0;
  }

  .edit_status{
      padding : 0px;
      margin: 0px;
      position: relative;
     top: 10px;
  }
  .input_check_boxes label{
      width:auto;
  }

}

@media(max-width:992px){
  .project-wise-status table tr td:first-child{
    background: #1bac61 !important;
    color: white;
  }
 #sort_more input[type="checkbox"]{
     padding:6px 12px;
     text-align: center;
    display: block;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
 }
 hr{
     display:none;
 }
.btn_alignment{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr)
}
.btn_alignment input[type="button"]{
    white-space: pre-wrap;
}
#proj_doc td{
    height:21px;
}
.project-team {
    display:block;
}
.project-team .flex_item th,
.project-team .flex_item td {
  width: 33.33%;
  box-sizing: border-box; 
}
}
@media(max-width:768px){
  .input_select_grid ,.checkboxs-selector,  .input_check_boxes {
    grid-template-columns :repeat(4, 1fr);
  }
  .task_list_data{
    padding: 15px;
  }
  .pending_task_button{
    gap: 12px;
  }
.task_data_generate_top{
    flex-direction:column;
}

.task_data_generate_top > div{
    flex:100%;
    width:100%;
}

/* middle section names one below another */
.task_data_generate_top > div:nth-child(2){
    flex-direction:column;
}

.open-red{
    justify-content: flex-start;
}
.input-box{
    text-align:left;
}
.progress-block.input-box, .allot-block{
    text-align:left !important;
}

}

@media(max-width:767px)and (max-width:1368px){
  .dashboard-tables tbody, td, tfoot, th, thead, tr{
      max-width:350px;
  }

}
@media (max-width: 767px){
   .status_table tr td{
    border:0 !important;
    border-bottom:1px solid #dddddd70  !important;
  }
  .overview_block center{
      display:grid;
  }
  .status_section{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
    justify-content:center;
    gap:10px 15px;
    font-size:16px;
    text-align:center;
}

/* checkbox size */
.status_section input[type="checkbox"]{
    transform:scale(1.3);
    margin-right:5px;
}

/* label */
.status_section label{
    font-size:16px;
}

/* selects */
.status_section select{
    width:100%;
    padding:5px;
    font-size:14px;
}

/* remove line breaks */
.status_section br{
    display:none;
}

/* apply button */
.status_section input[type="button"]{
    grid-column:1 / -1;
    justify-self:center;
    width:90px;
    padding:6px;
    font-size:14px;
} 
}
  
@media(max-width:640px){
  .input_select_grid{
    grid-template-columns :repeat(3, 1fr);
    gap: 10px;
  }
  .select_submit{
    justify-content: center;
    margin-right: 0;
  }
  .tack-btn{
    padding: 8px 16px;
  }
  .input_check_boxes , .checkboxs-selector {
    grid-template-columns: repeat(3, 1fr);
  }
  
}
@media (min-width:769px) and (max-width:1024px){

.task_data_generate_top{
    gap:15px;
}

/* first block (ticket id section) */
.task_data_generate_top > .generate-content{
    flex:0 0 30%;
}

/* middle block (alloted by / to) */
.task_data_generate_top > div:nth-child(2){
    flex:0 0 40%;
    flex-direction:column;
    gap:6px;
}

/* status block */
.task_data_generate_top > div:nth-child(3){
    flex:0 0 30%;
}
.open-red{
    justify-content: flex-start;
}
}
@media (min-width:768px) and (max-width:1024px){
   .show-table table td{
      margin-bottom: 0px !important;
      border-bottom: 1px solid #dddddd1f !important;
      min-height: 30px;
  }   
   .overview_block center{
        flex-direction:column;
        align-items:center;
        display:flex;
    }
    .status_section{
        display:block !important;
    }
}
@media(max-width:575px){
  .task_data_generate_top{
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    }
    .spaeration-checkbox, .spaerate-select{
      gap: 12px;
      justify-content: start;
    }
}
@media(max-width:425px){
  .input_select_grid ,.checkboxs-selector ,  .input_check_boxes{
    grid-template-columns :repeat(2, 1fr);
  }

}
@media(max-width:375px){
  .input_check_boxes{
    grid-template-columns: repeat(2, 1fr);
  }
  .checkboxs-selector{
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {

  #Freight_FF {
    width: 100%;
    border-collapse: collapse;
  }
  #Freight_FF tr {
    display: grid;
    grid-template-columns: 40px 1fr;   
    grid-template-rows: auto auto;    
    gap: 6px 12px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #e6e6e6;
    align-items: center;
    background: #fff; 
    box-sizing: border-box;
  }
  #Freight_FF td,
  #Freight_FF th {
    display: block;   
    padding: 0;
    border: none;
    box-sizing: border-box;
    min-width: 0;    
  }
  #Freight_FF td:nth-of-type(1) {
    justify-self: start;
    align-self: center;
  }
  #Freight_FF td:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    padding-left: 18px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #Freight_FF td:nth-of-type(3) {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    padding-top: 6px;
  }
  #Freight_FF td:nth-of-type(4) {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    padding-top: 6px;
    padding-left:25px;
  }
  #Freight_FF td input[type="checkbox"] {
    transform: scale(1.05);
    margin-right: 6px;
  }

  #Freight_FF tr td:nth-of-type(n+5) {
    display: none;
  }
}


#toggleHeaderBtn { display: none; }

/* ----take page css end */
/*====================list Page start =================*/
.searchBtn {
  background-color: #1bac61 !important;
  color: white !important;
}
.select-btn-grp .btn {
  border: 1px solid #3d978e;
}
.select-btn-grp .btn.active {
  border: 1px solid #1bac61;
  background-color: #1bac61;
  color: #fff;
}
.select-btn-grp .btn:hover {
  border: 1px solid #1bac61;
  background-color: #1bac61;
  color: #fff;
}
.search-icon {
  width: 100%;
  max-width: 30px;
}
#horizontal_scroll {
  overflow-x: auto;
  width: 100%;
  /*margin-bottom:30px;*/
}
.table-containe {
  padding: 0;
}
.table-bordered > :not(caption) > * {
  border-width: 0 !important;
}
.searchBtn {
  padding: 7px 30px !important;
}
.comleted-data td {
  background-color: #f7d4cf !important;
  color: #c53535 !important;
}
.comleted-data td a.domain_name,
.comleted-data td a,
.incompleted-data a {
  color: #c53535 !important;
}
.incompleted-data td {
  background-color: #dff7e9 !important;
  color: #269b4d !important;
}
.incompleted-data td a.domain_name {
  color: #269b4d !important;
}
.btn-group .button {
  background-color: #424242;
  border: 1px solid white;
  color: white;
  padding: 2px 4px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  cursor: pointer;
  position: relative;
}
.btn-group .button:not(:last-child) {
  border-right: none;
}
.btn-group .button:hover {
  background-color: #3e8e41;
}
.toggle-btn {
  cursor: pointer;
}
.btn-group .button {
  margin-top: 0;
}
.table_div tr {
  background-color: #e9e9e95e;
}
.table-hover > tbody > tr:hover > * {
  --bs-table-bg-state: #5d78ff1a;
}
.list-action-btn {
  width: 16px;
  height: 16px;
}
.list-action-btn-circle {
  width: 22px;
  height: 20px;
}
.list-action-btn.cancel_btn{
    width:20px;
    height:20px;
}
td[data-label="Count"] a {
  color: #1312e3;
}
.incompleted-data td[data-label="Count"] a {
  color: #269b4d !important;
}
.count_link{
    display: inline-block;
    /*width: 100%;*/
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    color: blue;
    padding:0px 20px;
}
@media (max-width: 810px) {
  .btn-group {
    display: inline-block;
    height: 100%;
    width: 100%;
    margin-top: 10px;
  }
  .btn-group .button {
    float: inline-start;
  }
  .list-action-btn {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 10px 5px 1px 0px;        
  }
    .list-action-btn-circle{
     width: 30px;
     height: 26px;
      position: relative;
      top: 4px;
      margin-right: 4px;
  }
  .list-action-btn[src*="cancel.png"] {
    width: 25px;
    height: 25px;
}
}
/*====================list Page end =================*/

/* ===========dashboard and list page  ============= */
.paging .heading1:last-child table::-webkit-scrollbar,
.paging .heading1:nth-child(5) table::-webkit-scrollbar,
.links1 #horizontal-scroll table::-webkit-scrollbar {
  width: 8px;
  height: 2px;
}
.links1 {
  padding-bottom: 23px;
}
.paging .heading1:last-child table::-webkit-scrollbar-thumb,
.paging .heading1:nth-child(5) table::-webkit-scrollbar-thumb,
.links1 #horizontal_scroll table::-webkit-scrollbar-thumb {
  background-color: #211919;
  border-radius: 4px;
}
.paging .heading1:last-child table::-webkit-scrollbar-track,
.paging .heading1:nth-child(5) table::-webkit-scrollbar-track,
.links1 #horizontal_scroll table::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
.table_div table .total th {
  text-align: center;
  line-height: 20px;
  color: #ffffff;
  font-size: 14px;
  background-color: #000;
  padding: 15px 5px;
  border-color: #000;
  border-style: none solid solid none;
  border-width: 0pt 1px 1px 0pt;
  margin: 0pt;
}
.table_div table td.align_right {
  text-align: right;
}
.table-container .table {
  width: 100%;
  border-collapse: collapse;
}
.table-container .table td {
  padding: 5px 10px;
  border: 1px solid #bbb6b6 !important;
  word-wrap: break-word;
}
.table-container .table th {
  padding: 7px 10px;
  border: 1px solid #bbb6b6 !important;
  background: #1bac61;
  color: #fff;
  vertical-align: middle;
}
.table_div table td a.domain_name {
  color: #c64000;
  text-decoration: none;
  display: inline-block;
  padding: 3px 0px;
}
.hidden-row {
  display: none;
}
@media (max-width: 992px) {
  .panel-custm-table,
  .panel-custm-table thead,
  .panel-custm-table tbody,
  .panel-custm-table th,
  .panel-custm-table td,
  .panel-custm-table tr {
    display: block;
  }
  .panel-custm-table thead tr {
    width: 100%;
    text-align: left;
  }
  .panel-custm-table tr {
    margin: 0 0 15px 0;
  }
  .panel-custm-table tr th {
    display: none;
  }
  .panel-custm-table td {
    position: relative;
    padding-left: 32% !important;
    text-align: left !important;
    border: 1px solid #ccc;
    width: auto;
    margin-bottom: 1px;
    line-height: 17px !important;
    height:auto;
  }
  .panel-custm-table td:before{
      content: attr(data-label);
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        width: 30%;
        font-weight: bold;
        white-space: normal;
        word-break: break-word;
  }

  .panel-custm-table tr:last-child th {
    display: none;
  }
  .panel-custm-table td:empty::before {
  content: none !important;
  display: none !important;
}
.panel-custm-table td:has(.particular_list) {
  padding-left: 0 !important;
}
.panel-custm-table td:has(.particular_list)::before {
  content: none !important; 
}
  .particular_list th{
      display:table-cell !important;
  }
  .particular_list td::before {
  content: none !important;
  }
  table.particular_list tr {
      margin:0;
  }
  .hidden-row td {
    padding-left: 10px !important;
  }
  .table-container .table td {
    border: none !important;
  }
  .panel-custm-table td .datalabel_span{
      display: inline-flex;     
  align-items: center;      
  height: 100%; 
  }
}
@media (max-width: 991px) {
  .table-container .table td {
    border: none !important;
    min-height: 25px;
    height: 100%;
    margin:0px !important;
    border: 1px solid #bbb6b617 !important;
  }
  .table_div table tr {
    border: 1px solid #474747 !important;
    max-width:100%;
  }
  .table_div table td {
    max-width:100%;
  }
    .table_div table thead {
    max-width:100%;
  }
  .table-container .table td:first-child{
      min-height:45px;
  }
   .datalabel_span:first-child{
      min-height:35px;
  }
}
@media (max-width: 768px) {
  /* ---mobile scren table column change---- */

  #horizontal_scroll table tr:last-child th {
    display: none;
  }
  #horizontal_scroll table .total th {
    display: none;
  }
  #horizontal_scroll table .total th:first-child,
  #horizontal_scroll table .total {
    display: flex;
    width: 100%;
  }
  #horizontal_scroll table .total th:first-child,
  #horizontal_scroll table .total th:nth-child(6) {
    display: block;
    text-align: left;
    display: flex;
  }
  #horizontal_scroll table .total th:nth-child(6) {
    width: 100%;
  }
  #horizontal_scroll table .total th:first-child {
    width: 38%;
  }
}
/* ===============================
   SCROLL CONTAINER
================================ */
.table_scroll {
  max-height: 70vh;     /* vertical scroll */
  overflow: auto;
  position: relative;
}
.table_scroll table {
  border-collapse: separate;   /* REQUIRED for sticky */
  border-spacing: 0;
  min-width: max-content;
  
}
.table_scroll table thead th {
  position: sticky;
  top: 0;
  font-size: 15px !important;
  z-index: 10;
  white-space: nowrap;
}
.table_scroll table th:nth-child(1),
.table_scroll table td:nth-child(1) {
  position: sticky;
  left: 0;
  background: #ffffff;
  z-index: 9;
  min-width: 220px;
}
.table_scroll table th:nth-child(2),
.table_scroll table td:nth-child(2) {
  position: sticky;
  left: 220px; /* MUST match first column width */
  background: #ffffff;
  z-index: 9;
  min-width: 120px;
}
.table_scroll table thead th:nth-child(1),
.table_scroll table thead th:nth-child(2) {
  z-index: 11;
  background: #1bac61;
  color: white !important;
}
.table_scroll table th,
.table_scroll table td {
  border: 1px solid #dee2e6;
  text-align: center;
  vertical-align: middle;
}
.table_scroll table {
  border-collapse: separate !important;
}
@media (max-width: 768px) {
  .table_scroll table tr:last-child th {
    display: none;
  }
  .table_scroll table .total th {
    display: none;
  }
  .table_scroll table .total th:first-child,
  .table_scroll table .total {
    display: flex;
    width: 100%;
  }
  .table_scroll table .total th:first-child,
  .table_scroll table .total th:nth-child(6) {
    display: block;
    text-align: left;
    display: flex;
  }
  .table_scroll table .total th:nth-child(6) {
    width: 100%;
  }
  .table_scroll table .total th:first-child {
    width: 38%;
  }
}
/*Start CSS Header fix at top -list pages*/
.header_fix {
  max-height: 70vh;     /* vertical scroll */
  overflow: auto;
  position: relative;
}
.header_fix table {
  border-collapse: separate;   /* REQUIRED for sticky */
  border-spacing: 0;
  
}
.header_fix table thead th {
  position: sticky;
  top: 0;
  font-size: 15px !important;
  z-index: 10;
  white-space: nowrap;
}

/*END CSS Header fix at top -list pages*/
/*list page fix heading start css*/
.fix_heading {
  /*max-height: calc(100vh - 98px); */
  overflow-y: auto;               
  overflow-x: auto;               
}
.fix_heading .table {
  border-collapse: separate; 
  border-spacing: 0;
}
.fix_heading .table thead th {
  position: sticky;
  top: 0;                  
  z-index: 10;
  color: #ffffff;
  white-space: nowrap;
}
.fix_heading td[data-label="Date"] {
  min-width: 135px;
}
.fix_heading td[data-label="Status"] {
  min-width: 82px;
}
.fix_heading .table th,
.fix_heading .table td {
  border-bottom: 1px solid #dddddd2b !important;
    border-left: 1px solid #b4b4b4 !important;
    border-right: transparent !important;
}
/*list page fix heading end css*/
/* ==========dashboard and list page end====== */

/* ================== add page---start ============== */
table{
margin-top: 10px !important;
margin-bottom: 10px !important;
}
#LBForm table {
  max-width: max-content;
  margin: auto;
}
.progresive-list{
      max-height: 135px;
    overflow-y: auto;
    overflow-x: hidden !important;  
}

.progresive-list table {
  max-width: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#inv_consume {
  width: 100%;
  max-width: 500px;
}
.charges {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}
.charges tr th {
  padding-left: 0px;
  text-align: center;
}
th , td {
  padding-left: 4px;
  padding-right: 4px;
}
.compact-table {
  width: 100%;
  max-width: 350px;
  text-align: center;
}
.compact-table th {
  padding-left: 5px;
}
#set_ref_std {
  display: block;
  /*overflow-x: auto;*/
}
.charges tr:first-child td {
  content: "none" !important;
  padding-left: 0 !important;
}
.charges tr:nth-child(5) td {
  content: "none" !important;
  padding-left: 0 !important;
}
.close-icon {
  position: relative;
}
.close-icon i {
  background-color: #1bac616c;
  padding: 2px;
  border-radius: 4px;
  color: #000;
}
.add-page-email {
  text-align: center;
}
.add-page-email tr {
  display: flex;
}
.add-page-email td {
  display: contents;
}
#access_level h6{
    font-weight: 600;
    margin: 15px 0px;
    border-top: 1px solid #80808047;
    padding-top: 10px;
}
.div1 {
    width: 1300px;
    height: 400px;
    overflow: scroll;
}

.div1 table {
    border-spacing: 0;
}

.div1 th {
    border-left: none;
    padding: 5px;
    width: 40px;
    min-width: 80px;
    position: sticky;
    top: 0;
    font-weight: bold;
     vertical-align: top;
    text-align: center;
    z-index:1;
}

.div1 td {
    border-left: none;
    padding: 5px;
    width: 40px;
    min-width: 40px;
    vertical-align: top;
    padding-top: 6px; 
}

.div1 th:nth-child(1),
.div1 td:nth-child(1) {
    position: sticky;
    left: 0;
    width: 30px;
    min-width: 30px;
}

.div1 th:nth-child(2),
.div1 td:nth-child(2) {
    position: sticky;
    left: 29px;
    width: 50px;
    min-width: 80px;
}

.div1 th:nth-child(3),
.div1 td:nth-child(3) {
    position: sticky;
    left: 105px;
    width: 200px;
    min-width: 200px;
}


.div1 th:nth-child(3),
.div1 th:nth-child(1),
.div1 th:nth-child(2)
{
    z-index: 2;
}
.div1 th,
.div1 td:nth-child(1),
.div1 td:nth-child(2),
.div1 td:nth-child(3) {
   background: #fff !important;
}

.div1 th     { background:#fff; }

@media (max-width: 992px) {
  #LBForm table {
    max-width: none;
    margin: auto;
  }
  .compact-table {
    display: inline-table !important;
  }
  .sub-table-tr td {
    padding-left: 0 !important;
  }
  #access_level h6{
      border:none;
  }
.div1 th:nth-child(1),
.div1 td:nth-child(1){
    width:auto;
    min-width: auto;
}
.div1 th:nth-child(2),
.div1 td:nth-child(2){
    width:auto;
    min-width: auto;
}
.div1 th:nth-child(3),
.div1 td:nth-child(3){
    width:auto;
    min-width: auto;
}
}
@media (max-width: 991px) {
  .ui-sortable-handle {
    width: 100%;
    overflow-x: auto;
  }
     .panel-custm-table .reset_left {
      padding-left: 0 !important;
    }
}
@media (max-width: 768px) {
  .table-full-width td {
    display: block;
    max-width:100%;
  }
  .progresive-list td {
    display: table-cell !important;
  }
  .table_div table td a.domain_name{
      padding: 4px 10px 3px 0px;;
  }
}
@media (max-width: 575px) {
  .charges td {
    padding-left: 56% !important;
  }
  textarea {
    width: 100%;
    margin-bottom:3px;
  }
}
@media (max-width: 425px) {
  .charges td {
    padding-left: 55% !important;
  }
}
/* =========== add page --end ===========- */

/* ===========popup start ============*/
.window-popup .modal-body .btn {
  background-color: #1bac61 !important;
  color: white !important;
}
.popup-h2 {
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  margin: 0px 0px 0px 0px;
  color: #000000;
  text-align: left;
  font-weight: 600;
  margin-bottom: 10px;
}
.popup-table-title {
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  margin: 0px 0px 0px 0px;
  color: #000000;
  text-align: left;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-check,
.form-check-input,
.form-check-label {
  cursor: pointer !important;
}
.form-check-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-flex {
  display: flex;
  gap: 10px;
}
.modal.show {
  padding: 0 !important;
}
.popup-btn {
  background-color: #1bac61 !important;
  color: white !important;
  padding: 7px 30px !important;
}
.window-popup select {
  color: #7f7f7f;
}
.popup-list li {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 15px;
  line-height: 16px;
  margin-bottom: 12px;
}
.modalpara {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}
.modal-dialog {
  max-width: 700px;
  width: 100%;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;  /* hidden by default */
  z-index: 999;   /* behind modal */
}
.modal-header h2{
    color:white !important;
}
#modal 
{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    font-size:13px;
    min-width: 400px;
    max-width: 100%;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header 
{
    padding: 0px 19px;
    background-color: #5cb85c;
    color: white;
    width: 100%;
    position: relative;
}

.modal-header h5{
    margin: 0;
    width: 90%;
    font-size: 21px;
    padding: 14px 0px;
    text-align:center
}
.modal-content .no_record{
    color:red;
    font-size:17px;
    padding:20px 10px;
}
.modal-content p{
    margin:0;
}
.modal-content b{
    text-align: center;
    font-size: 16px;
    position: relative;
    padding:3px;
}
.modal-close 
{
    position: absolute;
    right: 20px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.modal .stages{
    display:flex;
    padding: 0px 3px;
    justify-content: center;
    overflow:auto;
    /*margin:0 auto;*/
}
.modal .stage {
    width:auto !important;
    margin: 9px 5px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 7px 7px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.modal .stage span{
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
}
.stage_time{
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    color: blue;
}
.status_block{
    display:flex;
}
.status_block span{
    width:30%;
}
.status_block p{
    width:70%;
    text-align:right;
}

.modal .circle{
    width: 18px;
    height: 18px;
    background-color: #80808069;
    border-radius: 50%;
    text-align: center;
    display: block;
    align-items: center;
    justify-content: center;
    margin: 2px auto 5px;
}
.modal .circle_green{
    background-color:#5cb85c;
}
.modal  .date-time{
    margin-bottom: 7px;
}
.modal-content select,
.modal-content textarea,
.modal-content input{
    margin: 5px 10px 13px;
    padding: 8px;
    border-radius: 6px;
    width:92% !important;
}
.mktg_update{
    background: #5cb85c;
    margin: 0 auto 15px;
    padding: 4px;
    border-radius: 6px;
    color: white;
    font-size: 15px;
    width: 25%;
    border: 1px solid #4f954f;
}
.modal .close{
  font-size: 26px;
  cursor:pointer;
}
.modal {

  background: rgba(0,0,0,0.5); /* backdrop */

}
.modal .modal_table {
   width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    display: block;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: auto;
    padding: 10px;
}
.modal .modal_table th {
    color: white;
    background: #5cb85c;
    font-weight: bold;
}
.modal .modal_table th, 
.modal .modal_table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
}
.modal .modal_table tr:nth-child(even) {
  background: #fafafa;
}
#display_int{
    margin:0px 10px;
}

.modal-content a{
    color:blue;
}

.stage{
    width:96%;
}
.modal_block,
.modal_block thead,
.modal_block tbody,
.modal_block tr,
.modal_block td {
  display: block;
  box-sizing: border-box;
}

.modal_block th { display: none; }

.modal_block {
  margin: 8px;
  border-radius: 6px;
}
.modal_block tr {
  background: #f9f9f9;
  border: 2px solid green;
  border-radius: 6px;
  padding: 10px;
  margin: 0 0 12px 0;
}

.modal_block td {
  position: relative;
  padding-left: 60% !important; 
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: left !important;
  border: none;
  line-height: 1.2;
}
.modal_block td:before {
  content: attr(data-label);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  font-weight: 700;
  white-space: normal;
  word-break: break-word;
}
@media (min-width: 768px) {
  .modal_block tbody {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
  }
    .modal_block tr {
      display: block;
      width: calc(50% - 7.5px);
      margin: 0;
      box-sizing: border-box;
    }
    
    .modal_block tr:only-child {
      width: 100%;
    }
  .modal_block td {
    padding-left: 0 !important;
    padding: 6px 8px;
  }
  .modal_block td:before {
    position: static;
    transform: none;
    display: inline-block;
    margin-right: 8px;
    font-weight: 700;
  }
  .modal_block tr { box-sizing: border-box; }
}
.modal .stages{
    display: contents;
}
.modal .stage{
    width:35%;
}
#datepicker{
    position: fixed !important;  
  top: 50% !important;         
  left: 50% !important;        
  transform: translate(-50%, -50%) !important; 
  z-index: 9999 !important;    
  width: 90% !important;       
  max-width: 350px !important; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); 
  background: #fff;  
}
#datepicker th,
#datepicker td {
  width: 14.28% !important;  
  text-align: center;       
  padding: 6px;             
  box-sizing: border-box;   
  word-wrap: break-word;
}
/* Base footer */
#datepicker tfoot td {
  padding: 6px 4px;
}

/* Mobile fix */
@media (max-width: 600px) {

  #datepicker tfoot tr {
    display: flex !important;
  }

  #datepicker tfoot td {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    width: 100% !important;
  }

  #datepicker tfoot td[colspan] {
    flex: 1;
  }

  #datepicker tfoot .today,
  #datepicker tfoot .close {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 5px;
    border-radius: 4px;
    background: #f1f1f1;
  }
.datepicker th span, .datepicker tfoot td span {
    font-weight: bold;
    font-size: 19px;
}
  /* Hide the empty spacer cell */
  #datepicker tfoot td:nth-child(2) {
    display: none !important;
  }
  #datepicker tfoot{
     display: table-caption !important;
     border-left: 2px solid #b1b1b1;
     border-right: 2px solid #b1b1b1;
     border-bottom: 2px solid #b1b1b1;
     border-top: none;
  }
}

.modal-content{
    width:auto;
    min-width:350px;
}
.offcanvas.show:not(.hiding), .offcanvas.showing{
    display: block !important;
    overflow-y: auto;
}
.panel-custm-table .full_padding {
    padding-left: 0 !Important;
    width: 100% !important;
    max-width: 100% !important;
}
#sort_more .grid_layout{
    padding:6px 8px;
}
 }

/* ===========popup end================*/

/* ========prpgresive list add page ======== */
.progressive-no-record {
  position: relative;
}
.progressive-no-record .no-order-close {
  position: absolute;
  left: 8px;
  top: 8px;
  color: #fff;
}
.no-order-plus {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 22px;
  color: #fff;
}
.progressive-no-record p {
  background-color: #797b7c;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  padding: 5px 5px 5px 30px;
  margin-left: 0px;
}
.open-close {
  display: flex;
  justify-content: end;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}
.open-close span {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: #1bac61;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  line-height: 18px;
}
.progresivelist-relative {
  position: relative;
  vertical-top:top;
}
.progresive-list .table > :not(caption) > * > * {
  background-color: #bbe9e4;
}
.progresive-list table td {
  border: auto !important;
}
.progresive-list table {
  margin-bottom: 0 !important;
  border: 1px solid #cccccc;
}
.progresive-list {
  display: block;
  overflow-x: auto;
  position: absolute;
  z-index:1;
  border-radius: 0;
}

.progresive-list th,
.progresive-list td {
  white-space: nowrap;       
  overflow: visible;        
  text-overflow: clip; 
  padding: 8px;
  text-align:left;
}
.progresive-list td{
  border: 1px solid #ccc !important;
  padding: 3px 6px!important;
  white-space: normal;   
  word-wrap: break-word; 
  overflow-wrap: break-word;
}
.progresive-list th{
    text-align:center;
}
.progresive-list > :not(table) {
  color: black;
}

.progresive-list .no-content{
    display: flex;
    padding: 3px;
    text-align: center;
    color: red;
    font-size: 14px;
    border: 1px dashed #757575;
    border-radius: 3px;
    background: #f9f9f9;
    margin: 0px;
    min-width: 200px;
    z-index:1;
    width: 25%;
    float:left;
}
.progresive-list .no-content a{
    text-align: end;
    display: flow;
    padding-right: 6px;
    margin: auto 5px;
}
.progresive-list{
    color: red;
}
.progresive-list td input[type="radio"] {
    text-align: center;
    vertical-align: middle !important;
    height:26px;
    width:16px !important;
}
.progresive-list table {
  background-color: #f9f9f9;  
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.progresive-list table th {
  background-color: #37aba0; 
  color: #fff;}
.progresive-list table td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}
.progresive-list table tr:nth-child(even) {
  background-color: #f1f1f1;  
}
.progresive-list table tr:nth-child(odd) {
  background-color: #fff;    
}
.progresive-list table tr:hover {
  background-color: #e0e0e0;  
  transition: 0.2s ease-in-out;
}
.info_table{
    background: white;
    z-index: 999;
    position: relative;
    border: 1px solid gray;
    padding: 0px;
    overflow-y: auto;
    border-radius:4px;
    height:400px;
}

.info_table td{
    text-align:center;
    padding: 7px 7px 0px;
}
.info_table tr:nth-child(1){
    border-bottom: 1px solid gray;
}
hr {
  margin: 20px 0;
}
.custm-particular-input {
  width: 100%;
  max-width: 260px;
}
/*progressive list full width css*/
.progresive-list.table-responsive {
  position: absolute;
  top: 100%;          /* KEY FIX */
  left: 0;
  width: 100%;
  min-width: 60vw;
  max-width: 100%;
  max-height: 210px;
  overflow-y: auto;
  overflow-x: hidden;
  /*z-index: 999;       */
}
#challan_block .progresive-list.table-responsive,
#outward_block .progresive-list.table-responsive{
    max-height: 132px;
}

.progresive-list.table-responsive  > div {
  width: 100%;
}
.search-table .common-sel-list{
      min-width: 140px;
  max-width: 183px;
  width: 100%;
}

@media (max-width: 768px) {
  .progresive-list.table-responsive  {
    overflow-x:auto !important;
    max-height:450px;
  }
}
/*#attendance_block tr:first-child th {*/
/*  position: sticky;*/
/*  top: 0;*/
/*  background: #fff;      */
/*  z-index: 5;*/
/*}*/
.div6 {
  max-height: 70vh;
  overflow: auto;
  position: relative;
}
.div6 .panel-custm-table {
  border-collapse: separate;
  border-spacing: 0;
}

.div6 .panel-custm-table th {
  position: sticky;
  top: 0;
  background:white;
  z-index: 10;
}

/*@media (max-width: 991px){*/
/*    .progresive-list{*/
/*    position: fixed;*/
/*    top: auto !important;*/
/*    left: 0;*/
/*    z-index: 9999;*/
/*    overflow-y: auto;*/
/*    overflow-x: auto;*/
/*    }*/
/*}*/
/* ==========login page ========start======== */
.login {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f2f2f2;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.login .container {
  max-width: 1140px;
}
.login-page {
  background-color: white;
  padding: 15px 25px;
}
.login-page .logo-img {
  width: 100%;
  max-width: 200px;
  margin: 0px auto 20px;
}
.login-page label {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}
.login-page .form-control {
  background: transparent;
  border: 0 !important ;
  border-radius: 0 !important;
  box-shadow: unset !important;
  border-bottom: 1px solid #ddd !important;
  background-color: #e8f0fe;
  font-size: 13px;
  height: auto;
  font-weight: 600;
  padding: 8px 4px;
}
.login-page .form-control::placeholder {
  font-weight: 600;
}
.login-page form {
  text-align: start;
}
.login-page .form-group {
  margin-bottom: 16px;
}
.login-page .btn {
  width: 100%;
  padding: 7px 0;
  border: 0;
  color: #fff;
  font-size: 18px;
  /*background: #465ba9;*/
  background: #1877F2;
  border-radius: 3px;
  margin: 15px 0;
  font-weight: 800;
  border: 1px solid #1877F2 !important;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
  z-index: 1;
}
.login-page .btn::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #1d327d;
  transition: all 0.5s;
  z-index: -1;
}
.login-page .btn:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.forget-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin: 20px 0 30px 0;
}
.forget-text h3 {
  margin-bottom: 0;
  transition: all 0.5s;
}
.forget-text h3 a:hover {
  color: #465ba9;
}
.error-mes {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: red;
  margin-bottom: 10px;
}
.forget-text h3 a {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  transition: all 0.5s;
}
.login-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.login-call .fa-phone {
  margin-right: 4px;
}
.login-call h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 0;
}
.login-call span {
  color: #1877F2;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}
.rightside_box {
  padding: 40px;
  background-color: #fff;
  border-right: 2px solid #f1f1f1;
}
.rightside_box .slider .slider-img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid blue;
  padding: 4px;
  border-radius: 5px;
}
.slider-data {
  text-align: center;
  margin-top: 30px;
}
.slider-data h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 20px;
}
.slider-data p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 30px;
}
.slider-data .btn {
  border-radius: 20px;
  max-width: 160px;
  margin: auto;
  background-color: #ecf7fe;
  color: #0091ff;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  width: max-content;
  position: relative;
  z-index: 1;
}
.slider-data .btn:after {
  position: absolute;
  content: "";
  background-color: #0091ff;
  top: 0;
  left: 0;
  border-radius: 18px;
  width: 0;
  height: 100%;
  opacity: 0;
  visibility: visible;
  transition: all 0.5s;
  z-index: -1;
}
.slider-data .btn:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.slider-data .btn:hover {
  color: white;
}
.owl-dots {
  margin-top: 40px !important;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #6abffc !important;
}
.owl-theme .owl-dots .owl-dot span {
  background-color: #ecf7fe !important;
}
@media (max-width: 992px) {
  .progresive-list table {
    display: table !important;
  }
  .login .row .div1 {
    width: 342px;
  }
  .login .row .div2 {
    width: 402px;
  }
}
@media (max-width: 767px) {
  .login {
    height: auto;
  }
  .rightside_box {
    border-right: none;
  }
  .login-page {
    border-bottom: 1px solid gray;
  }
  .rightside_box {
    padding: 20px;
  }
  .login .row .div1,
  .login .row .div2 {
    width: 100%;
  }
  .login .row {
    padding: 20px 20px 20px;
  }
}
@media (max-width: 320px) {
  .login-page .btn {
    font-size: 16px;
    line-height: 20px;
  }

}
/* ==========login page ========end======== */

/* ==========sub table --- start========= */

.sub-table {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.sub-table,
.sub-table th {
  z-index: 2 !important;
  position: relative;
}
.sub-table-title {
  font-size: 18px;
  margin: 0px 0px 0px 0px;
  color: #000000;
  text-align: left;
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 24px;
}
.sub-table th,
.sub-table td {
  min-width: 140px;
}
.sub-table-tr .container-fluid {
  margin: 20px 0;
}
/* ==========sub table --- end========= */
/*Day start CSS*/

.popup_inner{
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
  pointer-events: all;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.3);  
}
#popup.active {
  opacity: 1;
  pointer-events: all;
}

#popup::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);  
  backdrop-filter: blur(5px);    
  z-index: -1;
  display:none;
}

  .modal_popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal_popup:target { display: flex; }
.modal_popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 320px;
  animation: fadeIn 0.4s ease;
  position: relative;
  border: 6px solid green;
  position:fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal_popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  text-decoration: none;
  font-size: 24px;
  color: #555;
}
.modal_popup-close:hover { color: #000; }
.checkmark {
  width: 80px;
  height: 80px;
}
.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke: #4CAF50;
  stroke-width: 2;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #4CAF50;
  stroke-width: 4;
  animation: stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.7s forwards;
}
.success-details {
  margin-top: 15px;
  opacity: 0;
  animation: fadeInDetails 0.6s ease forwards;
  animation-delay: 1s;
}
.success-details h3 { margin: 8px 0 4px; }
.photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}
.location-icon { font-size: 18px; color: #4CAF50; }
.punch-time {
  margin-top: 15px;
  opacity: 0;
  animation: fadeInDetails 0.6s ease forwards;
  animation-delay: 1.5s;
}
.punch-time h2 {
  color: #4CAF50;
  margin-bottom: 5px;
}
.punch-time p { font-size: 16px; }
.remarks {
  margin-top: 10px;
  opacity: 0;
  animation: fadeInDetails 0.6s ease forwards;
  animation-delay: 2s;
  font-style: italic;
  color: #555;
}
@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInDetails { to { opacity: 1; } }

.open-btn  {
  display: inline-block;
  padding: 10px 20px;
  background: #4CAF50;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  margin-top:6px;
  margin-bottom:0px !important;
}
.open-btn:hover { background: #43a047; } 

/*DAy start Modal popup end here*/

/*BirthdaySurprise css start here*/
#birthdaySurprise {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 15px;
  z-index: 999;
  display: none;
}
#confettiCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.birthday-message {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 25px 35px;
  width: 80%;
  max-width: 350px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  z-index: 5;
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: popIn 0.8s ease forwards 0.5s;
}

.birthday-message h2 {
  font-size: 24px;
  color: #e91e63;
  margin-bottom: 8px;
  text-shadow: 0 0 10px #ff80ab;
}

.birthday-message p {
  font-size: 16px;
  color: #555;
}

/* Balloons */
.balloon-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.balloon {
  position: absolute;
  bottom: -80px;
  width: 35px;
  height: 45px;
  border-radius: 50%;
  opacity: 0.85;
  animation: floatUp 6s ease-in forwards;
}

@keyframes floatUp {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-700px); opacity: 0; }
}

@keyframes popIn {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: scale(0.9); }
}
.birthday-notice {
    background: #f5f4ff;
    border-left: 4px solid #6c63ff;
    padding: 14px 18px;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    animation: fadeIn 0.4s ease;
    font-family: "Segoe UI", Arial, sans-serif;
}

.birthday-notice p {
    margin: 0;
    font-size: 15px;
    color: #2d2d2d;
    line-height: 1.55;
}

.birthday-notice strong {
    color: #4c44ff;
    font-weight: 600;
}

/* Smooth animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
/*BirthdaySurprise css end here*/

/*=========Value block on dashboard start here=========*/
   .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .stats-container {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top:10px;
    }
    .panel-custm-table .stats-container {
      grid-template-columns: repeat(4, 1fr);  
    }
  }

  .stats-container .stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px 5px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    border: 1px solid #00bcd433;
    transition: all 0.3s ease;
  }

  .stats-container .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.15);
  }

  .stats-container .icon {
    font-size: 18px;
    margin-bottom: 3px;
    color: #1877F2;
  }

  .stats-container .stat-heading {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    margin-bottom: 7px;
    white-space: nowrap;
  }

  .stats-container .stat-count a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #1877F2;
    display: inline-block;
    line-height: 1;
    transition: all 0.3s ease;
  }

  .stats-container .stat-count a:hover {
    color: #0e5cd4;
    transform: scale(1.05);
  }
 .panel-custm-table .stats-container .stat-card{
      border: 1px solid #9E9E9E;
      width:auto;
      padding:10px 20px;
      
  }
  .panel-custm-table .stats-container{
      display:flex;
      margin: 10px auto;
      justify-content: center;
  }
  
  .drawer_block {
    display: none;
    padding: 15px;
    margin: 10px auto;
    border-radius: 8px;
    background-color: #f0f0f08a;
    transition: all 0.3s ease;
    border: 1px solid #afacac;
    box-shadow: 2px 2px 2px 2px #ddddddc4;
        width: auto;
    max-width: 25%;
  }

  .drawer_block.open {
    display: block;
  }

  .toggle-btn {
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top:7px;
  }

  .toggle-btn:hover {
    background-color: #0056b3;
  }
  .update_msg{
        width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    background-color: #1bac6114;
    border-left: 5px solid #1bac61;
    color: #664d03;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
  @media (max-width: 992px){
      .drawer_block{
          max-width:100%;
      }
  } 
   
  /*=========Value block on dashboard start here=========*/
/* ========= search page start=========== */
.search-table td {
  padding: 3px;
}
.search-table {
  width: 100%;
  max-width: 773px;
}
.search-btn {
  padding: 8px 20px !important;
  border-radius: 2px !important;
}
@media (max-width: 767px) {
  .search-table tbody tr td:first-child {
    margin-top: 5px !important;
  }
  .search-btn {
    margin-bottom: 10px !important;
  }
  .action-row{
      display:flex !important;
      justify-content: center;
      flex-wrap: wrap;
  }
  .action-row .common-btn{
      margin:6px 6px 20px !important;
      flex: 0 0 calc(33.33% - 20px);
      box-sizing: border-box;
  }
      .action-row {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      padding: 10px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      max-width:100%;
      z-index: 1000;
    }
    
    .action-row .common-btn {
      margin: 0px 7px 5px !important;
    }
    #add_form, 
    .table1 {
      padding-bottom: 35px; 
    }
  table.search-table tr {
    display: flex;
    flex-wrap: wrap;
}

table.search-table tr td:nth-child(1),
table.search-table tr td:nth-child(2) {
    flex: 1 1 50%;   
    box-sizing: border-box;
    padding-right: 8px; 
}

table.search-table tr td:nth-child(3) {
    flex: 1 1 100%;  
    box-sizing: border-box;
    margin-top: 5px;
}


table tfoot th,
table tfoot td {
  padding: 4px 6px !important;
  text-align: left;
  /* remove display: table-cell !important; here */
}

tfoot {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
}

/* Default desktop: normal table row */
tfoot tr {
  display: table-row;
}

tfoot th,
tfoot td {
  display: table-cell;
  padding: 10px;
  position: relative;
}

/* Mobile styles */
@media (max-width: 768px) {
    table tfoot,
  table tfoot tr,
  table tfoot th,
  table tfoot td {
    display: block !important;
    width: 100% !important;   /* fill parent width */
    max-width: 100% !important;
    box-sizing: border-box;   /* include padding in width */
  }
  tfoot tr {
    display: flex !important;
    flex-direction: column;
    align-items: stretch; /* full width */
    width: inherit;
  }

  tfoot th,
  tfoot td {
    display: block !important; /* force override */
    width: 100% !important;
    padding: 8px 10px !important;
    box-sizing: border-box;
  }

  /* Apply label only if data-label exists */
  tfoot th[data-label]::before,
  tfoot td[data-label]::before {
    content: attr(data-label) " ";
    font-weight: bold;
    margin-right: 5px;
    display: inline-block;
  }
  tfoot th[data-label],
  tfoot td[data-label] {
    display: flex !important;
    align-items: center;        /* vertical center */
    width: 100% !important;
    padding: 8px 10px !important;
    box-sizing: border-box;
  }

  tfoot th[data-label]::before,
  tfoot td[data-label]::before {
    content: attr(data-label);
    font-weight: bold;
    width: 50%;                /* take left half */
    text-align: left;
  }

  tfoot th[data-label],
  tfoot td[data-label] {
    justify-content: space-between;
  }

  /* value (actual text) */
  tfoot th[data-label],
  tfoot td[data-label] {
    text-align: right;          
  }

  tfoot th:empty,
  tfoot td:empty {
    display: none !important;
  }
.amount_summary {
  border: 1px solid #bbb6b6 !important;
  background: #1bac61;
  color: #fff;
  vertical-align: middle;
  padding: 0px 10px;
}
.amount_summary td[colspan] {
  text-align: center !important;
}
.amount_summary td:not([colspan]) {
  border-bottom: 1px solid #d1d0d0 !important;
  padding-bottom: 13px;
  text-align: right !important;
}
.amount_summary td[data-label] {
  display: flex;           
  align-items: center;    
  justify-content: flex-end; 
  padding: 7px 10px;       
}
.amount_summary td:empty {
  display: none !important;
}

}
/* ========= search page end=========== */


@media (max-width: 399px) {
  #content_heading_center h4 {
    margin-bottom: 0;
  }
  .panel-custm-table td {
    position: relative;
    padding-left: 50%;
    text-align: left;
    border: 1px solid #ccc;
    width: auto;
    height:auto;
    margin-top:7px;
  }
  .progresive-list {
    top: 99%;
    width: auto;
    max-width: 100%;
  }
  #logo h3 {
    font-size: 18px;
    line-height: 19px;
    text-align:left;
  }
}

@media (max-width: 320px) {
  #list_table_data td {
    padding-left: 35%;
  }
  #horizontal_scroll table .total th:first-child {
    width: 54%;
  }
}

.dataTables_length,
.dataTables_filter,
.dataTables_info,
.paging_simple_numbers {
  display: none;
}






.progresive-list table{
        max-width: none !important;
}


#transaction_block .table th {
    padding: 7px 10px;
    border: 1px solid #bbb6b6 !important;
    background: #1bac61;
    color: #fff;
    vertical-align: middle;
}



.align_input{
    display: flex;
    width: 100%;
    max-width: 100%;
}
.align_input td:nth-child(1){
    width:200px;
}
.align_input td:nth-child(2),
.align_input td:nth-child(3){
    width: 100%;
    display: grid !important;
    }
.align_input input{
    width:100%;
    height: 30px;
    
}
.heading_input{
    display:flex;
    justify-content: space-around;
    margin-top: 16px;
}

