
 /*==========  Mobile First Method  ==========*/

    /* Custom, iPhone Retina */ 
    @media only screen and (min-width : 320px) {
        .wf-dashboard-content {
            margin-bottom: 20px;
        }
        .wf-dashboard-panel-head-right form input {
            width: 100%;
        }
        .wf-dashboard-panel-head {
            padding-bottom: 20px;
            display: inline-block;
        }
    }

    /* Extra Small Devices, Phones */ 
    @media only screen and (min-width : 480px) {
        
    }

    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {
        .wf-dashboard-panel-head-right form input:nth-child(2) {
            margin-left: 0px;
        }
        .wf-dashboard-panel-head-right form input {
            width: 100%;
            margin-left: 0;
        }
        .wf-dashboard-panel-head {
            padding-bottom: 0;
            display: inline-block;
        }
    }

    /* Medium Devices, Desktops */
    @media only screen and (min-width : 992px) {
        
    }

    /* Large Devices, Wide Screens */
    @media only screen and (max-width : 1280px) {
    }

