html.indigo-cookie-banner-open {
  scroll-behavior: auto;
}

.indigo-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 8px 16px;
  pointer-events: none;
}

.indigo-cookie-banner--bottom {
  bottom: 0;
}

.indigo-cookie-banner--top {
  top: 0;
}

.indigo-cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--indigo-cookie-bar-bg, #0031A7);
  color: var(--indigo-cookie-bar-text, #ffffff);
  border-radius: 999px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.indigo-cookie-banner__message {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.indigo-cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.indigo-cookie-banner__link {
  background: none;
  border: none;
  color: var(--indigo-cookie-bar-text, #ffffff);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.indigo-cookie-banner__button {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}

.indigo-cookie-banner__button--outline {
  background-color: transparent;
  color: var(--indigo-cookie-outline-text, #ffffff);
  border-color: var(--indigo-cookie-outline-border, #ffffff);
}

.indigo-cookie-banner__button--primary {
  background-color: var(--indigo-cookie-primary-bg, #ffffff);
  color: var(--indigo-cookie-primary-text, #0031A7);
}

.indigo-cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
}

.indigo-cookie-overlay--visible {
  display: flex;
}

.indigo-cookie-modal {
  max-width: 720px;
  width: 100%;
  background-color: #0031A7;
  color: #ffffff;
  border-radius: 24px;
  padding: 24px 24px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.indigo-cookie-modal__body {
  max-height: 75vh;
  overflow: auto;
}

.indigo-cookie-modal__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.indigo-cookie-modal__text {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.5;
}

.indigo-cookie-modal__domains {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.85;
}

.indigo-cookie-category {
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.indigo-cookie-category__checkbox {
  margin-top: 2px;
}

.indigo-cookie-category__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
}

.indigo-cookie-category__description {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.indigo-cookie-modal__footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.indigo-cookie-modal__footer-left {
  display: flex;
  gap: 16px;
}

.indigo-cookie-modal__footer-right {
  display: flex;
  gap: 12px;
}

.indigo-cookie-modal__back {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}

.indigo-cookie-modal__button {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}

.indigo-cookie-modal__button--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.indigo-cookie-modal__button--primary {
  background-color: #ffffff;
  color: #0031A7;
}

.indigo-cookie-launcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background-color: #0031A7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 10001;
}

.indigo-cookie-launcher__icon {
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 767px) {
  .indigo-cookie-banner {
    top: auto;
    bottom: 0;
    padding: 12px;
    background: transparent;
  }

  .indigo-cookie-banner__inner {
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 24px 20px 20px;
  }

  .indigo-cookie-banner__message {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .indigo-cookie-banner__actions {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .indigo-cookie-banner__button {
    width: 100%;
    text-align: center;
  }

  .indigo-cookie-banner__link {
    text-align: center;
  }

  .indigo-cookie-modal {
    margin: 0 12px;
    padding: 20px 16px 16px;
  }

  .indigo-cookie-modal__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .indigo-cookie-modal__footer-right {
    justify-content: flex-end;
  }

  .indigo-cookie-launcher {
    right: 12px;
    bottom: 12px;
  }
}
