@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--dark-blue);
}

:root {
  --lightgray: #f5f6f7;
  --orange: #5d6e66;
  --text-muted: #6a6d85;
  --black: #111;
  --white: #fff;

}



body {
  font-family: "Montserrat", sans-serif;

}

.fs-18 {
  font-size: 18px !important;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fw-500 {
  font-weight: 600;
}

.light-text {
  color: var(--black);
  font-weight: 500;
}

.text-blue {
  color: var(--orange);
}

.text-orange {
  color: var(--orange);
}

.bg-orange {
  background-color: var(--orange);
}

.show {
  display: block;
}

.hide {
  display: none !important;
}

.logo a {
  color: var(--black);
  font-size: 34px;
  font-weight: 500;
}

.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
}

.translateX-minus-100 {
  transform: translateX(-100%);
}

.translateX-0 {
  transform: translateX(0%) !important;
}

.login-wrapper {
  height: 100vh;
}

.logo img {
  max-width: 100%;
}

.login-title-underline {
  position: relative;
  font-size: 36px;
  display: inline-block;
  padding-bottom: 1rem;
  margin-block: 10px;
  font-family: var(--font-family-medium);
  color: var(--orange);
  margin-bottom: 24px;
}

.login-title-underline:before {
  content: "";
  height: 4px;
  background: var(--orange);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.black-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1rem;
}

.light-gray {
  background-color: var(--lightgray);
}

.font-medium {
  font-family: var(--font-family-medium);
}

.font-semibold {
  font-family: var(--font-family-semibold);
}

.font-book {
  font-family: var(--font-family-book);
}

.bg-login {
  /* background: url("../images/bg-login.png") repeat; */
  background-size: cover;
  height: 100%;
}

.btn-action {
  border-radius: 8px;
  background-color: var(--orange);
  font-size: 18px;
  color: var(--white);
  padding: 15px 25px;
  border: none;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* .btn-print {
  border-radius: 8px;
  background-color: '#1761b1';
  font-size: 18px;
  color: #1761b1;
  padding: 15px 25px;
  border: none;
  border: 1px solid transparent;
  white-space: nowrap;
} */

.dashboard-action-wrapper .fa-print {
  margin-left: 4px;
}

.main-content-wrapper .alert {
  margin-block: 16px;
}

.btn-outline {
  background: white;
  border-color: var(--orange);
  color: var(--orange);
}


.btn-action:hover {
  background: #4b6b5c;
  border-color: #4b6b5c;
  color: white;
}

.btn-print:hover {
  background: #4c9ddf;
  border-color: #4c9ddf;
  color: white;
}

.btn-outline:hover {
  color: white;
  background: var(--orange);
}

.btn-print:hover {
  color: white;
  background: #2179d9;
}

.google-signin-btn {
  border-style: solid;
  border-width: 1px;
  border-color: #d6d0d0;
  border-radius: 8px;
  background-color: var(--white);
  padding-block: 12px;
  padding-inline: 30px;
  display: inline-flex;
  gap: 1rem;
  color: var(--black);
  font-family: var(--font-family-medium);
  white-space: nowrap;
}

.icon {
  width: 50px;
  height: 50px;
  font-size: 29px;
}

.login-option-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.sign-in-divider {
  color: #b9b5ce;
  font-size: 13px;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-family-medium);
}

.sign-in-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 35%;
  background-color: #b9b5ce;
  transform: translateY(-50%);
}

.sign-in-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  width: 35%;
  background-color: #b9b5ce;
  transform: translateY(-50%);
}

.login-title {
  font-size: 52px;
  color: var(--white);
  line-height: 1.2;
}

input[type="checkbox"]:checked {
  background-color: var(--dark-blue);
}

.illustration-wrap {
  margin-top: 50px;
}

/* dashboard page */
.dashboard-wrapper {
  display: flex;
}

.sidebar {
  background-color: var(--orange);
  color: var(--white);
  height: 100vh;
  width: 70px;
  transition: .3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: start;
  transform: translateX(0);

}

.sidebar-toggle-btn {
  background: none;
}

.sidemenu li {
  line-height: 2;

}

.sidemenu li a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-inline: 24px;
  padding-block: 10px;
  font-size: 16px;

}

.sidemenu li a i {
  font-size: 18px;

}

.sidemenu li a:hover {
  color: #ddd;

}

.sidebar-title {
  padding-inline: 24px;
  font-size: 16px;
  font-family: var(--font-family-medium);

}

.sidemenu li .nav-link.active {
  background-color: rgb(71, 49, 211);
  color: #f9aa71;
}

.sidebar-content {
  background: var(--lightgray);
  width: 100%;
  height: 100%;
}

.profile-info-wrapper a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.profile-info-wrapper a i {
  color: white;
}

.dropdown-menu li a {
  color: var(--black);
  font-weight: 500;
}

.navbar-nav .dropdown-menu {
  top: calc(100% + 6px);
}

.fa-bell {
  font-size: 1.25rem;
}

.header-icon {
  font-size: 1.25rem;
}

.user-name {
  font-size: 1rem;
  color: var(--black);
  font-weight: 600;
  white-space: nowrap;
}

.dash-logo img {
  padding-top: 1rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;

}

.dashboard-title {
  font-size: 30px;
  margin: 0;
  color: var(--black);
  font-weight: 600;
}

.dash-card {
  border-radius: 1rem;
  border: none;
  box-shadow: 0px 0px 10px 0px #00000014;
}

.dash-card-title {
  font-size: 22px;
  font-family: var(--font-family-semibold);
  margin-top: 1rem;
  margin-bottom: 0;
}

.dash-card .card-body {
  padding-block: 1.25rem;
}

.dashboard-subtitle {
  font-size: 30px;
  font-family: var(--font-family-semibold);
  /* color: var(--light-blue); */
  color: #1c2136;
  padding-block: 1.5rem;
  opacity: .9;
}

.table-header {
  background: var(--orange);
  border-radius: 8px;
  color: white;
}

.table-header tr:hover {
  background: var(--orange) !important;
}

/* css for 04-03-24 date */
.dash-card-icon {
  max-height: 80px;
  ;
}

.dash-main-padding {
  padding-inline: 80px;
}

.nav-profile-info-wrapper {
  margin-right: 0px;
}


.card-icon {
  font-size: 48px;
}


.dashboard-subtitle {
  font-size: 24px;
}

.most-popular-video-wrap {
  margin-top: 13px;
}






.dash-card .card-body {
  padding: 20px;
}

.dash-card-title {
  margin-top: 23px;
}

.dash-main-padding {
  padding-inline: 4%;
}

.main-content-wrapper {
  max-height: calc(100vh - 80px);
}


.popular-video-wrap {
  margin-top: 6px;
}



.support-card .card {
  border: 1px solid rgb(224, 224, 224);
}

.support-card .card .card-body {
  padding-top: 34px;
}

.support-card .card .card-body .card-icon {
  font-size: 85px;
}

.support-card .card .card-body .dash-card-title {
  margin-top: 38px;
}


textarea.form-control {
  padding-block: 3.7%;
  max-height: 154px;
}


/* Chrome, Edge and Safari */
.form-control-custom::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.form-control-custom::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #fff;
}

.form-control-custom::-webkit-scrollbar-track:hover {
  background-color: #fff;
}

.form-control-custom::-webkit-scrollbar-track:active {
  background-color: #fff;
}

.form-control-custom::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #e3e3e3;
  max-height: 10px !important;

}

.form-control-custom::-webkit-scrollbar-thumb:hover {
  background-color: #e3e3e3;
}

.form-control-custom::-webkit-scrollbar-thumb:active {
  background-color: #e3e3e3;
}



.shop-now-btn {
  font-size: 18px;
  font-family: var(--font-family-medium);
  background: var(--orange);
  border: none;
  color: #fff !important;
  border-radius: 4px;
  /* border: 1px solid rgb(255, 123, 27); */
  width: 100%;


}

.login-content-wrap-right {
  background: var(--orange);
}


.dashboard-header {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 6px 0px;
  padding-block: 12px;
  background: white;
}

.dashboard-dropdown .btn {
  display: flex;
  gap: 8px;
}

.btn-small {
  padding-block: 8px;
  box-shadow: none;

}

.btn-dark {
  background: #262e2b !important;
  color: white;
}

.calculator-popup .btn-close {
  box-shadow: none;
}

.btn-dark:hover {
  background: var(--orange) !important;
}

.add-btn:focus,
.add-btn:active,
.add-btn:hover {
  box-shadow: none;
  color: white;
  background: #3e6a40;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.custom-form :where(input, textarea, select) {
  padding-block: 15px;
  padding-inline: 16px;
  font-weight: 500;
  font-size: 20px;
  border: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 3px 10px !important;
  width: 100%;

}

.form-check-input {
  width: 1em !important;
  height: 1em !important;
}


.dashboard-card {
  border-radius: 16px;
  border: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  min-height: 100px;
  transition: .5s;

}

.dashboard-card:hover {
  background-color: var(--orange);
}

.dashboard-card:hover .icon {
  background-color: white;
}

.dashboard-card:hover .card-title {
  color: white;
}

.dashboard-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}


.dashboard-card .icon img {
  display: block;
  max-width: 100%;
  height: 50px;

}

.dashboard-card .icon {
  margin-bottom: 20px;
}

.dashboard-card:hover {
  cursor: pointer;
}

.dashboard-card .card-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  text-align: center;

}

.pt-60 {
  padding-top: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.py-60 {
  padding-block: 60px;
}

a {
  color: var(--black);
}

.dashboard-popup .modal-header {
  background: var(--orange);
  color: var(--white);
  padding-block: 12px;
  padding-inline: 24px
}

.dashboard-popup .btn-close {
  background: none;
  color: var(--black);
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
  background: #ffde21;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.dashboard-popup button:focus:not(:focus-visible) {
  outline: 0;
  border: none;
  box-shadow: none;
}

.dashboard-popup .modal-title {
  font-size: 24px;
}

.dashboard-popup .modal-body {
  padding: 24px;

}

.option-list .list-group-item {
  display: flex;
  gap: 10px;
  font-size: 18px;
  padding-inline: 24px;
  padding-block: 16px;
  align-items: center;
  color: var(--black);
  font-weight: 500;
}

.option-list .list-group-item:hover {
  cursor: pointer;
}

.option-list .list-group-item:has(input:checked) {
  background: #e5eee6;
}

input[type="radio"] {
  accent-color: var(--orange);
  width: 15px;
  height: 15px;
}

.dashboard-popup .modal-lg {
  max-width: 600px;
}

.btn-quantity {
  display: flex;
  width: 120px;
  border: 1px solid #3c613575;
  border-radius: 8px;
  overflow: hidden;
}

.btn-quantity>button:hover {
  color: white;
  cursor: pointer;
}

input[type="date"] {
  position: relative;
}

input[type="date"].form-control:disabled:after {
  content: '';
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url('../images/date.svg');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.icon {
  background-repeat: no-repeat;
  background-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #7d7d7d;
  ;
  transition: background-color 0.3s ease;
}

.date-icon {
  mask: url('../images/date.svg') no-repeat;
  -webkit-mask: url('../images/date.svg') no-repeat;


}

.name-icon {
  mask: url('../images/name.svg') no-repeat;
  -webkit-mask: url('../images/name.svg') no-repeat;


}

.category-icon {
  mask: url('../images/category.svg') no-repeat;
  -webkit-mask: url('../images/category.svg') no-repeat;


}

.product-icon {
  mask: url('../images/product.svg') no-repeat;
  -webkit-mask: url('../images/product.svg') no-repeat;


}

.qunatity-icon {
  mask: url('../images/quantity.svg') no-repeat;
  -webkit-mask: url('../images/quantity.svg') no-repeat;


}


.qty-form {
  display: flex;
  justify-content: center;
}

.btn-plus {
  background: var(--orange);
  color: white;
  border-radius: 0;

}

.btn-minus {
  background: #ff2c2c;
  color: white;
  border-radius: 0;

}

.dashboard-action-wrapper .btn {
  padding-inline: 50px;
}

.dashboard-action-wrapper {
  justify-content: center;
  margin-top: 0;
  align-items: center;
}

.product-form-group {
  border-radius: 12px !important;
  border: none !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 3px 10px;
  aspect-ratio: 1 / .4;
  border: 1px solid #d4d4d4 !important;
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-card .card-titile {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  color: #212529;
  transition: .3s;
}

.product-card input {
  display: none;
}

.product-form-group {
  outline: 3px solid transparent;
  outline-offset: 3px;
}

.product-form-group:has(input:checked) {
  outline-color: black;



}

.product-form-group:has(input:checked) .card-titile {
  /* color: white; */
}



.product-form-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.product-form-group .form-control {
  height: 54px;
  width: 100%;
  max-width: 170px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: none;
}

.btn:focus {
  box-shadow: 0 0 0 .25rem rgb(60 97 53 / 19%);
}

.check-box-icon {
  opacity: 0;
  font-size: 30px;
  transition: .3s;
  margin-left: 24px;
}


.product-form-group:has(.product-card input[type="checkbox"]:checked) .check-box-icon {
  opacity: 1;
  color: var(--orange);
}



.custom-form label {
  font-weight: 600;
  font-size: 20px;
  width: 100%;
  line-height: normal;
  border: none;

}

.custom-form label:hover {
  cursor: pointer;
}

.label-title {
  font-weight: 600;
  font-size: 20px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 .25rem rgb(93 110 102 / 20%) !important;

}

.login-content-wrap,
.login-content-wrap-right {
  padding-inline: 4%;
  height: 100%;
  padding-block: 40px;
}

.logo {
  margin-bottom: 40px;
}

.dashboard-logo.logo {
  margin-bottom: 0px;
}

.remember-me {
  display: flex;
  align-items: center;
}

.dropdown.dashboard-dropdown {
  display: flex;
  align-items: center;
}

.shadow-input {
  border-radius: 12px;
  border: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  max-width: 170px;
  border: 1px solid #d4d4d4 !important;
}

.form-group.row {
  align-items: center;
}




.product-table :where(th, td) {
  padding-block: 16px !important;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.product-table :where(th) {
  font-weight: 700;
}

.product-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.product-table .dropdown {
  display: flex;
  justify-content: center;
}

.product-table .dropdown-item {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  padding-block: 6px;
  justify-content: end;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding-inline: 10px;

}

.product-table .dropdown-item:hover {
  background: none;
}

.product-table .dropdown-item i {
  font-size: 15px;
}

.action {
  font-weight: 600;
  cursor: pointer;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-table .dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 3px 10px;
  background: white;
}

.product-table .dropdown-item.active,
.product-table .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--orange);
}

.dashboard-dropdown .dropdown-item:hover,
.dashboard-dropdown .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--orange);
}

.product-table :where(th, td):first-child {
  padding-left: 16px;
}

.product-table :where(th, td):last-child {
  padding-right: 16px;
}

.form-check .form-check-input {

  padding: 0.5rem;
}

.remember-me label {
  margin-left: 10px;
  margin-top: 5px;
}

.list-actions {
  margin-top: 36px;
  margin-bottom: 30px;
}

.filter {
  max-width: 300px;
  margin-right: auto;
  flex: 1;
  align-items: center;
  display: flex;
  height: 100%;

}

.filter .input-group-text {
  padding-inline: 1.2rem !important;
  background-color: var(--orange);
  color: white;
  border-color: var(--orange);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.filter input {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.pagination-nav {
  margin-top: 30px;
}

.pagination-nav ul li a {
  color: var(--black);
  padding: 0.5rem 1.2rem;
}


.pagination-nav .page-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.pagination-nav .pagination {
  gap: 8px;
}

.pagination-nav .page-item.active a {

  border-color: var(--orange) !important;
  background: var(--orange);
}

.pagination-nav .page-link:focus {
  z-index: 3;
  color: var(--black);
  background-color: #e9ecef;
  outline: 0;
  box-shadow: none;
}

.login-center {

  height: calc(100% - 156px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

:not(.login-center) .form-check-input:checked[type=checkbox] {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3E%3C/svg%3E");
  background-color: var(--orange);
  background-image: none;
}

.form-check-input:checked {
  border-color: var(--orange);
}

input[type="checkbox"]:focus {
  box-shadow: 0 0 0 .25rem rgb(93 110 102 / 16%);
  border-color: var(--orange);
}

input#selectAll:checked {
  background-color: none;
  border-color: #adb8b3;
}

.date-input-box {
  position: relative;
}

.date-input-box label {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  cursor: pointer;
  display: inline-block;
  width: auto;
  color: var(--orange);
}

.list-action-group {
  display: flex;
  flex: 1;
}

.dataTables_filter input {
  display: block;
  width: 100%;
  padding-block: 15px !important;
  padding-inline: 16px !important;
  font-weight: 500;
  font-size: 20px;
  border-right-width: 1px;
  margin-right: auto !important;
}

.dataTables_wrapper .dataTables_filter {
  margin-right: 3px;
  margin-bottom: 24px;
}

.mask-icon {
  width: 20px;
  height: 100%;
  background-color: white;
  display: inline-block;
  mask-size: contain;
  margin-right: 8px;
  mask-repeat: no-repeat;
  mask-position: center;
}

.plus {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M248 72c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 160L40 232c-13.3 0-24 10.7-24 24s10.7 24 24 24l160 0 0 160c0 13.3 10.7 24 24 24s24-10.7 24-24l0-160 160 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-160 0 0-160z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M248 72c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 160L40 232c-13.3 0-24 10.7-24 24s10.7 24 24 24l160 0 0 160c0 13.3 10.7 24 24 24s24-10.7 24-24l0-160 160 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-160 0 0-160z'/%3E%3C/svg%3E");


}


.export {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M352 448c0 17.7-14.3 32-32 32L64 480c-17.7 0-32-14.3-32-32L32 64c0-17.7 14.3-32 32-32l128 0 0 112c0 26.5 21.5 48 48 48l112 0 0 64 32 0 0-92.1c0-12.7-5.1-24.9-14.1-33.9L254.1 14.1c-9-9-21.2-14.1-33.9-14.1L64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-80-32 0 0 80zm-.5-288L240 160c-8.8 0-16-7.2-16-16l0-111.5c2.8 .7 5.4 2.1 7.4 4.2L347.3 152.6c2.1 2.1 3.5 4.6 4.2 7.4zm123.8 52.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L521.4 304 208 304c-8.8 0-16 7.2-16 16s7.2 16 16 16l313.4 0-68.7 68.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l96-96c6.2-6.2 6.2-16.4 0-22.6l-96-96z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3C!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M352 448c0 17.7-14.3 32-32 32L64 480c-17.7 0-32-14.3-32-32L32 64c0-17.7 14.3-32 32-32l128 0 0 112c0 26.5 21.5 48 48 48l112 0 0 64 32 0 0-92.1c0-12.7-5.1-24.9-14.1-33.9L254.1 14.1c-9-9-21.2-14.1-33.9-14.1L64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-80-32 0 0 80zm-.5-288L240 160c-8.8 0-16-7.2-16-16l0-111.5c2.8 .7 5.4 2.1 7.4 4.2L347.3 152.6c2.1 2.1 3.5 4.6 4.2 7.4zm123.8 52.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L521.4 304 208 304c-8.8 0-16 7.2-16 16s7.2 16 16 16l313.4 0-68.7 68.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l96-96c6.2-6.2 6.2-16.4 0-22.6l-96-96z'/%3E%3C/svg%3E");
  background-color: var(--orange);
}

.btn-action:hover i {
  background-color: var(--orange);
}

.btn-outline:hover i {
  background-color: white
}

.btn-login {
  border: 2px solid transparent;
  font-weight: 600;
}

.btn-login:hover {
  border-color: var(--orange);


}

/* css at 01-07-25 */
#date {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  background: var(--orange);
  background: #eff1f0;
  color: var(--orange);
  display: inline-flex;
  margin-left: auto;
  border-radius: 30px;
  padding-inline: 40px;
  padding-block: 10px;
  text-transform: capitalize;
  white-space: nowrap;
}

.product-card {

  background: none;
}

.product-form-group {
  transition: .3s;
}

.product-form-group:hover {
  background: var(--orange);
  color: white;
  cursor: pointer;
}

.product-form-group:hover .card-titile {
  color: white;
}

.calculator-popup .modal-title {
  font-weight: 700;
  font-size: 22px;
}


.product-form-group.active .card-titile {
  color: white !important;
}

.product-row.nav-pills .nav-link {
  padding: 0;
}

.emp01 {
  background: #1abc9c;
}

.emp02 {
  background: #2ecc71;
}

.emp03 {
  background: #3498db;
}

.emp04 {
  background: #9b59b6;
}

.emp05 {
  background: #34495e;
}

.emp06 {
  background: #f1c40f;
}

.emp07 {
  background: #e67e22;
}

.emp08 {
  background: #e74c3c;
}

.emp09 {
  background: #95a5a6;
}

.emp10 {
  background: #d35400;
}

.emp11 {
  background: #EC6EAD;
}

.emp12 {
  background: #ee0979;
}

.emp13 {
  background: #A770EF;
}

.emp14 {
  background: #41295a;
}

.emp15 {
  background: #ffffff;
}

.emp16 {
  background: #19547b;
}

.product-category-bg {
  background: #0b5394 !important;
  outline: 3px solid transparent;
  outline-offset: 3px;

}

.product-category-bg.active {
  outline-color: #0b5394 !important;
}

.product-category-bg .card-titile {
  color: white;
}

.bg-lime {
  background-color: #00ff00;
}

.bg-light-blue {
  background-color: #cfe2f3;
}

.bg-dark-red {
  background-color: #a61c00;
}

.bg-light-green {
  background-color: #b6d7a8;
}

.bg-white {
  background-color: #ffffff;
}

.bg-orange {
  background-color: #ff9900;
}

.bg-brown {
  background-color: #783f04;
}

.bg-yellow {
  background: #f8b300;
}

.bg-lime:hover {
  background-color: #03ce03;
}

.bg-light-blue:hover {
  background-color: #84a7c6;
}

.bg-dark-red:hover {
  background-color: #6f1b09;
}

.bg-light-green:hover {
  background-color: #81b66a;
}

.bg-white:hover {
  background-color: #ffffff;
}

.bg-orange:hover {
  background-color: #cc7d05;
}

.bg-brown:hover {
  background-color: #783f04;
}

.bg-yellow:hover {
  background: #c18d07;
}

.bg-white-color {
  background-color: white;
}

.bg-white-color:hover {}

.bg-brown .card-titile {
  color: white;
}

.filter-row label {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.bg-dark-red .card-titile {
  color: white;

}

.filter-row {
  margin-top: clamp(16px, 4vw, 24px);
  margin-bottom: clamp(24px, 6vw, 34px);
  margin-bottom: 0;
  padding: 12px;
  background: #dde2df;
  border-radius: 20px;
  margin-top: 24px;
  padding-block: 24px;
  row-gap: clamp(16px, 2vw, 20px);
}



.filter-form :where(input, textarea, select) {
  font-size: 18px;
  padding-block: 11px !important;
  padding-right: 32px;
  max-width: 100%;
  border-radius: 4px;
}

.filter-form input:focus,
.filter-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 .25rem rgb(93 110 102 / 20%) !important;
}


.bg-red {
  background: #ff0000;
}

.bg-grey {
  background: #dddddd;
}

.bg-purple-2 {
  background: #ff00ff;
}

.bg-green {
  background: #38761d;
}

.bg-dak-blue {
  background: #0000ff;
}

.bg-red:hover {
  background: #d90d0d;
}

.bg-purple-2:hover {
  background: #ba09ba;
}

.bg-green:hover {
  background: #38761d;
}

.bg-dak-blue:hover {
  background: #0a0aca;
}

.bg-dak-blue .card-titile,
.bg-green .card-titile,
.bg-purple-2 .card-titile,
.bg-red .card-titile {
  color: white !important;
}

.dashboard-action-wrapper button[type="submit"],
#submit {
  background: #6aa84f;
}

input:focus-visible {
  outline: none;
}

input[type="text"]::-webkit-calendar-picker-indicator {
  display: none;
}

.calendar-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}


.dashboard-action-wrapper button[type="submit"]:hover,
#submit:hover {
  color: white;
  background: #3bab0a;
  border-color: #3bab0a;
}


.dashboard-action-wrapper button[type="button"],
#hf_print {
  background: #1761b1;
  color: white;
}

.dashboard-action-wrapper button[type="button"]:hover,
#hf_print:hover {
  color: white;
  background: #2179d9 !important;
  border-color: #2179d9;
}

.dataTables_wrapper .dataTables_filter input {
  padding-block: 3px !important;
}

.alert {
  width: 100%;
  display: block;
}

.dashboard-header .dropdown-menu[data-bs-popper] {
  left: auto;
  right: 0;
}

.dashboard-header .navbar-nav .dropdown-menu {
  position: absolute;
}

.dataTables_wrapper {
  padding-top: 8px;
}

.emp-card {
  position: relative;
}


.emp-card input[type="radio"] {
  position: absolute;
  visibility: hidden;
}

.paginate_button.previous,
.paginate_button.next {
  font-size: 0;
  transition: .3s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 3px 10px !important;
  border: 0;
}


.paginate_button.previous:before {
  content: '';
  mask: url('../images/arrow-left-regular.svg') no-repeat center;
  -webkit-mask: url('../images/arrow-left-regular.svg') no-repeat center;
  -moz-mask: url('../images/arrow-left-regular.svg') no-repeat center;
  font-size: 0;
  width: 39px;
  height: 42px;
  mask-size: clamp(16px, 2vw, 18px);
  background: var(--black) !important;
  display: flex;
  justify-content: center;
  align-items: center;

}

.paginate_button.next:before {
  content: '';
  mask: url('../images/arrow-right-regular.svg') no-repeat center;
  -webkit-mask: url('../images/arrow-right-regular.svg') no-repeat center;
  -moz-mask: url('../images/arrow-right-regular.svg') no-repeat center;
  font-size: 0;
  width: 39px;
  height: 42px;
  mask-size: clamp(16px, 2vw, 18px);
  background: var(--black) !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paginate_button.previous:hover:before,
.paginate_button.next:hover:before {
  background: white !important;
}

.dataTables_wrapper .dataTables_paginate {
  display: flex;
  align-items: center;
  gap: 24px;

}

.dataTables_wrapper {
  padding-bottom: 16px;
}

.back-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 4px;
  transition: .3s;
}

.back-btn:hover {
  filter: brightness(1.2);
}

.text-primary {
  color: var(--orange) !important;
}

.back-btn:before {
  content: '';
  mask: url('../images/arrow-left-regular.svg') no-repeat center;
  -webkit-mask: url('../images/arrow-left-regular.svg') no-repeat center;
  -moz-mask: url('../images/arrow-left-regular.svg') no-repeat center;
  font-size: 0;
  mask-size: clamp(16px, 2vw, 18px);
  background: var(--white) !important;
  display: block;
  width: 100%;
  height: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-style: normal;
}

div.dt-buttons>.dt-button {
  transition: .3s;
}

div.dt-buttons>.dt-button:hover {
  background: var(--orange) !important;
  color: white;
}

.dataTable {
  table-layout: auto !important;
}

.dataTables_length label {
  margin-right: 24px;
}

div.dt-buttons>.dt-button:focus:not(.disabled),
div.dt-buttons>div.dt-button-split .dt-button:focus:not(.disabled) {
  outline: none;
  margin: 0;
  box-shadow: 0 0 0 .25rem rgb(93 110 102 / 20%) !important;
}

table.dataTable.display>tbody>tr.odd>.sorting_1 {
  box-shadow: none !important;
}

table.dataTable.stripe>tbody>tr.odd>*,
table.dataTable.display>tbody>tr.odd>* {
  box-shadow: none !important
}

table.dataTable.display>tbody>tr.even>.sorting_1,
table.dataTable.order-column.stripe>tbody>tr.even>.sorting_1 {
  box-shadow: none !important;

}

table.dataTable.hover>tbody>tr:hover>*,
table.dataTable.display>tbody>tr:hover>* {
  box-shadow: none !important;

}

.ui-keyboard {
  padding: 0;
}

.ui-keyboard-preview-wrapper {
  border-radius: 12px;
}

.ui-keyboard-keyset {
  background: white;
  padding: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  margin-top: 8px;
  position: fixed;
  bottom: 0;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
  width: 25%;
  display: flex !important;
  justify-content: center;
  height: auto;
  align-items: center;
  opacity: 0;
  bottom: 18px;
  transition: .5s;
  flex-wrap: wrap;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ui-keyboard-61,
.ui-keyboard-41,
.ui-keyboard-40,
.ui-keyboard-42,
.ui-keyboard-43,
.ui-keyboard-37,
.ui-keyboard-47,
.ui-keyboard-sign,
.ui-keyboard--,
.ui-keyboard-dec {
  display: none;
}

.ui-keyboard-cancel {
  background: #FBD4CD !important;
  transition: .3s;
}

.ui-keyboard-cancel:hover {
  background: #ffbbaf !important;
}

.ui-keyboard-accept {
  background: #D4EFDE !important;
  transition: .3s;

}

.ui-keyboard-accept:hover {
  background: #a6e5be !important;
}

.ui-keyboard-bksp {
  order: 10;
}

.ui-keyboard-clear {
  order: 11;
}

body:has(.virtual-keypad input:focus) .ui-keyboard-keyset {
  opacity: 1 !important;


}


.ui-keyboard-button {
  height: 3em;
  min-width: 3em;
  margin: .2em;
  border-radius: 4px;
}


.virtual-keypad input {
  padding-block: 10px;
}

/***** START KEYBOARD CSS HERE  *****/
.modal-dialog {
  max-width: 416px;
}

.calculator {
  border-radius: 1px;
  max-width: none;
  width: 100%;
  margin-inline: auto;
  padding: 2px;
}

.input {
  border: 1px solid #ddd;
  border-radius: 1px;
  height: 60px;
  padding-right: 15px;
  padding-top: 10px;
  text-align: right;
  margin-right: 0px;
  font-size: 26px;
  overflow-x: auto;
  font-weight: 700;
  transition: all .2s ease-in-out;
}

.input:hover {
  border: 1px solid #bbb;
  -webkit-box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}

.buttons {
  display: flex;
  align-items: self-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

.operators {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}

.operators div {
  display: inline-block;
  border: 1px solid #bbb;
  border-radius: 1px;
  width: 88px;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  background-color: #ddd;
  transition: border-color .2s ease-in-out, background-color .2s, box-shadow .2s;
}

.operators div:hover {
  background-color: #ddd;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  border-color: #aaa;
}

.operators div:active {
  font-weight: bold;
}

.leftPanel {
  display: inline-block;
  margin-right: 4px;
}

.numbers div {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 1px;
  width: 88px;
  text-align: center;
  padding: 10px;
  margin: 10px 4px 10px 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 22px;
  cursor: pointer;
  background-color: #f9f9f9;
  transition: border-color .2s ease-in-out, background-color .2s, box-shadow .2s;
}

.numbers div:hover {
  background-color: #f1f1f1;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  border-color: #bbb;
}

.numbers div:active {
  font-weight: bold;
}

div.equal {
  display: inline-block;
  border: 1px solid #2C5CCC;
  border-radius: 1px;
  width: 100%;
  text-align: center;
  padding: 110px 10px;
  margin: 10px 6px 10px 0;
  margin-right: 0;
  vertical-align: top;
  cursor: pointer;
  color: #FFF;
  background-color: #2C5CCC;
  transition: all .2s ease-in-out;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
}

div.equal:hover {
  background-color: #307CF9;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  border-color: #1857BB;
}

div.equal:active {
  font-weight: bold;
}

.cal-right-action {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.undo {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 1px;
  text-align: center;
  padding: 10px;
  margin: 0;
  cursor: pointer;
  transition: border-color .2s ease-in-out, background-color .2s, box-shadow .2s;
  margin-top: 10px;
  background: #C55060 !important;
  color: white;
}

.undo:hover {
  background: #db374d !important;
}

.clear {
  background-color: #BE3F37 !important;
  color: white;
  transition: .2s;
  height: 55px;
  display: inline-flex !important;
  align-items: center;
  font-size: 18px !important;
  justify-content: center;
}

.clear:hover {
  background-color: #dc3c32 !important
}

.calculator-popup {
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}

.calculator-popup .modal-content {
  box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 46px 0px;
}



@media(max-width:576px) {
  .numbers div {
    width: 75px;
  }

  .operators {
    gap: 8px;
  }

  .leftPanel {
    width: 76%;
  }

  .numbers {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
}

/**** END KEYBOARD CSS HERE ****/

@media(min-width:1600px) {
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 16px;
  }

  .login-content-wrap {
    padding-left: 170px;
    padding-right: 270px;
    padding-top: 50px;
    min-height: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  .login-content-wrap-right {
    padding-left: 156px;
    padding-right: 270px;
    padding-top: 50px;
    padding-bottom: 56px;

  }


}

@media (min-width: 1200px) {

  .label-title {
    margin-bottom: 0;
  }

  .custom-form {
    gap: clamp(14px, 3vw, 24px);
  }

  .filter-row {
    --bs-gutter-y: 0rem;

  }
}


@media(max-width:1399px) {
  .product-card .card-titile {
    font-size: 16px;
  }

  .label-title {
    font-size: 16px;
  }

  .illustration-wrap {
    margin-inline: auto;
  }

  .illustration-wrap img {
    max-width: 300px;
    margin-inline: auto;
    display: block;
  }

  .login-center {
    max-width: 95%;
  }



  .illustration-wrap {
    margin-top: 16px;
  }

  .login-title {
    font-size: 34px;
  }

  .login-title-underline {
    font-size: 28px;
  }

  .login-content-wrap,
  .login-content-wrap-right {
    min-height: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .login-content-wrap-right {
    height: 100%;
  }

  .virtual-keypad input {
    padding-block: 6px;
  }

  .dashboard-action-wrapper .btn {
    padding-inline: 34px;
  }

  #date {
    font-size: 16px;
  }

}

@media (min-width: 1200px) and (max-width:1600px) {
  .product-form-group {
    aspect-ratio: 1 / .1;
  }

  .product-form-sec .custom-form {
    gap: clamp(14px, 3vw, 16px);
  }

  .product-detail.py-60 {
    padding-block: 30px;
  }

  .btn-action {
    font-size: 16px;
    padding-block: 12px;
  }

  .product-form-sec {
    padding-block-end: 16px;
    padding-block-start: 24px;
  }

  .dashboard-title {
    font-size: 24px;
  }

  .main-content-wrapper .alert {
    margin-block: 0;
    margin-block-start: 16px;
  }

  .ui-keyboard-keyset {
    width: 68%;
    bottom: 4px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

}

@media(min-width:768px) and (max-width:1199px) {

  .product-form-sec {
    padding-top: 24px !important;
    padding-bottom: 16px !important;
    ;
  }

  .list-actions {
    margin-top: 30px;
  }

  section:has(.back-btn) {
    padding-top: 16px !important;
    padding-bottom: 10px !important;
  }

  section.py-60.product-detail {
    padding-block: 16px;
  }

  .product-detail .custom-form {
    gap: 12px;
  }



  .dashboard-action-wrapper {
    margin-top: 30px;
  }

  .product-detail .form-group.row {
    margin-bottom: 16px;
  }

  .dashboard-action-wrapper {
    margin-top: 20px;
  }

  .product-form-sec .product-form-group {
    aspect-ratio: 1 / .2;
  }

  .dashboard-title {
    margin-left: 16px;

  }

}

@media(min-width:768px) and (max-width:991px) {
  .product-detail .form-group.row {
    margin-bottom: 10px;
  }
}

@media(max-width:1199px) {
  .dash-main-padding {
    padding-inline: 3%;
  }

  table#staffTable .table-header {
    transform: translateY(-34px);
    opacity: 0;
    height: 0px;
  }

  table#staffTable tbody {
    transform: translateY(-34px);
  }

  .min-width-150 {
    width: fit-content !important;
    min-width: 150px;
    white-space: wrap !important;
  }

  .filter-form :where(input, textarea, select) {
    font-size: 16px;
  }

  .ui-keyboard-keyset {
    display: none !important;
  }

}

@media(max-width:767px) {
  .dash-main-padding {
    padding-inline: 0px;
  }



}

@media(max-width:1199px) {
  .login-content-wrap-right {
    background: var(--orange);
    padding-inline: max(6%, 40px);
    padding-block: 40px;

  }


  .product-card {
    max-width: 100%;
  }

  .label-title {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .login-content-wrap {
    padding-inline: max(6%, 40px);
    padding-top: 40px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .filter-row label {
    margin-bottom: 12px;
  }

  .filter-row label {
    margin-bottom: 16px !important;
  }



  .login-title {
    font-size: 42px;

  }

  .illustration-wrap img {
    max-width: 400px;
  }

  .filter-row {
    gap: 0;
  }



}

@media(max-width:991px) {
  .py-60 {
    padding-block: 50px;
  }

  .pt-60 {
    padding-top: 50px;
  }

  .pb-60 {
    padding-bottom: 50px;
  }

  .dashboard-action-wrapper {
    margin-top: 24px;
  }

  .custom-form label {
    margin-bottom: 0px;
  }

  .label-title {
    margin-bottom: 20px;
  }

  .custom-form :where(input, textarea, select) {
    padding-block: 12px;

  }

  .nav-profile-info-wrapper {
    margin-right: 0;
    flex-direction: row;
  }

  .product-table :where(th, td) {
    font-size: 16px;
    white-space: nowrap;
  }

  .dashboard-title {
    font-size: 26px;
  }

  .dataTables_filter {
    position: static !important;
    float: none !important;
  }

  .dataTables_wrapper .dataTables_length {
    float: none;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .dataTables_wrapper .dataTables_filter label {
    max-width: 350px;
    margin-left: auto;
  }

  .login-title {
    font-size: 32px;
  }

  .login-content-wrap,
  .login-content-wrap-right {
    padding-block: 30px;
  }

  .login-content-wrap .custom-form {
    gap: 12px;
  }

  .btn-login {
    margin-bottom: 0 !important;
  }

  .illustration-wrap img {
    max-width: 200px;
  }

  .login-title-underline {
    margin-top: 0;
  }

  .product-table .dropdown-item {
    font-size: 16px;
  }
}


@media(max-width:767px) {

  .login-content-wrap-right,
  .login-content-wrap {
    padding-inline: 12px;
    padding-block: 1rem;


  }

  .login-content-wrap.light-gray {
    padding-top: 30px
  }

  .logo {
    padding-top: 12px;
  }

  .logo img {
    max-width: 80%;
  }

  .login-title {
    font-size: 22px;
    padding-top: 16px;
  }

  .btn-action {
    padding-block: 12px;
  }

  .dashboard-title {
    font-size: 1.75rem;
  }

  .dash-card-title {
    max-height: 60px;
  }

  .dash-card-title {
    font-size: 1rem;
  }

  .dash-main-padding {
    padding-inline: 12px;
  }

  .py-60 {
    padding-block: 34px;
  }

  .pt-60 {
    padding-top: 34px;
  }

  .pb-60 {
    padding-bottom: 34px;
  }

  .dashboard-card .card-title {
    font-size: 22px;
  }



  .login-title-underline {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .product-form-group {
    gap: 20px;
  }

  .label-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .dashboard-action-wrapper {
    margin-top: 24px;
  }

  .custom-form :where(input, textarea, select) {
    padding-block: 10px;
    font-size: 16px;
  }

  .logo {
    margin-bottom: 30px;
  }

  .label-title {
    font-size: 18px;
  }

  .filter {
    max-width: 100%;
    width: 100%;
  }

  .list-actions {
    justify-content: center !important;
    flex-direction: column;
  }

  .pagination-nav {
    margin-top: 24px;
  }

  .pagination-nav .pagination {
    justify-content: center !important;
  }

  .pagination-nav ul li a {
    color: var(--black);
    padding: 0.3rem 1rem;
  }

  .btn-add,
  .btn-export,
  .btn-submit {
    max-width: 50%;
    display: block;
    margin-inline: auto;
  }

  .filter-row {

    margin-inline: 0;
    gap: 0;
  }

  .flatpickr-input {
    padding-right: 10px;
  }

  .dataTables_wrapper .dataTables_paginate {
    justify-content: center;
  }

  table.dataTable.no-footer {
    margin-bottom: 16px;
  }

  .list-actions {
    margin-top: 0;
  }

  .dashboard-action-wrapper {
    flex-wrap: wrap;
  }

  .product-form-sec .form-group {
    margin-bottom: 16px;
  }

  .btn-print {
    padding-block: 10px;
    font-size: 16px;
  }

  .product-detail section:has(.back-btn) {
    padding-top: 0px !important;
  }

  .product-detail .py-60 {
    padding-block: 16px;
  }

  .product-table .dropdown-item {
    font-size: 16px;
  }
}

@media(min-width:0px) and (max-width:767px) {
  .dataTables_length label {
    justify-content: center !important;
  }

  .product-table .dropdown-item {
    font-size: 16px;
  }

  .dataTables_filter {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
  }

  .dataTables_length label {
    margin-bottom: 20px;
  }

  .dataTables_length label {
    margin: 0;
  }

  .dataTables_wrapper .dataTables_filter label {
    margin-inline: auto;
  }

  .custom-form :where(input, textarea, select) {
    font-size: 16px;
  }

  section:has(.back-btn) {
    padding-top: 30px !important;
    padding-bottom: 16px !important;
  }

  section.py-60.product-detail {
    padding-top: 20px;
  }

  .product-detail .custom-form {
    gap: 16px;
  }

  .dashboard-action-wrapper {
    margin-top: 0;
  }

  .dashboard-title {
    font-size: 24px;
    margin-top: 8px;
  }

  .custom-form label {
    font-size: 16px;
  }

  .login-content-wrap .custom-form {
    gap: 0;
  }

  .btn-login {
    margin-bottom: 0 !important;
  }

  .illustration-wrap img {
    max-width: 40%;
  }

  .login-content-wrap input {
    padding-block: 8px;
  }

  .login-title+p {
    margin-bottom: 0 !important;
  }
}