.cookie-popup-banner {
  box-sizing: border-box;
  display: block;
  position: fixed;
  bottom: 15px;
  right: 0;
  z-index: 999;
  transform: translateX(150%);
  transition: transform 1.5s ease-in;
  text-decoration: none;
}
.cookie-popup-banner:hover, .cookie-popup-banner:active {
  text-decoration: inherit;
}
.cookie-popup-banner.show {
  right: 30px;
  transform: translateX(0);
}
.cookie-popup-banner__container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgb(0 0 0 / 15%);
  background-color: rgb(255 255 255);
}
.cookie-popup-banner__item:not(:first-child) {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.cookie-popup-banner__item.active {
  display: block;
  opacity: 1;
}
.cookie-popup-banner .btn-close {
  position: absolute;
  top: -10px;
  right: -10px;
  float: none;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 8px;
  color: #000;
  background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  box-shadow: 0 0 15px rgb(0 0 0 / 15%);
  border: 0;
  border-radius: 50%;
  opacity: 1;
  outline: none;
}

.modal--banner .modal-content {
  border: none;
  overflow: hidden;
}
.modal--banner .close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: white;
  font-size: 24px;
  width: 24px;
  line-height: 1;
  border-radius: 50%;
  margin: 0;
}

@media (max-width: 400px) {
  .cookie-popup-banner {
    max-width: 100%;
    padding: 0 15px;
  }
  .cookie-popup-banner.show {
    right: 0;
  }
  .cookie-popup-banner .btn-close {
    right: 2px;
  }
}

.slideLeft{
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;

  animation-duration: 2s;
  -webkit-animation-duration: 2s;

  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;

  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50%{
    transform: translateX(-8%);
  }
  65%{
    transform: translateX(4%);
  }
  80%{
    transform: translateX(-4%);
  }
  95%{
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50%{
    -webkit-transform: translateX(-8%);
  }
  65%{
    -webkit-transform: translateX(4%);
  }
  80%{
    -webkit-transform: translateX(-4%);
  }
  95%{
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
