@font-face {
    font-family: 'SF UI Text Light';
    src: url('../fonts/SFUIText-Light.ttf');
}

@font-face {
    font-family: 'SF UI Text';
    src: url('../fonts/SFUIText-Regular.ttf');
}

@font-face {
    font-family: 'SF UI Text SemiBold';
    src: url('../fonts/SFUIText-Semibold.ttf');
}

@font-face {
    font-family: 'BarlowCondensed-Medium';
    src: url('../fonts/BarlowCondensed-Medium.ttf');
}

.pulsate-fwd {
    -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
    animation: pulsate-fwd 0.5s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: 'SF UI Text Light';
    display: block;
    color: #666;
    background-color: #f3f5f7;
}

h1, h2, h3, h4, h5 {
    font-family: 'SF UI Text SemiBold';
}

a, a:hover, a:visited {
    font-family: 'SF UI Text';
    text-decoration: none;
}

.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
}

.right {
    position: relative;
    float: right;
}

.caret {
    margin-left: 5px;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #fff;
    opacity: 1;
}

#document-tabs > li > a {
    border-left: 1px solid #eee;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
}

#document-tabs > li.active > a {
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.fr-view {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

/*login page*/
.uk-slideshow {
    min-height: 550px !important;
    width: 100% !important;
    height: 100% !important;
}

.uk-slideshow-items {
    min-height: 550px !important;
    width: 100% !important;
    height: 100% !important;
}

.uk-slideshow-items > li.uk-active.uk-transition-active > img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute !important;
    width: 100%;
    height: auto;
    min-height: 550px !important;
}

.uk-position-small {
    margin: 0;
}

.uk-slideshow-nav {
    position: fixed;
    bottom: 0;
    margin-left: 15px;
}

.uk-slidenav {
    color: #fff !important;
}

.uk-dotnav > .uk-active > * {
    background-color: rgba(255, 255, 255, .7);
    border-color: rgba(255, 255, 255, .7);
}

.uk-dotnav > * > * {
    background-color: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, .7);
}

.uk-slideshow-foreground {
    width: 100%;
    height: 100%;
    /*background: rgba(0,0,0,0.5);*/
    background: linear-gradient(180deg, rgba(255, 255, 255, .6), rgba(0, 0, 0, .2), rgba(0, 0, 0, .6));
    position: absolute;
}

.login-section, .reset-section {
    width: 22%;
    height: 100%;
    position: absolute;
    margin-left: 39%;
    margin-right: 39%;
    top: 0;
    display: table;
}

.login-area {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.login-box {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    float: left;
}

.login-content {
    padding: 15px;
}

.login-box > div > h3 {
    margin-top: 0;
    margin-bottom: 32px;
    color: #333;
    font-family: "BarlowCondensed-Medium";
    font-size: 32px;
}

.login-box > div > .input-group {
    margin-bottom: 20px;
}

.login-box > div > .checkbox {
    margin-top: -10px;
}

.login-box > div > button {
    margin-bottom: 10px;
}

.login-box > div > a {
    display: block;
    margin-bottom: 20px;
}

.alert-danger > p {
    margin: 0;
}

.alert > p > a {
    color: inherit;
    font-weight: bold;
    text-decoration: underline;
}

.login-box-logo {
    margin: 15px 0 10px 0;
    position: relative;
    height: 45px;
    width: auto;
}

/*reset password form*/
.reset-background {
    width: 100%;
    height: 100%;
    background: url('../img/bg-a.jpg') center center no-repeat;
    background-size: cover;
}

.reset-area {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.reset-box {
    width: 100%;
    padding: 15px 15px 25px 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    float: left;
}

.reset-box > div > h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    font-family: "BarlowCondensed-Medium";
    font-size: 32px;
}

.reset-box > div > .alert {
    margin-bottom: 0 !important;
}

.spacer-top-bottom-5 {
    margin: 5px 0;
}

.spacer-top-bottom-15 {
    margin: 10px 0 15px 0;
}

.spacer-top-25 {
    margin-top: 25px;
}

.spacer-bottom-25 {
    margin-bottom: 25px;
}

.spacer-bottom-15 {
    margin-bottom: 15px;
}

.label {
    border: 0;
}

.control-label {
    line-height: 34px;
    margin-bottom: 0;
}

.add-button-row {
    position: relative;
    float: right;
    width: 24%;
    margin-left: 1%;
}

.input-group > .input-group-addon > span.uk-icon {
    width: 15px;
    height: 15px;
}

/*reset password message*/
.reset-background-message {
    width: 100%;
    height: 100%;
    background: url('../img/bg-b.jpg') center center no-repeat;
    background-size: cover;
}

.reset-section-message {
    width: 50%;
    height: 100%;
    position: absolute;
    margin-left: 25%;
    margin-right: 25%;
    top: 0;
    display: table;
}

.reset-area-message {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.reset-box-message {
    width: 100%;
    padding: 15px 15px 15px 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    float: left;
}

.reset-box-message > p > a {
    text-decoration: underline;
}

/*change password*/
.change-password-background {
    width: 100%;
    height: 100%;
    background: url('../img/bg-c.jpg') center center no-repeat;
    background-size: cover;
}

.change-password-section {
    width: 22%;
    height: 100%;
    position: absolute;
    margin-left: 39%;
    margin-right: 39%;
    top: 0;
    display: table;
}

.change-password-area {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.change-password-box {
    width: 100%;
    padding: 15px 15px 25px 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    float: left;
}

.change-password-box > div > h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    font-family: "BarlowCondensed-Medium";
    font-size: 32px;
}

.change-password-box > div > .alert {
    margin-bottom: 0 !important;
}

.password-field > div {
    margin: 10px 0;
}

.password-field > div > ul {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    list-style-type: none;
}

.change-password-field > div {
    margin: 10px 0;
}

.change-password-field > div > ul {
    padding: 0;
    list-style-type: none;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.email-validation > div {
    margin: 10px 0;
}

.email-validation > div > ul {
    padding: 0;
    list-style-type: none;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

/*dashboard*/
.pageloader {
    width: 100%;
    height: 100%;
    z-index: 1050;
    position: fixed;
    background-color: #f3f5f7;
}

.pageloader-section {
    width: 15%;
    height: 100%;
    position: absolute;
    margin-left: 42.5%;
    margin-right: 42.5%;
    top: 0;
    display: table;
}

.pageloader-information {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.pageloader-logo {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

.pageloader-title {
    font-family: 'SF UI Text SemiBold';
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.progress {
    height: 8px;
}

.foreground-layout {
    width: 100%;
    height: 165px;
    position: absolute;
    background: rgba(0, 108, 184, 1);
    box-shadow: 1px 0 7px 0 rgba(0, 0, 0, 0.5);
    z-index: 0;
    top: 0;
}

.navbar-transparent {
    background: rgba(255, 255, 255, 0.95);
    border: 0;
    border-radius: 0;
    z-index: 999;
    height: 64px;
}

.navbar-transparent > div.container-fluid > .navbar-header {
    position: relative;
    float: left;
}

.navbar-transparent > div.container-fluid > .navbar-header > .navbar-brand {
    padding: 10px 15px;
    position: relative;
    float: left;
    height: 64px;
}

.navbar-transparent > div.container-fluid > .navbar-nav > li > a {
    padding: 10px 15px;
    color: #006cb8;
    text-decoration: none;
    line-height: 44px;
}

.navbar-transparent > div.container-fluid > .navbar-nav > li > a > i.glyphicon {
    line-height: 44px;
    font-size: 20px;
    top: 3px;
    animation: wobble-hor-bottom 0.8s both;
}

.navbar-transparent > div.container-fluid > .navbar-nav > li > a > span.badge {
       position: relative;
    top: -10px;
    left: -14px;
    padding: 3px 6px;
    font-size: 11px;
    background-color: #2A6FDB;
    color: #fff;
    /* animation: pulsate-fwd 0.5s ease-in-out infinite both; */
}

.navbar-transparent .navbar-nav > .open > a, .navbar-transparent .navbar-nav > .open > a:focus, .navbar-transparent .navbar-nav > .open > a:hover {
    color: #006cb8;
    background-color: rgba(255, 255, 255, 0);
}

.navbar-right {
    position: relative;
    float: right;
    margin: 0;
}

.dropdown-menu > li > a {
    color: #666;
}

.dropdown-menu > li > a:hover {
    color: #006cb8;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-logo {
    height: 44px;
    width: auto;
    position: relative;
    float: left;
}

.navbar-transparent > div.container-fluid > .navbar-nav > li > a > .navbar-profile-img {
    position: relative;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: 1.2px dashed #006cb8;
    padding: 3px;
}

.navbar-transparent > div.container-fluid > .navbar-nav > li > a > .navbar-profile-no-img {
    position: relative;
    /* float: left;
    height: 30px !important;
    width: 30px !important; */
    border-radius: 22px;
    background-color: #E2E8F0;
    display: inline-block;
    line-height: 36px;
}

.navbar-transparent > div.container-fluid > .navbar-nav > li > a > .navbar-profile-no-img > div {
    /* text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 42px;
    height: 30px !important;
    width: 30px !important;
    font-family: 'BarlowCondensed-Medium';
    display: block; */
    text-align: center;
color: #444;
font-size: 22px;
line-height: 1; /* biar gak ganggu vertical centering */
height: 30px !important;
width: 30px !important;
font-family: 'BarlowCondensed-Medium';
display: flex;
align-items: center;
justify-content: center;


}

.navbar-apptitle {
    font-size: 9px;
    color: #333;
}

.navbar-bottom-mobile > div.nav-tabs {
    position: relative;
    float: left;
    width: 100%;
    height: 60px;
    border: 0;
}

.navbar-bottom-mobile > div.nav-tabs > div {
    position: relative;
    float: left;
    width: 50%;
    height: 60px;
    text-align: center;
}

.navbar-bottom-mobile > div.nav-tabs > div:nth-child(3), .navbar-bottom-mobile > div.nav-tabs > div:nth-child(2) {
    -webkit-box-shadow: inset 5px 0 1px -5px rgba(0, 0, 0, 0.45), inset 0 0 0 0 rgba(0, 0, 0, 0.45);
    -moz-box-shadow: inset 5px 0 1px -5px rgba(0, 0, 0, 0.45), inset 0 0 0 0 rgba(0, 0, 0, 0.45);
    box-shadow: inset 5px 0 1px -5px rgba(0, 0, 0, 0.45), inset 0 0 0 0 rgba(0, 0, 0, 0.45);
}

.navbar-bottom-mobile > div.nav-tabs > div > a,
.navbar-bottom-mobile > div.nav-tabs > div > a:hover,
.navbar-bottom-mobile > div.nav-tabs > div > a:visited {
    width: 100%;
    display: block;
    padding: 10px 15px;
    color: #006cb8;
    text-decoration: none;
    background-color: transparent;
}

.navbar-bottom-mobile > div.nav-tabs > div > a > i {
    display: block;
    font-size: 16px;
    padding-bottom: 5px;
}

.navbar-bottom-mobile > div.nav-tabs > div > a > div {
    display: block;
    font-size: 12px;
    padding-top: 2px;
}

.menu-notif-page {
    background-color: #f3f5f7;
    min-height: 100%;
    width: 100%;
    padding-bottom: 80px;
}

.user-profile-avatar-no-img {
    height: 100px;
    width: 100px;
    border: 2px dashed #006cb8;
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 10px;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.user-profile-avatar-no-img > div {
    height: 86px;
    width: 86px;
    border-radius: 44px;
    background-color: #006cb8;
    font-size: 42px;
    color: #fff;
    font-family: 'BarlowCondensed-Medium';
    display: table-cell;
    vertical-align: middle;
}

.user-profile-image-mobile {
    margin-top: 80px;
    margin-bottom: 20px;
    padding-top: 25px;
    padding-bottom: 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
}

.user-profile-avatar-mobile {
    height: 80px;
    width: 80px;
    border: 2px dashed #006cb8;
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.user-no-profile-avatar-mobile {
    height: 90px !important;
    width: 90px !important;
    border: 2px dashed #006cb8;
    padding: 5px;
    border-radius: 44px !important;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: table;
}

.user-no-profile-avatar-mobile > div {
    width: 76px !important;
    height: 76px !important;
    border-radius: 38px !important;
    background-color: #006cb8;
    color: #fff;
    font-family: 'BarlowCondensed-Medium';
    font-size: 38px;
    display: table-cell;
    vertical-align: middle;
}

.user-fullname-mobile {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.user-position-mobile {
    font-size: 12px;
    color: #006cb8;
    margin-bottom: 15px;
}

.user-profile-image-mobile > ul {
    list-style-type: none;
    padding-left: 0;
}

.user-profile-image-mobile > ul > li {
    position: relative;
    display: block;
}

.user-profile-image-mobile > ul > li > a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    padding: 3px 15px;
}

.mobilemenu-title {
    font-weight: bold;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    padding: 10px;
}

.user-menu-mobile {
    padding-top: 10px;
    padding-bottom: 15px;
    text-align: left;
    background-color: #fff;
    border-radius: 8px;
}

.notification-title-mobile {
    margin-top: 80px;
    font-weight: bold;
    margin-bottom: 15px;
    text-decoration: none;
}

.notification-bubble-mobile {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    background-color: #d9edf7;
}

.notification-bubble-mobile > .notification-bubble-title-mobile {
    font-weight: bold;
    font-size: 13px;
    line-height: 18px;
}

.notification-bubble-mobile > p {
    font-size: 12px;
}

.unread-notification {
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.read-notification {
    background-color: #fff;
    border-color: #ddd;
}

.btn-notification-menu {
    border: 0;
    position: relative;
    float: right;
    background-color: transparent;
}

.dropdown-notification {
    left: inherit;
    right: 0 !important;
}

.dropdown-notification > li > form > button {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #666;
    white-space: nowrap;
    margin: 0;
    border: 0;
    background-color: transparent;
}

.btn-group.open .dropdown-toggle,
.btn-group.open .dropdown-toggle:focus,
.btn-group.open .dropdown-toggle:active,
.btn-group.dropdown-toggle:hover {
    box-shadow: none;
    background-color: transparent;
}

.container-fluid.top-spacer {
    margin-top: 0;
    position: relative;
    z-index: 5;
}

.sidemenu {

    position: sticky;
    top: 100px; /* jarak dari atas, bisa lo ubah */
    height: fit-content;
    align-self: flex-start;

    margin-top: 15px;
    padding-bottom: 25px;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 8px;
    /* position: relative; */
    float: left;
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    bottom: 0;
}


.sidemenu-user {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
}

.user-profile-avatar {
    height: 100px;
    width: 100px;
    border: 2px dashed #006cb8;
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.user-fullname {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.user-position {
    font-size: 12px;
    color: #006cb8;
}

.sidemenu-title {
    font-weight: bold;
    font-size: 11px;
    color: #666;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

a.sidemenu-link, .sidemenu-link:hover {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 14px;
    color: #006cb8;
    text-decoration: none;
}

.sidemenu-accordion > .panel {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
}

.sidemenu-accordion > .panel > .panel-heading {
    background: none;
    padding: 0;
}

.sidemenu-accordion > .panel > .panel-heading > .panel-title > a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 14px;
    color: #006cb8;
}

.sidemenu-accordion > .panel > .panel-heading > .panel-title > a:hover {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 14px;
    color: #006cb8;
}

.sidemenu-accordion > .panel > .panel-collapse > .panel-body {
    border: 0;
    padding: 0;
}

.sidemenu-accordion > .panel > .panel-collapse > .panel-body > ul {
    margin-bottom: 0;
    list-style-type: none;
    padding-left: 18px;
}

.sidemenu-accordion > .panel > .panel-collapse > .panel-body > ul > li > a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 14px;
    color: #666;
}

.sidemenu-accordion > .panel > .panel-collapse > .panel-body > ul > li > a:hover {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 14px;
    color: #006cb8;
}

.panel-group {
    margin-bottom: 0;
}

.panel-group .panel + .panel {
    margin-top: 0;
}

.content-page {
    margin-top: 15px;
    padding-left: 25px;
}

.pagetitle {
    font-size: 28px;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 11px;
    margin: 4px 0;
}

.breadcrumb > li > a {
    color: #fff;
}

.breadcrumb > li.active {
    color: #f8f8f8;
}

.breadcrumb > li + li:before {
    padding: 0;
}

.content-panel {
    border-radius: 8px;
    position: relative;
    float: left;
    width: 100%;
}

.content-panel > .panel-heading {
    background-color: transparent;
    color: rgba(0, 108, 184, 1);
    border: 0;
    font-size: 15px;
}

.content-panel > .panel-body {
    padding: 15px 0;
}

.background-blue {
    background-color: #006cb8 !important;
    color: #fff !important;
}

.background-red {
    background-color: #ed1b2f !important;
    color: #fff !important;
}

.background-green {
    background-color: #acc42a !important;
    color: #fff !important;
}

.background-black {
    background-color: #000000 !important;
    color: #fff !important;
}

.blue {
    color: #006cb8;
}

.red {
    color: #ed1b2f;
}

.green {
    color: #acc42a;
}

.black {
    color: #000000;
}

.no-notifications {
    width: 100%;
    height: 400px;
    display: table;
    text-align: center;
}

.no-notifications > p {
    display: table-cell;
    vertical-align: middle;
    color: #D3D3D3;
}

.reddot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #ed1b2f;
    position: absolute;
    animation: pulsate-fwd 0.5s ease-in-out infinite both;
}

/* .content-welcome-background {
    border-radius: 8px;
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    background: url('../img/dashboard.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: table;
} */

/* .content-welcome-foreground {
    border-radius: 8px;
    width: 100%;
    height: 150px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 32px;
    font-family: "BarlowCondensed-Medium";
    color: #fff;
} */

.content-welcome-background {
  position: relative;
  background: url('../img/dashboard.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 10px;
  height: 150px; /* atur sesuai tinggi yang lo mau */
  display: flex;
  align-items: center;
  padding-left: 30px;

  /* efek lembut & bayangan */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.content-welcome-foreground {
  position: relative;
  z-index: 1;
  color: #fff;
}

.content-welcome-foreground p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

.content-welcome-foreground h3 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
}

.content-welcome-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 70, 160, 0.25); /* biru transparan */
  backdrop-filter: brightness(0.9);
  border-radius: 10px;
}

a.content-button {
    display: table;
    border-radius: 8px;
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
}

a.content-button > .content-button-title {
    color: #fff;
    font-family: "BarlowCondensed-Medium";
    font-size: 24px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.uk-modal-dialog {
    border-radius: 8px;
}

.uk-modal-title {
    margin: 0 0 15px 0;
    color: #006cb8;
}

.image-field > div > ul {
    padding: 0;
    list-style-type: none;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.img-user-profile-form {
    margin: 10px 0;
    width: 120px;
    height: 120px;
    border: 2px dashed #006cb8;
    border-radius: 50%;
    padding: 5px;
}

#document-tab-content > .tab-pane.active {
    /*padding: 20px 0px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;*/
    border: 0;
}

#document-tab-content > .tab-pane > div > div > h3 {
    margin-top: 0;
}

table > tbody > tr > td > .form-control {
    width: 100% !important;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    font-size: 14px !important;
}

.select2-container--bootstrap .select2-results__group {
    font-size: 14px !important;
}

.select2-container--bootstrap .select2-results__option .select2-results__option {
    padding: 6px 24px !important;
}

.nav-tabs > li.active > a {
    color: #006cb8;
}

ol.steps {
    position: relative;
    overflow: hidden;
    counter-reset: wizard;
    list-style-type: none;
    padding-left: 0;
}

ol.steps > li {
    position: relative;
    float: left;
    width: 20%;
    text-align: center;
    color: rgba(0, 108, 184, 1);
}

ol.steps > li > span {
    font-weight: bold;
    font-size: 12px;
}

ol.steps > .current ~ li {
    color: #999;
}

ol.steps > li:before {
    counter-increment: wizard;
    content: counter(wizard);
    display: block;
    color: #fff;
    font-weight: bold;
    background-color: rgba(0, 108, 184, 1);
    border: 2px solid rgba(0, 108, 184, 1);
    text-align: center;
    width: 2em;
    height: 2em;
    line-height: 1.7em;
    border-radius: 2em;
    position: relative;
    left: 50%;
    margin-bottom: 1em;
    margin-left: -1em;
    z-index: 1;
}

ol.steps > li.current ~ li:before {
    background-color: #ccc;
    color: #fff;
    border-color: #ccc;
}

ol.steps > li + li:after {
    content: "";
    display: block;
    width: 100%;
    background-color: rgba(0, 108, 184, 1);
    height: 2px;
    position: absolute;
    left: -50%;
    top: 1em;
    z-index: 0;
}

ol.steps > .current ~ li:after {
    background-color: #ccc;
}

.fr-wrapper > div > a {
    background-color: #fff !important;
    color: #fff !important;
}

.dmy-selector > select {
    display: inline-block;
    width: 33%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

/*******************************************************
Slider B-flat
*******************************************************/
.checkbox-slider--b-flat {
    position: relative;
}

.checkbox-slider--b-flat input {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: 0 0;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.checkbox-slider--b-flat input + span {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-slider--b-flat input + span:before {
    position: absolute;
    left: 0;
    display: inline-block;
}

.checkbox-slider--b-flat input + span > h4 {
    display: inline;
}

.checkbox-slider--b-flat input + span {
    padding-left: 40px;
}

.checkbox-slider--b-flat input + span:before {
    content: "";
    height: 20px;
    width: 40px;
    background: rgba(100, 100, 100, 0.2);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
    transition: background 0.2s ease-out;
}

.checkbox-slider--b-flat input + span:after {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background: #ffffff;
    transition: margin-left 0.1s ease-in-out;
    text-align: center;
    font-weight: bold;
    content: "";
}

.checkbox-slider--b-flat input:checked + span:after {
    margin-left: 20px;
    content: "";
}

.checkbox-slider--b-flat input:checked + span:before {
    transition: background 0.2s ease-in;
}

.checkbox-slider--b-flat input + span {
    padding-left: 30px;
    font-weight: bold;
}

.checkbox-slider--b-flat input + span:before {
    border-radius: 20px;
    width: 40px;
}

.checkbox-slider--b-flat input + span:after {
    background: #ffffff;
    content: "";
    width: 20px;
    border: solid transparent 2px;
    background-clip: padding-box;
    border-radius: 20px;
}

.checkbox-slider--b-flat input:not(:checked) + span:after {
    -webkit-animation: popOut ease-in 0.3s normal;
    animation: popOut ease-in 0.3s normal;
}

.checkbox-slider--b-flat input:checked + span:after {
    content: "";
    margin-left: 20px;
    border: solid transparent 2px;
    background-clip: padding-box;
    -webkit-animation: popIn ease-in 0.3s normal;
    animation: popIn ease-in 0.3s normal;
}

.checkbox-slider--b-flat input:checked + span:before {
    background: #5cb85c;
}

.checkbox-slider--b-flat.checkbox-slider-md input + span:before {
    border-radius: 30px;
}

.checkbox-slider--b-flat.checkbox-slider-md input + span:after {
    border-radius: 30px;
}

.checkbox-slider--b-flat.checkbox-slider-lg input + span:before {
    border-radius: 40px;
}

.checkbox-slider--b-flat.checkbox-slider-lg input + span:after {
    border-radius: 40px;
}

.checkbox-slider--b-flat input + span:before {
    box-shadow: none;
}

/*#####*/
.checkbox-slider-info.checkbox-slider--b input:checked + span:before,
.checkbox-slider-info.checkbox-slider--b-flat input:checked + span:before,
.checkbox-slider-info.checkbox-slider--c input:checked + span:before,
.checkbox-slider-info.checkbox-slider--c-weight input:checked + span:before {
    background: #5bc0de;
}

.checkbox-slider-warning.checkbox-slider--b input:checked + span:before,
.checkbox-slider-warning.checkbox-slider--b-flat input:checked + span:before,
.checkbox-slider-warning.checkbox-slider--c input:checked + span:before,
.checkbox-slider-warning.checkbox-slider--c-weight input:checked + span:before {
    background: #f0ad4e;
}

.checkbox-slider-danger.checkbox-slider--b input:checked + span:before,
.checkbox-slider-danger.checkbox-slider--b-flat input:checked + span:before,
.checkbox-slider-danger.checkbox-slider--c input:checked + span:before,
.checkbox-slider-danger.checkbox-slider--c-weight input:checked + span:before {
    background: #d9534f;
}

/*******************************************************
Sizes
*******************************************************/
.checkbox-slider-sm {
    line-height: 10px;
}

.checkbox-slider-sm input + span {
    padding-left: 20px;
}

.checkbox-slider-sm input + span:before {
    width: 20px;
}

.checkbox-slider-sm input + span:after,
.checkbox-slider-sm input + span:before {
    height: 10px;
    line-height: 10px;
}

.checkbox-slider-sm input + span:after {
    width: 10px;
    vertical-align: middle;
}

.checkbox-slider-sm input:checked + span:after {
    margin-left: 10px;
}

.checkbox-slider-md {
    line-height: 30px;
}

.checkbox-slider-md input + span {
    padding-left: 60px;
}

.checkbox-slider-md input + span:before {
    width: 60px;
}

.checkbox-slider-md input + span:after,
.checkbox-slider-md input + span:before {
    height: 30px;
    line-height: 30px;
}

.checkbox-slider-md input + span:after {
    width: 30px;
    vertical-align: middle;
}

.checkbox-slider-md input:checked + span:after {
    margin-left: 30px;
}

.checkbox-slider-lg {
    line-height: 40px;
}

.checkbox-slider-lg input + span {
    padding-left: 80px;
}

.checkbox-slider-lg input + span:before {
    width: 80px;
}

.checkbox-slider-lg input + span:after,
.checkbox-slider-lg input + span:before {
    height: 40px;
    line-height: 40px;
}

.checkbox-slider-lg input + span:after {
    width: 40px;
    vertical-align: middle;
}

.checkbox-slider-lg input:checked + span:after {
    margin-left: 40px;
}

/*ECN & ECR report*/
.report-logo {
    height: 45px;
    width: auto;
}

.report-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 26px;
    font-size: 22px;

}

.report-doc-no {
    line-height: 26px;
}

.control-label-report {
    line-height: 20px;
}

.font-italic {
    font-style: italic;
    line-height: 34px;
}

span.report-cell {
    line-height: 34px;
}

.fr-view-no-border {
    border: 0;
    box-shadow: none;
    padding: 15px 0 15px 0;
}

code {
    overflow-x: auto !important;
    white-space: pre-wrap !important;
    white-space: -moz-pre-wrap !important;
    white-space: -pre-wrap !important;
    white-space: -o-pre-wrap !important;
    word-wrap: break-word !important;
    font-size: .975rem !important;
}

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

.filter-form {
    margin-bottom: 30px;
}

@media only screen and (min-width: 0px) and (max-width: 320px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    /*login page*/
    .uk-slideshow-items > li.uk-active.uk-transition-active > img {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        position: absolute !important;
        width: auto !important;
        height: 100% !important;
        min-height: 550px !important;
    }

    .login-section, .reset-section, .reset-section-message, .change-password-section {
        width: 80% !important;
        height: 100%;
        position: absolute;
        margin-left: 10%;
        margin-right: 10%;
        top: 0;
        display: table;
    }

    /*dashboard*/
    .pageloader-section {
        width: 60%;
        height: 100%;
        position: fixed;
        margin-left: 20%;
        margin-right: 20%;
        top: 0;
        display: table;
    }

    .navbar-transparent {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .navbar-transparent > div.container-fluid > .navbar-header > .navbar-brand {
        padding: 12px 15px;
    }

    .navbar-logo {
        height: 40px;
        width: auto;
    }

    .container-fluid.top-spacer {
        margin: 0;
        padding: 0 0 50px 0;
        top: 80px;
    }

    .content-page {
        margin-top: 15px;
        padding-left: 15px;
    }

    .add-button-row {
        position: relative;
        float: right;
        width: 100%;
        margin-left: 0;
    }

    .pagetitle {
        font-size: 20px;
        color: #fff;
        margin-top: 15px;
        margin-bottom: 5px;
    }

    #document-tab-content > .tab-pane.active {
        /*margin-top: 15px;
        padding: 20px 0px;
        border: 1px solid #ddd;
        border-radius: 4px;*/
        border: 0;
    }

    .report-panel {
        font-size: 8px;
    }

    .report-logo {
        height: 18px;
        width: auto;
    }

    .report-title {
        line-height: 14px;
        font-size: 12px;
    }

    .report-doc-no {
        line-height: 14px;
    }

    .control-label-report {
        line-height: 14px;
    }

    .font-italic {
        font-style: italic;
        line-height: 14px;
    }

    span.report-cell {
        line-height: 14px;
    }
}

#modal-title {
    font-size: 2rem;
    line-height: 1.5;
}

@media only screen and (min-width: 321px) and (max-width: 640px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    /*login page*/
    .uk-slideshow-items > li.uk-active.uk-transition-active > img {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        position: absolute !important;
        width: auto !important;
        height: 100% !important;
        min-height: 550px !important;
    }

    .login-section, .reset-section, .reset-section-message, .change-password-section {
        width: 80% !important;
        height: 100%;
        position: absolute;
        margin-left: 10%;
        margin-right: 10%;
        top: 0;
        display: table;
    }

    /*dashboard*/
    .pageloader-section {
        width: 50%;
        height: 100%;
        position: fixed;
        margin-left: 25%;
        margin-right: 25%;
        top: 0;
        display: table;
    }

    .navbar-transparent {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .navbar-transparent > div.container-fluid > .navbar-header > .navbar-brand {
        padding: 12px 15px;
    }

    .navbar-logo {
        height: 40px;
        width: auto;
    }

    .container-fluid.top-spacer {
        margin: 0;
        padding: 0 0 50px 0;
        top: 80px;
    }

    .content-page {
        margin-top: 15px;
        padding-left: 15px;
    }

    .add-button-row {
        position: relative;
        float: right;
        width: 100%;
        margin-left: 0;
    }

    .pagetitle {
        font-size: 24px;
        color: #fff;
        margin-top: 12px;
        margin-bottom: 5px;
    }

    #document-tab-content > .tab-pane.active {
        /*margin-top: 15px;
        padding: 20px 0px;
        border: 1px solid #ddd;
        border-radius: 4px;*/
        border: 0;
    }

    .report-panel {
        font-size: 10px;
    }

    .report-logo {
        height: 24px;
        width: auto;
    }

    .report-title {
        line-height: 16px;
        font-size: 14px;
    }

    .report-doc-no {
        line-height: 16px;
    }

    .control-label-report {
        line-height: 16px;
    }

    .font-italic {
        font-style: italic;
        line-height: 16px;
    }

    span.report-cell {
        line-height: 16px;
    }
}

@media only screen and (min-width: 641px) and (max-width: 992px) {
    /*login page*/
    .uk-slideshow-items > li.uk-active.uk-transition-active > img {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        position: absolute !important;
        width: auto !important;
        height: 100% !important;
        min-height: 550px !important;
    }

    .login-section, .reset-section, .reset-section-message, .change-password-section {
        width: 50% !important;
        height: 100%;
        position: absolute;
        margin-left: 25%;
        margin-right: 25%;
        top: 0;
        display: table;
    }

    /*dashboard*/
    .pageloader-section {
        width: 25%;
        height: 100%;
        position: fixed;
        margin-left: 37.5%;
        margin-right: 37.5%;
        top: 0;
        display: table;
    }

    .navbar-transparent {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .navbar-transparent > div.container-fluid > .navbar-header > .navbar-brand {
        padding: 12px 15px;
    }

    .navbar-logo {
        height: 40px;
        width: auto;
    }

    .container-fluid.top-spacer {
        margin: 0;
        padding: 0 0 50px 0;
        top: 80px;
    }

    .content-page {
        margin-top: 15px;
        padding-left: 15px;
    }

    .add-button-row {
        position: relative;
        float: right;
        width: 28%;
        margin-left: 2%;
    }

    #document-tab-content > .tab-pane.active {
        /*margin-top: 15px;
        padding: 20px 0px;
        border: 1px solid #ddd;
        border-radius: 4px;*/
        border: 0;
    }

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

    .report-logo {
        height: 32px;
        width: auto;
    }

    .report-title {
        line-height: 24px;
        font-size: 18px;
    }

    .report-doc-no {
        line-height: 32px;
    }

    .control-label-report {
        line-height: 32px;
    }

    .font-italic {
        font-style: italic;
        line-height: 32px;
    }

    span.report-cell {
        line-height: 32px;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1024px) {
    /*login page*/
    .uk-slideshow-items > li.uk-active.uk-transition-active > img {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        position: absolute !important;
        width: auto !important;
        height: 100% !important;
        min-height: 550px !important;
    }

    .login-section, .reset-section, .reset-section-message, .change-password-section {
        width: 30% !important;
        height: 100%;
        position: absolute;
        margin-left: 35%;
        margin-right: 35%;
        top: 0;
        display: table;
    }

    /*dashboard*/
    .pageloader-section {
        width: 15%;
        height: 100%;
        position: absolute;
        margin-left: 42.5%;
        margin-right: 42.5%;
        top: 0;
        display: table;
    }

    .add-button-row {
        position: relative;
        float: right;
        width: 28%;
        margin-left: 2%;
    }

    #document-tab-content > .tab-pane.active {
        /*margin-top: 15px;
        padding: 20px 0px;
        border: 1px solid #ddd;
        border-radius: 4px;*/
        border: 0;
    }

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

    .report-logo {
        height: 32px;
        margin-top: 8px;
        margin-bottom: 8px;
        width: auto;
    }

    .report-title {
        margin-top: 0;
        margin-bottom: 0;
        line-height: 24px;
        font-size: 18px;
    }

    .report-doc-no {
        line-height: 48px;
    }

    .control-label-report {
        line-height: 32px;
    }

    .font-italic {
        font-style: italic;
        line-height: 32px;
    }

    span.report-cell {
        line-height: 32px;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) {
    /*login page*/
    .uk-slideshow-items > li.uk-active.uk-transition-active > img {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        position: absolute !important;
        width: auto !important;
        height: 100% !important;
        min-height: 550px !important;
    }

    .login-section, .reset-section, .reset-section-message, .change-password-section {
        width: 25% !important;
        height: 100%;
        position: absolute;
        margin-left: 37.5%;
        margin-right: 37.5%;
        top: 0;
        display: table;
    }

    /*dashboard*/
    .pageloader-section {
        width: 15%;
        height: 100%;
        position: absolute;
        margin-left: 42.5%;
        margin-right: 42.5%;
        top: 0;
        display: table;
    }

    .add-button-row {
        position: relative;
        float: right;
        width: 28%;
        margin-left: 2%;
    }
}

/* missing after datatable update */
div.row {
    margin-left: 0;
    margin-right: 0;
}

#dt_length, .dt-buttons {
    float: left
}

.froala-helper-text {
    font-size: small;
    font-style: italic;
}

#document-reminder {
    float: right;
}

p.dept-note {
    font-size: small;
    margin-top: 3px;
    background-color: #fcf8e3;
    border-color: #faebcc;
    padding: 3px
}

.doc-manage-entry {
    color: #fff !important;
    text-decoration: none !important;
}


/* tamabahn ales */
.badgeNotif {
    position: absolute;
    top: -8px;
    right: -6px;
    background: #2A6FDB;
    color: white;
    font-size: 10px;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    min-height: 20px;
    font-family: 'BarlowCondensed-Medium';
}

@media (max-width: 991px) {
  /* biar nggak ganggu tampilan mobile */
  .sidemenu {
    position: static;
  }
}

/* table */
