.gtranslate_wrapper {
    position: fixed !important; /* Ensure it's fixed to the viewport */
    bottom: 20px !important; /* 20px from the bottom of the screen */
    left: 20px !important; /* 20px from the left edge */
    z-index: 9999 !important; /* Ensure it stays on top */
}

@media screen and (max-width: 768px) {
    .gtranslate_wrapper {
        bottom: 10px !important; /* Adjust spacing for smaller screens */
        left: 10px !important;
        position: fixed !important; /* Force fixed for mobile */
    }
}