.wrapper-cookie {
    position: fixed;
    bottom: 50px;
    right: -500px;
    max-width: 360px;
    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);
    z-index:9999;
  }
  .wrapper-cookie.show {
    right: 20px;
  }
  .wrapper-cookie header {
    display: flex;
    align-items: center;
    column-gap: 15px;
  }
  header i {
    color: #4070f4;
    font-size: 32px;
  }
  header h2 {
    color: #4070f4;
    font-weight: 500;
    margin:0;
  }
  .wrapper-cookie .data {
    margin-top: 16px;
  }
  .wrapper-cookie .data p {
    color: #333;
    font-size: 16px;
  }
  .data p a {
    color: #4070f4;
    text-decoration: none;
  }
  .data p a:hover {
    text-decoration: underline;
  }
  .wrapper-cookie .buttons {
    margin: 0 0 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px !important;
  }
  .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
  }
  
  .cookie-consent-options {
      margin-top: 11px;
  }
  .cookie-consent-button.btn-graysacle {
      background: transparent;
      border: 1px solid #4970f1;
      text-align: center;
      padding: 10px;
      justify-content: center;
      display: block;
      cursor: pointer;
  }
  .cookie-consent-button.btn-success{
      background: #4970f1;
      border: 1px solid #4970f1;
      text-align: center;
      color: #fff;
      padding: 10px;
      justify-content: center;
      display: block;
      cursor: pointer;
  }
  .cookie-consent-button.btn-outline {
    background: transparent;
    border: 1px solid #4970f1;
    text-align: center;
    padding: 10px;
    margin: 0 8px 0;
    display: block;
    cursor: pointer;
    min-width: fit-content;
  }
  .cookie-consent-button.btn-outline:hover, .cookie-consent-button.btn-graysacle:hover {
      background: #4970f1;
      color:#fff;
  }
  .cookie-consent-button.btn-success:hover {
      background: transparent;
      color:inherit;
  }
  .cookie-consent-options label {
      display: flex;
      margin-right: 5px;
      font-size: 11px;
      align-items: center;
  }
  
  .cookie-consent-options {
      margin-top: 11px;
      display: flex;
      align-items: center;
  }

  div#cookie-consent-banner h2 {
    font-size: 1.5rem;
    display: inline;
}