/* Cookie notice bar - see /js/cookienotice.js */
.cookienotice {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  box-sizing: border-box;
  flex-wrap: nowrap;
  align-items: center;
  opacity: 0.925;
  background-color: #131313;
  color: #ffffff;
  font-family: "Open Sans", Helvetica, "Lucida Grande", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2em;
  font-smooth: always;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.cookienotice.cookienotice-visible {
  display: flex;
}

.cookienotice .cookienotice-message {
  flex: 1;
  margin-left: 1em;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  font-size: 14px;
}

.cookienotice .cookienotice-link {
  display: inline-block;
  padding: 0.2em;
  color: #ffffff;
  opacity: 0.8;
  text-decoration: underline;
  cursor: pointer;
}

.cookienotice .cookienotice-link:hover {
  opacity: 1;
}

.cookienotice .cookienotice-dismiss {
  margin: 0;
  padding: 0.8em 1.8em;
  border: 2px solid transparent;
  align-self: stretch;
  min-width: 100px;
  background-color: var(--cookienotice-dismiss, #444444);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.cookienotice .cookienotice-dismiss:hover,
.cookienotice .cookienotice-dismiss:focus {
  background-color: var(--cookienotice-dismiss-hover, #6a6a6a);
}

@media screen and (max-width: 414px) and (orientation: portrait),
  screen and (max-width: 736px) and (orientation: landscape) {
  .cookienotice {
    flex-direction: column;
    align-items: normal;
  }
  .cookienotice .cookienotice-message {
    margin-top: 0.2em;
    margin-bottom: 0.4em;
  }
  .cookienotice .cookienotice-dismiss {
    white-space: normal;
  }
}
