:root {
  --alq-red: rgb(220 38 38 / 1);
  --alq-red-dark: #b91c1c;
  --alq-red-light: #fef2f2;
}

.alq_flex {
  display: flex !important;
}

.alq_align_center {
  align-items: center !important;
}

.alq_align_start {
  align-items: flex-start !important;
}

.alq_align_end {
  align-items: flex-end !important;
}

.alq_align_stretch {
  align-items: stretch !important;
}

.alq_justify_between {
  justify-content: space-between !important;
}

.alq_justify_center {
  justify-content: center !important;
}

.alq_justify_around {
  justify-content: space-around !important;
}

.alq_justify_evenly {
  justify-content: space-evenly !important;
}

.alq_justify_start {
  justify-content: flex-start !important;
}

.alq_justify_end {
  justify-content: flex-end !important;
}

.alq_gap_1 {
  gap: 0.5rem !important;
}

.alq_gap_2 {
  gap: 1rem !important;
}

.alq_gap_3 {
  gap: 1.5rem !important;
}

.alq_gap_4 {
  gap: 2rem !important;
}

.alq_gap_5 {
  gap: 2.5rem !important;
}

.alq_m-2 {
  margin-bottom: 1rem !important;
}

.alq_button_grey {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  line-height: 1.5 !important;
  padding: 8px 16px !important;
  font-family: "Inter", sans-serif !important;
  border-radius: 8px !important;
  background: #f3f4f6 !important;
  color: var(--label) !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  justify-content: center !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.alq_button_grey:hover {
  background: #e5e7eb !important;
}

.alq-text-red {
  color: var(--alq-red) !important;
}

.alq-text-red-dark {
  color: var(--alq-red-dark) !important;
}

.alq-bg-red-light {
  background: var(--alq-red-light) !important;
}

.alq_btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 16px !important;
  text-decoration: none !important;
  line-height: 1.5 !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  justify-content: center !important;
  font-family: "Inter" !important;
}

.alq_button_orange {
  color: white !important;
  background: var(--orange) !important;
}

.alq_button_orange:hover {
  background: var(--orange-hover) !important;
}

.alq_button_with_loader {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.alq_button_loader {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: none;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
