.wm-gdpr-ltp-modal {
    align-items: center;
    background: rgba(10, 10, 12, 0.72);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    padding: 24px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999;
  }
  
  .wm-gdpr-ltp-box {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
    color: #1D1D1F;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    max-height: calc(100vh - 48px);
    max-width: 760px;
    overflow: hidden;
    width: 100%;
  }
  
  .wm-gdpr-ltp-logo {
    background: #000000;
    padding: 12px 24px;
  }

  .wm-gdpr-ltp-logo img {
    display: block;
    height: auto;
    max-height: 42px;
    max-width: 100%;
  }
  
  .wm-gdpr-ltp-heading {
    color: #111111;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin: 28px 32px 12px;
    text-align: center;
  }
  
  .wm-gdpr-ltp-message {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 32px;
    max-height: 40vh;
    overflow-y: auto;
    padding: 4px 4px 20px;
    text-align: center;
  }
  
  .wm-gdpr-ltp-button {
    background-color: var(--wm-gdpr-ltp-agree-button-color, #000000);
    border: 0 none;
    border-radius: 2px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    color: #FFFFFF;
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 8px auto 16px;
    min-width: 60px;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  }

  .wm-gdpr-ltp-button:hover,
  .wm-gdpr-ltp-button:focus {
    background-color: var(--wm-gdpr-ltp-agree-button-hover-color, #222222);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    color: #FFFFFF;
    transform: translateY(-1px);
  }

  .wm-gdpr-ltp-button:focus {
    outline: 3px solid #FFFFFF;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px #005FCC, 0 14px 30px rgba(0, 0, 0, 0.24);
  }
  
  @media (max-width: 479px) {
    .wm-gdpr-ltp-modal {
      align-items: flex-start;
      padding: 16px;
    }

    .wm-gdpr-ltp-box {
      max-height: calc(100vh - 32px);
    }

    .wm-gdpr-ltp-logo {
      padding: 14px 18px;
    }

    .wm-gdpr-ltp-heading {
      font-size: 20px;
      margin: 22px 20px 10px;
    }

    .wm-gdpr-ltp-message {
      font-size: 15px;
      margin: 0 20px;
      max-height: 50vh;
    }

    .wm-gdpr-ltp-button {
      margin-bottom: 24px;
      width: calc(100% - 40px);
    }
  }