.cookie-consent{
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(40px);
  width: min(480px, 92%);
  padding: 24px 28px;
  z-index: 9999999;

  background:
    linear-gradient(180deg, rgba(10, 26, 34, .92), rgba(4, 12, 18, .92));
  border: 1px solid rgba(69, 243, 255, .16);
  border-radius: 18px;
  box-shadow:
    0 24px 70px rgba(0,0,0,.46),
    0 0 50px rgba(0, 215, 255, .08);

  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);

  color: rgba(255,255,255,.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;

  opacity: 0;
  transition:
    opacity .45s cubic-bezier(.2,.75,.25,1),
    transform .45s cubic-bezier(.2,.75,.25,1);
}

.cookie-consent.is-visible{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-consent__title{
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
}

.cookie-consent__text{
  color: rgba(255,255,255,.62);
  text-align: center;
}

.cookie-consent__btn{
  margin-top: 20px;
  width: 100%;
  padding: 12px 0;

  border: 0;
  border-radius: 999px;
  cursor: pointer;

  background: rgba(180, 245, 255, .92);
  color: #001017;

  font-size: 15px;
  line-height: 1;
  font-weight: 700;

  transition:
    transform .22s ease,
    opacity .22s ease,
    box-shadow .22s ease;
}

.cookie-consent__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(69, 243, 255, .18);
}

@media (max-width: 480px){
  .cookie-consent{
    bottom: 18px;
    padding: 20px 22px;
    font-size: 14px;
    border-radius: 16px;
  }

  .cookie-consent__title{
    font-size: 16px;
    margin-bottom: 10px;
  }

  .cookie-consent__btn{
    font-size: 14px;
    padding: 11px 0;
    margin-top: 18px;
  }
}