.cookie-banner {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 10px 32px;
  color: #000;
  text-align: center;
  z-index: 999999;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}
.cookie-banner a {
  /*color: #f7941e;*/
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner .cookie-close {
  display: inline-block;
  margin-left: 32px;
}
body.cookie-banner-active {
  top: 90px;
  position: relative;
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: top;
}
@media screen and (max-width: 1253px) {
  body.mobile .cookie-banner {
    height: 80px;
  }
  body.mobile.cookie-banner-active {
    top: 80px;
  }
}
@media screen and (max-width: 820px) {
  body.mobile .cookie-banner {
    height: 125px;
  }
  body.mobile .cookie-banner a {
    display: block;
    margin-top: 5px;
  }
  body.mobile .cookie-banner .cookie-close {
    display: inline-block;
    margin-top: 10px;
    margin-left: 0;
  }
  body.mobile.cookie-banner-active {
    top: 105px;
  }
}
@media screen and (max-width: 545px) {
  body.mobile .cookie-banner {
    height: 125px;
  }
  body.mobile.cookie-banner-active {
    top: 125px;
  }
}
@media screen and (max-width: 335px) {
  body.mobile .cookie-banner {
    height: 110px;
  }
  body.mobile.cookie-banner-active {
    top: 110px;
  }
}
@media screen and (max-width: 272px) {
  body.mobile .cookie-banner {
    height: 150px;
  }
  body.mobile.cookie-banner-active {
    top: 150px;
  }
}
