body {
    background: #fff;
}
/* login styling */
.loginscreen-body {
    background-image: url("../img/BUMN.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.overlay-loginscreen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: .8;
}

.middle-box {
    padding-top: 60px;
}

    .middle-box .logo img {
        width: 200px;
    }

.btn, input, select {
    border-radius: 8px !important;
}

.middle-box input, select, textarea {
    background: rgb(255, 255, 255, .7) !important;
}

    input:focus, select:focus, textarea:focus {
        border-color: #003d75 !important;
    }
.loginscreen-body .ibox-content {
    border-radius: 15px;
}

.loginColumns {
    padding-top: 150px;
}

.loginscreen-body .title-form {
    color: #182955;
}

.loginscreen-body p, .loginscreen-body a {
    color: #565656;
}

    .loginscreen-body a[type="submit"].btn.btn-primary {
        color: white !important;
        background-color: #182955 !important;
    }
/* BUTTON STYLING */
/* universal using */
.btn.btn-primary {
    background: #182955;
    border-color: #182955;
}

    .btn.btn-primary:hover,
    .btn.btn-primary:focus {
        background: #243e80 !important;
        border-color: #243e80 !important;
    }

.btn-primary.action.dekstop {
    display: inline-block;
}

.btn-primary.action.mobile {
    display: none;
}
/* if using input */
input[type="button"].btn.btn-primary {
    background: #182955;
    border-color: #182955;
}

    input[type="button"].btn.btn-primary:hover,
    input[type="button"].btn.btn-primary:focus {
        background: #243e80 !important;
        border-color: #243e80 !important;
    }
/* if using anchor */
a.btn.btn-primary {
    background: #182955;
    border-color: #182955;
}

    a.btn.btn-primary:hover,
    a.btn.btn-primary:focus {
        background: #243e80 !important;
        border-color: #243e80 !important;
    }
/* if using button */
button.btn.btn-primary {
    background: #182955;
    border-color: #182955;
}

    button.btn.btn-primary:hover,
    button.btn.btn-primary:focus {
        background: #243e80 !important;
        border-color: #243e80 !important;
    }
.btn-outline-primary {
    border-color: #182955 !important;
    color: #182955 !important;
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
        background: #243e80 !important;
        border-color: #243e80 !important;
        color: #fff !important;
    }

h1.title-form {
    font-size: 1.4em;
    font-weight: 700;
    margin: 1em 0 1em 0;
    color: #182955;
}

a.address {
    color: inherit;
}

    a.address:hover,
    a.address:focus {
        text-decoration: underline;
        font-style: italic;
    }

.footer {
    background: transparent;
    border: none;
    position: absolute;
    text-align: center;
}

@media (min-width:768px) and (max-width:1024px) {
    .loginscreen.middle-box {
        width: 500px;
    }

    .middle-box {
        padding-top: 60px;
    }

        .middle-box .logo img {
            width: 280px;
        }

        .middle-box p {
            font-size: 1.3em;
        }

        .middle-box h1 {
            font-size: 2em;
        }

        .middle-box a {
            font-size: 1.3em;
        }

        .middle-box .form-group .form-control {
            height: 42px;
        }

        .middle-box .btn.btn-primary {
            height: 42px;
            font-size: 1.3em;
        }
}

@media (max-width:500px) {
    .middle-box {
        padding-top: 40px;
    }

    .footer p {
        font-size: .7em;
    }
}

@media (max-width:350px) {
    .loginscreen.middle-box {
        width: 200px;
    }

    .middle-box {
        padding-top: 20px;
    }

        .middle-box p {
            font-size: .9em;
        }

        .middle-box h1 {
            font-size: 1em;
        }

        .middle-box a {
            font-size: .9em;
        }

        .middle-box .logo img {
            width: 180px;
        }
}
/* end of login styling */





/* ------------------------------------------------------------------------------------------------------------- */
/* ================ APPLICATION STYLING ----------------------*/
/*.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: #fff;
}
.preloader .loading {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.loading img {
    width: 100px;
}*/
@-webkit-keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .6s;
        -o-transition: .6s;
        transition: .6s;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: .6s;
        -o-transition: .6s;
        transition: .6s;
    }
}

@keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .6s;
        -o-transition: .6s;
        transition: .6s;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: .6s;
        -o-transition: .6s;
        transition: .6s;
    }
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    margin: auto;
    background-color: rgb(255, 255, 255);
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -ms-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.preloader .preloader-circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-style: solid;
    border-width: 5px;
    border-top-color: #e6a91a;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    background-color: #005db5;
    z-index: 10;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185);
    -moz-box-shadow: 0 1px 5px 0 rgba(35, 181, 185);
    -o-box-shadow: 0 1px 5px 0 rgba(35, 181, 185);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185);
    -webkit-animation: zoom 2000ms infinite ease;
    -moz-animation: zoom 2000ms infinite ease;
    -o-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -ms-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.preloader .preloader-circle {
    border-top-color: #e6a91a;
}

.preloader .preloader-img {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding-top: 6px;
    margin: 0 auto;
    text-align: center;
    z-index: 200;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -ms-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.preloader .preloader-img img {
    max-width: 100px;
}

.loading img {
    width: 100px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-r adius: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    background: #182955;
}

#wrapper {
    background: #Fff;
}

.navbar-default {
    background: none;
    background: #182955;
    /* border-top-right-radius:100px; */
    /* box-shadow: 0 0 20px 0 rgb(0,0,0,0.09); */
}

.navbar-default .nav > li.active {
    border-left: none;
    background: rgba(4, 153, 174);
    transition: .3s;
}

.navbar-default .nav > li.active > a {
    color: #fff;
    font-weight: 800;
}

.navbar-default .nav > li > a:hover {
    border-left: none;
    background: rgba(4, 153, 174, .65);
    transition: .3s;
}

.navbar-default .nav > li > a:focus {
    /* background: #34c6ce; */
    transition: .3s;
}

.navbar-default .nav > li > a {
    color: rgb(231, 231, 231);
}

.navbar-default ul.nav-second-level {
    background: #182955;
}

.nav-header {
    padding: 33px 25px 10px 10px;
    background-color: #fff;
    background-image: none;
    /* border-top-right-radius: 100px; */
}

.nav-header .logo-element {
    display: inline-block !important;
    text-align: center;
    padding: 10px;
}

.nav-header .logo-element img {
    max-width: 180px;
    margin-bottom: 20px;
}

.mini-navbar .nav-header .logo-element img {
    max-width: 100%;
    padding-top: 10px;
}

/*set width for cqsms menu*/
.cqsms-nav {
    width: 15% !important;
}

/* TYPOGRAPHY */
.label-primary {
    background: #182955;
    border-radius: 8px;
}
.mandatory::after {
    content: '(*)';
    margin-left: 2px;
    color: #c41801;
    font-weight: 700;
}
.page-heading h2 {
    font-size: 2em;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    margin-top: 10px;
}

.title-break {
    font-weight: 700;
    font-size: 2em;
    color: #182955;
}

.label-style {
    margin-bottom: 5px;
    font-weight: 700;
}

.statusActive {
    color: #2ad300;
    font-weight: 700;
}

.statusInactive {
    color: #c41801;
    font-weight: 700;
}

.required {
    color: #c41801;
    font-weight: 700;
}

.optional {
    color: #a9a9a9;
    font-weight: 700;
}

.stat-percent i {
    font-size: 2em;
}

small.role {
    font-style: italic;
    color: #182955;
}

.close-all-tray i {
    font-size: 20px;
}


/* DISTANCING */
hr.blue-line {
    border: none;
    height: .5px;
    background: rgb(0, 67, 129, .5);
}


/* IBOX */
.ibox.float-e-margins {
    border-radius: 0;
    border: none;
    background: transparent;
}

.ibox-content {
    border-radius: 40px;
    box-shadow: 0px 0px 40px rgba(0,0,0,0.08);
    border: none;
}

.ibox-title {
    background: #fff;
    color: #fff;
    border-top: none;
    border-color: transparent;
    border-image: none;
    border-style: none;
    border-width: 0;
    color: inherit;
    margin-bottom: 0;
    padding: 15px 90px 8px 15px;
    min-height: 48px;
    position: relative;
}

    .ibox-title h5 {
        font-size: 1.1em;
        font-weight: 700;
        color: #182955;
    }

.ibox-content h1.no-margins {
    font-size: 3em;
    font-weight: 700;
    color: #182955;
}

#filter-forms {
    background: rgba(0, 0, 0, 0.015);
    border-radius: 8px;
}


/* FORMS */
.form-group-profile .titleDoc {
    font-weight: 700;
}

.form-group-profile .newDoc {
    color: #182955 !important;
    font-weight: 700;
}

.form-control {
    border-radius: 8px !important;
}

    .form-control:focus {
        box-shadow: none !important;
    }

.form-group-profile .titleDoc {
    font-weight: 700;
}

.form-group-profile .newDoc {
    color: #182955 !important;
    background: rgb(61, 72, 82, .025) !important;
    font-weight: 700;
}

    .form-group-profile .newDoc .action-button a {
        color: #fff !important;
        text-decoration: none;
    }

.form-group-profile .titleDoc .action-button,
.form-group-profile .oldDoc .action-button {
    visibility: hidden;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine {
    border: none;
}

.table-bordered td, .table-bordered th {
    border: none;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine thead tr th {
    padding: 10px;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine thead tr {
    border: none;
    border-bottom: 2px solid #b6b9bd;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine.table-hover tbody tr:hover {
    background-color: transparent !important;
    color: inherit;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,.04);
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-1 {
    width: 8.333333%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-2 {
    width: 16.666667%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-3 {
    width: 25%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-4 {
    width: 33.333333%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-5 {
    width: 41.666667%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-6 {
    width: 50%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-7 {
    width: 58.333333%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-8 {
    width: 66.666667%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-9 {
    width: 75%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-10 {
    width: 83.333333%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-11 {
    width: 91.666667%;
}

.bootstrap-table .fixed-table-container .table.form-group-profile.refine th.col-12 {
    width: 100%;
}

/* bs table */
.bootstrap-table .fixed-table-container .table th.col-1 {
    width: 8.333333%;
}

.bootstrap-table .fixed-table-container .table th.col-2 {
    width: 16.666667%;
}

.bootstrap-table .fixed-table-container .table th.col-3 {
    width: 25%;
}

.bootstrap-table .fixed-table-container .table th.col-4 {
    width: 33.333333%;
}

.bootstrap-table .fixed-table-container .table th.col-5 {
    width: 41.666667%;
}

.bootstrap-table .fixed-table-container .table th.col-6 {
    width: 50%;
}

.bootstrap-table .fixed-table-container .table th.col-7 {
    width: 58.333333%;
}

.bootstrap-table .fixed-table-container .table th.col-8 {
    width: 66.666667%;
}

.bootstrap-table .fixed-table-container .table th.col-9 {
    width: 75%;
}

.bootstrap-table .fixed-table-container .table th.col-10 {
    width: 83.333333%;
}

.bootstrap-table .fixed-table-container .table th.col-11 {
    width: 91.666667%;
}

.bootstrap-table .fixed-table-container .table th.col-12 {
    width: 100%;
}



.form-group-profile.refine .label-style {
    font-weight: 700;
}

.form-group-profile.refine .col-md-12 a {
    color: #182955;
    font-style: italic;
}

    .form-group-profile.refine .col-md-12 a:hover,
    .form-group-profile.refine .col-md-12 a:focus {
        text-decoration: underline;
    }

.form-group-profile.refine .col-md-12 {
    margin-bottom: 5px;
    padding-bottom: 2px;
    padding-top: 2px;
    border-bottom: 1px solid rgb(194, 192, 192);
}

    .form-group-profile.refine .col-md-12:last-child {
        border-bottom: none;
    }

@media (max-width:768px) {
    .form-group-profile.refine .col-md-12 {
        padding-left: 0;
        padding-right: 0;
        font-size: .7em;
    }
}

/* CHECKBOX */
.checkbox label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
    cursor: pointer;
}

    .checkbox .cr .cr-icon {
        position: absolute;
        font-size: .8em;
        line-height: 0;
        top: 50%;
        left: 15%;
    }

.checkbox label input[type="checkbox"] {
    display: none;
}

    .checkbox label input[type="checkbox"] + .cr > .cr-icon {
        opacity: 0;
    }

    .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon {
        opacity: 1;
    }

    .checkbox label input[type="checkbox"]:disabled + .cr {
        opacity: .5;
    }




/* bootstrap table modified */
.bootstrap-table .btn-group .btn-secondary {
    background: transparent;
    border: none;
    color: #182955;
    font-size: 1.2em;
}

    .bootstrap-table .btn-group .btn-secondary.focus,
    .bootstrap-table .btn-group .btn-secondary:focus,
    .bootstrap-table .btn-group .btn-secondary:hover {
        background: transparent;
        border: none;
        color: #00386d;
        box-shadow: none !important;
    }

.bootstrap-table .form-control, .single-line {
    background-color: transparent;
    background-image: none;
    border: 1px solid #e5e6e7;
    border-radius: 8px;
    color: inherit;
    display: block;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

.bootstrap-table .btn-group.show .caret {
    transform: rotate(180deg);
    transition: .2s;
}

.bootstrap-table .caret {
    transition: .2s;
}

.bootstrap-table .fixed-table-pagination .dropup .dropdown-toggle::after {
    display: none;
}

.bootstrap-table .fixed-table-pagination > .pagination ul.pagination .page-item a {
    background: transparent;
    color: #182955;
    padding: 5px 12px;
    margin-right: 5px;
    line-height: 1.5;
    border-radius: 8px;
}

.bootstrap-table .fixed-table-pagination > .pagination ul.pagination .page-item.active a {
    background: #182955;
    border-color: #182955;
    color: #fff;
}

.bootstrap-table .fixed-table-pagination > .pagination ul.pagination .page-item.page-pre a,
.bootstrap-table .fixed-table-pagination > .pagination ul.pagination .page-item.page-next a {
    background: transparent;
    color: #182955;
    font-weight: 700;
    border: none;
    font-size: 1.2em;
}

.bootstrap-table .table-bordered > thead > tr > th,
.bootstrap-table .table-bordered > thead > tr > td {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #182955;
    color: #182955;
    font-weight: 700;
}

.bootstrap-table .table-bordered > tbody > tr > td {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
}

.bootstrap-table .table-bordered {
    border: none;
}


/* BUMN KARYA STYLE DASHBOARD */
.dashboard .ibox.float-e-margins {
    border-radius: 0;
    border: none;
    box-shadow: 0px 0px 40px rgba(0,0,0,0.08);
    background: transparent;
}

.dashboard .ibox-title h5:after {
    content: '';
    display: block;
    background: #182955;
    border: 1px solid #182955;
    margin-top: 10px;
    width: 50px;
}

.dashboard ul.list-group .list-group-item {
    border: 1px solid transparent;
    border-bottom: 1px solid #ddd;
    padding: 5px 15px;
}

    .dashboard ul.list-group .list-group-item:last-child {
        border-bottom: none;
    }

.vendor-data.kinerja .ibox.float-e-margins.custom {
    height: 7.35rem;
}

    .vendor-data.kinerja .ibox.float-e-margins.custom .ibox-content {
        height: 100%;
    }

.vendor-data h1.no-margins.upper {
    font-size: 24px;
    margin-bottom: 0;
    color: #000;
}

.vendor-data h5 {
    color: #000;
}



.vendor-data.kinerja .circular-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    line-height: 50px;
    background-color: rgba(0, 93, 181, .1);
    font-weight: 800;
}

    .vendor-data.kinerja .circular-icon.green {
        background-color: rgba(42, 211, 0, .15);
        color: #2ad300;
    }

    .vendor-data.kinerja .circular-icon.warning {
        background-color: rgba(248, 172, 89, .15);
        color: #f8ac59;
    }

    .vendor-data.kinerja .circular-icon.danger {
        background-color: rgba(237, 85, 101, .15);
        color: #ed5565;
    }

    .vendor-data.kinerja .circular-icon.black {
        background-color: rgba(0,0,0,.15);
        color: #000;
    }

    .vendor-data.kinerja .circular-icon span {
        font-size: 24px;
    }

.vendor-data.kinerja h1.no-margins.upper {
    font-size: 24px;
    color: #000;
}

.risk-status h1.no-margins.upper {
    font-size: 18px;
    margin-bottom: 0;
    color: #000;
}


/* drawer */
.modal-backdrop.show {
    opacity: .75;
}

.modal .modal-dialog.drawer {
    float: right;
    max-width: 800px;
    width: 100%;
    height: 100%;
    margin: 0;
}

    .modal .modal-dialog.drawer .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

.drawer-form .spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.75);
}

.ibox-content .spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.75);
}

.drawer-form {
    height: 100%;
}

.table-responsive {
    /*display: table;*/
}

@media (min-width:768px) and (max-width:1024px) {
    .table-responsive {
        display: block;
    }

    .dashboard .page-heading h2 {
        font-size: 1.5em;
    }
}

@media (min-width:320px) and (max-width:767px) {
    .table-responsive {
        display: block;
    }

    .vendor-data.kinerja .ibox.float-e-margins.custom {
        height: auto;
    }

    .dashboard .page-heading h2 {
        font-size: 1.5em;
    }
}

.ibox.fullscreen .ibox-content {
    min-height: calc(100% - 48px);
    border-radius: 0;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.dashboard .tooltip.bs-tooltip-right {
    font-size: 12px;
    opacity: 1;
}

    .dashboard .tooltip.bs-tooltip-right .tooltip-inner {
        background-color: #009ca5;
    }
/* Dashboard Table Styling */
.table.kinerja {
    font-size: 1.1em;
}

    .table.kinerja tr th:first-child {
        color: #fff;
        background: #182955;
        border-top-left-radius: 20px;
    }

.dashboard .table tr th {
    color: #fff;
    background: #182955;
    border: 1px solid #fff;
}

.table.kinerja tr th:last-child {
    color: #fff;
    background: #182955;
    border-top-right-radius: 20px;
}

.table.kinerja tr td {
    font-size: .875em;
    font-weight: 700;
    padding: 20px 0 0 0;
}

.table.kinerja tr th {
    padding: 1em;
}

.table.table.analytic tr th,
.table.table.analytic tr td {
    vertical-align: middle;
}

.table.table.analytic tr td {
    border: 1px solid #e7eaec;
    font-size: 1em;
    padding: 1em;
}

.table.analytic tr.first th:first-child {
    color: #fff;
    background: #34c6ce;
    border-top-left-radius: 20px;
}

.table.analytic tr.first th:last-child {
    color: #fff;
    background: #182955;
    border-top-right-radius: 20px;
}




body.mini-navbar .navbar-default {
    border-top-right-radius: 0;
}

body.mini-navbar .nav-header {
    padding: 0;
    background-color: #fff;
    border-top-right-radius: 0;
}



/* TABS */
.tabs-container .tabs-left > .nav-tabs > li > a {
    -webkit-border-radius: 30px 0 0 30px;
    -moz-border-radius: 30px 0 0 30px;
    border-radius: 30px 0 0 30px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #182955;
    font-weight: 700;
    font-size: 1.15em;
}

.nav-tops {
    width: 50%;
    text-align: center;
}

    .nav-tops .nav-link {
        color: #999999;
        background-color: #dedede;
        font-weight: 700;
        border-radius: 20px !important;
    }

.nav-tabs .nav-link {
    border: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


/* Bootstrap Selectpicker Drodpdown */
.bootstrap-select > .dropdown-toggle {
    width: 100%;
    padding-right: 25px;
    z-index: 1;
    border-radius: 8px;
}

    .bootstrap-select > .dropdown-toggle:focus,
    .bootstrap-select > .dropdown-toggle.focus {
        outline: none !important;
        outline-offset: 0 !important;
    }

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none;
    border-radius: 8px;
    border-color: rgb(194, 192, 192);
}

select.bs-select-hidden,
select.selectpicker {
    display: none !important;
}

.bootstrap-select {
    min-width: 100%;
}

    .bootstrap-select .btn {
        margin-top: 0;
        margin-bottom: 0;
    }

    .bootstrap-select > .dropdown-toggle {
        width: 100%;
        padding-right: 25px;
        z-index: 1;
    }

        .bootstrap-select > .dropdown-toggle:after {
            margin-left: -10px;
        }

    .bootstrap-select > select {
        position: absolute !important;
        bottom: 0;
        left: 50%;
        display: block !important;
        width: 0.5px !important;
        height: 100% !important;
        padding: 0 !important;
        opacity: 0 !important;
        border: none;
    }

        .bootstrap-select > select.mobile-device {
            top: 0;
            left: 0;
            display: block !important;
            width: 100% !important;
            z-index: 2;
        }

.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48;
}

.bootstrap-select.fit-width {
    width: auto !important;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none;
}

    .bootstrap-select.form-control:not([class*="col-"]) {
        width: 100%;
    }

.bootstrap-select.btn-block {
    width: 100%;
}

.bootstrap-select.form-control.input-group-btn {
    z-index: auto;
}

    .bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
    float: none;
    display: inline-block;
    margin-left: 0;
}

    .bootstrap-select.btn-group.dropdown-menu-right,
    .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
    .row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
        float: right;
    }

.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
    margin-bottom: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
    padding: 0;
}

    .form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
    .form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
        height: 100%;
        font-size: inherit;
        line-height: inherit;
        border-radius: inherit;
    }

.form-inline .bootstrap-select.btn-group .form-control {
    width: 100%;
}

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
    cursor: not-allowed;
}

    .bootstrap-select.btn-group.disabled:focus,
    .bootstrap-select.btn-group > .disabled:focus {
        outline: none !important;
    }

.bootstrap-select.btn-group.bs-container {
    position: absolute;
    height: 0 !important;
    padding: 0 !important;
}

    .bootstrap-select.btn-group.bs-container .dropdown-menu {
        z-index: 1060;
    }

.bootstrap-select .dropdown-menu:before {
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    vertical-align: middle;
    content: "";
    top: -5px;
    left: 10px;
    right: auto;
    color: #FFFFFF;
    border-bottom: .4em solid;
    border-right: .4em solid transparent;
    border-left: .4em solid transparent;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: left;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    display: inline-block;
}

.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
    width: 100%;
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 265px !important;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
    padding: .5rem 0;
    margin: .125rem 0 0;
}

    .bootstrap-select.btn-group .dropdown-menu.inner {
        position: static;
        float: none;
        border: 0;
        padding: 0;
        margin: 0;
        border-radius: 8px;
        display: block;
        max-height: 150px !important;
        overflow-y: scroll;
        -ms-overflow-style: auto;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .bootstrap-select.btn-group .dropdown-menu li {
        position: relative;
    }

        .bootstrap-select.btn-group .dropdown-menu li.active small {
            color: #fff;
        }

        .bootstrap-select.btn-group .dropdown-menu li.disabled a {
            cursor: not-allowed;
        }

        .bootstrap-select.btn-group .dropdown-menu li a {
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .bootstrap-select.btn-group .dropdown-menu li a.opt {
                position: relative;
                padding-left: 2.25em;
            }

            .bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
                display: none;
            }

            .bootstrap-select.btn-group .dropdown-menu li a span.text {
                display: inline-block;
            }

        .bootstrap-select.btn-group .dropdown-menu li small {
            padding-left: 0.5em;
        }

    .bootstrap-select.btn-group .dropdown-menu .notify {
        position: absolute;
        bottom: 5px;
        width: 96%;
        margin: 0 2%;
        min-height: 26px;
        padding: 3px 5px;
        background: #f5f5f5;
        border: 1px solid #e3e3e3;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
        pointer-events: none;
        opacity: 0.9;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
    position: static;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    margin-top: 5px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
    z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, 0.2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid rgba(204, 204, 204, 0.2);
    border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid white;
    border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
    display: block;
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
    padding: 4px 8px;
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .bs-actionsbox .btn-group button {
        width: 50%;
    }

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .bs-donebutton .btn-group button {
        width: 100%;
    }

.bs-searchbox + .bs-actionsbox {
    padding: 0 8px 4px;
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none;
}

.bootstrap-select .dropdown-menu.inner li a {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: block;
    outline: none;
    color: #292b2c;
}

.bootstrap-select .dropdown-menu.inner li.disabled a {
    color: rgba(182, 182, 182, 0.6);
}

    .bootstrap-select .dropdown-menu.inner li.disabled a:hover,
    .bootstrap-select .dropdown-menu.inner li.disabled a:focus {
        background-color: transparent;
    }

.bootstrap-select .dropdown-menu.open {
    overflow: visible !important;
}

.dropdown-menu > .active > a {
    color: #fff;
    text-decoration: none;
    background-color: transparent !important;
    outline: 0;
}

.adjust-float .bs-bars.float-left {
    float: right !important;
}




/* This style is only use for manual Sticky Scrollspy */
.scrollspy main > nav.section-nav {
    position: sticky;
    top: 5rem;
    align-self: start;
}
/** page layout **/
.scrollspy main {
    display: grid;
    grid-template-columns: 1fr 15em;
    max-width: 100em;
    width: 100%;
    margin: 0;
}

.scrollspy .daftarpekerjaan section {
    padding-bottom: 0;
}

.scrollspy .section-nav li.active > a {
    color: #182955;
    border-left: 4px solid #182955;
    padding-left: 10px;
    font-weight: 500;
}

.scrollspy .section-nav li {
    padding: 0 0 .85rem 0;
}

.scrollspy .section-nav {
    padding-left: 0;
    border-left: 1px solid #efefef;
}

    .scrollspy .section-nav a {
        text-decoration: none;
        display: block;
        font-size: .85em;
        color: #ccc;
        transition: all 50ms ease-in-out;
    }

        .scrollspy .section-nav a:hover,
        .scrollspy .section-nav a:focus {
            color: #666;
        }

    .scrollspy .section-nav ul,
    .scrollspy .section-nav ol {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .scrollspy .section-nav li {
        margin-left: 1rem;
    }


/* MEDIA QUERIES */
@media (max-width:768px) {
    .scrollspy main > nav.section-nav {
        display: none;
    }

    .scrollspy main {
        display: block;
        grid-template-columns: none;
        max-width: 100em;
        width: 100%;
        margin: 0;
    }
}

@media (max-width:500px) {
    .tabs-container .tabs-left > .nav-tabs, .tabs-container .tabs-right > .nav-tabs {
        width: 100%;
    }

        .tabs-container .tabs-left > .nav-tabs > .nav-link {
            text-align: center;
        }

    .tabs-container .tabs-left .panel-body {
        width: 100%;
        margin-left: 0;
        border: none;
        padding: 0;
    }

    .tabs-container .tabs-left .tab-pane .panel-body {
        border-top: none;
    }

    .tabs-container .tab-content {
        padding: 0;
    }

    .select2 .select2-container .select2-container--bootstrap4 {
        width: 400px !important;
    }

    .page-heading h2 {
        font-size: 2em;
    }

    .btn-primary.action.dekstop {
        display: none;
    }

    .btn-primary.action.mobile {
        display: inline-block;
    }

    .vendor-view .label-style.text-right {
        text-align: left !important;
    }

    .vendor-view .form-group .col-md-6 span {
        margin-left: 1.2em;
    }

    .tabs-container .tabs-left > .nav-tabs > li > a {
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
    }
}


.input-group-addon {
    background-color: #fff;
    border: 0;
    border-radius: 8px;
    color: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding: 9px 12px 4px 12px;
    text-align: center;
}



.file-drop-zone {
    min-height: auto;
}

.file-drop-zone-title {
    padding: 0;
    font-size: 1.25em;
}

.file-preview .fileinput-remove {
    top: 5px;
    right: 5px;
    line-height: 10px;
    color: #c41801;
}


.wizard > .steps > ul > li {
    width: auto;
}

.wizard > .content > .body {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
}

.wizard > .content {
    background: transparent;
    display: block;
    margin: 0;
    min-height: 120px;
    overflow: hidden;
    position: relative;
    width: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


.table tr td.action-button a {
    display: inline-block;
}

.inmodal .modal-header {
    padding: .2em 0;
    background: #182955;
    border-radius: 4px;
}

.inmodal .modal-title {
    background: #182955;
    color: #fff;
    font-size: 1.25em;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: left;
    padding: 0 0 0 20px;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -.25rem 0rem 0rem auto;
    color: #fff;
}

.inmodal .modal-body {
    background: transparent;
    padding: 10px 5px;
}


:root {
    --green: #96c03d;
    --active: #182955;
}

/* Wizard Stepping for Profile */
.wizard > .steps > ul > li {
    width: auto;
}

.wizard > .content > .body {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
}

.wizard > .content {
    background: transparent;
    display: block;
    margin: 0;
    min-height: 120px;
    overflow: hidden;
    position: relative;
    width: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.nav-tabs.wizard {
    background-color: transparent;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    border-radius: .25em;
    clear: both;
}

    .nav-tabs.wizard li > * {
        position: relative;
        padding: .4em 0 .4em 0;
        color: #999999;
        background-color: rgb(222, 222, 222, .45);
        border-color: #dedede;
    }

    .nav-tabs.wizard li.completed > * {
        color: #fff;
        background-color: var(--green);
        border-color: var(--green);
        border-bottom: none;
        font-size: 12px;
    }

    .nav-tabs.wizard li.active > * {
        color: #fff;
        background-color: var(--active);
        border-color: var(--active);
        border-bottom: none;
        font-size: 12px;
    }

.nav-tabs.nav-fill.wizard {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tabs.wizard li::after:last-child {
    border: none;
}

.nav-tabs.wizard > li > a {
    opacity: 1;
    font-size: 12px;
}

.nav-tabs.wizard .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    font-size: 12px;
}

.nav-tabs.wizard a:hover {
    color: #fff;
    background-color: var(--active);
    border-color: var(--active)
}

.nav-tabs.wizard .nav-link {
    border: none;
    border-radius: 4px;
    margin-right: .5rem;
}

@media(min-width:992px) {
    .nav-tabs.wizard li {
        position: relative;
        padding: 0;
        margin: 4px 0 4px 0;
        width: 10%;
        float: left;
    }
}

.right-align, .left-align {
    background: rgb(0,0,0,.03);
}

.input-daterange .input-group-addon.small {
    padding: 8px;
    margin-left: 0;
    margin-right: 0;
    font-weight: 700;
}

.administrator-information {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 5px;
}

    .administrator-information h4 {
        font-size: 11px;
        font-weight: 800;
        color: #000;
        margin: 0;
    }

    .administrator-information span {
        font-size: 11px;
        font-weight: 400;
        color: #6e7889;
        margin: 0 0;
    }

    .administrator-information .list-group li {
        font-size: 11px;
        font-weight: 400;
        color: #6e7889;
        padding: 4px 15px 4px 15px;
    }

        .administrator-information .list-group li div:first-child {
            width: 20%;
        }

        .administrator-information .list-group li div:last-child {
            width: 80%;
        }

.bootstrap-table #table.right-action th:last-child,
.bootstrap-table #table.right-action td:last-child,
.bootstrap-table .right-action th:last-child,
.bootstrap-table .right-action td:last-child {
    position: sticky;
    right: 0px;
    z-index: 9999;
}

.bootstrap-table #table.right-action td:last-child,
.bootstrap-table .right-action td:last-child,
.bootstrap-table #table.right-action th:last-child,
.bootstrap-table .right-action th:last-child {
    background-color: rgb(245, 250, 255)
    /* box-shadow: 0px -10px 30px rgba(0, 0, 0, .1); */
}

@media (max-width:767px) {
    .bootstrap-table #table.right-action th:last-child,
    .bootstrap-table #table.right-action td:last-child,
    .bootstrap-table .right-action th:last-child,
    .bootstrap-table .right-action td:last-child {
        position: unset;
    }
}

.form-group .text-right-responsive {
    text-align: right;
    padding-top: 6px;
}

@media (max-width:768px) {
    .form-group .text-right-responsive {
        text-align: left;
        padding-top: 0;
    }

    .selectpicker {
        width: 100%;
    }
}

.label-style {
    font-weight: 600;
    color: #000;
}

label.required:before {
    content: "*";
    font-weight: 800;
    color: #b41616;
    font-size: 14px;
    margin-right: 5px;
}

.toast {
    z-index: 10002;
}

.toast-header {
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    color: #000;
}

.toast.toast-bootstrap {
    background-color: #fff;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, .25);
}

    .toast.toast-bootstrap .toast-body {
        /* background-color: #fbfbfb; */
        font-size: .775rem;
    }

    .toast.toast-bootstrap.top-right {
        position: absolute;
        top: 50px;
        right: 20px;
    }

.bootstrap-table .bs-bars.float-left {
    width: 50%;
}

#paymentDate,
#paymentType,
#serviceType,
#status {
    display: none;
}

.bootstrap-table .fixed-table-toolbar .columns .dropdown-menu {
    z-index: 10000 !important;
}

.no-header .status.label {
    font-size: 12px;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #182955;
    border-color: #003d75;
}

.custom-switch.custom-switch-lg {
    padding-bottom: 1rem;
    padding-left: 2.25rem;
}

.custom-switch.custom-switch-lg .custom-control-label {
    padding-left: 0.75rem;
    padding-top: 0.15rem;
}

.custom-switch.custom-switch-lg .custom-control-label::before {
    border-radius: 1rem;
    height: 1.5rem;
    width: 2.5rem;
}

.custom-switch.custom-switch-lg .custom-control-label::after {
    border-radius: 0.65rem;
    height: calc(1.5rem - 4px);
    width: calc(1.5rem - 4px);
}

.custom-switch.custom-switch-lg {
    padding-bottom: 1rem;
    padding-left: 2.25rem;
}

.custom-switch.custom-switch-lg .custom-control-label {
    padding-left: 0.75rem;
    padding-top: 0.15rem;
}

.custom-switch.custom-switch-lg .custom-control-label::before {
    border-radius: 1rem;
    height: 1.5rem;
    width: 2.5rem;
}

.custom-switch.custom-switch-lg .custom-control-label::after {
    border-radius: 0.65rem;
    height: calc(1.5rem - 4px);
    width: calc(1.5rem - 4px);
}

.custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(1rem);
}

.custom-switch.custom-switch-xl {
    padding-bottom: 1rem;
    padding-left: 2.25rem;
}

.custom-switch.custom-switch-xl .custom-control-label {
    padding-left: 2rem;
    padding-top: 0.5rem;
}

.custom-switch.custom-switch-xl .custom-control-label::before {
    border-radius: 1rem;
    height: 2rem;
    width: 3.5rem;
}

.custom-switch.custom-switch-xl .custom-control-label::after {
    border-radius: 2rem;
    height: calc(2rem - 4px);
    width: calc(2rem - 4px);
}

.custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(1.5rem);
}

.custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(1rem);
}

.custom-switch.custom-switch-xl {
    padding-bottom: 1rem;
    padding-left: 2.25rem;
}

.custom-switch.custom-switch-xl .custom-control-label {
    padding-left: 2rem;
    padding-top: 0.5rem;
}

.custom-switch.custom-switch-xl .custom-control-label::before {
    border-radius: 1rem;
    height: 2rem;
    width: 3.5rem;
}

.custom-switch.custom-switch-xl .custom-control-label::after {
    border-radius: 2rem;
    height: calc(2rem - 4px);
    width: calc(2rem - 4px);
}

.custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(1.5rem);
}

/*sweet alert additional styles*/
.swal2-container {
    z-index: 2050 !important;
}

/*Color for bullet*/
.color-bullet {
    list-style: none;
}

    .color-bullet li::before {
        content: "\2022";
        color: #182955;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

/*Style for collapse manual*/
.row.collapse-manual .ibox {
    border-bottom: 0px !important;
    margin-bottom: 0px !important;
}

    .row.collapse-manual .ibox .ibox-content {
        margin-top: 10px;
    }

    .row.collapse-manual .ibox .ibox-content {
        padding-top: 25px;
        padding-bottom: 0px;
        border-top: 1px solid #e5e5e5;
        border-radius: 0px;
    }

    .row.collapse-manual .ibox .ibox-tools a {
        color: #676a6c !important;
        font-weight: 700;
    }

.float-e-margins .ibox-content.inside {
    box-shadow: none;
}

.row-deleted {
    color: #dc3545 !important;
    font-weight: 400
}

.row-updated {
    color: #ffc107 !important;
    font-weight: 400;
}

.row-added {
    color: #28a745 !important;
    font-weight: 400;
}

/* TEXT COLORS */
.text-navy {
    color: #1ab394 !important;
}

.text-primary {
    color: inherit !important;
}

.text-success {
    color: #1c84c6 !important;
}

.text-info {
    color: #182955 !important;
}

.text-warning {
    color: #f8ac59 !important;
}

.text-danger {
    color: #ed5565 !important;
}

.text-green {
    color: #2ad300 !important;
}

.text-muted {
    color: #888888 !important;
}

.text-white {
    color: #ffffff;
}

.text-black {
    color: #000;
}

.text-akhlak {
    color: #34c6ce;
}
/*//////////////*/


.bootstrap-table .bs-bars.float-left {
    width: 50%;
}

.bootstrap-select.dropdown .dropdown-toggle .filter-option-inner-inner {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: left;
}

.payment-filter #paymentDate,
.payment-filter #paymentType,
.payment-filter #serviceType,
.payment-filter #status {
    display: none;
}

.bootstrap-table #table.right-action td:last-child,
.bootstrap-table .right-action td:last-child,
.bootstrap-table #table.right-action th:last-child,
.bootstrap-table .right-action th:last-child {
    background-color: rgb(245, 250, 255)
    /* box-shadow: 0px -10px 30px rgba(0, 0, 0, .1); */
}

/* table with detailed form */
.table.right-action.paymentHistory .form-group.row {
    font-size: 11px;
    margin-bottom: 0;
    vertical-align: baseline;
    display: flex;
    align-items: baseline;
    height: 25px;
    /* border-bottom: 1px solid #ddd; */
}

    .table.right-action.paymentHistory .form-group.row .form-control-plaintext {
        padding: 0;
    }

    .table.right-action.paymentHistory .form-group.row .label-style {
        margin-bottom: 0;
        font-weight: 700;
    }

.table.right-action.paymentHistory td {
    vertical-align: baseline;
}
/* popover */
.popover {
    z-index: 10003;
}

    .popover .icon-warning span {
        font-size: 16px;
    }

    .popover p.wordingAlert {
        font-size: 12px;
        padding-top: 5px;
        margin-bottom: .5rem;
    }

@media (max-width:767px) {
    .bootstrap-table .bs-bars.float-left {
        width: 100%;
    }

    #toolbar .col-lg-4 {
        padding-bottom: .5rem;
    }
}

/* New Added Styling */
/* label status */
.status.label {
    background-color: #fff;
    color: #5e5e5e;
    border-width: 1px;
    border-style: solid;
    border-color: #5e5e5e;
    /* font-family: 'Redhat'; */
    font-weight: 700;
    padding: 3px 8px;
    text-shadow: none;
    border-radius: 0.25em;
    line-height: 1;
    white-space: nowrap;
}

.status.label-primary {
    background-color: rgb(0, 93, 181, .15);
    border-color: #182955;
    color: #182955;
}

.status.label-success {
    background-color: rgb(103, 165, 55, .15);
    border-color: #67a537;
    color: #67a537;
}

.status.label-warning {
    background-color: rgb(248, 172, 89, .15);
    border-color: rgb(248, 172, 89);
    color: #f8ac59;
}

.status.label-danger {
    background-color: rgb(221, 76, 69, .15);
    border-color: #DD4C45;
    color: #DD4C45;
}

.status.label-default {
    background-color: rgb(0, 0, 0, .15);
    border-color: #5e5e5e;
    color: #5e5e5e;
}

.status.label-info {
    background-color: #23c6c8;
    color: #FFFFFF;
}

/*Border radius*/
.br-10{
    border-radius:10px !important;
}

.btn-rounded.info {
    border-radius: 100%;
    line-height: 1px;
    padding: 1px 5px;
    font-size: 12px;
    opacity: .5;
}

/*Tooltips*/
.tooltip-inner {
    max-width: 250px;
    padding: .25rem .5rem;
    color: #000;
    text-align: left;
    background-color: #e2f5fa;
    box-shadow: 0px 0px 40px rgba(0,0,0,.1);
    border: .5px solid #005db5;
    border-radius: .25rem
}

.tooltip.show {
    opacity: 1;
}

.tooltip-inner p {
    margin-bottom: 0;
    font-size: 11px;
}

.tooltip-inner ol {
    padding-left: 1.5em;
}

    .tooltip-inner ol li {
        list-style-type: decimal;
        font-size: 12px;
    }

/*DOT STYLES*/
.dot {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
}

    .dot.dot-black {
        background-color: #000;
    }

    .dot.dot-green {
        background-color: #0edb51;
    }