/* Cookie consent banner. Standalone so it does not depend on the sass build. */

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: #ffffff;
  color: #2e2e2e;
  border-top: 3px solid #009fee;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.4;
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 20px;
}
.cookie-consent__title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
}
.cookie-consent__text {
  margin: 0 0 12px;
}
.cookie-consent__text a {
  color: #009fee;
  text-decoration: underline;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cookie-consent__button {
  display: inline-block;
  border: 1px solid #15223a;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 1px 0 #15223a;
  padding: 9px 18px;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #15223a;
  cursor: pointer;
  text-decoration: none;
}
.cookie-consent__button:hover,
.cookie-consent__button:focus {
  color: #15223a;
  background: #f2f2f2;
}
.cookie-consent__button--primary {
  background: #009fee;
  border-color: #009fee;
  color: #ffffff;
  box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.5);
}
.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus {
  background: #0585b4;
  border-color: #0585b4;
  color: #ffffff;
}
.cookie-consent__toggle {
  background: none;
  border: none;
  box-shadow: none;
  padding: 9px 4px;
  color: #009fee;
  text-decoration: underline;
  font-weight: 400;
}
.cookie-consent__toggle:hover,
.cookie-consent__toggle:focus {
  background: none;
  color: #0585b4;
}
.cookie-consent__details {
  margin: 14px 0 4px;
  padding-top: 14px;
  border-top: 1px solid #e4e4e4;
}
.cookie-consent__details[hidden] {
  display: none;
}
.cookie-consent__categories {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 24px;
}
.cookie-consent__category label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.cookie-consent__category input {
  margin: 3px 0 0;
  flex: none;
}
.cookie-consent__category-name {
  font-weight: 700;
  display: block;
}
.cookie-consent__category-desc {
  display: block;
  color: #7a7a7a;
  font-size: 14px;
}
.cookie-consent__category--locked label {
  cursor: default;
}

@media (max-width: 600px) {
  .cookie-consent {
    font-size: 14px;
  }
  .cookie-consent__inner {
    padding: 14px 16px;
  }
  .cookie-consent__actions .cookie-consent__button {
    flex: 1 1 100%;
    text-align: center;
  }
}
