/* Large Desktop Layout */
@media only screen and (min-width:1500px) {}

/* Medium Desktop Layout */
@media only screen and (max-width: 1375px) {}

/* Small Desktop Layout */
@media only screen and (max-width: 1200px) {
    .navigation-menu ul li {
        flex: 0 0 33.33%;
    }

    .df-search input {
        width: 100%;
    }
}

/* Tablet Layout */
@media only screen and (max-width: 991px) {
    .navigation-menu ul li {
        flex: 0 0 50%;
    }

    .search-box {
        display: none;
    }

    .df-button {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 10px;
    }

}


/* Mobile Small Layout */
@media only screen and (max-width: 767px) {

    .login-area::before,
    .login-area::after,
    .profile h2 {
        display: none;
    }

    .login-box {
        width: 100%;
    }

    .navigation-menu ul li {
        flex: 0 0 100%;
    }

    .navigation-menu {
        padding: 0;
        background: transparent;
    }

    .profile h2 {
        display: none;
    }

    .navigation-menu {
        padding: 20px;
    }

    .page-header h5 {
        margin-bottom: 8px;
    }

    .page-header {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    }

    .df-select {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 10px;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .df-button {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 10px;
    }

    .datatable-card {
        min-width: 1000px;
    }

    .page-footer:before {
        display: none;
    }

    .page-footer {
        padding: 20px 0;
        text-align: center;
    }

    .page-menu ul li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .page-menu ul li:last-child a {
        margin-right: 10px;
    }

    .tenant-body .page-menu ul {
        display: block;
    }

    .page-menu ul.m-full li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .profile-image {
        margin-left: 20px;
    }
}