:root {
    --bluePrimary: #005db5;
    --calmBlue: #ECF3F9;
    --white: #ffffff;
}

@font-face {
    font-family: 'Avenir-black';
    src: url(../fonts/AvenirLTPro-Black.otf);
    font-weight: bolder;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url(../fonts/AvenirLTPro-Medium.otf);
    font-weight: bolder;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir-light';
    src: url(../fonts/AvenirLTPro-Light.otf);
    font-weight: bolder;
    font-style: normal;
}

body {
    background: #fff;
}

.br-40 {
    border-radius: 40px;
}

/* login styling */
.loginscreen-body {
    background-image: url(../img/login-background.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;
}

/* BUTTON STYLING */
/* universal using */
.btn.btn-primary {
    background: #005db5 !important;
    border: none !important;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #003d75 !important;
}

.btn-primary.action.dekstop {
    display: inline-block;
}

.btn-primary.action.mobile {
    display: none;
}

/* if using input */
input[type="button"].btn.btn-primary {
    background: #005db5 !important;
    border: none !important;
}

input[type="button"].btn.btn-primary:hover,
input[type="button"].btn.btn-primary:focus {
    background: #003d75 !important;
}

/* if using anchor */
a.btn.btn-primary {
    background: #005db5 !important;
    border: none !important;
}

a.btn.btn-primary:hover,
a.btn.btn-primary:focus {
    background: #003d75 !important;
}

/* if using button */
button.btn.btn-primary {
    background: #005db5 !important;
    border: none !important;
}

button.btn.btn-primary:hover,
button.btn.btn-primary:focus {
    background: #003d75 !important;
}


h1.title-form {
    font-size: 1.4em;
    font-weight: 700;
    margin: 1em 0 1em 0;
    color: #005db5;
}

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-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-radius: 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: #005db5;
}

#wrapper {
    background: #Fff;
}

/* NAVBAR */
.navbar-default {
    background: none;
    background: linear-gradient(0deg, rgba(227, 242, 255, 1) 0%, rgba(2550, 255, 255, 1) 100%);
    border-top-right-radius: 0;
}

.navbar-default .nav>li.active {
    border-left: 6px solid #005db5;
    background: rgba(0, 93, 181, .075);
    transition: .3s;
}

.navbar-default .nav>li>a:hover {
    border-left: 6px solid #005db5;
    background: rgba(0, 93, 181, .075);
    transition: .3s;
    color: rgb(0, 0, 0);
}

.navbar-default .nav>li>a:focus {
    background: rgba(0, 93, 181, .15);
    transition: .3s;
    color: rgb(0, 0, 0);
}

.navbar-default .nav>li>a {
    color: rgb(0, 0, 0);
}

.navbar-default ul.nav-second-level {
    background: linear-gradient(0deg, rgba(227, 242, 255, 1) 0%, rgba(2550, 255, 255, 1) 100%);
}

.nav-header {
    padding: 33px 25px 10px 25px;
    background: linear-gradient(0deg, rgba(227, 242, 255, 1) 0%, rgba(2550, 255, 255, 1) 100%);
    background-image: none;
}

.nav-header .logo-element {
    display: inline-block !important;
    text-align: center;
    padding: 0;
}

.nav-header .logo-element img {
    max-width: 150px;
}

.mini-navbar .nav-header .logo-element img {
    max-width: 60px;
    padding: 10px;
}


/* TYPOGRAPHY */
.label-primary {
    background: #005db5;
    border-radius: 8px;
}

/* 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: #005db5;
    color: #005db5;
}

.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;
}

.page-heading h2 {
    font-size: 2.25em;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    margin-top: 10px;
}

.title-break {
    font-weight: 700;
    font-size: 2em;
    color: #005db5;
}

.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: #005db5;
}

.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: 0;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.08);
    padding: 10px 40px;
}

.ibox-title {
    background: #fbffff;
    color: inherit;
    margin-bottom: 0;
    padding: 15px 90px 10px 15px;
    min-height: 48px;
    position: relative;
}

.ibox-title h5 {
    font-size: 1.1em;
    font-weight: 700;
    color: #000;
}

.ibox-content h1.no-margins {
    font-size: 3em;
    font-weight: 700;
    color: #005db5;
}

#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: #005db5 !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: #005db5 !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: #005db5;
    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: #005db5;
    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%;
}

.dropdown-toggle::after {
    display: none;
}

.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: #005db5;
    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: #005db5;
    border-color: #005db5;
    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: #005db5;
    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 #005db5;
    color: #005db5;
    font-weight: 700;
}

.bootstrap-table .no-header>thead>tr>th {
    border-bottom: 1px solid transparent;

}

.bootstrap-table .fixed-table-container .no-header thead th .th-inner {
    padding: 0;
}

.bootstrap-table .table-bordered>tbody>tr>td {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
}

.bootstrap-table .table-bordered {
    border: none;
}


/* Dashboard Table Styling */
.table.kinerja {
    font-size: 1.1em;
}

.table.kinerja tr th:first-child {
    color: #fff;
    background: #005db5;
    border-top-left-radius: 20px;
}

.dashboard .table tr th {
    color: #fff;
    background: #005db5;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25);
}

.table.kinerja tr th:last-child {
    color: #fff;
    background: #005db5;
    border-top-right-radius: 20px;
}

.table.kinerja tr td {
    font-size: .875em;
    font-weight: 700;
    color: #005db5;
    padding: 20px 0 0 0;
}

.table.kinerja tr th {
    padding: 1em;
}

/* table top 10 */
.top-10-table {
    font-size: 1.1em;
}

.top-10-table tr th:first-child {
    color: #fff;
    background: #005db5;
    border-top-left-radius: 20px;
    vertical-align: middle;
}

.top-10-table tr th:last-child {
    color: #fff;
    background: #005db5;
    border-top-right-radius: 20px;
}

.top-10-table td:first-child {
    color: #005db5;
}

.top-10-table td:last-child {
    color: #333;
    font-weight: 700;
}

.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: #005db5;
    border-top-left-radius: 20px;
}

.table.analytic tr.first th:last-child {
    color: #fff;
    background: #005db5;
    border-top-right-radius: 20px;
}

body.mini-navbar .navbar-default {
    border-top-right-radius: 0;
}

body.mini-navbar .nav-header {
    padding: 0;
    background-color: #005db5;
    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: #005db5;
    font-weight: 700;
    font-size: 1.15em;
}

.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: #005db5;
    border-left: 4px solid #005db5;
    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,
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: #005db5;
    border-radius: 4px;
}

.inmodal .modal-title {
    background: #005db5;
    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: #005db5;
}

.nav-tabs.wizard {
    background-color: transparent;
    padding-bottom: 10px;
    width: 100%;
    margin: 0 auto;
    border-radius: .25em;
    clear: both;
    flex-wrap: nowrap;
    overflow: auto;
}

.nav-tabs.wizard li>* {
    position: relative;
    padding: .4em;
    color: #999999;
    background-color: #dedede;
    border-color: #dedede;
    text-align: center;
}

.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>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    border: none;
    box-shadow: inset 0px 0px 0px 1px #eaeaea;
}

.nav.nav-tabs li {
    margin: 3px;
    float: none;
    min-width: 120px;
}

/* #companyTabs.active,
  #legalTabs.active,
  #pajakTabs.active,
  #keuanganTabs.active,
  #sahamTabs.active,
  #pengurusTabs.active,
  #pengurusLNTabs.active,
  #pengalamanTabs.active,
  #cvkaryawanTabs.active,
  #fasilitasTabs.active{
    color: #fff;
    background-color: var(--active);
    border-color: var(--active);
    border-bottom: none;
    font-size: 12px;
    border-radius: 20px;
  }
  #companyTabs.completed,
  #legalTabs.completed,
  #pajakTabs.completed,
  #keuanganTabs.completed,
  #sahamTabs.completed,
  #pengurusTabs.completed,
  #pengurusLNTabs.completed,
  #pengalamanTabs.completed,
  #cvkaryawanTabs.completed,
  #fasilitasTabs.completed{
    color: #fff;
    background-color: var(--green);
    border-color: var(--green);
    border-bottom: none;
    font-size: 12px;
    border: none;
    border-radius: 20px;
  } */

.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: 20px;
}

@media(min-width:992px) {
    .nav-tabs.wizard li {
        position: relative;
        padding: 0;
        margin: 1px;
        min-width: 120px;
        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 10px;
    margin-left: 15px;
}

.administrator-information h4 {
    font-size: 11px;
    font-weight: 800;
    color: #565656;
    margin: 0;
}

.administrator-information span {
    font-size: 11px;
    font-weight: 400;
    color: #565656;
    margin: 0 0;
}

.administrator-information .list-group li {
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    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: 2000;
    background-color: #fff;
    min-width: 150px;
}

.bootstrap-table #table.right-action td:last-child,
.bootstrap-table .right-action td:last-child {
    background-color: #fff;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, .1);

}

.form-group .text-right-responsive {
    text-align: right;
    padding-top: 6px;
}

@media (max-width:991px) {
    .nav-tabs.wizard {
        overflow-x: auto;
    }
}

@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;
}

.mandatory::after {
    content: "(*)";
    font-weight: 800;
    color: #b41616;
    font-size: 14px;
    margin-left: 5px;
}

.custom-file-buttons {
    display: block;
    float: right;
}

.sweet-alert.informationSweetAlerts h2,
.sweet-alert.modifiedSweetAlerts h2 {
    font-size: 28px;
    margin-bottom: 0;
}

.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,
#status {
    display: none;
}

.bootstrap-table .fixed-table-toolbar .columns .dropdown-menu {
    z-index: 10000 !important;
}

.no-header .status.label {
    font-size: 12px;
}

.sticky-column {
    position: sticky;
    right: 0;
    background-color: white !important;
    text-align: center;
}

label.payment-card {
    border: 0;
    padding: 0;
    width: calc(100% - 10px);
}

label.payment-duration,
label.payment-card {
    width: 100%;
    transition: all .2s ease;
    padding: 0 20px 15px 20px;
    position: relative;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #00000010;
    text-align: center;
}

.abc-radio.payment input[type="radio"] {
    margin-right: 10px;
}

label.payment-card ul li {
    font-size: 11px;
}

#billing .membership-information h5 {
    font-size: 1.25rem;
    /* font-family: Avenir-black; */
    color: rgb(0, 0, 0);
}

#billing .membership-information h3 {
    color: rgb(0, 93, 181);
    font-size: 1.75rem;
}

#billing .membership-information h3 small {
    font-size: 60%;
    /* font-family: Avenir; */
    color: rgb(0, 0, 0);
}

#billing .membership-information small.opacity-50 {
    font-size: 85%;
}

.opacity-50 strong {
    opacity: 1;
    color: rgb(51, 51, 51);
    font-family: Avenir-black;
}

.opacity-50 del {
    opacity: 0.4;
    color: rgb(51, 51, 51);
    background: transparent;
}

.opacity-50 strong {
    opacity: 1;
    color: rgb(51, 51, 51);
    font-family: Avenir-black;
}

#billing .package-type {
    height: fit-content;
    padding: 90px 30px;
}

#billing .package-type {
    background: rgb(252, 253, 255);
}

#billing .floating-summary .ibox-content {
    box-shadow: none;
    padding-top: 30px;
    border-radius: 10px;
}

#billing .membership-information h3.floating-box-title {
    font-size: 1.25rem;
    color: rgb(0, 0, 0);
}

#billing .invoice-total>tbody>tr>td:last-child {
    width: 40%;
    border-bottom: none;
}

.invoice-total>tbody>tr>td:last-child {
    text-align: right;
    width: 15%;
    border-bottom: 1px solid rgb(221, 221, 221);
}

#billing .invoice-total>tbody>tr {
    border-bottom: 1px solid rgb(221, 221, 221);
}

#billing .invoice-total .total-billing {
    font-size: 1.25rem;
    color: rgb(0, 93, 181);
    font-family: Avenir-black;
}

.product-duration {
    font-size: 14px;
}

.product-prices {
    font-size: 18px;
    font-weight: 800;
    color: #005db5;
}

.abc-radio.iuran input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.abc-radio.payment input[type="radio"] {
    margin-right: 10px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

#billing #step-2 .floating-summary {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
}

#billing .invoice-total>tbody>tr:last-child {
    border-bottom: none;
}

#billing .summary-plan {
    border-radius: 10px;
    padding: 0px;
    margin: 20px;
}

input[type="radio"]:checked+label.payment-duration,
input[type="radio"]:checked+label.payment-card {
    box-shadow: 0 0 0 2px #96c03d;
}

.status-pembayaran .status {
    font-size: 18px;
    color: #000;
    margin: 10px 0;
}

.status-pembayaran>table {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

.status-pembayaran table td {
    padding-bottom: 0;
}

table tr th,
table tr td {
    padding: 6px 12px;
}

.alertdoc {
    margin: 0rem 0rem 0rem 4rem;
    padding: 0.4rem 0.5rem;
    border: 1px solid transparent;
    display: inline-block;
}

.table-title {
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #464646;
    color: #464646;
    padding-bottom: 5px;
}

.table-rekapan tbody tr td:first-of-type,
.table-gross-profit tbody tr td:first-of-type {
    font-weight: 700;
}

.table-rekapan tbody tr:last-of-type,
.table-gross-profit tbody tr:last-of-type {
    background-color: #e7eaec;
    padding-top: 10px;
}

.table-rekapan tbody tr:last-of-type td,
.table-gross-profit tbody tr:last-of-type td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.table-rekapan tbody tr:not(:last-of-type) {
    cursor: pointer;
}

/* inmodal ibox */
.inmodal .ibox {
    border: 1px solid #e5e6e7;
}

.inmodal .ibox-title {
    background-color: #005db5;
    color: white;
}

.inmodal .ibox-title h5 {
    color: white;
}

.inmodal .ibox-content {
    padding: 20px 20px 4px 20px;
    box-shadow: none;
}

a.form-control-plaintext {
    color: #007bff;
}



/* ------------------------------------------------- */
/* --Added by UI UX - Rahma | 07-11 Januari 2023 ----*/
/* ------------------------------------------------- */

/* E-commerce */
.product-box {
    padding: 0;
    border: 1px solid #e7eaec;
    border-radius: 8px;
}

.product-box:hover,
.product-box.active {
    border: 1px solid transparent;
    -webkit-box-shadow: 0 3px 7px 0 #a8a8a8;
    -moz-box-shadow: 0 3px 7px 0 #a8a8a8;
    box-shadow: 0 3px 7px 0 #a8a8a8;
}

.product-imitation {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 200px;
    overflow: hidden;
    padding: 0 0;
    background-color: #fff;
    color: #bebec3;
    font-weight: 600;
    border-radius: 20px;
}

.cart-product-imitation {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100px;
    width: 100px;
    background-color: transparent;
}

.cart-product-imitation img {
    width: auto;
    height: 100%;
    vertical-align: middle;
}

.product-imitation img {
    text-align: center;
    width: 80%;
}

.product-imitation.xl {
    padding: 120px 0;
}

.product-desc {
    padding: 20px;
    position: relative;
    height: 400px;
}

.ecommerce .tag-list {
    padding: 0;
}

.ecommerce .fa-star {
    color: #d1dade;
}

.ecommerce .fa-star.active {
    color: #f8ac59;
}

.ecommerce .note-editor {
    border: 1px solid #e7eaec;
}

table.shoping-cart-table {
    margin-bottom: 0;
}

table.shoping-cart-table tr td {
    border: none;
    text-align: right;
}

table.shoping-cart-table tr td.desc,
table.shoping-cart-table tr td:first-child {
    text-align: left;
}

table.shoping-cart-table tr td:last-child {
    width: 80px;
}

.product-name {
    color: var(--bluePrimary);
    display: block;
    margin: 2px 0 5px 0;
}

.product-price {
    color: #000
}

.product-price span.price {
    font-weight: 800;
}

.product-price span.uom {
    font-weight: 200;
}

.product-detail .ibox-content {
    padding: 30px 30px 50px 30px;
}

.image-imitation {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 250px;
    background-color: #fff;
    padding: 0 0;
}

.image-imitation img {
    text-align: center;
    width: 300px;
}

.product-main-price small {
    font-size: 10px;
}

.product-images {
    margin: 0 20px;
}



/* FULL HEIGHT */
.columns-right .caret {
    display: none;
}

.lightBoxGallery a {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
}

.lightBoxGallery a>img {
    width: 100%;
    height: auto;
    margin: 0;
}

.blueimp-gallery {
    background: rgba(0, 0, 0, .75);
}

.blueimp-gallery a:not([href]):not([tabindex]) {
    color: #fff;
}

.product-detail .fh-column,
.carts .fh-column,
.checkout .fh-column,
.full-height-layout .fh-column.vendor-profile {
    background: #fff;
    height: 100%;
    width: 100%;
}

.product-detail .fh-breadcrumb,
.carts .fh-breadcrumb,
.checkout .fh-breadcrumb {
    margin-top: 15px;
}

.product-detail .fh-column .row,
.carts .fh-column .row,
.checkout .fh-column .row {
    margin-left: 0;
    margin-right: 0;
}

.product-detail .carousel-item {
    height: 300px;
}

.product-detail .carousel-item>img {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
}

.product-detail .ibox-content {
    padding: 20px;
}

.product-detail .float-e-margins .btn {
    margin-bottom: 0;
}

.product-detail .float-e-margins .btn.btn-sm-block {
    margin-bottom: 10px;
}

.product-detail .invoice-total>tbody>tr>td,
.carts .invoice-total>tbody>tr>td {
    border-bottom: none;
    text-align: right;
}

.product-detail .invoice-total>tbody>tr>td.total-price {
    padding-top: 0;
}

.product-detail .ibox-content h4 {
    margin-top: 0;
}

.product-detail .courier-logo {
    width: 70px;
    height: auto;
    margin-bottom: 5%;
    border-radius: 0;
}

.product-detail-description .star-rating.highlight span {
    font-size: 20px;
}

.product-detail-description h1 {
    font-weight: 600;
}

.product-detail-description .rating-summary .total-rating {
    width: 20%;
}

.product-detail-description .rating-summary .rating-split {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 80%;
}

.product-detail-description .rating-summary .rating-split h5 {
    margin-top: 0;
    width: 20%;
}

.product-detail-description .rating-summary .rating-split .value {
    width: 20%;
    margin-left: 10px;
}

.product-detail-description .rating-summary .rating-split .star-rating {
    display: flex;
}

.product-detail-description .rating-summary .rating-split .progress {
    width: 50%;
    height: 8px;
}

@media (max-width:1024px) {
    .product-detail-description .rating-summary .total-rating {
        width: 40%;
    }

    .product-detail-description .rating-summary .rating-split {
        width: 70%;
    }

    .product-detail-description .rating-summary .rating-split h5 {
        margin-top: 0;
        width: 40%;
    }

    .product-detail-description .rating-summary .rating-split .progress {
        width: 30%;
    }
}

@media (max-width:500px) {
    .product-detail-description .rating-summary {
        flex-direction: column;
    }

    .product-detail-description .rating-summary .total-rating {
        width: 100%;
    }

    .product-detail-description .rating-summary .rating-split {
        width: 100%;
        margin: 20px;
    }

    .product-detail-description .rating-summary .rating-split h5 {
        margin-top: 0;
        width: 40%;
    }
}

@media (max-width:375px) {
    .product-detail-description .rating-summary .rating-split {
        margin: 10px;
    }

    .product-detail-description .rating-summary .rating-split h5 {
        margin-top: 0;
        width: 40%;
        font-size: 9px;
    }

    .product-detail-description .rating-summary .rating-split .star-rating {
        display: flex;
        align-items: center;
    }

    .product-detail-description .rating-summary .rating-split .progress {
        width: 30%;
        margin-top: 0;
    }

    .product-detail-description .rating-summary .rating-split .value {
        font-size: 10px;
    }
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23005db5' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel .carousel-control-next .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23005db5' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.carousel .carousel-indicators li {
    background-color: #005db5;
}


/* carts */
.pulsate-notif-cart::before {
    content: '';
    display: block;
    position: absolute;
    top: -4px;
    left: -4px;
    right: 0;
    bottom: 0;
    animation: pulse 1s ease infinite;
    border-radius: 50%;
    border: 7px double var(--green);
    padding: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    60% {
        transform: scale(1.3);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.carts .float-e-margins .btn {
    margin-bottom: 0;
}

.form-control.inde {
    text-align: center;
}

.carts .input-group.items-pick {
    width: 150px;
}

.carts .input-group.items-pick .input-group-addon,
.carts .input-group.items-pick .inde {
    height: unset;
}

.carts .input-group.items-pick .input-group-addon.minus {
    border-radius: 4px 0 0 4px;
    cursor: pointer;
}

.carts .input-group.items-pick .input-group-addon.plus {
    background: var(--navyPrimary);
    border-color: var(--navyPrimary);
    color: var(--white);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.carts dd {
    margin-bottom: 0;
}

.carts .cart-summary h2 {
    font-size: 14px;
}

.carts .row-flex {
    display: flex;
    flex-direction: row;
}

.carts .row-flex>td {
    width: 100%;
}

.carts table.shoping-cart-table tr.row-flex td:last-child {
    width: 100%;
}

.carts .shoping-cart-table .desc {
    display: flex;
}

.carts .shoping-cart-table .desc>div {
    display: flex;
    flex-direction: column;
}

.carts .shoping-cart-table .desc>div:first-child {
    width: 30%;
}

.carts .shoping-cart-table .desc>div:last-child {
    width: 70%;
    margin-left: 50px;
}

.carts .shoping-cart-table h4 {
    color: var(--black);
}

.carts table.shoping-cart-table tr td:last-child {
    /* width: auto; */
    text-align: right;
}


/* checkout */
.checkout .invoice-total>tbody>tr>td:last-child {
    border-bottom: none;
    text-align: right;
    width: 15%;
}

.checkout .invoice-total>tbody>tr>td:last-child .form-group.ppn {
    text-align: unset;
}

.checkout .invoice-total>tbody>tr>td:first-child {
    text-align: left;
    width: 40%;
}

.checkout .invoice-total>tbody>tr>td {
    padding: 2px 8px;
    color: var(--black)
}

.checkout .form-group.courier {
    width: 250px;
}

.checkout .form-group.address {
    width: 250px;
}

.checkout .form-group.ppn {
    width: 100px;
    text-align: left;
}

.checkout .form-group.courier .form-control {
    border-radius: 4px;
}

.checkout .summary-checkout .invoice-total>tbody>tr>td:first-child {
    text-align: left;
}

.checkout .summary .invoice-total>tbody>tr:last-child {
    border-bottom: none;
    border-top: 1px solid #ddd;
}

.checkout .summary-checkout .invoice-total>tbody>tr {
    text-align: left;
}

.checkout .summary-checkout .invoice-total>tbody>tr>td {
    padding: 4px 8px;
    font-size: 11px;
    width: 50%;
}

.checkout .row-flex {
    display: flex;
    flex-direction: row;
}

.checkout .row-flex>td {
    width: 100%;
}

.checkout table.shoping-cart-table tr.row-flex td:last-child {
    width: 100%;
}

.checkout .shoping-cart-table .desc {
    display: flex;
}

.checkout .shoping-cart-table .desc>div {
    display: flex;
    flex-direction: column;
}

.checkout .shoping-cart-table .desc>div:first-child {
    width: 30%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.checkout .shoping-cart-table .desc>div:last-child {
    width: 70%;
    margin-left: 50px;
}

.checkout .summary-checkout h2 {
    font-size: 14px;
}


/* Miscellanous Fix */
.nav-second-level li.active a {
    padding-left: 47px;
}

.product-detail .ibox-content,
.carts .ibox-content,
.checkout .ibox-content {
    box-shadow: none;
}

.product-detail .cart-summary .ibox-content,
.carts .cart-summary .ibox-content,
.checkout .summary-checkout .ibox-content {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
    border: none;
}

.checkout .summary-checkout .ibox-content {
    padding: 20px;
}

.carts .shopping-overview .ibox-title,
.checkout .shopping-overview .ibox-title {
    border-bottom: 1px solid #dddddd;
}

.carts .shopping-overview .ibox-content,
.checkout .shopping-overview .ibox-content {
    border-bottom: 1px solid #dddddd;
    border-radius: 0;
    padding: 20px;
}


/* chatting page */
.chatting .fh-breadcrumb {
    height: calc(100% - 188px);
}

.chatting .fh-column {
    background: #fff;
    height: 100%;
    width: 30%;
    float: left;
}

.chatting .list-group-item .avatar {
    width: 60%;
}

.chatting .chat-preview {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.chatting .nav-link {
    padding: 20px 10px;
}

.chatting .toolbar-message {
    display: none;
    position: sticky;
    width: 100%;
    bottom: 0;
}

.chatting .toolbar-profile {
    position: sticky;
    top: 2%;
    z-index: 1;
    background: #fff;
}

.chatting .btn-file {
    position: relative;
    overflow: hidden;
}

.chatting .btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    display: block;
}

.chatting .text-normal {
    opacity: .5;
    font-size: 12px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.chatting .chat-bubble {
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    background: #eee;
    margin: 10px 30px;
    border-radius: 4px;
    position: relative;
    animation: fadeIn .5s ease-in;
}

.chatting .timestamp {
    color: #565656
}

.chatting .chat-bubble.long-text {
    width: 70%;
}

.chatting .chat-bubble.short-text {
    width: 50%;
}

.chatting .chat-bubble.very-short-text {
    width: 40%;
}

.chatting .our-text .chat-bubble {
    box-shadow: 0px 0px 2px rgba(0, 0, 0, .15);
    background: rgb(36, 163, 242, .1);
    color: #000;
}

.chatting .chat-bubble.product {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
    color: #000;
}

.chatting .chat-bubble .description {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.chatting .chat-bubble.product .description h3 {
    font-size: 14px;
    margin-bottom: 0;
}

.chatting .chat-box-tray {
    display: flex;
    align-items: baseline;
    padding: 10px 8px;
    align-items: center;
    margin-top: 19px;
    background-color: rgb(239, 239, 239, .5);
    box-shadow: 0px -2px 5px rgba(0, 0, 0, .05);
    backdrop-filter: blur(20px);
}

.chatting .element-detail-box {
    padding: 25px 25px 0 25px;
}

.chatting .dummy-opening h3 {
    font-weight: normal;
    font-size: 18px;
}

@media (max-width:1024px) {
    .chatting .fh-column {
        background: #fff;
        height: 100%;
        width: 40%;
        float: left;
    }

    .chatting .our-text {
        float: right;
        margin-left: 20%;
    }

    .chatting .chat-bubble.long-text {
        width: 100%;
    }

    .chatting .chat-bubble.short-text {
        width: 70%;
    }

    .chatting .chat-bubble.very-short-text {
        width: 40%;
    }

    .chatting .text-right {
        text-align: left !important;
    }

    .chatting .toolbar-profile {
        position: sticky;
        top: 0;
        padding: 5px 0;
    }
}

@media (max-width:767px) {
    .chatting .fh-breadcrumb {
        height: calc(100% - 100px);
    }

    .chatting .element-detail-box {
        padding: 25px 25px 0 25px;
    }

    .chatting .fh-column {
        background: #fff;
        height: 100%;
        width: 100%;
    }

    .chatting .chat-bubble {
        margin: 10px 0;
    }

    .chatting .chat-bubble.product .col-xs-6 {
        width: 50%;
    }

    .chatting .text-right {
        text-align: left !important;
    }

    .chatting .cart-product-imitation {
        height: 100%;
    }

    .chatting .cart-product-imitation img {
        width: 50%;
        height: auto;
    }

    .fh-column-messages {
        display: none;
    }

    .chatting .our-text {
        float: right;
        margin-left: 0;
    }

    .chatting .chat-bubble.long-text {
        width: 80%;
    }

    .chatting .chat-bubble.short-text {
        width: 50%;
    }

    .chatting .chat-bubble.very-short-text {
        width: 40%;
    }

    .chatting .list-group-item .col-md-4 {
        width: 25%;
    }

    .chatting .list-group-item .col-md-6 {
        width: 58.33333%;
    }

    .chatting .list-group-item .col-md-2 {
        width: 16.666667%;
    }
}

.product-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.product-mini img {
    width: 100%;
}

.kurir-box {
    margin-bottom: 20px;
}

.kurir-logo {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 5px 1px #eaeaea;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    transition: all .2s ease;
    position: relative;
}

.kurir-logo p {
    font-weight: 600;
    font-size: 15px;
}

.kurir-logo::after {
    transition: all .2s ease;
    content: '\2713';
    text-align: center;
    color: white;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #5795CE;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 5px;
    opacity: 0;
}

.kurir-box input {
    display: none;
}

.kurir-box .kurir-logo img {
    max-width: 125px;
    width: 100%;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.kurir-box input:checked~.kurir-logo {
    box-shadow: 0 0 0px 3px #5795CE;
}

.kurir-box input:checked~.kurir-logo::after {
    content: '\2713';
    text-align: center;
    color: white;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #5795CE;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 5px;
    opacity: 1;
}

@media screen and (max-width:600px) {
    .kurir-logo p {
        font-weight: 600;
        font-size: 13px;
    }

    .kurir-logo {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .kurir-box .kurir-logo img {
        max-width: 125px;
        width: 85%;
    }
}

.w-350px{
    min-width: 350px;
}

.input-group>.form-control:not(:last-child){
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.input-group-text{
    border-radius: 8px;
    font-size:13px;
}

.navbar-default .nav>li>a{
    position: relative;
}
.arrow{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

