.cookie-popup {
  font-family: var(--font__primary);
  position: fixed;
  bottom: var(--spacing-md-fixed, 1rem);
  left: var(--spacing-md-fixed, 1rem);
  right: var(--spacing-md-fixed, 1rem);
  max-width: 615px;
  background-color: #fff;
  padding: var(--spacing-md-fixed, 1rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: var(--z-index__modal, 50);
}

.cookie-message {
  font-size: var(--text-sm, 0.875em);
  font-weight: var(--text-weight-light, 300);
  margin-bottom: var(--spacing-md-fixed, 1rem);
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

@media (min-width: 40em) {
  .cookie-buttons {
    flex-direction: row;
  }
}
