.cookie-consent-card {
  background: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg);
  bottom: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(32, 33, 36, 0.16);
  max-width: 340px;
  padding: 1rem;
  position: fixed;
  right: 1rem;
  width: calc(100% - 2rem);
  z-index: 1080;
}

.cookie-consent-card[hidden] {
  display: none;
}

.cookie-consent-open {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--bs-body-color);
  display: flex;
  justify-content: space-between;
  margin: -0.25rem;
  padding: 0.25rem;
  text-align: left;
  width: calc(100% + 0.5rem);
}

.cookie-consent-open[hidden],
.cookie-consent-card [data-cookie-consent-content][hidden] {
  display: none;
}

.cookie-consent-actions {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cookie-consent-actions .btn {
  min-height: 2.5rem;
}

@media (max-width: 575.98px) {
  .cookie-consent-card {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    bottom: auto;
    box-shadow: none;
    max-width: none;
    position: static;
    right: auto;
    width: 100%;
  }
}
