.cookie-directive-overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 8px;
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background-color: rgba(var(--color-alpha-grey));
}

.cookie-directive {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-content-width);
  color: rgba(var(--font-color));
  background-color: rgba(var(--background-content));
  box-sizing: border-box;
  box-shadow: 0 8px 16px 0 rgba(var(--color-alpha-grey));
  border-radius: var(--default-radius-large);
}

.cookie-directive .cookie-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cookie-directive .cookie-toolbar h2 {
  font-size: 14pt;
  text-align: left;
  margin: 8px;
  margin-bottom: 0;
}

.cookie-directive .cookie-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.cookie-directive .cookie-actions {
  display: flex;
  padding-bottom: env(safe-area-inset-bottom, 0);
}