.cookie-message {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);

  border-radius: 10px;
  padding: 16px;
  background: #f7f8fb;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 16px 2px rgb(0 0 0 / 5%), 0 10px 10px 2px rgb(0 0 0 / 5%);
  font-size: 12px;
  line-height: 40px;
  border-top: 1px solid #e4e4e4;
  position: fixed;
  z-index: 100;
  bottom: 10%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: calc(100% - 20px);
  margin: 0 10px 0 10px;
}
.cookie-message span {
  line-height: 1.5;
  padding-right: 16px;
  height: fit-content;
}
.cookie-message img {
  height: 50px;
  width: 50px;
  margin: 0 15px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.cookie-button {
  padding-left: 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  display: flex;
  align-items: center;
}
.cookie-button button {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1.3px;
  text-align: center;
  color: #fff;
  border: 0;
  cursor: pointer;
  width: max-content;
}
/* Animations - From Animate.css */
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
