.cookie-consent {
  display: none;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1040;
  box-sizing: border-box;
  background: #2C267A;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  gap: 40px;
}
.cookie-consent.is-visible {
  display: flex;
}
@media (min-width: 992px) {
  .cookie-consent {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 34px;
    gap: 30px;
    width: calc(min(100vw, 1920px) * 1096 / 1728);
    right: auto;
    left: 0;
  }
}
.cookie-consent__body {
  margin: 0;
  color: #ffffff;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  text-align: right;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.3px;
}
@media (min-width: 992px) {
  .cookie-consent__body {
    flex: 1 1 auto;
  }
}
.cookie-consent__body p {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
}
.cookie-consent__body a {
  color: #FFDD46;
  text-decoration: underline;
}
.cookie-consent__body a:hover, .cookie-consent__body a:focus {
  color: #EBC312;
  text-decoration: underline;
}
.cookie-consent__button {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 240px;
  height: 60px;
  padding: 16px 24px;
  border: none;
  border-radius: 0;
  background: #FFDD46;
  color: #2C267A;
  font-family: "Heebo", "TelAviv-ModernistRegular", sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.4088;
}
.cookie-consent__button:hover {
  background: #EBC312;
}
.cookie-consent__button:focus, .cookie-consent__button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
