/* Cookiebar. */
.cookiebar {
  --color: #2856ac;

  background-color: white;
  border-radius: 0.375rem;
  bottom: 1rem;
  box-shadow: 0 0.25rem 1.25rem rgb(0 0 0 / 10%), 0 0 0 1px rgb(0 0 0 / 2%);
  line-height: 1.5;
  max-width: 24rem;
  padding: 1rem;
  position: fixed;
  right: 1rem;
  width: calc(100% - 2rem);
  z-index: 999;
}

/* Categories. */
.cookiebar__categories {
  margin-top: 1rem;
}

/* Category. */
.cookiebar__category {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.cookiebar__category:first-child {
  margin-top: 0;
}
.cookiebar__category input[type="checkbox"] {
  left: 0;
  margin: 0;
  position: absolute;
  top: 0.125rem;
}
.cookiebar__category label {
  display: block;
  font-weight: bold;
}

/* Actions. */
.cookiebar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Button. */
.cookiebar__button {
  background-color: white;
  border: 1px solid var(--color);
  border-radius: 0.375rem;
  color: var(--color);
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  outline: none;
  padding: .5rem 1rem;
  text-decoration: none;
}
.cookiebar__button--primary {
  background-color: var(--color);
  border-color: var(--color);
  color: white;
}
.cookiebar__button:focus {
  outline: 1px dashed var(--color);
  outline-offset: 1px;
}
