Hi @camilo517,
Thanks for using our plugins.
You can add the following code snippet to your functions.php to fix the conflict:
add_action('moove_gdpr_inline_styles','gdpr_cookie_css_extension',10,3);
function gdpr_cookie_css_extension( $styles, $primary, $secondary ) {
ob_start();
?>
@media (max-width: 767px) {
#moove_gdpr_cookie_info_bar {
bottom: 70px;
}
}
<?php
$styles .= ob_get_clean();
return $styles;
}
Hope this helps.