.cookie-banner {
  position: fixed;
  z-index: 501;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #d4effc;
  box-shadow: 0px -2px 10px #3bb3e7a1;
  transform: translatey(100%);
  transition: transform 350ms ease-in-out;
}
.cookie-banner.show {
  transform: translatey(0%);
}
.cookie-banner .container {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 0;
}
.cookie-banner__wrap {
  padding: 25px;
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.cookie-banner__content-title {
  max-width: 670px;
  width: 100%;
}
.cookie-banner__content-title p {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}
.cookie-banner__content-title p a {
  text-decoration: underline;
  transition: 0.3s all;
}
.cookie-banner__content-title p a:hover {
  color: #3BB3E7;
}
.cookie-banner__content-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner__content-btn button {
  max-width: 100%;
  width: 100%;
  cursor: pointer;
  transition: all 0.6s ease;
  min-width: auto;
  margin: 7px;
}
.cookie-banner__content-btn button.btn-reject {
  color: #3bb3e7;
}
.cookie-banner__content-btn button.btn-reject:hover {
  color: #000000;
}
@media (min-width: 641px) {
  .cookie-banner__content {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__content-btn button {
    width: initial;
  }
}
@media (min-width: 1025px) {
  .cookie-banner__content {
    text-align: left;
    justify-content: space-between;
    flex-direction: initial;
  }
  .cookie-banner__content-title {
    width: 55%;
  }
  .cookie-banner__content-title p {
    margin-bottom: 0px;
  }
}
