* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary-color: #073b07;
  --secondary-color: #fff;
  --tertiary-color: #555;
}
body {
  font-size: 14px;
  background: url(../img/bg.png) repeat;
  height: 100%;
}
@font-face {
  font-family: "Asul";
  src: url(../fonts/Asul-Bold.ttf);
}
h1,
h2 {
  font-family: "Asul";
}
body,
html {
  display: flex;
  flex-direction: column;
  height: 100%;
}
main {
  flex: 1;
}
.greenbtn {
  padding: 8px 14px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color) !important;
  border-radius: 6px;
  transition: all 0.3s ease-in;
}
.greenbtn:hover {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
}
.graybtn {
  padding: 8px 14px;
  background-color: #ddd;
  color: var(--primary-color);
  border: 1px solid #6d6d6d !important;
  border-radius: 6px;
  transition: all 0.3s ease-in;
}
.graybtn:hover {
  background-color: #ddddddbe !important;
  border: 1px solid #ddd !important;
}
.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  background: linear-gradient(
    rgb(0, 51, 0) 0px,
    rgb(17, 71, 17) 40%,
    rgb(0, 51, 0) 100%
  );
  position: fixed;
  width: 100%;
  top: 0;
}
.navbar-brand {
  color: #cf9 !important;
  font-size: 35px;
}
.navbar-nav {
  display: flex;
  align-items: center !important;
  justify-content: end;
  gap: 10px;
}
.navbar-nav .nav-link {
  color: #fff !important;
  margin-right: 10px;
}
.nav-item a {
  font-size: 16px;
  letter-spacing: 1px;
}
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu {
  max-width: fit-content !important;
  min-width: 20px !important;
}
.dropdown-item.active,
.dropdown-item:active {
  color: var(--secondary-color) !important;
  text-decoration: none;
  background-color: var(--primary-color) !important;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--secondary-color) !important;
  background-color: var(--primary-color) !important;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-item {
  padding: 4px !important;
}
.dropdown-submenu .dropdown-menu {
  top: -8px;
  right: -190px;
  display: none;
}
.dropdown-submenu > .dropdown-menu {
  margin-left: 5px;
}
.nav-link.active {
  color: #ff0 !important;
}
.error-msg {
  height: 18px;
  display: block;
}
.dropdown-submenu > .dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.nav-link:hover {
  color: #ff0 !important;
}
@media (max-width: 991px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: none;
  }
  .navbar-nav {
    align-items: start !important;
  }
}
.mt-10 {
  margin-top: 8%;
}
.mb-6 {
  margin-bottom: 8%;
}
footer {
  background: linear-gradient(
    rgb(0, 51, 0) 0px,
    rgb(17, 71, 17) 40%,
    rgb(0, 51, 0) 100%
  );
  position: fixed;
  bottom: 0;
  width: 100%;
}
.contsec {
  min-height: 320px;
}
.head-title {
  color: var(--primary-color) !important;
  font-size: 30px;
  font-weight: bolder;
  text-align: center;
}
.form-select , .form-control{
  box-shadow: none !important;
  border: 1px solid var(--primary-color) !important;
}
table#gstTable {
  width: 100%;
}
table th {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: center;
  background-color: #cccccc47;
}
table tr td {
  border: 1px solid #ccc;
  padding: 4px;
}
.text-green {
  color: var(--primary-color) !important;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  display: inline-block;
  margin-bottom: 10px;
}
.dataTables_wrapper .dataTables_length {
  float: left;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
}
.dataTables_wrapper .dataTables_info {
  float: left;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  margin-top: 10px !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: #073b07 !important;
  color: #fff !important;
  border-radius: 5px;
  padding: 4px 8px;
  margin: 0 3px;
  border: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #055005 !important;
  color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #0a5c0a !important;
  color: #fff !important;
  padding: 4px 8px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  background: #ccc !important;
  color: #666 !important;
  padding: 4px 8px;
}
.dataTables_wrapper::after {
  content: "";
  display: block;
  clear: both;
}
table.dataTable thead > tr > th.nosort.sorting_asc:after,
table.dataTable thead > tr > th.nosort.sorting_asc:before {
  display: none !important;
}
#gst_filed button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: auto !important;
}
#gst_filed button[type="submit"]:not(:disabled) {
  cursor: pointer;
  opacity: 1;
}
#gstTable td:nth-child(1) {
  width: 50px;
} /* S.No */
#gstTable td:nth-child(2) {
  width: 200px;
} /* Company Name - wrap OK */
#gstTable td:nth-child(3) {
  width: 130px;
  white-space: nowrap;
} /* State */
#gstTable td:nth-child(4) {
  width: 160px;
  white-space: nowrap;
} /* GSTIN */
#gstTable td:nth-child(5) {
  width: 130px;
  white-space: nowrap;
} /* GSTR-1 */
#gstTable td:nth-child(6) {
  width: 130px;
  white-space: nowrap;
} /* GSTR-3B */
#gstTable td:nth-child(7) {
  width: 160px;
  white-space: nowrap;
} /* ARN GSTR-1 */
#gstTable td:nth-child(8) {
  width: 160px;
  white-space: nowrap;
} /* ARN GSTR-3B */
#gstTable td:nth-child(9) {
  width: 120px;
  white-space: nowrap;
} /* Remarks */
#gstTable th {
  white-space: nowrap;
}
#gstTable th:nth-child(2) {
  white-space: normal;
}


/*  */
.eye_icon {
    top: 45%;
    right: 20px;
    cursor: pointer;
    z-index: 2;
}

i {
    cursor: pointer;
}

.togglePwd,
.toggleConfirm {
    top: 38px;
    right: 12px;
    position: absolute;
    cursor: pointer;
}

.eicon {
    right: 10px;
    top: 34px;
    cursor: pointer;
}
.password-text {
    -webkit-text-security: disc; 
}
.password-text.show {
    -webkit-text-security: none;
}

.error_msg {
    display: block;
    min-height: 15px;
}
/* login form */
#loginform small a{
    color: var(--primary-color) !important;
    text-decoration: none !important;
}
.eyeindex_icon{
    right: 10px;
    top: 46%;
}
.error-msg{
    display: block;
    min-height: 15px;
}

header{
    z-index: 999;
}
/* log calender */
#dateFilter .fa-calendar-days{
    right: 10px;
    top: 28%;
}
.ui-icon {
    background-image: none !important;
}

/* auditor */
.w-5{
    width: 5% !important;
}
.w-15{
    width: 15% !important;
}
.w-30{
    width: 30% !important;
}
.w-20{
    width: 20% !important;
}
.w-8{
  width: 8% !important;
}
.w-40{
  width: 45% !important;
}
.w-60{
  width: 55% !important;
}

