.loading_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  display: block;
  position: absolute;
}

.loader_logo {
  height: unset;
  width: 200px;
  position: absolute;
  left: calc(47% - 50px);
  top: 38%;
}

.loader_logo img {
  height: 100%;
  width: 100%;
}

.loading {
  border: 3px solid rgba(102, 51, 153, 0.45);
  position: absolute;
  left: calc(50% - 40px);
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border-top-color: #8b5cf6;
  animation: loader 1s ease-in-out infinite;
  -webkit-animation: loader 1s ease-in-out infinite;
}

/*Techsols pos*/

.layout-sidebar-large .main-header .header-part-right .user img {
  width: 65px !important;
  height: 35px !important;
  border-radius: unset !important;
}

img#userDropdown {
  object-fit: cover !important;
 }


.auth-layout-wrap {
  background:#000 !important
 }

.main-header .logo a img {
  width: 250px !important;
  margin: unset !important;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

.layout-sidebar-large .main-header .logo {
  width: 250px !important;
}

.footer-bottom.border-top.pt-3.d-flex.flex-column.flex-sm-row.align-items-center img.logo {
  width: 200px !important;
  height: 47px !important;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

.app-footer .d-flex {
  display: unset !important;
}

.auth-logo img {
  width: 250px !important;
  height: unset !important;
}

.auth-layout-wrap {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

h1.auth-heading {
  text-align: center;
  padding: 30px;
  color: #ffffff;
  font-weight: bold;
}

.invoice-header {
  display: flex;
  justify-content: space-around;
  gap: 30px;
}

.invoice-print {
  max-width: 1250px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1.4;
}

.invoice-header .header-logo {
  width: 40%;
}

.invoice-header .contact-info p {
  margin: 0;
}

.header-logo {
  text-align: center;
}

.header-logo img {
  width: 100%;
  height: auto;
}

.invoice-header .header-title {
  font-size: 55px;
  font-weight: bolder;
  font-family: fangsong;
}

.invoice-header .contact-info {
  font-size: 14px;
  margin-top: 5px;
  width: 60%;
  text-align: center;
}

.invoice-sub-header {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.invoice-print .invoice-title {
  font-size: 30px;
  font-weight: bolder;
  font-family: 'icomoon';
}

.invoice-print .account-detail {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
}

.invoice-print .section-title {
  font-size: 20px;
  margin-top: 40px;
  font-weight: bold;
}

.offset-md-9.col-md-3.mt-4.sale-info {
  flex: 0 0 35%;
  max-width: 35%;
  margin-left: 65%;
}

thead.bg-gray-300.detail-table tr th, .table-responsive.detail tbody tr td{
  border: 1px solid #000;
}

/*Techsols pos*/


@keyframes loader {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes loader {
  to {
    -webkit-transform: rotate(360deg);
  }
}