#gdpr-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    width: 300px;
    z-index: 9999999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    display: none;
    box-shadow: 0px 0px 5px 0px black;
    
}

.gdpr-popup-box {
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: left;
    color: #333;
}

.gdpr-popup-box a {
    color: #0073aa;
    text-decoration: underline;
}

#gdpr-accept, #gdpr-cancel {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    width : 48% !important;
}

#gdpr-cancel {
    background-color: #d31a15 !important;
}

#gdpr-accept:hover, #gdpr-cancel:hover {
    opacity: 0.8;
}

p#gdpr-message {
    
    font-size: 15px !important;
    font-weight: 500;
}




@media only screen and (max-width: 600px) {
  #gdpr-popup {
       bottom: 65px !important;
       width: 90% !important;
       
  }
  
  p#gdpr-message {
      font-size: 12px !important;
  }
  
  #gdpr-accept, #gdpr-cancel {
          width: 49% !important;
  }
  
}