@media screen and (max-width: 767px) { div.needsclick:nth-child(4) { float: right; pois: ; margin-top: -40px; }
div.needsclick:nth-child(3) { max-width: 282px; } } document.addEventListener("DOMContentLoaded", function() { // Function to replace button content with SVG function replaceWithSVG() { // Get the button element var button = document.querySelector("button.needsclick.kl-private-reset-css-Xuajs1"); // Define the SVG string var svgString = ''; // Set the button's innerHTML to the SVG string button.innerHTML = svgString; } // Function to continuously check for the button element until it's not null function waitForButton() { var button = document.querySelector("button.needsclick.kl-private-reset-css-Xuajs1"); if (button === null) { // If button is not found, wait for a short duration and check again setTimeout(waitForButton, 100); // Check again after 100 milliseconds } else { // If button is found, replace its content with SVG replaceWithSVG(); } } // Wait for 2 seconds after DOM content loaded before automatically replacing button content with SVG setTimeout(waitForButton, 1000); // Wait for 2000 milliseconds (2 seconds) after DOM content loaded });