@keyframes float-1 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes float-2 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}
@keyframes float-3 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

.float-delay-1 {
    animation: float-1 3s ease-in-out infinite;
}
.float-delay-2 {
    animation: float-2 4s ease-in-out infinite 0.5s;
}
.float-delay-3 {
    animation: float-3 3.5s ease-in-out infinite 1s;
}

body {
    overflow-x: hidden;
}

#wrapper {
    display: flex;
    width: 100%;
    transition: all 0.3s ease-out;
}

#sidebar-wrapper {
    min-height: 100vh;
    width: 260px;
    margin-left: -260px;
    transition: margin 0.3s ease-out;
    flex-shrink: 0;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}

#page-content-wrapper {
    min-width: 100vw;
    transition: all 0.3s ease-out;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0; 
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    #wrapper.toggled #sidebar-wrapper {
        margin-left: -260px;
    }
}
