/* FONT */


/* local */

/*@font-face {*/
/*    font-family: Poppins-Regular;*/
/*    src: url("/fonts/poppins/Poppins-Regular.ttf");*/
/*}*/

/*@font-face {*/
/*    font-family: Poppins-Medium;*/
/*    src: url("/fonts/poppins/Poppins-Medium.ttf");*/
/*}*/

/*@font-face {*/
/*    font-family: Poppins-Bold;*/
/*    src: url("/fonts/poppins/Poppins-Bold.ttf");*/
/*}*/


/* web */

@import url("https://fonts.googleapis.com/css?family=Lato:400,700");

@font-face {
    font-family: Poppins-Regular;
    src: url("/backend/public/fonts/poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: Poppins-Medium;
    src: url("/backend/public/fonts/poppins/Poppins-Medium.ttf");
}

@font-face {
    font-family: Poppins-Bold;
    src: url("/backend/public/fonts/poppins/Poppins-Bold.ttf");
} 

.info {
    background: #1c98eb;
    border: 1px solid #1c98eb;
    box-shadow: 0px 2px 0px #0669aa;
}

.success {
    color: #3d3c3c;
    background: #21da84;
    border: 1px solid #21da84;
    box-shadow: 0px 2px 0px #228a41;
}

.warning {
    background: #fcdb21;
    border: 1px solid #fcdb21;
    box-shadow: 0px 2px 0px #bdb001;
    color: #3d3c3c;
}

.danger {
    background-color: rgb(247, 139, 148);
    color: rgb(253, 253, 253);
}

.button {
    margin: 2px 5px;
    padding: 10px;
    border-radius: 5px;
    height: 40px;
    cursor: pointer;
}

body {
    height: 100vh;
    background-repeat: no-repeat;
    /* background-image: url("/img/bg.jpg"); */
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    image-rendering: optimizeQuality;
}
.background {
    height:calc( 100vh - 140px);
    background-repeat: no-repeat;
    background-image: url("/profile/1653718683_Cenkirpal.jpg");
    /* background-image: url("/profile/1654759808_Cenkirpal.jpg"); */
    background-position: center left;
    background-attachment: fixed;
    background-size: cover;
    image-rendering: optimizeQuality;
    overflow: hidden;
}

#loading {
    position: fixed;
    display: none;
    top: 15px;
    left: 50vw;
    z-index: 101;
    font-size: 30px;
    color: #00c3ff;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.underscore{
    background-color: rgb(243, 199, 105);
    color: rgb(87, 86, 86);
}
/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Poppins-Regular;
}


/*---------------------------------------------*/

input {
    outline: none;
    border: none;
}


/*---------------------------------------------*/

button {
    outline: none !important;
    border: none;
    background: transparent;
}


/*---------------------------------------------*/

button:hover {
    cursor: pointer;
}

select {
    outline: none;
    padding: 8px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}

select option {
    padding: 10px;
}

input.alone {
    padding: 7px;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid rgb(97, 97, 97);
}

/* -------------------------------------------------------- Header --------------------------------------------------
/* -------------------------------------------------------- Header --------------------------------------------------
/* -------------------------------------------------------- Header -------------------------------------------------- */

.wrapper {
    padding: 0 20px;
}

.wrapper .wrapper-header {
    position: fixed;
    width: calc(100vw - 40px);
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 40px;
    justify-content: space-between;
    flex-direction: row;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 6px 4px -4px rgb(0, 0, 0, 10%);
    border-radius: 0 0 20px 20px;
    transition: 0.5s all;
    z-index: 100;
}

.wrapper .wrapper-header #menu-btn {
    display: none;
}

.wrapper .wrapper-header .logo {
    color: rgb(109, 108, 108);
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 20px;
}

.wrapper .wrapper-header .logo img {
    width: 50px;
    height: 100%;
    padding: 2px 10px 0 0;
}

.wrapper .wrapper-header .header-menu {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.wrapper .wrapper-header .header-menu .menu {
    position: relative;
    padding: 0 50px 0 2px;
    cursor: pointer;
}

.wrapper .wrapper-header .header-menu .menu i {
    display: none;
}

.wrapper .wrapper-header .logo a,
.wrapper .wrapper-header .menu a {
    color: rgb(109, 108, 108);
}

.wrapper .wrapper-header .menu .sub-menu {
    display: none;
    padding: 10px;
    position: absolute;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    top: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgb(0, 0, 0, 10%);
    transition: 0.5s background, opacity, color;
    width: max-content;
}

.wrapper .wrapper-header .menu .sub-menu.show {
    display: flex;
}

.wrapper .wrapper-header .menu .sub-menu a {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
}

.wrapper .wrapper-header .menu .sub-menu a:hover {
    background-color: #eee;
    color: rgba(0, 0, 0, 0.685);
}

.wrapper .wrapper-header .menu .sub-menu .profile {
    display: flex;
    flex-direction: column;
}

.wrapper .wrapper-header .menu .sub-menu .profile img {
    margin: 5px 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}


/* ----------------------------------------------------- container --------------------------------------------------
-------------------------------------------------------- container --------------------------------------------------
-------------------------------------------------------- container -------------------------------------------------- */

.wrapper .main-container {
    position: relative;
    right: 0;
    top: 70px;
    min-height: calc(100vh - 70px);
    padding: 15px 0;
    transition: 0.3s;
    z-index: 1;
    padding-bottom: 50px;
}

.footer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 40px;
    bottom: 0;
    box-shadow: 0px -2px 4px #eee;
}


/* Scroll */

::-webkit-scrollbar {
    background-color: #22242a;
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #52c1f5;
}


/* ---------------- Tilte ----------------- */

.title {
    /* width: 100%; */
    font-size: 16pt;
    font-weight: 900;
    text-align: center;
    padding: 15px;
}

.center {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* ----------------------------------------------------- Form Data -------------------------------------------------- 
-------------------------------------------------------- Form Data -------------------------------------------------- 
-------------------------------------------------------- Form Data -------------------------------------------------- */


/*//////////////////////////////////////////////////////////////////
[ Form Data ]*/

.form-data {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}


/*------------------------------------------------------------------
[  ]*/

.form-content {
    background: #fff;
    width: 790px;
    border-radius: 10px;
    padding: 72px 55px 90px 55px;
}

.form-title {
    display: block;
    font-family: Poppins-Bold;
    font-size: 39px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 50px;
}

.form-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
}

.input {
    display: block;
    width: 100%;
    margin-left: 10px;
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
}

.form-input input[type=file] {
    display: none;
}

.form-input label#choosed::after {
    position: absolute;
    content: '\f2c1';
    top: -20px;
    right: 20px;
    font-size: xx-large;
    color: #353434;
    padding: 5px;
    font-family: FontAwesome;
}

.focus {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 10px;
    pointer-events: none;
}

.focus::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: -10px;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background: rgba(219, 21, 99, 1);
    background: -webkit-linear-gradient(45deg, #d5007d, #e53935);
    background: -o-linear-gradient(45deg, #d5007d, #e53935);
    background: -moz-linear-gradient(45deg, #d5007d, #e53935);
    background: linear-gradient(45deg, #d5007d, #e53935);
}

.focus::after {
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #999999;
    line-height: 1.2;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}


/*---------------------------------------------*/

input.input {
    height: 45px;
}

input.input+.focus::after {
    top: 16px;
    left: 0;
}

.focus::after {
    top: 16px;
    left: 0;
}

.input:focus+.focus::after {
    top: -13px;
}

.input:focus+.focus::before {
    width: 100%;
}

.has-val.input+.focus::after {
    top: -13px;
}

.has-val.input+.focus::before {
    width: 100%;
}

.password::after {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: x-large;
    content: '\f06e';
    font-family: FontAwesome;
    color: #c4c3c3;
    cursor: pointer;
}


/*------------------------------------------------------------------
[ Remember ]*/

.remember-icon {
    left: 0;
    bottom: 15px;
    color: #000000;
    font-size: 25px;
    position: absolute;
}

.remember-icon.fa-check-circle {
    color: #55d2f1;
}

.remember-me {
    position: relative;
    width: 170px;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.remember-me input[type="checkbox"] {
    display: none;
}


/*------------------------------------------------------------------
[ Button ]*/

.btn-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 13px;
}

.form-btn {
    background: rgb(84, 207, 131);
    width: 244px;
    height: 50px;
}


/*//////////////////////////////////////////////////////////////////
[ Form BA ]*/

.form-data.ba .form-content {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 72px 55px 0 55px;
}

.form-data.ba .form-content .form-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.form-data.ba .form-content .form-input.adv {
    width: 100px;
}

.form-data.ba .form-content .form-input .input,
.form-data.ba .form-content .btn-div {
    padding: 0;
}

.form-data.ba .form-content .btn-div .form-btn {
    height: 45px;
}


/* Sidang Tahun Lama */

.tahun-lama {
    width: 20px;
    height: 45px;
    background: #000;
}

.tahun-lama input {
    display: none;
}

.tahun-lama label {
    cursor: pointer;
}

.tahun-lama label::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 45px;
    background: rgb(84, 207, 131);
}

.tahun-lama .checked::after {
    background: #00c3ff;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: white;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}


/* ----------------------------------------------- Select Options -----------------------------------------------
-------------------------------------------------- Select Options -----------------------------------------------
-------------------------------------------------- Select Options ----------------------------------------------- */

.select-opt {
    position: relative;
    width: 100px;
    height: 100%;
    background-color: rgb(84, 207, 131);
    display: flex;
}

.select-opt select {
    background-color: transparent;
    color: transparent;
    border: none;
}

.select-opt .selected {
    display: flex;
    align-items: center;
    padding-left: 10px;
    width: 100%;
    height: 100%;
    border-bottom: 2px solid rgb(0, 121, 219);
    font-family: Poppins-Regular;
    font-size: 15px;
    font-style: bold;
    cursor: pointer;
}

.arrow {
    position: absolute;
}

.select-opt .options {
    position: absolute;
    font-size: 12px;
    top: 100%;
    width: 100%;
    left: 0;
    opacity: 1;
    visibility: visible;
    transition: visibility 0s linear 0s, opacity 300ms;
}

.select-opt .options.hide {
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 300ms, opacity 300ms;
}

.select-opt .options .option {
    background-color: #00c3ff;
    padding: 5px;
    cursor: pointer;
    transition: 0.2s background-color;
}

.select-opt .options .option:hover {
    background-color: #038bb4;
}


/* ----------------------------------------------- // Select Options ----------------------------------------------- */


/* ----------------------------------------------------- Alert --------------------------------------------------
-------------------------------------------------------- Alert --------------------------------------------------
-------------------------------------------------------- Alert -------------------------------------------------- */

.alert {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
    opacity: 1;
    transition: 1s opacity, display;
}

.alert span {
    padding: 20px 20px;
    width: 600px;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    font-size: 12px;
}

.alert.success span {
    background-color: rgba(227, 253, 235, 1);
    border-color: rgba(38, 179, 3, 1);
    color: rgba(60, 118, 61, 1);
}

.alert.warning span {
    background-color: rgba(252, 248, 227, 1);
    border-color: rgba(177, 161, 129, 1);
    color: rgba(138, 109, 59, 1);
}

.alert.danger span {
    background-color: rgba(248, 215, 218, 1);
    border-color: rgba(220, 53, 69, 1);
    color: rgba(114, 28, 36, 1);
}


/* =====================================
[ Alert Display ]
*/

#alertDisplay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #03030348;
    display: flex;
    justify-content: center;
    opacity: 1;
    transition: 0.5s opacity;
    z-index: 999;
}

#alertDisplay .display {
    position: relative;
    top: 50px;
    /* width: 500px; */
    width: fit-content;
    height: fit-content;
    max-height: 80vh;
    max-width: 80vw;
    padding: 20px 50px;
    background-color: #ffffff;
    border-radius: 10px;
    color: #2e2e2e;
    display: block;
    opacity: 1;
    box-shadow: 0 2px 4px rgb(150, 149, 149);
    transition: 0.5s opacity;
    overflow: auto;
}

#alertDisplay .display .table-wrapper {
    width: fit-content;
}
#alertDisplay .display .search-container {
    display: flex;
    justify-content: center;
}

#alertDisplay .display .search-container input {
    border-bottom: 1px solid rgb(88, 216, 255);
}


/* ===============================         NEW          ==================================*/

#alertDisplay .display .action {
    width: 100%;
    display: inline-flex;
}

#alertDisplay .display .setting {
    width: 100%;
    line-height: 50px;
    display: inline-flex;
}

#alertDisplay .display .setting input {
    padding: 15px;
    font-size: medium;
    width: 100%;
}

#alertDisplay .display .title {
    width: 100%;
    text-align: center;
    font-size: 18px;
}

#alertDisplay .display form {
    position: relative;
    display: flex;
    flex-direction: column;
}

#alertDisplay .display form input {
    font-size: larger;
}

#alertDisplay .display form .input {
    padding: 5px 15px;
    margin-left: 50px;
}

#alertDisplay .display form .input::after {
    position: absolute;
    display: block;
    font-size: larger;
    padding: 5px 15px;
    transform: translate(-100px, -35px);
    content: attr(data-content);
    color: #036c8c;
    text-transform: capitalize;
}

#alertDisplay .display form select,
#alertDisplay .display form .input input {
    width: 100%;
    padding: 5px 15px;
    border-bottom: 1px solid #4ccee8;
}

#alertDisplay .display form button {
    margin-top: 10px;
}

#alertDisplay button {
    padding: 10px 20px;
    background-color: #4ccee8;
    font-weight: 800;
}

#alertDisplay button.active {
    background-color: #5ceb97;
    border-bottom: 4px solid #137007;
}


/* ===============================     //  NEW          ==================================*/

#notification {
    position: fixed;
    top: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 99;
}

#notification span {
    position: relative;
    display: block;
    padding: 20px;
    border-radius: 5px;
    margin: 5px;
    font-weight: 400;
    opacity: 1;
    transition: 3.5s all;
}

#notification span.danger {
    background-color: rgb(247, 139, 148);
    color: rgb(87, 86, 86);
}

#notification span.success {
    background-color: rgb(58, 245, 167);
    color: rgb(87, 86, 86);
}

#notification span.warning {
    background-color: rgb(243, 199, 105);
    color: rgb(87, 86, 86);
}

#notification span.info {
    background: #49b5fd;
    color: rgb(75, 74, 74);
}

#notification span.closeBtn {
    position: absolute;
    content: 'X';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: x-large;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #eee;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-shadow: 0 2px 2px rgb(97, 97, 97);
}

#notification span.closeBtn:hover {
    background-color: #eee;
    color: black;
}


/* -------------------------------------------------------- // Alert -------------------------------------------------- */


/*------------------------------------------------------ Profile --------------------------------------------------
-------------------------------------------------------- Profile --------------------------------------------------
-------------------------------------------------------- Profile -------------------------------------------------- */

.my-profile {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 10px;
    margin-left: 50px;
    transition: 0.5s all;
}


/* Image Profile */

.my-profile .img-profile {
    position: relative;
    transition: 0.5s all;
}

.my-profile .img-profile img {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    border: 2px solid rgb(94, 204, 255);
    transition: 0.5s all;
}


/* Upload Profile */

.my-profile .img-profile label {
    position: absolute;
    left: 20px;
    bottom: 10px;
    font-size: 50px;
    transition: 0.5s color;
    cursor: pointer;
    text-shadow: 0 2px 2px #eee;
    transition: 0.5s all;
}

.my-profile .img-profile input {
    display: none;
}

.my-profile .img-profile label:hover {
    color: rgb(94, 204, 255);
}


/* Detail Profile */

.my-profile .profile-detail {
    /* width: 100%; */
    width: max-content;
    padding: 10px;
    margin-left: 50px;
    transition: 0.5s all;
}

.my-profile .profile-detail h3 {
    font-size: 30px;
    margin-left: 40px;
    font-family: Poppins-Regular;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 10px;
}


/* Data Profile */

.my-profile .profile-detail .data {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.my-profile .profile-detail .data .profile-info {
    display: flex;
    flex-direction: column;
}

.my-profile .profile-detail .data .profile-info span {
    padding: 15px 0;
    position: relative;
    font-size: 25px;
    font-weight: 400;
    margin-left: 50px;
}

.my-profile .profile-detail .data .profile-info span::before {
    content: "";
    bottom: 0;
    position: absolute;
    display: block;
    left: -50px;
    width: calc(100% + 50px);
    height: 2px;
    background: #60d8eb;
    z-index: -1;
}

.my-profile .profile-detail .data .profile-info span i {
    position: absolute;
    left: -40px;
}


/* Action Change Profile */

.my-profile .profile-detail .data .action {
    position: absolute;
    flex-direction: column;
    display: flex;
    justify-content: center;
    bottom: 0;
    width: 400px;
}

.my-profile .profile-detail .data .action span {
    padding: 15px;
    position: relative;
    font-size: 25px;
    font-weight: 400;
    margin-left: 50px;
}

.my-profile .profile-detail .data .action span a {
    color: black;
    transition: 0.5s color;
}

.my-profile .profile-detail .data .action span a:hover {
    color: #60e4f8;
}

.my-profile .profile-detail .data .action span i {
    position: absolute;
    left: -40px;
}


/* _________________________
[ Role ] 
*/

#role::after {
    position: absolute;
    display: block;
    padding: 5px;
    width: fit-content;
    height: fit-content;
    color: black;
    border-radius: 10px;
    transform: translateY(-100%);
}

#role.super::after {
    background-color: #00c3ff;
    content: "Super Admin";
}

#role.user::after {
    content: "User";
    background-color: #ffe600;
}

#role.admin::after {
    content: "Admin";
    background-color: #42f0a7;
}


/* ------------------------------------------------------ / Profile ------------------------------------------------- */


/* ----------------------------------------------------- TABLE --------------------------------------------------
-------------------------------------------------------- TABLE --------------------------------------------------
-------------------------------------------------------- TABLE -------------------------------------------------- */

.table-wrapper {
    position: relative;
    flex-grow: 1;
    width: 100%;
    margin: 50px 0 0 0;
}

.table-wrapper #totalData {
    padding: 10px;
}

.table-wrapper table {
    position: relative;
    width: 100%;
    border-collapse: collapse;
}

.table-wrapper table th {
    position: sticky;
    top: 70px;
    background-color: #666d74;
    /* background-color: #eee; */
    padding: 25px 0;
    color: rgb(190, 190, 190);
    width: fit-content;
    z-index: 1;
}

.table-wrapper table tbody tr {
    position: relative;
}

.table-wrapper table td {
    text-align: center;
    padding: 10px;
    line-height: 2.5em;
    width: fit-content;
}

.table-wrapper table tr:nth-child(odd) {
    background-color: #45adf3;
}

.table-wrapper table tr:nth-child(even) {
    background-color: #3498db;
}

table.selective tbody tr {
    transition: 0.3s;
}

table.selective tbody tr:hover {
    background: #85eba3 !important;
    transition: 0.5s;
}

.taaruf tbody tr {
    cursor: pointer;
}

tr.rekening::after {
    position: absolute;
    display: block;
    content: attr(data-content);
    font-size: 8pt;
    font-weight: bold;
    background-color: rgb(84, 207, 131);
    border-radius: 5px;
    padding: 5px 10px;
    left: 0;
    bottom: 0;
}

tr.diambil::after {
    position: absolute;
    display: block;
    content: attr(data-input);
    font-size: 8pt;
    font-weight: bold;
    background-color: rgb(250, 141, 141);
    border-radius: 5px;
    padding: 5px 10px;
    left: 0;
    bottom: 0;
}

tr.rekening.diambil::after {
    position: absolute;
    display: block;
    content: attr(data-content) ' - ' attr(data-input);
    font-size: 8pt;
    font-weight: bold;
    background-color: rgb(250, 141, 141);
    border-radius: 5px;
    padding: 5px 10px;
    left: 0;
    bottom: 0;
}

.fisik {
    position: absolute;
    display: block;
    content: attr(data-fisik);
    font-size: 8pt;
    font-weight: bold;
    background-color: rgb(141, 250, 186);
    border-radius: 5px;
    padding: 5px 10px;
    right: 10px;
    bottom: 0;
}

div.jam {
    position: absolute;
    display: block;
    font-size: 8pt;
    font-weight: bold;
    background-color: rgb(250, 141, 141);
    border-radius: 5px;
    padding: 5px 10px;
    width: fit-content;
    height: fit-content;
    left: 0;
    bottom: 25px;
}


/* ----------------------------------------------------  // TABLE -------------------------------------------------- */


/* ---------------------------------------------------- BUTTON --------------------------------------------------
------------------------------------------------------- BUTTON --------------------------------------------------
------------------------------------------------------- BUTTON -------------------------------------------------- */


/* button */

.btn {
    position: relative;
    padding: 5px;
    margin: 2px;
    min-width: 40px;
    font-size: 14px;
    text-align: center;
    color: #fff;
}


/* Styling the Button */

.btn {
    -webkit-transition: margin-top 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: margin-top 0.3s ease, box-shadow 0.3s ease;
    transition: margin-top 0.3s ease, box-shadow 0.3s ease;
    background: #ef3f5a;
    border: 1px solid #ef3f5a;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0px 4px 0px #9b182b;
}


/* When the button is clicked */

.btn:active {
    -webkit-transition: margin-top 0.2s ease, box-shadow 0.2s ease;
    -moz-transition: margin-top 0.2s ease, box-shadow 0.2s ease;
    transition: margin-top 0.2s ease, box-shadow 0.2s ease;
    margin-top: 9px;
}

.btn.info {
    background: #1c98eb;
    border: 1px solid #1c98eb;
    box-shadow: 0px 4px 0px #0669aa;
}

.btn.success {
    color: #3d3c3c;
    background: #21da84;
    border: 1px solid #21da84;
    box-shadow: 0px 4px 0px #228a41;
}

.btn.warning {
    background: #fcdb21;
    border: 1px solid #fcdb21;
    box-shadow: 0px 4px 0px #bdb001;
    color: #3d3c3c;
}


/* ----------------------------------------------------  // BUTTON -------------------------------------------------- */


/* ----------------------- User Menu ---------------------------
-------------------------- User Menu ---------------------------
-------------------------- User Menu --------------------------- */

#super-admin {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    opacity: 0;
    transition: 1s;
    transition-property: opacity background-color;
    z-index: 15;
}

#user-menu {
    position: fixed;
    left: 250px;
    top: 70px;
    width: calc(100% - 250px);
    height: calc(100% - 50px);
    display: block;
    backdrop-filter: blur(2px);
    padding: 50px;
    z-index: 99;
}

#user-menu .user-menu {
    position: relative;
    padding: 50px;
    background-color: rgb(68, 67, 67);
    border: 5px solid rgb(80, 206, 245);
    border-radius: 10px;
    z-index: 9999;
    height: calc(100% - 20px);
    overflow: auto;
    display: flex;
    flex-direction: column;
    transition: 1s opacity background-color;
}

#user-menu .user-menu .title-menu {
    position: relative;
    display: block;
    width: 100%;
    color: rgb(62, 63, 63);
    background-color: rgb(80, 206, 245);
    border-radius: 0 0 100px 100px;
    font-size: 2em;
    padding: 20px;
    text-align: center;
}

#user-menu .user-menu .title-menu::before {
    position: absolute;
    top: 50%;
    display: flex;
    content: "";
    width: 100%;
    height: 2px;
    transform: translate(-15%);
}

#user-menu .user-menu .grid {
    position: relative;
    display: block;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

#user-menu .user-menu .grid .menu {
    position: relative;
    max-height: 300px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px 0;
    cursor: pointer;
    transition: 0.5s background-color;
}

#user-menu .user-menu .grid .menu:hover {
    background-color: rgb(100, 196, 240);
}

#user-menu .user-menu .grid .menu h3 {
    color: rgb(100, 196, 240);
    padding: 10px;
    font-weight: 500;
    font-size: 20pt;
}

#user-menu .user-menu .grid .menu:hover h3 {
    color: rgb(7, 7, 7);
}

#user-menu .user-menu .grid .menu span {
    position: relative;
    width: 90%;
    /* height: 100px; */
    margin: 10px 50px;
    display: flex;
    justify-content: center;
    border-top: 2px solid rgb(163, 243, 160);
}

#user-menu .user-menu .grid .menu span::after {
    content: "";
    display: block;
    width: 2px;
    height: 20px;
    background-color: rgb(163, 243, 160);
}


/* ---------------------------------------
                      Card                    
------------------------------------------ */

.card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.card-view {
    position: relative;
    margin: 20px;
    width: 300px;
    height: 350px;
    display: block;
    text-align: center;
    font-size: 14pt;
    box-shadow: 0 4px 8px 0 rgba(219, 243, 214, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card-view::before {
    top: 0;
    position: absolute;
    content: "";
    display: block;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 100%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.card-view:nth-child(even)::before {
    background-color: rgb(70, 182, 247, 0.5);
}

.card-view:nth-child(odd)::before {
    background-color: rgba(91, 219, 129, 0.5);
}

.card-view h3 {
    padding: 18px;
    margin: 25px 10px 70px 10px;
    color: rgb(10, 10, 10);
}

.card-view a {
    position: absolute;
    bottom: 10px;
    padding: 10px;
    width: 100px;
    transform: translate(-50%);
    border-radius: 10px;
    color: rgb(255, 255, 255);
    background-color: #3a3839;
    cursor: pointer;
    transition: 0.5s;
    transition-property: background-color;
}

.card-view a:hover {
    background-color: rgb(126, 201, 236);
    color: #2f323a;
}

.input::before {
    top: 0;
    left: 0;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(255, 254, 254);
    clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 100%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: -1;
}


/* select */

.select {
    padding: 10px 20px;
    border: solid 2px rgb(73, 196, 245);
    border-radius: 5px;
}

.select:active {
    border: solid 2px rgb(73, 196, 245);
}

.select option {
    padding: 10px 20px;
    width: 50px;
}

.cover {
    background: -webkit-gradient( linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient( top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px 50px;
    margin-bottom: 15px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.flex-form input[type="submit"],
.flex-form button[type="submit"] {
    background: #ef3f5a;
    border: 1px solid #ef3f5a;
    color: #fff;
    padding: 0 30px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

.flex-form input[type="submit"]:hover,
.flex-form button[type="submit"]:hover {
    background: #d73851;
    border: 1px solid #d73851;
}

.flex-form {
    top: 15px;
    display: -webkit-box;
    display: flex;
    z-index: 2;
    position: relative;
    box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.3);
}

.single {
    width: 400px;
}

.multiple {
    width: 600px;
    flex-direction: column;
    height: 50px;
}

.flex-form > * {
    border: 0;
    padding: 0 0 0 10px;
    background: #fff;
    line-height: 50px;
    font-size: 1rem;
    border-radius: 0;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
}

.flex-form input[type="search"],
.flex-form input[type="email"],
.flex-form input[type="password"],
.flex-form input[type="file"],
.flex-form input[type="text"] {
    flex-basis: 400px;
    border-top: 1px solid rgb(247, 97, 97);
}

.flex-form input[type="date"] {
    min-height: 50px;
    max-height: 100px;
}

.flex-form .alert {
    padding: 0 10px;
}


/*----------- CeckBox ------------*/

ul.ks-cboxtags {
    list-style: none;
    padding: 5px;
    max-height: 200px;
}

ul.ks-cboxtags li label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 139, 139, 0.3);
    color: #adadad;
    border-radius: 15px;
    white-space: nowrap;
    margin: 2px 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s;
}

ul.ks-cboxtags li label {
    padding: 2px 4px;
    cursor: pointer;
}

ul.ks-cboxtags li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 1000;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "\f067";
    transition: transform 0.3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label::before {
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform 0.3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label {
    border: 2px solid #1bdbf8;
    background-color: #12bbd4;
    color: #fff;
    transition: all 0.2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
    display: absolute;
}

ul.ks-cboxtags li input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

ul.ks-cboxtags li input[type="checkbox"]:focus+label {
    border: 2px solid #e9a1ff;
}

#content {
    max-height: 100%;
    display: flex;
    flex-direction: column;
}


/* class col */

.col {
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}


/* float */

.left {
    padding: 8px;
    align-items: left;
    justify-content: left;
}

.right {
    align-items: right;
    justify-content: right;
}


/* This is what we are focused on */

#data_mpn .info,
#data_ba .info {
    margin: 0 20px;
    padding: 10px;
    font-size: 16px;
    font-weight: 550;
}

#data_mpn .info span,
#data_ba .info span {
    font-size: 20px;
    font-weight: 800;
}


/* Note */

.note {
    margin: 20px;
}

.note li {
    margin-left: 20px;
    padding: 2px;
}


/* FILTERING */

.table-wrapper thead th i {
    position: absolute;
    top: 20%;
    right: 0;
    display: block;
    color: #c80000;
    color: #c80000;
    font-size: 16px;
}

.table-wrapper thead th .filtering {
    position: absolute;
    top: 55px;
    display: none;
    width: 100px;
    background-color: #0d1113;
    z-index: 99;
}

.table-wrapper thead th .filtering.active {
    display: block;
}

.table-wrapper thead th .filtering .hover.active {
    background-color: #18b2e0;
}

.table-wrapper thead th .filtering .hover:hover {
    background-color: #226c83;
    cursor: pointer;
}


/* ------------------------------------------------    UPLOAD     -------------------------------------------- */

.upload {
    position: relative;
    display: inline-block;
    border: 1px solid rgb(65, 185, 255);
    border-radius: 10px;
    padding: 20px 50px;
    width: 500px;
    margin: 10px;
}

.upload::after {
    position: absolute;
    display: block;
    content: attr(data-content);
    color: rgb(65, 185, 255);
    top: 0;
    transform: translateY(-50%) translateX(-20%);
    background: white;
    padding: 0 20px 0 10px;
}

.upload .data {
    display: flex;
    border: 1px solid #00c3ff;
    justify-content: space-between;
}

.upload .data.ebilling {
    border: 1px solid #21da84;
}

.upload .data.success {
    border-color: rgb(84, 207, 131);
}

.upload label {
    display: flex;
    align-items: center;
    padding: 10px;
    width: 300px;
    font-weight: bold;
    color: #7a7a7a;
}

.upload label.set {
    text-decoration: underline;
}

.upload input[type="file"] {
    display: none;
}

.upload button {
    background: #00c3ff;
    width: 100px;
    box-shadow: unset;
    cursor: pointer;
}

.upload button.success {
    background: rgb(84, 207, 131);
}

.upload .data.loading::after {
    position: absolute;
    display: block;
    content: '';
    right: 5px;
    bottom: 25px;
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ----------------------------------------------  //  UPLOAD     -------------------------------------------- */

.billing::after {
    position: absolute;
    display: block;
    content: attr(data-content);
    font-size: 8pt;
    font-weight: bold;
    background-color: rgb(84, 207, 131);
    ;
    border-radius: 5px;
    padding: 5px 10px;
    right: 5px;
    bottom: 0;
}

.col {
    display: flex;
    flex-direction: row;
    padding: 0 10px;
}

.table-wrapper.clear td {
    background-color: rgb(163, 161, 161);
}


/* ----------------------------------------------    CONFIG     -------------------------------------------- */

#config {
    position: relative;
    padding: 10px;
    /* border: 1px solid black; */
}

#config .settings {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgb(0, 195, 255);
    text-transform: capitalize;
}

#config .settings .value div::after {
    position: absolute;
    content: 'Inactive';
    bottom: 10px;
    border-radius: 5px;
    padding: 5px;
    width: 70px;
    height: 20px;
    color: rgb(124, 124, 124);
    background-color: rgb(180, 180, 180);
}

#config .settings .value div.active::after {
    position: absolute;
    content: 'Active';
    bottom: 10px;
    border-radius: 5px;
    padding: 5px;
    width: 70px;
    height: 20px;
    color: rgb(37, 114, 85);
    background-color: rgb(27, 247, 144);
}

#config .settings div {
    padding: 10px;
    width: calc(100% / 3);
}

#config .settings #action {
    display: flex;
    justify-content: center;
}

#config .settings div button {
    background: #00c3ff;
    width: 100px;
    height: 40px;
    cursor: pointer;
    /* z-index: 1; */
}

.form-config {
    position: absolute;
    top: 0;
    width: 400px;
    height: 400px;
    display: flex;
    background-color: chartreuse;
    z-index: 1;
}

.form-config::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(116, 116, 116, 0.144);
    z-index: -1;
}


/* ----------------------------------------------    CUSTOM SELECT     -------------------------------------------- */

.custom-select {
    padding: 5px;
    min-width: 100px;
    height: 40px;
    border-radius: 0 20px 20px 0;
}

.custom-select div {
    background-color: #00c3ff;
}


/* ----------------------------------------------    PAGINATION     -------------------------------------------- */

.pagination {
    position: relative;
    padding: 20px 5px;
    border: 1px solid rgb(97, 96, 96);
}

.pagination-form .data {
    display: inline-flex;
    position: relative;
    width: 100%;
}

.pagination-form select {
    padding: 5px;
    margin: 10px;
    border-radius: 5px;
    height: 40px;
    width: 150px;
    cursor: pointer;
}

.pagination-form .date {
    position: relative;
    padding: 10px;
    margin-bottom: 5px;
    width: fit-content;
}

.pagination-form .date::after {
    position: absolute;
    display: block;
    content: attr(data-content);
    top: 0;
    left: 20px;
    font-size: small;
    background-color: white;
    color: rgb(153, 152, 152);
    padding: 0 5px;
    transform: translateY(-10px);
}

.pagination-form .date input {
    border: 1px solid black;
    margin: 0 3px;
    border-radius: 5px;
    height: 40px;
    padding: 5px;
}

.pagination-form .search-view {
    padding: 10px;
    display: flex;
}

.pagination-form .search-view .search {
    display: flex;
    width: fit-content;
    height: 40px;
}

.pagination-form .search label {
    font-size: 25px;
    padding: 5px;
}

.pagination-form .search input {
    width: 150px;
    padding: 5px;
    height: 40px;
    border: 1px solid black;
    border-radius: 0 10px 10px 0;
    border-left: none;
}

.pagination-form .button {
    margin: 0 5px;
    padding: 10px;
    border-radius: 5px;
    width: 100px;
    height: 40px;
    cursor: pointer;
}

.pagination-form .download {
    position: absolute;
    right: 0;
    padding: 10px;
}

.pagination-form .download.loading::after {
    position: absolute;
    display: block;
    content: '';
    right: calc(50% - 15px);
    top: 100%;
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 99;
}

.pagination-form #advanced {
    margin: 10px;
}

.pagination-page {
    position: relative;
}

.pagination-page .page .page-detail .show {
    margin-left: 10px;
}

.pagination-page .page {
    float: right;
}

.pagination-page .page .page-detail {
    font-size: small;
    padding: 3px;
}

.pagination-page .page .page-detail .next-prev {
    font-size: 25px;
    cursor: pointer;
}

.pagination-page .page .page-detail .next-prev.disabled {
    color: rgb(134, 134, 134);
}

.pagination-page .page .page-detail .page_number {
    display: inline-flex;
}

.pagination-page .page .page-detail .page_number .go_page {
    border: 1px solid black;
    border-radius: 5px;
    font-weight: 700;
    padding: 7px;
    margin: 0 2px;
    cursor: pointer;
}

.pagination-page .page .page-detail .page_number .go_page.active {
    background-color: #21da84;
    border-color: #21da84;
}


/* Pager */

#pager {
    display: flex;
    flex-direction: row;
    align-items: center;
}


/* Next - Prev */

#pager .next-prev:hover {
    color: #12bbd4;
}

#pager .next-prev.disable {
    color: #a3a3a3;
}

#pager .next-prev.disable:hover {
    color: #a3a3a3;
}

.pagination-page .detail {
    float: left;
    font-size: medium;
}

.pagination-page .detail span {
    font-weight: 700;
}

.rekap {
    display: flex;
    flex-direction: column;
    padding: 5px;
}

#inputMonth {
    width: 90vw;
    height: 300px;
}

.manual-input {
    position: absolute;
    right: 0;
    z-index: 99;
}


/*  Alert Dialog */

.alert-dialog {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #8181816b;
    z-index: 101;
}

.alert-dialog .alert-container {
    position: relative;
    display: block;
    min-width: 410px;
    background-color: white;
    border-radius: 20px;
    padding: 10px;
    /* z-index: 101; */
}
.alert-dialog .alert-container .alert-content {
    min-width: 410px;
    height: fit-content;
    max-height: 85vh;
    max-width: 80vw;
    overflow: auto;
}
.prevSlide, .nextSlide {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: rgb(208, 207, 207);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
/* Position the "next button" to the right */
.nextSlide {
    right: 10px;
    border-radius: 3px 0 0 3px;
}
  
/* On hover, add a black background color with a little bit see-through */
.prevSlide:hover, .nextSlide:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
.alert-dialog .alert-container .icon{
    position: relative;
    background-color: transparent;
    box-shadow: none;
    border: none;
    height: 150px;
}
.alert-dialog .alert-container .icon::after {
    position: absolute;
    left: 140px;
    font-family: FontAwesome;
    font-size: 150px;
}
.alert-dialog .alert-container .icon.success::after {
    content: '\f00c';
    color: #21da84;
}
.alert-dialog .alert-container .icon.info::after {
    content: '\f05a';
    color: #0669aa;
}
.alert-dialog .alert-container .icon.warning::after {
    content: '\f071';
    color: #fcdb21;
}
.alert-dialog .alert-container .title {
    padding: 20px;
    font-size: 25px;
    font-weight: 700;
    max-width: 400px;
    text-align: center;
}

.alert-dialog .alert-container .data {
    position: relative;
    width: 80%;
    left: 10%;
    margin-top: 20px;
    padding: 10px;
}

.alert-dialog .alert-container .data::after {
    position: absolute;
    top: -15px;
    left: 0;
    font-size: small;
    padding: 0 10px;
    background: white;
    content: attr(data-content);
}

.alert-dialog .alert-container .data input {
    outline: none;
    border: none;
    border-bottom: 1px solid grey;
    width: 100%;
}

.alert-dialog .alert-container button {
    position: relative;
    margin-top: 20px;
    width: 80%;
    left: 10%;
}