* {
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

.body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    font-family: Ubuntu, sans-serif;
    font-size: 1rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 300px;
    min-height: 100%;
    background: #244362;
    transition: width .2s linear;
}

.sidebar .header {
    padding: 16px;
    border-bottom: 1px rgba(255,255,255,.1) solid;
}

.sidebar .header .link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ddd;
}

.sidebar .header .logo {
    margin-right: 12px;
    height: 50px;
}

.sidebar .header .name {
    line-height: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 10px;
}

.sidebar .main {
    flex: 1 1 auto;
    padding: 16px 8px;
}

.sidebar .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
}

.sidebar .menu ul {
    margin: 0 0 8px 20px;
    padding: 0;
    list-style: none;
    border-bottom: 1px #345372 solid;
}

.sidebar .menu .group {
    padding: 12px 8px;
    color: #fff;
}

.sidebar .menu .group:after {
    content: '›';
    display: inline-block;
    float: right;
}

.sidebar .menu .active > .group:after {
    transform: rotate(90deg);
}

.sidebar .menu a {
    display: block;
    padding: 12px 8px;
    text-decoration: none;
    color: #fff;
}

.sidebar .menu .active > a {
    border-radius: 5px;
    background: #3d6ca3;
}

.sidebar .menu .btn-download {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px #ddd4 solid;
}

.sidebar .menu .btn-download > a {
    border-radius: 5px;
    background: #2d5c93;
}

.sidebar .menu .btn-download > a:hover {
    background: #3d6ca3;
}

.sidebar .footer {
    padding: 16px;
    text-align: right;
}

.sidebar .footer button {
    padding: 8px;
    border: none;
    background: none;
    color: #ddd;
    cursor: pointer;
}

.main {
    flex: 1 1 auto;
    overflow: auto;
}

header {
    z-index: 2;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    height: 83px;
    border-bottom: 1px #e5e7eb solid;
    box-shadow: 0 0 3px rgba(0,0,0,.25);
    background: #fff;
}

header .user-wrap {
    display: flex;
    align-items: center;
}

header .user-wrap a {
    text-decoration: none;
}

header .user-wrap a:hover {
    color: #444;
}

header .user-name {
    line-height: 24px;
    font-weight: bold;
    text-align: right;
    font-size: 16px;
    color: #222;
}

header .user-role {
    line-height: 20px;
    text-align: right;
    font-size: 14px;
    color: #666;
}

header .user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3e6da5;
}

main {
    flex: 1 1 auto;
    padding: 20px 24px 80px;
}

a {
    color: #3e6da5;
}

.page-title {
    margin: 2px 0;
    font-weight: 700;
    font-size: 24px;
}

.page-subtitle {
    margin: 2px 0;
    font-weight: 700;
    font-size: 16px;
    color: #888;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-toolbar {
	float: left;
}

h1 {
    margin: 0 0 32px;
    font-weight: 600;
    font-size: 32px;
}

h2 {
    margin: 0 0 24px;
    font-weight: 700;
    font-size: 24px;
}

h3 {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 18px;
}

h4 {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 16px;
}

hr {
    margin: 24px 0;
    border: none;
    border-bottom: 1px #3e6da5 solid;
}

.rounded-1 { border-radius: 4px; }
.rounded-2 { border-radius: 8px; }
.rounded-3 { border-radius: 12px; }
.rounded-4 { border-radius: 16px; }
.rounded-5 { border-radius: 20px; }

.shadow-1 { box-shadow: 1px 1px 2px rgba(0,0,0,.35); }


.bg-white { background: #fff; }
.bg-gray { background: #f8f8f8; }
.bg-dark-gray { background: #dbdbdb }
.bg-light-green { background: #d9f4dc }
.bg-light-red { background: #febba6 }

.chip-light-gray { border: 1px #eaeaea solid; background-color: #fafafa; }
.chip-light-green { border: 1px #c9e4cc solid; background-color: #d9f4dc; }
.chip-light-red { border: 1px #efc8c4 solid; background-color: #ffdfd4; }


.pager {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pager > li > * {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px #fff solid;
    border-radius: 50%;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    color: #222;
}

.gridview-summary .summary-page {
    min-width: 80px;
}

.gridview-summary .summary-info {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.gridview-summary .summary-info b {
    margin: 0 2px;
}

.pager > li.active > *:hover {
    color: #3e6da5;
}

.pager > li.active > * {
    border-color: #3e6da5;
    color: #3e6da5;
}

.pager > li.disabled > * {
    color: #888;
}



.p-float-label {
    font-size: 14px;
}

.p-inputtext {
    padding: 0;
}



.hide {
    display: none;
}

.columns-2 { column-count: 2; column-gap: 20px }
.columns-3 { column-count: 3; column-gap: 20px }
.columns-4 { column-count: 4; column-gap: 20px }

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


.key-value-info dt {
    margin-bottom: 8px;
    font-size: 16px;
}

.key-value-info dd {
    margin: 0 0 32px;
    font-size: 20;
}



.box {
    padding: 12px 20px;
    border-radius: 3px;
}

.box-sm {
    padding: 8px 12px;
}

.box-xs {
    padding: 4px 8px;
}

.box-shadow {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
}

.table-center {
    margin: 0 auto;
}

.border {
    border: 1px #ddd solid;
}

.border-b {
    border-bottom: 1px #ddd solid;
}

#datatable label.block {
    font-size: .9rem;
    color: #555;
}

/* @media screen and (max-width: 1600px) {
    .asw-menu-btn {
        margin-top: 70px;
    }
} */
.asw-widget .asw-menu-btn {        
    width: 38px !important;
    height: 38px !important;
    right: 0px !important;
    left: -54px;
    top: -36px !important;
    position: relative;
    display: block;
    padding: unset;
    border-radius: 50%;
}

.asw-widget {
    position: absolute;
}

.btn.btn-dark.btn-primary {
    border: 1px #fff solid;;
}