﻿.consent-banner {
  background: #fff;
  opacity: 0.95;
  position: sticky;
  bottom: 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 3rem;
  display: flex;
  justify-content: center;
  z-index: 199999998;
  border-top: 1px solid #D9D9D9;
}
.consent-banner-inner {
  max-width: 1600px;
  display: flex;
  color: black;
  padding: 0 1rem;
}
.consent-banner-info {
  width: 64%;
  padding-right: 1rem;
}
.consent-banner-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
  gap: 1rem;
}
.consent-banner-buttons button {
  min-width: 200px;
}
.consent-banner-title {
  font-size: 24px;
  line-height: 16px;
}
.consent-banner-text {
  font-size: 16px;
  line-height: 22px;
  margin-top: 1rem;
}
.consent-banner-icon {
  margin-right: 1rem;
  margin-top: -0.5rem;
}
.consent-banner-icon-mobile {
  display: none;
}
.consent-banner-icon {
  background: url("/img/cookie.svg");
  width: 50px;
  background-repeat: no-repeat;
}
.consent-banner:hover .consent-banner-icon {
  background: url("/img/cookie_bite.svg");
  background-repeat: no-repeat;
}
.consent-settings-question p {
  display: none;
}
.consent-settings-question.active p {
  display: block;
}
.consent-settings-question.active .consent-settings-arrow {
  transform: rotate(180deg);
}
.consent-settings-arrow {
  margin-left: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}
.consent-settings-question-top {
  font-family: sfprodisplay-semibold, "Adjusted Arial Fallback Semibold", Arial;
  display: flex;
  align-items: center;
}
.consent-settings-question-top input {
  cursor: pointer;
  margin-right: 0.5rem;
}
.consent-settings-question-title {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .consent-banner-inner {
    padding: 0;
  }
}
@media screen and (max-width: 700px) {
  .consent-banner-inner {
    flex-direction: column;
  }
  .consent-banner-info {
    width: 100%;
    padding-right: 0;
  }
  .consent-banner-icon {
    display: none;
  }
  .consent-banner-icon-mobile {
    display: block;
    margin-right: 1.5rem;
  }
  .consent-banner-title {
    display: flex;
    align-items: center;
    font-size: 20px;
  }
  .consent-banner-text {
    font-size: 14px;
    line-height: 18px;
  }
  .consent-banner-buttons {
    flex-wrap: wrap;
    margin: 2rem 0 0 0;
  }
}