<!-- Cookies -->
<style>
.cookie-consent__modal * {
  font-family: 'Amnesty Trade Gothic', sans-serif;
}

.cookie-consent__body,
.cookie-consent__preferences {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 0.75em 1.25em;
  
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  font-size: 1.125em;
}

.cookie-consent__title {
  position: relative;
  margin-bottom: 0.5em;

  font-size: .85em;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  color: black;
}

.cookie-consent__title::before {
  position: absolute;
  content: '';
  top: -10px;
  width: 20px;
  height: 3px;
  background-color: #000000;
}

.cookie-consent__button {
  margin: 0;

  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;

  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0.75em;
  padding-right: 0.75em;

  border: 0;
  border-radius: 0;
  appearance: none;

  color: black;
  font-size: .85em;
  font-weight: 600;
  text-transform: uppercase;

  transition: .25s;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus {
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.17),
  0 3.1px 5.5px rgba(0, 0, 0, 0.22);
}

.cookie-consent__button:disabled {
  background-color: #ebebeb;
  color: gray;
  cursor: not-allowed;
}

.cookie-consent__button:disabled:hover {
  box-shadow: none;
}

.cookie-consent__button--accept {
  background-color: #FFFF00;
}

.cookie-consent__button--config {
  background-color: rgba(0, 0, 0, 0.05);
}

.cookie-consent__button--close {
  padding: 0.5em;

  display: flex;
  flex-shrink: 0;

  width: 2em;
  height: 2em;

  background-color: white;
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
  0 0.9px 1.5px rgba(0, 0, 0, 0.05),
  0 3.5px 6px rgba(0, 0, 0, 0.1);

  border-radius: 50%;
  transition: .2s;
}

.cookie-consent__button--close svg {
  display: block;
  background-color: transparent;
  color: black;
  width: 1em;
  height: 1em;
}

.cookie-consent__button--close:hover {
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
  0 3.1px 5.5px rgba(0, 0, 0, 0.08),
  0 14px 25px rgba(0, 0, 0, 0.12);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-consent__actions > button {
  flex: 1;
  margin: 0.25em;
}

.cookie-consent__box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  height: 95%;
  border: 1px solid;
  padding: 1em 1.4em;
  margin-bottom: 10px;

  color: black;
}

.cookie-consent__box-select {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-consent__box-select > button {
  flex: 1;
  margin: 0.25em;
}

.cookie-consent__box-title {
  width: 100%;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1em;
  color: black;
}

.cookie-consent__box p {
  width: 100%;
  font-size: 0.7em;
  margin-top: 1em;
  color: black;
}

.cookie-consent__box p:last-child {
  margin-bottom: 0;
}

.cookie-consent__checkbox,
.cookie-consent__radio {
  position: relative;
  display: inline-block;
  font-size: 1.9em;
}

.cookie-consent__radio-container {
  display: flex;
  align-items: center;
  margin: 14px 14px 14px 0;
}

.cookie-consent__radio-text {
  margin-left: 6px;
  font-size: 0.85em;
}

input[type="checkbox"].cookie-consent__checkbox-input {
  position: relative;
  margin: 0;
  padding: 0;
  opacity: 0;
  height: 1.5em;
  width: 1.5em;
  display: block;
  z-index: 1;

  cursor: pointer;
}

input[type="radio"].cookie-consent__radio-input {
  position: relative;
  margin: 0;
  padding: 0;
  opacity: 0;
  height: 0.7em;
  width: 0.7em;
  display: block;
  z-index: 1;

  cursor: pointer;
}

label.cookie-consent__checkbox-label,
label.cookie-consent__radio-label {
  position: absolute;
  top: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}

.cookie-consent__checkbox-control,
.cookie-consent__radio-control {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.2s;
  color: black;
}

.cookie-consent__checkbox-control::before,
.cookie-consent__checkbox-control::after,
.cookie-consent__radio-control::before,
.cookie-consent__radio-control::after {
  content: '';
  position: absolute;
}

.cookie-consent__checkbox-control::before,
.cookie-consent__radio-control::before {
  background-color: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  border-radius: 50%;
  transition: transform .2s;
  will-change: transform;
}

.cookie-consent__checkbox-control::after,
.cookie-consent__radio-control::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(0, 0%, 100%);
  box-shadow: inset 0 0 0 1px black;
}

.cookie-consent__radio-control::after {
  border-radius: 50%;
}

.cookie-consent__checkbox-input:checked ~ .cookie-consent__checkbox-control::after {
  background-color: currentColor;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline points='2.5 8 6.5 12 13.5 3' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1em;
}

.cookie-consent__radio-input:checked ~ .cookie-consent__radio-control::after {
  background-color: currentColor;
  background-image: url("data:image/svg+xml;charset=utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PGcgY2xhc3M9J25jLWljb24td3JhcHBlcicgZmlsbD0nI2ZmZmZmZic+PGNpcmNsZSBjeD0nOCcgY3k9JzgnIHI9JzgnIGZpbGw9JyNmZmZmZmYnPjwvY2lyY2xlPjwvZz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}

.cookie-consent__checkbox-input:disabled {
  cursor: not-allowed;
}

.cookie-consent__checkbox-input:active ~ .cookie-consent__checkbox-control,
.cookie-consent__radio-input:active ~ .cookie-consent__radio-control {
  transform: translate(-50%, -50%) scale(0.9);
}

.cookie-consent__checkbox-input:checked:active ~ .cookie-consent__checkbox-control,
.cookie-consent__radio-input:checked:active ~ .cookie-consent__radio-control {
  transform: translate(-50%, -50%) scale(1);
}

.cookie-consent__checkbox-input:focus ~ .cookie-consent__checkbox-control::before,
.cookie-consent__radio-input:focus ~ .cookie-consent__radio-control::before {
  width: 160%;
  height: 160%;

  opacity: 0.2;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-consent__modal {
  position: fixed;
  z-index: 21474830001; /* override chatbot, previously: z-index: 1100; */
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;

  padding: 1.25em;

  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-end;

  background-color: rgba(0, 0, 0, 0.3);
}

.cookie-consent__modal:not(.cookie-consent__modal--is-visible) {
  z-index: 1;
  pointer-events: none;
  background-color: transparent;
}

.cookie-consent__modal--is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-consent__modal-content {
  width: 100%;

  max-width: 80rem;

  display: flex;
  flex-direction: column;

  background-color: white;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 100%;

  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
  0 3.1px 5.5px rgba(0, 0, 0, 0.08),
  0 14px 25px rgba(0, 0, 0, 0.12);
}

.cookie-consent__modal-content--preferences {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.cookie-consent__modal-content--show {
  display: block;
  opacity: 1;
  visibility: visible;
}
.cookie-consent__modal-content--hidden {
  display: none;
}



.cookie-consent__modal-header {
  padding: 0.75em 1.25em 0.25em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: inherit;
  background-color: #fff !important;
}

.cookie-consent__description {
  margin-bottom: 2.25em;
}

.cookie-consent__description > p {
  margin-bottom: 0.75em;
  color: black;
  font-size: 0.75em;
}

.cookie-consent__description a,
.cookie-consent__description a:link,
.cookie-consent__description a:active {
  text-decoration: underline;
  color: black;
}

.cookie-consent__description > *:first-child {
  margin-top: 0;
}

.cookie-consent__description > *:last-child {
  margin-bottom: 0;
}

.cookie-consent__modal-iframe,
.cookie-consent__modal-iframe iframe {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cookie-consent__modal-iframe {
  max-width: 80rem;
}

.cookie-consent__modal-iframe iframe {
  background-color: white;
}

.cookie-consent__modal-iframe .cookie-consent__modal-header {
  margin-left: auto;
  margin-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .cookie-consent__title {
    margin-top: 0;
  }

  .cookie-consent__modal-content {
    height: auto;
    padding: 0.75em 0;
  }

  .cookie-consent__box-title {
    width: auto;
    margin-top: 0;
    margin-left: 10px;
    display: inline;
  }

  .cookie-consent__box-title:first-child {
    margin-left: 0;
  }

  .cookie-consent__description > p {
    font-size: 0.75em;
  }

  .cookie-consent__radio-container {
    margin: 0 14px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .cookie-consent__modal--animate-translate-down {
    transition: opacity 0.2s, visibility 0s 0.2s;
  }

  .cookie-consent__modal--animate-translate-down .cookie-consent__modal-content {
    will-change: transform;
    transition: transform 0.2s ease-out;
  }

  .cookie-consent__modal--animate-translate-down.cookie-consent__modal--is-visible {
    transition: opacity 0.2s, visibility 0s;
  }

  .cookie-consent__modal--animate-translate-down.cookie-consent__modal--is-visible .cookie-consent__modal-content {
    transform: scale(1);
  }
}
</style>
