.my-alert {
  position: fixed !important;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  width: 90%;
  max-width: 500px;
}

input[type="checkbox"] {
  width: 25px;
  height: 25px;
  cursor: pointer;
  border-radius: 10px;
}

.alert-primary {
  background: rgb(220, 218, 243);
}

.alert-secondary {
  background: rgb(218, 232, 243);
}

.alert-success {
  background: rgb(218, 243, 218);
}

.alert-info {
  background: rgb(218, 243, 242);
}

.alert-warning {
  background: rgb(243, 240, 218);
}

.alert-danger {
  background: rgb(243, 222, 218);
}

.alert-light {
  background: rgb(255, 255, 255);
}

.alert-dark {
  background: rgb(179, 177, 177);
}

@media print {
  @page {
    size: A4 landscape; /* Force A4 landscape */
    margin: 10mm;
  }

  /* Force all bootstrap grid columns to use desktop layout */
  .col-sm-6,
  .col-md-6,
  .col-lg-6,
  .col-xl-6,
  .col-sm-12,
  .col-md-12,
  .col-lg-12,
  .col-xl-12,
  .col-sm-3,
  .col-md-3,
  .col-lg-3,
  .col-xl-3,
  .col-sm-4,
  .col-md-4,
  .col-lg-4,
  .col-xl-4 {
    float: left !important;
    width: auto !important;
    max-width: none !important;
  }

  /* Example: force col-xl to always apply */
  .col-xl-3 {
    width: 25% !important;
  }
  .col-xl-4 {
    width: 33.3333% !important;
  }
  .col-xl-6 {
    width: 50% !important;
  }
  .col-xl-12 {
    width: 100% !important;
  }

  /* Make sure flex layouts don’t collapse */
  .row {
    display: flex !important;
    flex-wrap: nowrap !important;
  }
}

.text-line-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 1;
}

.text-line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
}

.text-line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
}

.text-line-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 4;
}

.text-line-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 5;
}

/* alert css */

/* From Uiverse.io by Yaya12085 */
.alert-card {
  overflow: hidden;
  text-align: left;
  border-radius: 0alert-5rem;
  max-width: 290px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  width: calc(100% - 32px);
  border-radius: 14px;
}

.alert-header {
  padding: 1.25rem 1rem 1rem 1rem;
}

.alert-image {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
}

.ico-danger {
  background-color: #fee2e2;
}

.ico-success {
  background-color: #e2fee6;
}

.alert-image span {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.alert-content {
  margin-top: 0.75rem;
  text-align: center;
}

.alert-title {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.alert-message {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.alert-actions {
  margin: 0.75rem 1rem;
}

.alert-deactivate {
  display: inline-flex;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.alert-cancel {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #374151;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;   bhy7678u0y
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.alert-glass-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
     cursor: not-allowed;
}

.bg-dark-theme{
  background: var(--bg, #0E141C) !important; 
}

.bg-dark-theme-1{
  background: var(--surface, #171C24) !important; 
}

.bg-dark-theme-2{
  background: var(--surface-2, var(--surface2, #1A2129)) !important; 
}

body[data-theme="light"] .bg-dark-theme:not(.bg-theme-purple),
body[data-theme="light"] .bg-dark-theme-1:not(.bg-theme-purple),
body[data-theme="light"] .bg-dark-theme-2:not(.bg-theme-purple){
  color: var(--text, #0f172a) !important;
  --bs-card-color: var(--text, #0f172a);
  --bs-card-title-color: var(--text, #0f172a);
  --bs-card-cap-color: var(--text, #0f172a);
}

body[data-theme="light"] .bg-dark-theme:not(.bg-theme-purple) .text-light:not(.bg-theme-purple),
body[data-theme="light"] .bg-dark-theme-1:not(.bg-theme-purple) .text-light:not(.bg-theme-purple),
body[data-theme="light"] .bg-dark-theme-2:not(.bg-theme-purple) .text-light:not(.bg-theme-purple),
body[data-theme="light"] .bg-dark-theme:not(.bg-theme-purple) .text-white:not(.bg-theme-purple),
body[data-theme="light"] .bg-dark-theme-1:not(.bg-theme-purple) .text-white:not(.bg-theme-purple),
body[data-theme="light"] .bg-dark-theme-2:not(.bg-theme-purple) .text-white:not(.bg-theme-purple){
  color: var(--text, #0f172a) !important;
}

body[data-theme="light"] .bg-dark-theme:not(.bg-theme-purple) .text-white-50:not(.bg-theme-purple),
body[data-theme="light"] .bg-dark-theme-1:not(.bg-theme-purple) .text-white-50:not(.bg-theme-purple),
body[data-theme="light"] .bg-dark-theme-2:not(.bg-theme-purple) .text-white-50:not(.bg-theme-purple){
  color: var(--muted, #64748b) !important;
}

.bg-theme-purple{
  background: #AAB2FE !important;
}


/* From Uiverse.io by Wendell47 */ 
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px !important;
  border: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  transition: all 0.02s;
  font-weight: 600 !important;
  cursor: pointer;
  z-index: 0;
  box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
  font-size: 20px !important;
}

.main-btn:hover {
  background: rgb(193, 228, 248);
  color: rgb(33, 0, 85);
}

.main-btn:active {
  transform: scale(0.97);
}

.hoverEffect {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hoverEffect div {
  background: rgb(222, 0, 75);
  background: linear-gradient(
    90deg,
    rgba(222, 0, 75, 1) 0%,
    rgba(191, 70, 255, 1) 49%,
    rgba(0, 212, 255, 1) 100%
  );
  border-radius: 40rem;
  width: 100%;
  height: 70rem;
  transition: 0.4s;
  filter: blur(20px);
  animation: effect infinite 15s linear;
  opacity: 0.5;

}

.button:hover .hoverEffect div {
  width: 8rem;
  height: 8rem;
}

@keyframes effect {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.quickview-details-clamp {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
}
