*,
ul {
    margin: 0;
    padding: 0;
}

a,
a:hover {
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #eaeff4;
}

table {
    font-size: 13px;
}

.page-header {
    background: #27374D;
    color: white;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-menu a {
    padding: 10px;
    color: white;
}

.logo-page {
    font-size: 22px;
    font-weight: 600;
}

.sidebar {
    width: 16%;
    height: 100vh;
    background: #27374D;
    overflow-y: scroll;
    position: relative;
    transition: .5s;
    left: 0;
}

.sidebar.hide {
    width: 0;
}

.sidebar::-webkit-scrollbar-track {
    display: none;
}

.sidebar::-webkit-scrollbar {
    display: none;
}


.logo-sidebar {
    padding: 16px 20px;
    background-color: #1c2737;
    margin-bottom: 15px;
}

.logo-sidebar h2 {
    color: white;
    font-size: 20px;
}

nav ul {
    list-style-type: none;
}

nav ul li a {
    padding: 10px 20px;
    display: block;
    color: #e2e1e1;
    transition: .5s;
    position: relative;
}

.arrow-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

nav ul li a:hover,
nav ul li a.active {
    color: #FFF;
    background: #ffffff1c;
}

nav ul li a i {
    display: inline-block;
    width: 30px;
}

.listbar {
    color: #ffffff4e;
    margin: 8px 0;
    font-size: 12px;
    letter-spacing: 3px;
    padding: 0 20px;
}

.contenbar {
    width: 90%;
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 30px;
    position: relative;
}

.contenbar.show {
    width: 100% !important;
}

.contentbar-top {
    padding: 10px 20px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.search {
    position: relative;
    width: 400px;
}

.search input {
    width: 100%;
    padding: 9px 20px;
    border: none;
    background: #e6ebf0;
    border-radius: 5px;
}

.search i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 18px;
    color: #27374D;
}

.right-menu {
    display: flex;
    list-style-type: none;
    align-items: center;
}

.right-menu a {
    display: block;
    padding: 5px;
    color: #1c2737;
    font-size: 19px;
    position: relative;
}

.right-menu li {
    position: relative;
}

.dropdown-menus {
    position: absolute;
    right: 0;
    top: 50px;
    background: #FFF;
    width: 400px;
    list-style-type: none;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    display: none;
}

.dropdown-menus li:last-child {
    border-bottom: none !important;
}

.dropdown-menus a {
    font-size: 14px;
    display: block;
    padding: 7px 15px;
}

.dropdown-menus a:hover {
    background: #e6e6e6;
    color: #000;
}

.activity-menus {
    background: #FFF;
    list-style-type: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.activity-menus li {
    padding: 20px;
    display: block;
}

.activity-menus li:last-child {
    border-bottom: none !important;
}

.activity-menus a {
    font-size: 14px;
    display: block;
    padding: 7px 15px;
}

.activity-menus a:hover {
    background: #e6e6e6;
    color: #000;
}

i.rounded-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.count {
    position: absolute;
    background-color: #26bd60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: white;
    height: 20px;
    border-radius: 50%;
    width: 20px;
    z-index: 9;
    top: -5px;
    right: -5px;
}

.contentbar-body {
    margin: auto;
    width: 97%;
}

.xbtn {
    padding: 6px 20px;
    border: none;
    border-radius: 5px;
    transition: .5s;
    display: inline-block;
}

.xbtn-sm {
    padding: 3px 8px;
    font-size: 11px;
}

.bg-blue {
    background: #3f4de4;
}

.xbtn-primary {
    background: #3f4de4;
    color: white;
    border: 1px solid #2330c7;
    margin-right: 5px;
}

.xbtn-danger {
    background: #fa156d;
    color: white;
    border: 1px solid #df0b5c;
    margin-right: 5px;
}

.xbtn-success {
    background: #4cd286;
    border: 1px solid #34b16a;
    color: white;
    margin-right: 5px;
}

.xbtn-warning {
    background: #fd9a18;
    border: 1px solid #dc8614;
    color: white;
    margin-right: 5px;
}

.xbtn-danger:hover {
    color: #FFF;
    background: #a50241;
}

.xbtn-primary:hover {
    color: #FFF;
    background: #4801ac;
}

.xbtn-success:hover {
    color: #FFF;
    background: #05845a;
}

.xbtn-warning:hover {
    color: #FFF;
    background: #c25004;
}

.xbtn-light {
    background: #FFF;
    color: #27374D;
    border: 1px solid #d3d3d3;
    margin-right: 5px;
}

.widget-content {
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #d3d3d3;
}

.widget-content ul {
    display: flex;
    list-style-type: none;
}

.widget-content ul li {
    margin-right: 40px;
    border-right: 1px dashed #ddd;
    flex: 1;
}

.widget-content ul li:last-child {
    border-right: none;
}

.default-table {
    width: 100%;
}

.default-table thead tr th {
    padding: 10px;
    color: #454d5bfc;
    background: #f1f3f6;
    font-weight: 500;
}

.default-table tbody tr td {
    padding: 12px;
}

.default-table tr:nth-child(even) {
    background-color: #e7ebf2;
}

.tabmenu {
    list-style-type: none;
    display: flex;
}

.tabmenu li a {
    display: block;
    padding: 10px;
    color: #27374D;
}

.tabmenu li.active {
    border-bottom: 1px solid #0014FF;
}

.tabmenu li.active a {
    color: #0014FF;
}

select.input-control {
    padding: 8.4px 10px;
}

.input-control {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #bcc7d2;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);
    transition: .5s;
}



.input-control[type="password"]:focus,
.input-control[type="number"]:focus,
.input-control[type="email"]:focus,
.input-control[type="text"]:focus {
    outline: none;
    border-color: #27374D85;
    background-color: #fff;
    box-shadow: 0 0 0 4px #27374D51;
}

.input-control:disabled {
    background: #f0f0f0;
}

.badge-custom {
    font-size: 11px;
    border-radius: 5px;
    display: inline-block;
    padding: 4px 10px;
    font-weight: 600;
}

.badge-blue {
    background: #509ef02b;
    color: #5a68ff;
    border: 1px solid #5a68ff;
}

.badge-green {
    background: #26e5950f;
    color: #0cb871;
    border: 1px solid #26bd60;
}

.badge-red {
    background: #b80c590f;
    color: #b80c59;
    border: 1px solid #b80c59;
}

.list-none {
    list-style-type: none;
}

.wizard {
    padding: 8px 0;
    background: #FFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.wizard ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: auto;
    width: 50%;
}

.wizard ul li a {
    display: block;
    padding: 10px;
    color: #7e8896;
    font-weight: 600;
    font-size: 16px;
}

.wizard-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #7e8896;
    border-radius: 50%;
    margin-right: 10px;
}

.wizard-number.active {
    background: #26bd60;
    border: 1px solid transparent;
    color: white;
}

i.xbtn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0012dc;
    color: white;
}

i.fa-question {
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #6b727b;
    color: #6b727b;
}

.img-hotel {
    height: 300px;
    object-fit: cover;
}

.spacebar {
    border-bottom: 1px dashed #1c273770;
    margin: 20px 0;
}

.produk li {
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    align-items: center;
    border-radius: 5px;
    margin: 10px 0;
    padding: 20px;
    background: #0ecf680f;
    border: 1px solid #0ecf68;
}

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

.metode {
    list-style-type: none;
}

.metode li input {
    display: none;
}

.metode li label {
    display: flex;
    border: 1px solid #a3b3c8;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.metode li label img {
    width: 80px;
    height: auto;
    margin-right: 20px;
}

.metode li input:checked+label {
    background: #0012dc24;
    border-color: #0012dc;
}


.warning-info {
    background: #63ff874e;
    padding: 15px;
    border-radius: 5px;
    font-size: 11px;
    border: 1px dashed #26bd60;
}

.loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000061;
    z-index: 9;
    display: none;
}

.loading>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    display: block;
    z-index: 99;
    font-size: 30px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
}

.btn-group-main {
    display: inline-flex;
    list-style-type: none;
    font-size: 12px;
    border-radius: 3px;
    border: 1px solid #aab5ba;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);

}

.btn-group-main a,
.btn-group-main button {
    color: #7b8b92;
    padding: 5px 10px;
    display: block;
    transition: .5s;
    border-right: 1px solid #aab5ba;
    border-top: none;
    border-left: none;
    border-bottom: none;
    background: none;
}

.btn-group-main li:last-child a {
    border-right: 1px solid transparent;
}

.btn-group-main li:last-child button {
    border-right: 1px solid transparent;
}

.btn-group-main a:hover,
.btn-group-main button:hover {
    background: #aab5ba3c;
}

.search-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(8, 8, 8, 0.801);
    display: none;
    align-items: center;
    justify-content: center;
}

.search-fixed.show {
    display: flex;
}

.search-fixed>div {
    width: 40%;
    position: relative;
    display: flex;
    background: #FFF;
    border-radius: 3px;
    overflow: hidden;
}

.search-fixed input {
    padding: 14px;
    width: 100%;
    border: none;
}

.search-fixed input:focus {
    border: none;
    outline: none;
}

.search-fixed button {
    padding: 14px 20px;
    border: none;
    background: #0014FF;
    color: white;
}

.widget-card {
    background: #FFF;
    border-radius: 3px;
    border: 1px solid #ced7dc;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    padding: 20px;
}

i.icon {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ebebeb;
    margin-right: 10px;
}

.list-task {
    position: relative;
    margin: 25px;
    list-style-type: none;
}

.list-task li {
    position: relative;
    padding: 0 25px;
    margin-bottom: 20px;
}

.list-task li::before {
    position: absolute;
    content: '';
    left: -8px;
    top: 0;
    height: 18px;
    width: 18px;
    background: #424fdd;
    border: 5px solid #ddd;
    border-radius: 50%;
}

.list-task::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    border-right: 1px dashed #9cbeff;
}

.logo h1 {
    font-weight: 700;
}

.upload-file {
    position: relative;
}

.upload-file label {
    border: 2px dashed #ddd;
    display: block;
    padding: 60px;
    text-align: center;
    border-radius: 4px;
    color: #656565;
}

.upload-file i {
    display: block;
    font-size: 30px;
    color: #0014FF;
}

.nonactive {
    position: relative;
}

.nonactive a.nonclick {
    color: #ffffff63;
}

.ck-editor__editable_inline {
    min-height: 200px;
}

.select2 {
    width: 100% !important;
}

.select2.select2-container .select2-selection {
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 37px;
    outline: none !important;
    transition: all .15s ease-in-out;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);

}

.select2.select2-container .select2-selection .select2-selection__rendered {
    color: #333;
    line-height: 35px;
    padding-right: 33px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
    background: #f8f8f8;
    border-left: 1px solid #ccc;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    height: 35px;
    width: 33px;
}

.tabmenu-content {
    display: none;
}

.listcheck {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin: 0;
    list-style-type: none;
}

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

.listcheck table input[type="checkbox"] {
    display: block;
}

.listcheck label {
    width: 100%;
    border: 1px solid #ddd;
    display: block;
    padding: 14px !important;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: .5s;
}

.listcheck label .checked {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    background-color: #FFF;
    border: 5px solid #c6c6c6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.listcheck input[type="checkbox"]:checked+label {
    border: 1px solid #0cb871;
    background: #56feb815;
}

.listcheck input[type="checkbox"]:checked+label .checked {
    border-color: #0cb871;
}

.list-subproduk ul {
    list-style-type: none;
}

.search-fixed .fa-times {
    color: white;
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.spacebar {
    border-bottom: 1px solid #ddd;
    padding: 10px 15px !important;
    font-weight: 600;
    margin: 0;
}

/* .listcheck input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #0012dc;
}

.listcheck label {
    color: #072e42;
    transition: .5s;
}

.listcheck input[type="checkbox"]:checked+label {
    font-weight: 600;
    color: #000;
} */
.aksi-drowdown {
    background: #fff;
    border-radius: 4px;
    position: absolute;
    text-align: left;
    list-style-type: none;
    top: 0;
    right: 0;
    width: 150px;
    display: none;
    z-index: 99;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.09);
}

.aksi-drowdown li {
    display: block;
    position: relative;
}

.aksi-drowdown li a {
    display: block;
    padding: 8px 14px;
    color: #6d6d6d;
}

.aksi-drowdown li a:hover {
    background: #27374D;
    color: white;
}

.aksi-drowdown li a i {
    width: 20px;
}

.scroll-content {
    max-height: 400px;
    overflow-y: scroll;
}

.scroll-content::-webkit-scrollbar {
    width: 5px;
}

.scroll-content::-webkit-scrollbar-track {
    border-radius: 10px;
}

.scroll-content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #2331c771;
}

.loading-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loader {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #14018673;
    box-sizing: border-box;
    animation: animloader 1s linear infinite alternate;
}

@keyframes animloader {
    0% {
        box-shadow: -38px -12px, -14px 0, 14px 0, 38px 0;
    }

    33% {
        box-shadow: -38px 0px, -14px -12px, 14px 0, 38px 0;
    }

    66% {
        box-shadow: -38px 0px, -14px 0, 14px -12px, 38px 0;
    }

    100% {
        box-shadow: -38px 0, -14px 0, 14px 0, 38px -12px;
    }
}

.project {
    position: relative;
    color: #7c7c7c;
    padding: 30px;
}

.project img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    border-radius: 50%;
}

.project-budget {
    position: relative;
    margin-bottom: 20px;
}

.project-budget li {
    display: flex;
    padding: 3px 0;
    justify-content: space-between;
}

.project-budget li>* {
    flex: 1;
    color: #000;
}

.p-top {
    position: absolute;
    right: 10px;
    top: 10px;
}


@media only screen and (max-width: 1200px) {
    .sidebar {
        width: 0;
    }

    .contenbar {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .listcheck {
        grid-template-columns: 1fr;
    }

    .search-fixed>div {
        width: 90% !important;
    }

    i.xbtn-circle {
        width: 35px;
        height: 33px;
    }

    .contenbar {
        width: 100%;
    }

    .search {
        position: relative;
        width: 100%;
    }

    .right-menu {
        display: none;
    }

    .xbtn {
        font-size: 12px;
    }

    .wizard ul {
        width: 100%;
    }

    .wizard ul li a {
        font-size: 11px !important;
    }

    .wizard-number {
        width: 25px;
        height: 25px;
    }

    .page-menu {
        display: none;
    }

    .logo-page {
        font-size: 16px;
    }

    .produk li {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .metode li label {
        align-items: start;
    }

    .metode li label img {
        width: 50px;
    }

    .sidebar {
        width: 60%;
        position: fixed;
        z-index: 9999;
        display: none;
    }

    .widget-content ul {
        display: block;
    }

    .widget-content ul li {
        border-right: none;
        border-bottom: 1px dashed #ddd;
        margin-right: 0;
        padding: 10px 0;
    }

    .widget-content ul li:last-child {
        border-bottom: none;
    }
}

.upload_file {
    display: block;
    border: 2px dashed #8a8a8a;
    text-align: center;
    padding: 60px 40px;
    border-radius: 5px;
    background: #ececec;
}

#pwd_strength_wrap {
    border: 1px solid #D5CEC8;
    display: none;
    float: left;
    padding: 10px;
    position: absolute;
    width: 320px;
    background: #FFF;
    border-radius: 5px;
}


#pswd_info ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
}


#pswd_info ul li.valid {
    background-position: left -42px;
    color: green;
}

#passwordStrength {
    display: block;
    height: 5px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.strength0 {
    background: none;
    /* too short */
    width: 0px;
}

.strength1 {
    background: none repeat scroll 0 0 #FF4545;
    /* weak */
    width: 25px;
}

.strength2 {
    background: none repeat scroll 0 0 #FFC824;
    /* good */
    width: 75px;
}

.strength3 {
    background: none repeat scroll 0 0 #6699CC;
    /* strong */
    width: 100px;
}

.strength4 {
    background: none repeat scroll 0 0 #008000;
    /* best */
    width: 150px;
}

.badge-xs {
    font-size: 10px;
    padding: 3px 10px;
}

.action {
    font-size: 11px;
    display: none;
}

.show-action:hover .action {
    display: block;
}

.swal2-title {
    font-size: 24px !important;
}

.dataTables_info,
.dataTables_paginate,
.dataTables_filter {
    padding: 10px;
}

.dataTables_info {
    float: left;
}

.dataTables_filter input {
    margin-top: 5px;
}

.img-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.right-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #0cb871;
}

.ds-buttons button:active {
    background: #aab5ba3c;
    border: none !important;
}

.dt-buttons button {
    color: #7b8b92;
    display: block;
    transition: .5s;
    border-right: 1px solid #aab5ba;
    border-top: none !important;
    border-left: none !important;
    border-bottom: none !important;
    background: none !important;
    padding: 5px 10px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    font-size: 13px !important;
}

.dt-buttons {
    display: inline-flex;
    list-style-type: none;
    font-size: 12px;
    border-radius: 3px;
    border: 1px solid #aab5ba;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);
    margin: 10px;
}

.buttons-pdf {
    border: none !important;
}

.form-hide {
    display: none;
}

.list-subproduk {
    display: none;
}