/* =========================================
   Adjust Cookie Banner (Advanced SCSS)
========================================= */
/* -------------------------
   CSS Variables / Themes
------------------------- */
:root {
  --ac-bg: #ffffff;
  --ac-text: #333333;
  --ac-text-secondary: #666666;
  --ac-primary-hover: #2563eb;
  --ac-secondary-bg: #f3f4f6;
  --ac-border: #e5e7eb;
  --ac-shadow: rgba(0, 0, 0, 0.1);
  --ac-btn-text: #ffffff;
}

.adjust-theme-light {
  --ac-bg: #ffffff;
  --ac-text: #333333;
  --ac-text-secondary: #666666;
  --ac-primary-hover: #2563eb;
  --ac-border: #e5e7eb;
  --ac-shadow: rgba(0, 0, 0, 0.1);
  --ac-btn-text: #ffffff;
}

.adjust-theme-dark {
  --ac-bg: #1f2937;
  --ac-text: #f3f4f6;
  --ac-text-secondary: #9ca3af;
  --ac-primary-hover: #3b82f6;
  --ac-border: #374151;
  --ac-shadow: rgba(0, 0, 0, 0.5);
  --ac-btn-text: #ffffff;
}
.adjust-theme-dark .adjust-cookie-content,
.adjust-theme-dark .adjust-cookie-detail-content {
  color: var(--ac-text);
}

/* -------------------------
   Container
------------------------- */
/* -------------------------
   Banner
------------------------- */
.adjust-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ac-bg);
  box-shadow: 0 -5px 20px var(--ac-shadow);
  padding: 40px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  border-top: 1px solid var(--ac-border);
}
@media (min-width: 768px) {
  .adjust-cookie-banner {
    justify-content: space-between;
    padding: 50px 80px;
  }
}
.adjust-cookie-banner .adjust-cookie-title {
  margin: 0 0 20px;
}
.adjust-cookie-banner .adjust-cookie-policy a {
  text-decoration: none;
  font-size: 14px;
}
.adjust-cookie-banner .adjust-cookie-policy a:hover {
  text-decoration: underline;
}
.adjust-cookie-banner.adjust-cookie-mode-banner .adjust-cookie-detail-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  transition: all 400ms ease;
  height: auto;
  overflow: hidden;
  max-height: 0;
  gap: 2rem;
}
.adjust-cookie-banner.adjust-cookie-mode-banner .adjust-cookie-detail-content .adjust-cookie-categories {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 2rem;
}
@media (min-width: 768px) {
  .adjust-cookie-banner.adjust-cookie-mode-banner .adjust-cookie-detail-content .adjust-cookie-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .adjust-cookie-banner.adjust-cookie-mode-banner .adjust-cookie-detail-content .adjust-cookie-categories {
    grid-template-columns: repeat(4, 1fr);
  }
}
.adjust-cookie-banner.adjust-cookie-mode-banner .adjust-cookie-detail-content .adjust-cookie-categories .adjust-cookie-category {
  margin-bottom: 0;
  border-bottom: none;
}
.adjust-cookie-banner.adjust-cookie-mode-banner .adjust-cookie-detail-content .adjust-cookie-categories .adjust-cookie-category .adjust-cat-header {
  flex-direction: column;
  align-items: flex-start;
}
.adjust-cookie-banner.adjust-cookie-mode-banner .adjust-cookie-detail-content .adjust-cookie-categories .adjust-cookie-category .adjust-cat-desc {
  padding-left: 0;
  font-size: 85%;
}
.adjust-cookie-banner.adjust-cookie-mode-modal {
  padding: 3rem 4rem;
  bottom: 3rem;
  right: 3rem;
  left: unset;
  width: calc(100% - 6rem);
}
@media (min-width: 540px) {
  .adjust-cookie-banner.adjust-cookie-mode-modal {
    width: 400px;
  }
}
.adjust-cookie-banner.adjust-cookie-mode-modal .adjust-cookie-actions {
  justify-content: space-around;
}

/* -------------------------
   Actions
------------------------- */
.adjust-cookie-actions {
  display: flex;
  align-self: flex-end;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.adjust-cookie-actions.centered {
  justify-content: center;
  margin-top: 40px;
}

/* -------------------------
   Modal
------------------------- */
.adjust-cookie-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adjust-cookie-modal .adjust-cookie-detail-content {
  background-color: var(--ac-bg);
  max-width: 800px;
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
@media (max-width: 541px) {
  .adjust-cookie-modal .adjust-cookie-detail-content {
    height: 90vh;
    overflow-y: auto;
  }
}

/* -------------------------
   Categories
------------------------- */
.adjust-cookie-category {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--ac-border);
  padding-bottom: 20px;
}
.adjust-cookie-category:last-child {
  border-bottom: none;
}
.adjust-cookie-category .adjust-cat-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  font-weight: 600;
}
.adjust-cookie-category .adjust-cat-desc {
  padding-left: 65px;
}
@media (max-width: 768px) {
  .adjust-cookie-category .adjust-cat-desc {
    padding-left: 0;
    margin-top: 10px;
  }
}

/* -------------------------
   Switch Toggle
------------------------- */
.adjust-switch {
  position: relative;
  display: inline-block;
  width: 43px;
  height: 24px;
}
.adjust-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.adjust-switch input:checked + .adjust-switch-slider {
  background-color: #4cd964;
}
.adjust-switch input:checked + .adjust-switch-slider::before {
  transform: translateX(19px);
}
.adjust-switch input:checked + .adjust-switch-slider::after {
  opacity: 1;
  scale: 1;
}
.adjust-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.adjust-switch.disabled .adjust-switch-slider {
  cursor: not-allowed;
}

.adjust-switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #8c8c8c;
  border-radius: 999px;
}
.adjust-switch-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease;
}
.adjust-switch-slider::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 10px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  scale: 0;
  transition: all 0.25s ease;
}

/*# sourceMappingURL=style.css.map */
