.min-h-screen {
  min-height: 100vh;
}

.cursor-pointer {
  cursor: pointer;
}

.bg-card-header {
  background-color: var(--bs-card-cap-bg);
}

.avatar {
  object-fit: cover;
  border-radius: 50%;
}

.avatar.avatar-sm {
  width: 2rem;
  height: 2rem;
}

.avatar.avatar-md {
  width: 2.5rem;
  height: 2.5rem;
}

.avatar.avatar-lg {
  width: 4rem;
  height: 4rem;
}

.avatar.avatar-xl {
  width: 5rem;
  height: 5rem;
}

.avatar.avatar-2xl {
  width: 6rem;
  height: 6rem;
}

.avatar.avatar-3xl {
  width: 8rem;
  height: 8rem;
}

/* nav dashboard */
.nav.nav-dashboard ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  gap: 0.2rem;
}

.nav.nav-dashboard ul li {
  padding: 0;
  margin: 0;
}

.nav.nav-dashboard ul li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #b1b7c1;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.1s ease-in-out;
}

.nav.nav-dashboard ul li a:hover {
  background-color: var(--bs-card-cap-bg);
  color: var(--bs-warning);
}

.nav.nav-dashboard ul li a.active {
  background-color: var(--bs-card-cap-bg);
  color: var(--bs-warning);
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
}

.separator:not(:empty)::before {
  margin-right: 0.25em;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #7c7c7c;
}

.text-sm {
  font-size: small;
}

.icon-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background-color: #1F1F1F;
}

.icon-cart i {
  font-size: 1rem !important;
  color: var(--bs-primary);
  margin-right: 7px;
}

.icon-cart .badge {
  position: absolute;
  top: 0;
  right: -8px;
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
}

.list-style-none {
  list-style: none;
}

.icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 100%;
}

.bg-pattern {
  background-image: url(../../img/decor/bg-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.text-underline {
  text-decoration: underline !important;
}

.bg-disabled {
  opacity: 0.5;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.border-dashed {
  border-style: dashed;
}

.border-coupon {
  border: 2px solid var(--bs-success) !important;
  border-style: dashed !important;
}

.dropify-wrapper .dropify-message p {
  font-size: large;
}

.border-transparent {
  border-color: transparent !important;
}

.hover-border-warning:hover {
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--bs-warning) !important;
}

.hover-border-secondary:hover {
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--bs-secondary) !important;
}