/* Cookie Dialog */
#gdpr-cookie-message { position: fixed; top: 20%; max-width: 375px; background-color: #333; padding: 20px; border-radius: 5px; box-shadow: 0 6px 6px rgba(0,0,0,0.25); z-index: 999999999999999999999999999;}
#gdpr-cookie-message h4 { color: #00B69A; font-size: 14px; font-weight: 500; margin-bottom: 10px;}
#gdpr-cookie-message h5 { color: #00B69A; font-size: 11px; font-weight: 500; margin-bottom: 10px;}
#gdpr-cookie-message p, #gdpr-cookie-message ul { color: white; font-size: 11px; line-height: 1.5em; }
#gdpr-cookie-message p:last-child { margin-bottom: 0; text-align: right; }
#gdpr-cookie-message li { width: 49%; display: inline-block; }
#gdpr-cookie-message a { color: #00B69A; text-decoration: none; font-size: 11px; padding-bottom: 2px; border-bottom: 1px dotted rgba(255,255,255,0.75); transition: all 0.3s ease-in; }
#gdpr-cookie-message a:hover { color: white; border-bottom-color: #00B69A; transition: all 0.3s ease-in; }
#gdpr-cookie-message button,button#ihavecookiesBtn { border: none; background: #00B69A; color: white; font-size: 11px; padding: 7px; border-radius: 3px; margin-left: 15px; cursor: pointer; transition: all 0.3s ease-in;}
#gdpr-cookie-message button:hover {background: white; color: #00B69A; transition: all 0.3s ease-in;}
button#gdpr-cookie-advanced {background: #dc3545;color: #fff;}
button#gdpr-cookie-refuse {background: #00B69A;color: #fff;}
#gdpr-cookie-message button:disabled {opacity: 0.3;}
#gdpr-cookie-message input[type="checkbox"] { float: none; margin-top: 0; margin-right: 5px; }
#gdpr-cookie-types > ul > li > label {color: #fff;}
#gdpr-cookie-message-bg{ min-width: 100%; height: 100%; position: fixed; top: 0; left: 0; background: rgba(255, 255, 255, 0.7); display: flex; justify-content: center; align-items: center; z-index: 999999999999999; }
/* arreglar altura banner cookies */
#gdpr-cookie-message{top: 10%;max-width: 700px;margin: 10px;}
/* arreglar animacion banner para el cls y el lcp */
#gdpr-cookie-message-bg {
    transform: translateY(-100%);
    will-change: transform;
    animation-name: pop_up_animate;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes pop_up_animate {
    from {
        transform: translateY(-100%);
    } to {
        transform: translateY(0);
    }
}