.cookies{
position: fixed;
      inset: auto 0 18px 0;
      display: flex;
      justify-content: center;
      z-index: 9999;
      padding: 0 14px;
}
.cookie-card{
  width: min(920px, 100%);
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: space-between;

      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(18, 18, 20, 0.82);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
      color: #fff;
      transform: translateY(18px);
      opacity: 0;
      transition: 200ms ease;
}
 .cookies.show .cookie-card {
      transform: translateY(0);
      opacity: 1;
    }
.cookie-text{
    font-size: 15px;
}
.btn-secondary{
    color: aliceblue;
    background-color: rgb(1, 30, 39);
    border-radius: 5px;
    width: 100px;
    height: 40px;
    border: none;
}
.btn-primary{
    color: aliceblue;
    background-color: rgb(0, 88, 129);
    border-radius: 5px;
    width: 100px;
    height: 40px;
    border: none;

}
.Link-Cookie2{
    color: rgb(245, 188, 0);

}
.Link-Cookie{
    color: rgb(255, 240, 193);
    
}