* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary-color: #0033bb;
  --secondary-color: #ffffff;
  --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;
}
/* btn */
.greenbtn {
  padding: 6px 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: 6px 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 */
header {
  z-index: 999;
}
.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  background: linear-gradient(#0033bb 0px, #0033bb 40%, #0033bb 100%);
  position: fixed;
  width: 100%;
  top: 0;
}
.navbar-brand {
  color: #ffffff !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: -132px;
  display: none;
}
.dropdown-submenu .dropdown-menu.subst {
  top: -8px;
  right: -191px;
  display: none;
}
.dropdown-submenu > .dropdown-menu {
  margin-left: 5px;
}
.nav-link.active {
  color: #00ffdd !important;
}
.error_msg {
  display: block;
  min-height: 15px;
}
.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: #00ffdd !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 */
footer {
  background: linear-gradient(#0033bb 0px, #0033bb 40%, #0033bb 100%);
  position: fixed;
  bottom: 0;
  width: 100%;
}
/* reports */
.contsec {
  min-height: 320px;
}
.head-title {
  color: var(--primary-color) !important;
  font-size: 30px;
  font-weight: bolder;
  text-align: center;
}
/* gst filed */
.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;
}
/* data table */
.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: #0033bb !important;
  color: #fff !important;
  border-radius: 5px;
  text-decoration: none !important;
  cursor: pointer !important;
  padding: 4px 8px;
  margin: 0 3px;
  border: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #0033bb !important;
  color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  text-decoration: underline !important;
  background: #0033bb !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;
}
.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;
}
/* Companies add */
.bg-whiteee {
  background-color: var(--secondary-color);
  padding: 12px 0px;
}
.bg-grayy {
  background-color: #cccccc66;
  padding: 12px 0px;
}
/* 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;
}
/* auditor */
.w-5 {
  width: 5% !important;
}
.w-15 {
  width: 15% !important;
}
.w-30 {
  width: 30% !important;
}
.w-20 {
  width: 20% !important;
}
.w-4 {
  width: 4% !important;
}
.w-2 {
  width: 2% !important;
}
.w-8 {
  width: 8% !important;
}
.w-7 {
  width: 7% !important;
}
.w-10 {
  width: 10% !important;
}
/* log calender */
#dateFilter .fa-calendar-days {
  right: 10px;
  top: 28%;
}
.ui-icon {
  background-image: none !important;
}
/* companies */
.dob i.fa-calendar-days {
  right: 25px;
  top: 20%;
}

.ui-icon {
  background-image: none !important;
}
/* companies */
.dob i.fa-calendar-days {
  right: 25px;
  top: 20%;
}
.datecalendericon i.fa-calendar-days {
  right: 25px;
  top: 43%;
}
.datecalendericonform i.fa-calendar-days {
  right: 25px;
  top: 35%;
}
.form-select.is-invalid:not([multiple]):not([size]) {
  --bs-form-select-bg-icon: none !important;
}
/* .challan-preview{
    display: block;
    min-height: 20px;
    word-break: break-all;
} */
 .challan-preview,.small{
    display: block;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.modal-header{
  border-bottom: none !important;
}
.modal-footer{
  border-top: none !important;
}
.modal-body{
  padding: 0 !important;
}

.display-1{
    font-size: 6rem !important;
    color: #7d7a7a !important;
}
 .fetch_sub_stock_file,.small{
    display: block;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.w-7{
    width: 50px !important;
}