
  .wrapper {
    padding-right: 15px;
    padding-left: 15px;
    position: fixed;
    flex-direction: row;
    flex-wrap: wrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 590px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 9999;
}
.wrapper.show {
    display: block;
}
  .wrapper .header {
    display: flex;
    align-items: center;
    column-gap: 15px;
  }
  .header i {
    color: #1b2ba0;
    font-size: 32px;
  }
  .header h2 {
    color: #1b2ba0;
    font-weight: 700;
  }
  .wrapper .data {
    margin-top: 16px;
  }
  .wrapper .data p {
    color: #333;
    font-size: 16px;
  }
  .data p a {
    color: #1b2ba0;
    text-decoration: none;
  }
  .data p a:hover {
    text-decoration: underline;
  }
  .wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #1b2ba0;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
  }
  .buttons #acceptBtn:hover {
    background-color: #1b2ba0;
  }
  #declineCookiesBtn {
    border: 2px solid #1b2ba0;
    background-color: #fff;
    color: #1b2ba0;
  }
  #declineCookiesBtn:hover {
    background-color: #1b2ba0;
    color: #fff;
  }
  #declineCookiesBtn:focus {
    background-color: #1b2ba0;
    color: #fff;
  }