@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700&family=Ubuntu:wght@500&display=swap');


.cookies-banner {
    font-family: 'Outfit', sans-serif;
    position: fixed;
    bottom: 50px;
    right: -400px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .cookies-banner.show {
    right: 20px;
  }
  .cookies-header {
    display: flex;
    align-items: center;
    column-gap: 15px;
    height: 50px;
  }
  .cookies-header i {
    color: #be9662;
    font-size: 32px;
  }
  .cookies-header h2 {
    color: #be9662;
    font-weight: 500;
  }
  .cookies-banner .data {
    margin-top: 16px;
  }
  .cookies-banner .data p {
    font-size: 16px;
  }
  .data p a {
    color: #be9662;
    text-decoration: none;
  }
  .data p a:hover {
    text-decoration: underline;
  }
  .cookies-banner .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #be9662;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
  }
  .buttons #acceptBtn:hover {
    background-color: #be9662;
  }
  #declineBtn {
    background-color: #fff;
    color: #be9662;
  }
  #declineBtn:hover {
   border: solid 1px #be9662;
   
  }