/*
|--------------------------------------------------------------------------
| Floating Switcher
|--------------------------------------------------------------------------
*/

.lumos-floating {

    position: fixed;

    right: 24px;

    bottom: 24px;

    z-index: 99999;

    animation: lumosFloatingIn .35s ease;
}

@keyframes lumosFloatingIn {

    from {

        opacity: 0;

        transform: translateY(12px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}