/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
    .search-block .search-input { width: 49%; margin-right: 2%; margin-top: 15px; }
    .search-block .search-input.input-radius { margin-right: 0; }
    .search-block .search-input.input-function { width: 100%; }
    .col-md-6:first-child .well { margin-bottom: 20px; }
    .panel .form-group { padding: 0 15px; }
    .footer .col-md-3 {
        width: 50%;
        float: left;
        min-height: 200px;
    }

}

@media only screen and (max-width: 991px) {
    /*-------------------- Responsive tab menu without jQuery ----------------*/
    .nav-tabs-nc {
        border-bottom: 0;
    }
    .nav-tabs-nc>li {
        margin-bottom: 0;
        width: 100%;
    }
    .nav-tabs-nc>li>a {
        border: 1px solid #ddd;
        border-bottom-color: transparent;
        border-radius: 0;
    }
    .nav-tabs-nc>li:first-child>a {
        border-radius: 10px 10px 0 0;
    }
    .nav-tabs-nc>li:last-child>a {
        border-radius: 0 0 10px 10px;
        border-bottom: 1px solid #ddd;
    }

    .nav-tabs-nc>li.active>a, .nav-tabs-nc>li.active>a:focus, .nav-tabs-nc>li.active>a:hover {
        background: #F5F5F5;
    }

    .panel-footer button,
    .panel-footer a {
        width: 100%;
        margin-bottom: 10px;
    }
    .panel-footer button:last-child,
    .panel-footer a:last-child {
        margin-bottom: 0;
    }
    .edit-db-sm.pull-right {
        float: none !important;
        margin-top: 10px;
    }
    .edit-db-sm.pull-right button,
    .edit-db-sm.pull-right a {
        display: inline-block !important;
    }
    .footer .col-md-3 {
        width: 100%;
        float: none;
        min-height: auto;
    }

    /* Dropdown menu on click */
    .dropdown-submenu:hover>.dropdown-menu {
        display: none;
    }

    /* ------- RESPONSIVE TABLES -----*/
    /* Force table to not be like tables anymore */
    .no-more-tables table,
    .no-more-tables thead,
    .no-more-tables tbody,
    .no-more-tables th,
    .no-more-tables td,
    .no-more-tables tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .no-more-tables thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .no-more-tables tr {  }

    .no-more-tables td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align:left;
    }

    .no-more-tables td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align:left;
        font-weight: bold;
    }

    /*
    Label the data
    */
    .no-more-tables td:before { content: attr(data-title); }

    /* Remove borders and add color */
    .no-more-tables .table>tbody>tr>td,
    .no-more-tables .table>tbody>tr>th,
    .no-more-tables .table>tfoot>tr>td,
    .no-more-tables .table>tfoot>tr>th,
    .no-more-tables .table>thead>tr>td,
    .no-more-tables .table>thead>tr>th {
        border-top: 0;
    }
    .no-more-tables tr:nth-child(odd) { background: #FBFBFB; }
    .no-more-tables tr:nth-child(even) { background: #ECECEC; }

    /* Buttons inside table */
    .no-more-tables button.pull-right, 
    .no-more-tables a.pull-right {
        float: none !important;
    }
    .no-more-tables a.delete.pull-right { float: left !important; margin-right: 10px; }
    a.select:after,
    a.delete:after,
    a.edit:after,
    a.link:after {
        font-size: 1em;
        padding: 6px 12px 6px 6px;
        display: inline-block;
    }
    a.delete:after { content: '\Verwijderen'; }
    a.select:after { content: '\Selecteren'; }
    a.edit:after { content: '\Wijzigen'; }
    /*a.link:after { content: '\Koppelen'; }*/
    a.extend:after { content: '\Verlengen'; }
    a.details:after { content: 'Bekijken'; }
    a.afmelden:after { content: 'Afmelden'; }

}

/*--------------------------- Extra Small Devices, Phones ----------------------------*/
@media only screen and (max-width : 480px) {
    .required label:after { top: 0; }


}

/*--------------------------- Custom, iPhone Retina ---------------------------------*/
@media only screen and (max-width : 320px) {

}