@media (max-width:767px){

    /* Hidden by default */
    .hero-form-wrapper{

        opacity:0 !important;
        visibility:hidden !important;

        position:absolute !important;
        top:400px !important;

        left:10px !important;
        right:10px !important;

        width:auto !important;

        background:#fff !important;
        border-radius:16px !important;

        z-index:999 !important;

        overflow:visible !important;
        max-height:none !important;

        transition:.3s ease;
    }

    /* Show after click */
    .hero-form-wrapper.form-open{
        opacity:1 !important;
        visibility:visible !important;
    }

    .inner-hero.hero-form,
    .swiper-slide{
        min-height:1300px !important;
        overflow:visible !important;
    }

    /* Floating button */
    #accountFormBtn {
        position: fixed !important;
        bottom: 00px !important;
        z-index: 99999 !important;
        left: 50%;
        transform: translateX(-50%);
    }

    
}