@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
:root {
  --header-height: 5rem;
  --nav-width: 5rem;
  --first-color: #4b31b1;
  --first-color-light: #AFA5D9;
  --white-color: #F7F6FB;
  --white: #ffffff;
  --gray-color: rgba(0, 0, 0, 0.05);
  --body-font: "Nunito", sans-serif;
  --content-font: "Poppins", sans-serif;
  --normal-font-size: 1rem;
  --z-fixed: 100;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

button {
  outline: none;
}
button:focus, button:focus-visible, button:focus-within {
  border: none;
  outline: none;
}

body {
  position: relative;
  margin: var(--header-height) 0 0 0;
  padding: 0 1rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.5s;
  background-color: var(--white-color);
  font-size: 1.4rem;
  min-height: 100vh;
}

i {
  font-size: 1.6rem !important;
}

a {
  text-decoration: none;
}

.heading {
  font-size: 1.5rem;
  font-weight: 800;
}

.sub-heading {
  font-size: 1.4rem;
  font-weight: 800;
}

.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem;
  background-color: var(--white-color);
  z-index: var(--z-fixed);
  transition: 0.5s;
}

.header_toggle {
  color: var(--first-color);
  font-size: 1.5rem;
  cursor: pointer;
}
.header_toggle .bx-menu:before {
  font-size: 2rem !important;
  font-weight: 900;
}

.header_bell {
  color: var(--first-color);
  font-size: 1.5rem;
  cursor: pointer;
}
.header_bell .bx-bell:before {
  font-size: 2rem !important;
  font-weight: 500;
}

.header_img {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 0.1rem solid var(--first-color);
}

.header_img img {
  width: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-navbar {
  position: fixed;
  top: 0;
  left: -30%;
  width: var(--nav-width);
  height: 100vh;
  background-color: var(--first-color);
  padding: 5rem 1rem 0 0;
  transition: 0.5s;
  z-index: var(--z-fixed);
}
.l-navbar.show .nav {
  overflow-y: auto;
}
.l-navbar.show .nav::-webkit-scrollbar {
  width: 0.5rem;
}
.l-navbar.show .nav::-webkit-scrollbar-track {
  display: none;
}
.l-navbar.show .nav::-webkit-scrollbar-thumb {
  background: var(--white);
  border-radius: 1rem;
}

.nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.nav .collapse-nav {
  display: flex;
  align-items: center;
}
.nav .collapse-nav i {
  display: block;
  margin-left: 0.8rem;
  margin-bottom: 0.3rem;
}
.nav .collapse-nav i::before {
  font-size: 1rem;
}
.nav .collapse .nav_link {
  margin-bottom: 0.3rem !important;
  padding: 0.3rem;
  font-size: 1.3rem;
  margin-left: 4rem !important;
}

.nav_logo,
.nav_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.nav_logo {
  margin-bottom: 2rem;
}

.nav_logo-icon {
  font-size: 1.25rem;
  color: var(--white-color);
}

.nav_logo-name {
  color: var(--white-color);
  font-weight: 700;
}

.nav_link {
  position: relative;
  color: var(--first-color-light);
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.nav_link:hover {
  color: var(--white-color);
}

.nav_icon {
  font-size: 1.25rem;
}

.show {
  left: 0;
}

.body-pd {
  padding-left: calc(var(--nav-width) + 1rem);
}

.modal {
  width: 100vw;
}
.modal img {
  width: 100%;
  height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-backdrop {
  background-color: transparent;
}

.active {
  color: var(--white-color);
}

.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color);
}

.card {
  background: none;
  border: none;
}
.card .card-top {
  background: var(--gray-color);
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
}
.card .card-mid {
  background: var(--gray-color);
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
}

#item-wise {
  background: var(--white-color);
  font-family: var(--content-font);
}
.ui-autocomplete {
    max-height: 40rem;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    padding-right: 2rem;
}
.ui-button {
  width: 100% !important;
  height: 3rem;
  background: var(--white) !important;
  font-size: 1.4rem;
  font-family: var(--content-font);
  padding: 0rem 0.5rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}
.ui-button:hover {
  border-color: none;
}
.ui-button:active {
  border: none;
  color: inherit;
}
.ui-button .ui-selectmenu-text {
  margin: 0.6rem 0;
  color: inherit !important;
  margin-left: 1rem;
}
.ui-button .ui-selectmenu-icon.ui-icon {
  margin-top: 0.7rem;
}

.ui-menu-item-wrapper {
  padding: 1rem;
  font-size: 1.4rem;
  font-family: var(--body-font);
  background: var(--white);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background: var(--first-color);
}

.table {
  font-family: var(--content-font);
}
.table thead {
  font-size: 1.4rem;
}
.table thead th {
  font-weight: 600;
  vertical-align: middle;
}
.table tbody {
  font-size: 1.4rem;
}
.table tbody td {
  vertical-align: middle;
}

.custom-tooltip {
  max-width: 13rem !important;
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--content-font);
  line-height: 1.5rem;
}
.custom-tooltip .tooltip-inner {
  padding: 1rem;
  background: var(--first-color);
}
.custom-tooltip .tooltip-arrow {
  color: var(--first-color);
}

.f-control {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0;
}
.f-control label {
  font-size: 1.4rem;
}
.f-control input {
  width: 100%;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  outline: none;
  border-radius: 0.5rem;
  padding-inline: 1rem;
  font-size: 1.4rem;
}
.f-control input::-moz-placeholder {
  font-family: var(--content-font);
  font-size: 1.3rem;
}
.f-control input::placeholder {
  font-family: var(--content-font);
  font-size: 1.3rem;
}
.f-control input:focus {
  border-color: transparent;
  outline: 0.1rem solid var(--first-color);
}
.f-control input[type=radio] {
  height: 1.5rem;
  width: 1.5rem;
  margin-left: 0.5rem;
  outline: none !important;
}
.saleLedger::-webkit-outer-spin-button,
.saleLedger::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.saleLedger[type=number] {
  -moz-appearance: textfield;
}
.f-control textarea {
  width: 100%;
  resize: none;
  max-height: 5rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  outline: none;
  border-radius: 0.5rem;
  padding-inline: 1rem;
  font-size: 1.4rem;
}
.f-control textarea::-moz-placeholder {
  font-family: var(--content-font);
  font-size: 1.2rem;
}
.f-control textarea::placeholder {
  font-family: var(--content-font);
  font-size: 1.2rem;
}
.f-control textarea:focus {
  border-color: transparent;
  outline: 0.1rem solid var(--first-color);
}

.form-check-input {
  width: 1.6rem;
  height: 1.6rem;
}
.form-check-input:focus {
  border-color: var(--first-color);
  box-shadow: none;
}

.form-check-input:checked {
  background: var(--first-color);
  border-color: var(--first-color);
}

.btn {
  height: 3.2rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--first-color);
  font-size: 1.2rem;
  color: var(--white-color);
  outline: none;
  box-shadow: none !important;
}
.btn:hover {
  color: var(--white-color);
}
.btn i::before {
  font-size: 2rem;
}

.btn-r {
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--first-color);
  color: var(--white-color);
  border-radius: 50%;
  border: none;
  outline: none;
}
.btn-r:hover {
  color: var(--white-color);
}
.btn-r i::before {
  font-size: 1.5rem;
}

.btn:disabled,.btn-r:disabled{
    opacity: 0.7;
}

.payment {
  display: flex;
  gap: 0.5rem;
  position: relative;
  margin-top: 2rem;
}

.payment-btn {
  padding: 0.5rem 1.5rem;
  outline: none;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  width: 100%;
  position: relative;
  border: 0.1rem solid transparent;
  border-radius: 0.5rem;
}
.payment-btn:focus {
  outline: none;
  box-shadow: 0.1rem 0.1rem 0.4rem rgba(0, 0, 0, 0.1), -0.1rem -0.1rem 0.4rem rgba(0, 0, 0, 0.1);
}
.payment-btn i {
  color: rgba(0, 0, 0, 0.7);
  margin: auto;
}
.payment-btn i::before {
  font-size: 2.5rem;
}
.payment-btn span {
  position: absolute;
  font-size: 1.1rem;
  width: 80%;
  background: var(--first-color);
  color: var(--white);
  border-radius: 1rem;
  top: -1rem;
  right: 0;
}

.timeline {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
  font-size: var(--content-font);
  font-size: 1.2rem;
}

.timeline h5 {
  font-weight: 700;
}

.timeline p {
  line-height: 1.5rem;
  margin: 0;
  margin-top: 0.5rem;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  background-color: var(--white-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -0.3rem;
}

.timeline-badge {
  padding: 0.6rem 1rem;
  display: inline-block;
  background: var(--first-color);
  color: var(--white-color);
  border-radius: 0.5rem;
  margin: 0.5rem 0;
}

.timeline-container {
  padding: 1rem 4rem;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  right: -1.7rem;
  background-color: white;
  border: 0.4rem solid var(--first-color);
  top: 1.5rem;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 2.2rem;
  width: 0;
  z-index: 1;
  right: 3rem;
  border: medium solid white;
  border-width: 1rem 0 1rem 1rem;
  border-color: transparent transparent transparent white;
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 2.2rem;
  width: 0;
  z-index: 1;
  left: 3rem;
  border: medium solid white;
  border-width: 1rem 1rem 1rem 0;
  border-color: transparent white transparent transparent;
}

.right::after {
  left: -1.6rem;
}

.content {
  padding: 1.5rem;
  background-color: white;
  position: relative;
  border-radius: 0.6rem;
}

.login-body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 !important;
}

.login {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  margin: 0;
}
.login form {
  width: 40rem;
  height: 35rem;
  max-width: 90%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.1), -0.2rem 0 0.3rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  border-top: 0.4rem solid var(--first-color);
}
.login form .logo {
  width: 100%;
  display: flex;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
  padding: 1rem;
}
.login form .logo img {
  max-width: 10rem;
  margin: 0 auto;
}
.login form .row {
  padding: 1rem;
}
.login form .f-control {
  position: relative;
}
.login form .f-control input {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.login form .f-control .icon {
  position: absolute;
  right: 0.8rem;
  height: 100%;
  width: 4rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.login form a {
  color: var(--first-color);
  font-size: 1.2rem;
}

@media screen and (max-width: 600px) {
  .timeline::after {
    left: 3.1rem;
  }
  .timeline-container {
    width: 100%;
    padding-left: 7rem;
    padding-right: 2.5rem;
  }
  .timeline-container::before {
    left: 6rem;
    border: medium solid white;
    border-width: 1rem 1rem 1rem 0;
    border-color: transparent white transparent transparent;
  }
  .left::after,
  .right::after {
    left: 1.5rem;
  }
  .right {
    left: 0%;
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) + 2rem);
  }
  .header {
    height: calc(var(--header-height) + 1rem);
    padding: 1rem 2rem 0 calc(var(--nav-width) + 2rem);
  }
  .header_img {
    width: 40px;
    height: 40px;
  }
  .header_img img {
    width: 45px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .l-navbar {
    left: 0;
    padding: 1rem 1rem 0 0;
  }
  .show {
    width: calc(var(--nav-width) + 156px);
  }
  .body-pd {
    padding-left: calc(var(--nav-width) + 188px);
  }
  .modal {
    width: 100vw;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: calc(var(--header-height) + 1rem);
    padding: 1rem 2rem 0 2rem;
  }
  .show {
    width: calc(var(--nav-width) + 156px);
  }
  .body-pd {
    padding-left: calc(var(--nav-width) + 188px);
  }
  .modal {
    width: 100vw;
  }
}/*# sourceMappingURL=main.css.map */