.cookie-bar {
  opacity: 0;
  transition: opacity 0.25s;
  position: fixed;
  left: 0;
  bottom: 0;
  background: rgb(228, 228, 228);
  color: #000;
  z-index: 5;
  flex-direction: row;
  justify-content: space-between;
  padding: 1em;
  box-sizing: border-box;
  align-items: center;
  width: 100%;
  display: flex;
  display: none;
}

.cookie-bar.active {
  opacity: 1;
  display: flex;
}

.cookie-bar--content {
  max-width: 80%;
  padding-right: 1em;
  font-size: 1em;
  line-height: initial;
}

.cookie-bar a {
  text-decoration: underline;
}

.cookie-bar p {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}

.cookie-bar--ok {
  cursor: pointer;
  max-width: 20%;
  color: white;
  background: rgb(53, 53, 53);
  padding: 0.75em 2em;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  outline: none;
  align-self: flex-end;
}
