.wrapper-cookie {
    z-index: 4;
    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);
    font-family: Ubuntu, sans-serif;
  }
  .wrapper-cookie.show {
    right: 20px;
    font-family: Ubuntu, sans-serif;

  }
  .wrapper-cookie header {
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-family: Ubuntu, sans-serif;

  }
  header i {
    color: #143635;
    font-size: 32px;
    font-family: Ubuntu, sans-serif;

  }
  header h3 {
    color: #143635;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    margin: 0;
    font-family: Ubuntu, sans-serif;

  }
  .wrapper-cookie .data {
    margin-top: 16px;
    font-family: Ubuntu, sans-serif;

  }
  .wrapper-cookie .data p {
    color: #333;
    font-size: 13px;
    line-height: 20px;
    font-family: Ubuntu, sans-serif;

  }
  .data p a {
    color: #143635;
    text-decoration: none;

  }
  .data p a:hover {
    text-decoration: underline;
  }
  .wrapper-cookie .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: #143635;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
    font-family: Ubuntu, sans-serif;
    font-size: 20px;
    font-weight: 700;
  }
  .buttons #acceptBtn:hover {
    background-color: #81FBBF;
  }
  #declineBtn {
    border: 2px solid #143635;
    background-color: #fff;
    color: #143635;
  }
  #declineBtn:hover {
    background-color: #143635;
    color: #fff;
  }
  @media (max-width: 767px) {
      .wrapper-cookie {
          position: fixed;
          bottom: 0;
          right: -750px;
          max-width: 100%;
          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);
          font-family: Ubuntu, sans-serif;
      }
      .wrapper-cookie.show {
          right: -1px;
      }
  }
