:root{
    --color-grey: #727B87;
}
form input::placeholder{
    color: #aaa !important;
}
html, body {
	min-height: 100%;
	height: 100%;
    display: block;
    margin: 0;
}
body {
    background: #eee;
    display: flex;
    flex-direction: column;
}
body > header,
body > footer{
    color: #ddd;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    background: var(--color-grey);
    box-shadow: 0 8px 20px -2px rgba(41, 44, 48, 0.3);
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1;
    padding: 7px 0 0;
    margin-bottom: 10px;
}
body > footer {
	box-shadow: none;
	margin: auto 0 0;
}
    body > header a{
        color: #ddd;
        text-decoration-thickness: 1px;
    }
    body > header a:hover{
        color: #eee;
    }
    body > header .bx-breadcrumb {
        margin: 0;
    }
    body > header .bx-breadcrumb .bx-breadcrumb-item a {
        display: inline-block;
    }
    body > header .bx-breadcrumb i {
        vertical-align: baseline;
    }

body[data-is_print="Y"] > #panel,
body[data-is_print="Y"] > header,
body[data-is_print="Y"] > main > #main_header{
    display: none;
}
body[data-is_print="Y"] {
    background: #fff;
}
body[data-is_print="Y"] > main{
    padding: 0 !important;
    margin: 0 !important;
}
@media print {
    body > #panel,
    body > header,
    body > main > #main_header{
        display: none;
    }
    body {
        background: #fff;
    }
    body > main{
        padding: 0 !important;
        margin: 0 !important;
    }
    .page_break_after {
        page-break-after: always;
    }
}

.table-hover > tbody > tr.table-active,
.table-striped > tbody > tr.table-active:nth-of-type(2n+1) {
    --bs-table-active-bg: #cee1eb;
	--bs-table-accent-bg: var(--bs-table-active-bg);
    border-color: #b9cdd8;
}
.table-hover > tbody > tr.table-active:hover,
.table-striped > tbody > tr.table-active:nth-of-type(2n+1):hover {
    --bs-table-active-bg: #d9edf7;
	--bs-table-accent-bg: var(--bs-table-active-bg);
}

.hyphens,
.hyphens > * {
    white-space: normal;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.font-size-12 {
	font-size: 12px;
}

.card.mass_actions{
    border-radius: 0;
    background: var(--color-grey);
    color: #fff !important;
    width: 190px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 995;
    display: none;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow: auto;
}
    .card.mass_actions .card-header{
        font-weight: bold;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
