/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 03 2026 | 07:30:01 */
.float-side {
    animation: smoothFloat 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes smoothFloat {
    0% {
        transform: translateX(0px);
    }

    25% {
        transform: translateX(15px);
    }

    50% {
        transform: translateX(0px);
    }

    75% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(0px);
    }
}