/* Float container fixed at top for mobile */ @media (max-width: 767px) { .floating-top-container { position: fixed; top: 0; left: 0; width: 100%; z-index: 9999; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; /* Style as needed */ } .floating-top-container.active { opacity: 1; visibility: visible; } }