/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

/*CSS*/

}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

    /*CSS*/

}

/*
  ## Small and down devices
*/
@media (max-width: 767px) {
    .navbar-brand {
        box-shadow: none;
    }
    /*.nav-link:not(.nav-trigger) {
        display: none;
    }*/
    /*.nav-trigger {*/
    /*    position: absolute;*/
    /*    top: 3px;*/
    /*    right: 0;*/
    /*    float: left;*/
    /*}*/
    /*header nav .btn-group {*/
    /*    display: none;*/
    /*}*/

    .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_filter {
        float: none;
        text-align: center;
        margin: 1em 0 !important;
    }
    .model-actions .btn {
        margin: 3px 0 0 0;
    }
    .model-actions .btn:first-child {
        margin: 0;
    }
    .sidebar {
        width: 100%;
    }
}

/*
  ## Medium and up devices
*/
@media (min-width: 767px) {
    .nav-trigger {
        display: none;
    }
    header nav .navbar-brand {
        min-width: 275px !important;
    }
    .sidebar {
        display: block !important;
        min-width: 275px !important;
    }
    .sidebar .me {
        display: none;
    }

    main,footer, header .nav-underline {
        padding-left: 275px;
    }
    .panel-divider {
        width: 1px;
        height: 100%;
        border-left: 1px solid #bdbdbd;
    }
}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /*CSS*/

}

/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

    /*CSS*/

}

/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

    /*CSS*/

}

/*
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {

    /*CSS*/

}