body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
}
/* H1 - H6 font */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: sans-serif;
}
/* General Links */
a {
    color: #38b;
}
a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
    color: #909;
}
/* Don't display when printing */
@media print {
    .no-print {
        display: none !important;
    }
    .main-sidebar,
    .main-header,
    .content-header {
        display: none !important;
    }
    .content-wrapper {
        margin: 0 !important;
    }
    .content {
        padding: 0;
    }
}
.main-header {
    display: flex;
}
.main-header > .navbar {
    width: 100%;
    margin-bottom: 0;
    border: none;
    min-height: 50px;
    border-radius: 0;
    background-color: #38b;
}
.main-header .navbar-custom-menu,
.main-header .navbar-right {
    margin-right: 5px;
    float: right;
}
@media (max-width: 767px) {
    .main-header .navbar-right {
        float: none;
    }
    .navbar-collapse .main-header .navbar-right {
        margin: 7.5px -15px;
    }
}
.main-header a.navbar-link {
    color: #ffffff;
    float: left;
    line-height: 50px;
    padding: 0 15px;
    cursor: pointer;
}
.main-header a.navbar-link:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
}
.main-header .logo {
    display: block;
    font-size: 20px;
    text-align: center;
    width: 230px;
    font-weight: 300;
}
@media (max-width: 767px) {
    .main-header .logo {
        display: none;
    }
}
.main-header .navbar-custom-menu.user {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 18px;
}
.main-header .navbar-custom-menu.user a {
    color: #fff;
    padding: 0 8px;
}

.main-sidebar {
    display: flex;
    flex: 0 0 230px;
    flex-grow: 0;
    background: #eee;
}
.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
}
.sidebar-menu > li {
    margin: 0;
    padding: 0;
}
.sidebar-menu > li > a {
    padding: 0 0 0 30px;
}
.sidebar-menu > li > a:hover,
.sidebar-menu > li.active > a {
    color: #036;
}
.sidebar-menu li.header {
    padding: 5px 0 0 0;
    color: #466;
    background: #eee;
}
.sidebar-menu li.header i {
    display: inline-block;
    width: 20px;
    margin: 0 5px;
}
.sidebar-menu > li.active {
    background-color: #ccc;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, .25) inset;
}
.main-sidebar .sidebar-menu > li.active a {
    color: #000;
}

.wrapper {
    display: flex;
    flex-direction: row;
}
.content-wrapper {
    display: flex;
    flex-grow: 1;
}
.content {
    display: block;
    width: 100%;
    padding: 15px;
}

.main-footer {
    display: flex;
    background: #fff;
    padding: 15px;
    color: #444;
    border-top: 1px solid #eee;
}

/*
 * Component: Table
 * ----------------
 */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border-top: 1px solid #f4f4f4;
}
.table > thead > tr > th {
    border-bottom: 2px solid #f4f4f4;
}
.table tr td .progress {
    margin-top: 5px;
}
.table-bordered {
    border: 1px solid #f4f4f4;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #f4f4f4;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}
.table.no-border,
.table.no-border td,
.table.no-border th {
    border: 0;
}
/* .text-center in tables */
table.text-center,
table.text-center td,
table.text-center th {
    text-align: center;
}
.table.align th {
    text-align: left;
}
.table.align td {
    text-align: right;
}

table th, table td {
    padding: 2px 6px;
}
/*
 * Component: Label
 * ----------------
 */
.label-default {
    background-color: #d2d6de;
    color: #444;
}
/*
 * Component: modal
 * ----------------
 */
.modal {
    background: rgba(0, 0, 0, 0.3);
}
.modal-content {
    border-radius: 0;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
    border: 0;
}
@media (min-width: 768px) {
    .modal-content {
        -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
    }
}
.modal-header {
    border-bottom-color: #f4f4f4;
}
.modal-footer {
    border-top-color: #f4f4f4;
}
.modal-primary .modal-header,
.modal-primary .modal-footer {
    border-color: #307095;
}
.modal-warning .modal-header,
.modal-warning .modal-footer {
    border-color: #c87f0a;
}
.modal-info .modal-header,
.modal-info .modal-footer {
    border-color: #0097bc;
}
.modal-success .modal-header,
.modal-success .modal-footer {
    border-color: #00733e;
}
.modal-danger .modal-header,
.modal-danger .modal-footer {
    border-color: #c23321;
}

div.dialog-hidden {
    display: none;
    padding: 0;
    z-index: 1050;
}
form.wide {
    width: 1020px;
    padding: 0;
}
form.wide input, form.wide textarea, form.wide select, form.wide button {
    display: inline-block;
    vertical-align: top;
    width: 300px;
}
div.dialog-hidden textarea {
    height: 4em;
}

.comments .list {
    max-height: 400px;
    overflow: auto;
    padding: 4px 0;
    margin-bottom: 6px;
}
.comments span.commentTime {
    color: #69C;
    font-weight: bold;
    margin-right: 6px;
}
.comments span.commentAuthor {
    color: #6C9;
    font-weight: bold;
}
.comments p.auto {
    font-style: italic;
}

tr.total {
    background-color: #CEF;
    font-weight: bold;
}
a {
    cursor: pointer;
}
a.sort-up:after {
    content: '\25B2';
    padding-left: 2px;
}
a.sort-down:after {
    content: '\25BC';
    padding-left: 2px;
}
a.sort-disabled {
    cursor: not-allowed;
}

#filters input[type=text], #filters form input[type=password], #filters select,
.modal-dialog input[type=text], .modal-dialog form input[type=password], .modal-dialog select {
    width: 220px;
}

#table-title {
    clear: both;
    font-weight: bold;
    font-size: 1.4em;
}

img.avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 6px;
}

button.text-info, button.text-danger, button.text-warning {
    background: transparent;
}

.datepicker{
    z-index:1151 !important;
}
