  .navSideImg img {
      margin: 0px 5px;
      object-fit: contain;
  }

  body {
      background: #E9E9E9;
  }

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

  body,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Poppins', sans-serif;
  }

  .navbar-nav .nav-link {
      font-size: 15px;
      font-weight: 500;
      color: rgb(30 30 30) !important;
      padding: 10px 10px !important;
      position: relative;

      &::before {
          content: "";
          position: absolute;
          width: 90%;
          height: 4px;
          left: 0;
          right: 0;
          bottom: 0;
          margin: 0 auto;
          background: #019DD7;
          border-radius: 10px;
          transform: scaleX(0);
          transition: 0.5s;
      }

      &:hover {
          color: #019DD7;

          &::before {
              transform: scale(1);
          }
      }
  }

  .navbar-nav .nav-link.active {
      color: #019DD7;
      position: relative;

      &::before {
          content: "";
          position: absolute;
          width: 90%;
          height: 4px;
          left: 0;
          right: 0;
          bottom: 0;
          margin: 0 auto;
          background: #019DD7;
          border-radius: 10px;
          transform: scaleX(1);
          transition: 0.5s;
      }
  }

  .main {
      display: flex;
  }

  .sidebar {
      background: #019DD7;
      padding: 25px;
      width: 320px;
      height: calc(100% - 158px);
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      margin-top: 105px;
      overflow: auto;
      transition: 0.5s;
      z-index: 2;
  }

  .sidebar.shrink {
      left: -320px;
      opacity: 0;
      transition: 0.5s;
  }

  .sidebar-footer {
      background: #d3f0ff;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      margin: -25px;
      position: fixed;
      bottom: 25px;
      width: 320px;
  }

  .side-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      color: #fff;
  }

  .side-nav {
      color: #fff;
      padding-top: 10px;
      margin-bottom: 20px;
      border-top: 1px solid #fff;
  }

  .side-nav ul li a {
      padding: 9px 10px;
      text-decoration: none;
      color: #fff;
      border-radius: 5px;
      display: block;
      margin: 5px 0px;
  }

  .side-nav ul li a:hover {
      background: #007DAC;
  }

  .side-nav ul li a i {
      width: 25px;
      display: inline-grid;
      place-content: center;
      margin-right: 5px;
  }

  .side-nav > h6 {
      opacity: 0.7;
      font-weight: 400;
  }

  .main-footer {
      display: flex;
      justify-content: space-between;
      padding: 10px;
      width: calc(100% - 320px);
      color: #fff;
      background: #464646;
      position: fixed;
      bottom: 0px;
      right: 0px;
      margin-left: 320px;
      font-size: 14px;
  }

  .main-footer.shrink {
      transition: 0.5s;
      margin-left: 0px;
      width: calc(100%);
  }

  .admin-body {
      padding: 25px 35px;
      width: calc(100% - 320px);
      margin-left: 320px;
      height: calc(100% - 105px);
      overflow: auto;
      position: fixed;
      transition: 0.5s;
      z-index: 0;
  }

  .admin-body.shrink {
      transition: 0.5s;
      margin-left: 0px;
      width: calc(100%);
  }

  .admin-body-header {
      display: flex;
      justify-content: space-between;
/*      text-align: center;*/
      margin-bottom: 25px;
  }

  .logout-dropdown .dropdown-toggle {
      padding: 9px 15px 9px 35px;
      border-radius: 0px;
  }

  .body-card-main {
      position: relative;
      background: #fff;
      padding: 20px 35px 35px 35px;
  }

  .body-card {
      padding: 25px 35px;
      overflow: hidden;
      height: 160px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(15, 82, 255, 0.09);
      text-decoration: none;
      color: rgba(0, 0, 0, 0.54);
      transition: 0.5s;

      &.two {
          height: 240px;
          display: block;
          text-align: center;
      }
  }

  .body-card:hover {
      background: rgba(15, 82, 255, 0.18);
      color: #000;
  }

  .body-card h6 {
      font-weight: 700;

      .two & {
          margin-top: 70px;
      }
  }

  .body-card-main h5 {
      font-weight: bold;
      margin-bottom: 25px;
      position: relative;
  }

    .body-card-main h5:before {
        content: "";
        position: absolute;
        width: 25px;
        height: 18px;
        left: -35px;
        top: 2px;
        background: #019DD7;
    }


  .body-card span {
      font-size: 62px;
      color: white;
      position: relative;
      z-index: 2;
      transition: cubic-bezier(0.53, -0.4, 0.49, 1.4) 0.35s;

      .two & {
          transform: translateY(20px);
      }
  }

  .body-card span:after {
      content: "";
      position: absolute;
      width: 100px;
      height: 100px;
      left: -20px;
      top: -20px;
      background: #FF7A00;
      border-radius: 50%;
      z-index: -1;
      transition: cubic-bezier(0.53, -0.4, 0.49, 1.4) 0.35s;
  }

  .col:nth-child(2) .body-card span:after {
      background: #7A35EB;
  }

  .col:nth-child(3) .body-card span:after {
      background: #4484F5;
  }

  .col:nth-child(1) .body-card.two span:after {
      background: #24A039;
  }

  .col:nth-child(2) .body-card.two span:after {
      background: #F855BC;
  }

  .col:nth-child(3) .body-card.two span:after {
      background: #FFA800;
  }

  .col:nth-child(4) .body-card.two span:after {
      background: #25B6E3;
  }

  .body-card:hover span:after {
      transform: scale(2.5);
  }

  .body-card.two:hover span:after {
      transform: scale(3.5) translateY(-30px);
  }

  .body-card:hover span {
      transform: translateX(-10px);

      .two & {
          transform: translateX(0px);
      }
  }

  #sidebar-menu-icon2 {
      padding: 5px;
      margin-top: 25px;
      background: #349fd4;
      display: block;
      width: 27px;
      position: absolute;
      border-radius: 0px 4px 4px 0;
      z-index: 1;
  }
.custom-select {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.qty-minWidth {
    min-width: 100px !important;
}
.hwzwast_tbl tr td :where(select, input, div) {
    width: 125px;
    max-width: 150px;
        :is(.form-check-input[type=checkbox]){
            width: 1rem;
            max-width: 1rem;
        }
}
.hwzwast_tbl tr td .input-group-prepend,
.hwzwast_tbl tr td .input-group-append {
    display: none;
}

.multiselect-native-select .btn-group {
    min-width: 50px;
    max-width: 100px !important;
    border: 1px solid #cccccc;
}

    .multiselect-native-select .btn-group .caret {
        padding: 0.375rem 2.25rem 0.375rem 0.75rem;
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 16px 12px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    }

.body-card.custom-disable {
    pointer-events: none;
}
    .body-card.custom-disable:after {
        content: "Disabled";
        color: #f15a5a;
        background: #4d4d4da6;
        position: absolute;
        height: 100%;
        top: 0;
        left: 15px;
        right: 15px;
        display: grid;
        place-content: center;
        z-index: 9;
        font-weight: 900;
        font-size: 27px;
        text-transform: uppercase;
        backdrop-filter: blur(1px);
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #ffffff;
    }
@media screen and (max-width: 768px) {
    .admin-body {
    margin-left: 0px;
    width: calc(100%);
}
}