#cookie-notice {
  display: none;
  position: fixed;
  min-width: 100%;
  height: auto;
  z-index: 100000;
  font-size: 16px;
  line-height: 18px;
  left: 0;
  text-align: center;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
}
#cookie-notice.is-visible {
  display: block;
  opacity: 1;
  transition: opacity 300ms;
}
#cookie-notice p:first-child {
  margin: 0 0 15px;
}
#cookie-notice .cookie-notice-container {
  padding: 18px;
}
#cookie-notice fieldset {
  display: block;
  margin: 0 6px 10px;
  padding: 5px 15px 9px;
}
#cookie-notice legend {
  text-align: left;
  margin-bottom: 5px;
}
#cookie-notice label {
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  margin-bottom: 5px;
  cursor: pointer;
}
#cookie-notice label:focus, #cookie-notice label:focus-within, #cookie-notice label:focus-visible {
  outline: 1px dotted #212121;
  outline: 5px auto -webkit-focus-ring-color;
}
#cookie-notice label.required {
  cursor: not-allowed;
}
#cookie-notice input {
  /* Hide checkboxes */
  opacity: 0;
  /* Custom checkbox style */
}
#cookie-notice input + span {
  display: block;
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -8px;
  border: 1px solid #333;
}
#cookie-notice input + span:before {
  content: "";
  display: block;
  position: absolute;
  font-size: 12px;
  line-height: 12px;
  height: 8px;
  width: 8px;
  top: 1px;
  left: 1px;
  color: #333;
  background: #333;
  opacity: 0;
}
#cookie-notice input:checked + span:before {
  opacity: 1;
}
#cookie-notice input:disabled + span {
  border-color: #aaa;
}
#cookie-notice input:disabled + span:before {
  background: #aaa;
}
#cookie-notice button {
  line-height: 1.5;
  outline: none;
  margin-bottom: 5px;
}
#cookie-notice button:focus, #cookie-notice button:focus-within, #cookie-notice button:focus-visible {
  outline: 1px auto #212121;
  outline: 1px auto -webkit-focus-ring-color;
}
#cookie-notice .button {
  line-height: 1.5;
  outline: none;
  margin-bottom: 5px;
  cursor: pointer;
}
#cookie-notice .button:focus, #cookie-notice .button:focus-within, #cookie-notice .button:focus-visible {
  outline: 1px auto #212121;
  outline: 1px auto -webkit-focus-ring-color;
}

#cookie-notice-details {
  margin-bottom: 20px;
  display: none;
}
#cookie-notice-details .button {
  margin-bottom: 10px;
}

#cookie-notice-choose.is-visible {
  opacity: 1;
}
#cookie-notice-choose.is-hidden {
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
}

@media only screen and (min-width: 481px) {
  #cookie-notice button {
    margin-bottom: 15px;
  }
  #cookie-notice .button {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) {
  #cookie-notice-details .wrapper {
    display: flex;
    justify-content: center;
  }
}
