/* Main menu */

.main-menu-control {
    font-weight: bold;
    position: fixed;
    top: .5rem;
    left: .5rem;
    height: 2.2rem;
    padding: 0;
    width: 2.2rem;
    z-index: 100;
}

.main-menu-wrapper {
    display: none;
    background: rgba(0, 0, 0, .3);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 110;
}

.main-menu-body {
    background: #fff;
    height: 100%;
    overflow-y: auto;
    width: 250px;
    padding: 1rem;
}

.main-menu-body .title {
    padding: .5rem 0 .25rem;
    margin: 0;
}

.main-menu-body .title:first-child {
    padding-top: 0;
}

.main-menu-body .item {
    display: block;
    padding: .25rem 1rem;
}

.main-menu-close-control {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    display: none;
    font-size: 1.5rem;
    font-weight: bold;
}

body.fluid h1 {
    margin-left: 39px;
}
@media (max-width: 768px) {
    .main-menu-body {
        width: 100%;
    }

    .main-menu-close-control {
        display: block;
    }

    body.with-menu h1 {
        padding-left: 3.2rem;
        margin-left: -15px;
    }
}

/* Common */

.text-muted, .text-secondary {
    color: #929499 !important;
}

h1, .h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Table */
.table .thead-light th {
    font-weight: 600;
}

.table-sm td, .table-sm th {
    padding: .3rem .5rem;
}

.table-sm td:first-child, .table-sm th:first-child {
    padding-left: 0;
}

.table-sm td:last-child, .table-sm th:last-child {
    padding-right: 0;
}

.table td {
    vertical-align: middle;
}

.numeric-cell {
    text-align: right;
    white-space: nowrap;
}

.control-cell {
    width: 1px;
}

.table tr.summary-row td {
    border-top: none;
    border-bottom: solid 1px #dee2e6;
    font-weight: 600;
}

.table tr.summary-row:last-child td {
    border-bottom: solid 1px #dee2e6;
}

.table .dropdown-toggle::after {
    content: none;
}

caption {
    padding-top: 0;
}