@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root{
    --warna-putih:#fff;
    --warna-biru:#E56AB3;
    --warna-hitam:#000;
    --warna-gelap:#363949;
    
    --bg:#fff;
    --bg2:#fff;
    --bg-menu:linear-gradient(to bottom, #E56AB3, #EF87BE);
    --bg-tabel:linear-gradient(to right, #E56AB3, #EF87BE);
    
    --bayang:0px 44px 32px 8px rgba(132,139,200,0.2);
}

.dark-mode{
    --bg:#181A1E;
    --bg2:#202528;
    
    --warna-biru:#50525A;
    --warna-gelap:#edeffd;
    --bg-menu:linear-gradient(to bottom, #202528, #202528);
    --bg-tabel:linear-gradient(to right, #363A3D, #363A3D);
    
    --bayang:0px 44px 32px 8px rgba(132,139,200,0.12);
}
    
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Ubuntu', sans-serif;
}

/*:root{*/
/*    --blue: #2b7bff;*/
/*    --grey:#f5f5f5;*/
/*    --black1:#222;*/
/*    --black2:#999;*/
    
/*}*/

body{
    min-height:100vh;
    overflow-x:hidden;
    /*background:var(--bg-put);*/
    /*background:green;*/
    width:100%;
}

.tek{
    color:var(--warna-gelap);
}

.container{
    position:relative;
    width:100%;
    
}

.navigation{
    position:fixed;
    width:300px;
    height:100%;
    /*background:#2b7bff;*/
    /*background: linear-gradient(to bottom, #2b7bff, #53A3FF);*/
    background:var(--bg-menu);
    /*border-left:10px solid #2b7bff;*/
    border-left:10px solid transparent;
    /*border-left:10px solid linear-gradient(to bottom, #2b7bff, #53A3FF);*/
    transition:0.5s;
    overflow:hidden;
}

.navigation.active{
    width:80px;
}

.navigation ul{
    position:absolute;
    top:0;
    left:0;
    width:100%;
}

.navigation ul li{
    position:relative;
    width:100%;
    list-style:none;
    border-top-left-radius:30px;
    border-bottom-left-radius:30px;
}

.navigation ul li:hover,
.navigation ul li.active{
    background:var(--bg);
}

.navigation ul li:nth-child(1){
    margin-bottom:40px;
    pointer-events:none;
}

.navigation ul li a{
    position:relative;
    display:block;
    width:100%;
    display:flex;
    text-decoration:none;
    color:white;
}

.navigation ul li:hover a,
.navigation ul li.active a{
    color:#2b7bff;
}

.navigation ul li a .icon{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-width:60px;
    height:60px;
    line-height:70px;
    /*text-align:center;*/
}

.navigation ul li a .icon ion-icon{
    font-size:1.75em;
}

.navigation ul li a .title{
    position:relative;
    display:block;
    padding:0 10px;
    height:60px;
    line-height:60px;
    text-align:left;
    white-space:nowrap;
}

.navigation ul li:hover a::before,
.navigation ul li.active a::before{
    content:'';
    position:absolute;
    right:0;
    top:-50px;
    width:50px;
    height:50px;
    background:transparent;
    border-radius:50%;
    box-shadow:35px 35px 0 10px var(--bg);
    pointer-events:none;
}

.navigation ul li:hover a::after,
.navigation ul li.active a::after{
    content:'';
    position:absolute;
    right:0;
    bottom:-50px;
    width:50px;
    height:50px;
    background:transparent;
    border-radius:50%;
    box-shadow:35px -35px 0 10px var(--bg);
    pointer-events:none;
}



/*-----------------------------------------------------------------------------------------------------------main-----------------------*/
.main{
    position:absolute;
    width:calc(100% - 300px);
    left:300px;
    min-height:100vh;
    background:white;
    transition:0.5s;
    background:var(--bg);
}

.main.active{
    width:calc(100% - 80px);
    left:80px;
}

.topbar{
    background:var(--bg2);
    width:100%;
    height:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    /*border:1px solid black;*/
    /*box-shadow:0px 0px 32px 48px rgba(132, 139, 200, 0.5);*/
    box-shadow: var(--bayang);
    /*box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);*/
}

.toggle{
    position:relative;
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2.5em;
    cursor:pointer;
    color:var(--warna-gelap);
}

.search{
    position:relative;
    width:400px;
    margin:0 10px;
}

.search label{
    position:relative;
    width:100%;
}

.search label input{
    width:100%;
    height:40px;
    border-radius:40px;
    padding:5px 20px;
    padding-left:35px;
    font-size:18px;
    outline:none;
    border:1px solid #999;
}

.search label ion-icon{
    position:absolute;
    top:0;
    left:10px;
    font-size:1.2em;
    
}

.menu_kanan{
    display:inline;
    /*border:1px solid black;*/
    /*width:200px;*/
    display:flex;
    align-items:center;
    justify-content:right;
    padding-right:15px;
    gap:10px;
}

.theme-toggler{
    background:#D6D7EB;
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:4.2rem;
    height:1.6rem;
    cursor:pointer;
    border-radius:5px;
    
}

.theme-toggler ion-icon{
    font-size:1.2rem;
    width:50%;
    height:100%;
}

.theme-toggler ion-icon.active{
    color:white;
    border-radius:5px;
    background:#7380EC;
}

.user{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--warna-gelap);
}


.user img{
    width:40px;
    height:40px;
    border-radius:50%;
}

.konten{
    padding:30px;
    min-height:calc(100vh - 60px);
    position:relative;
    
}


/*-----------------------------------------------------------------------------------------------------------card-----------------------*/
/*.cardBox{*/
/*    position:relative;*/
/*    width:100%;*/
/*    padding:20px;*/
/*	display: grid;*/
/*    grid-template-columns: auto auto auto auto;*/
/*    grid-gap:30px;*/
/*}*/

/*.cardBox .card{*/
/*    position:relative;*/
/*    background:white;*/
/*    display:flex;*/
/*    padding:30px;*/
/*    border-radius:20px;*/
/*    box-shadow:0 7px 25px rgba(0,0,0,0.14);*/
/*    justify-content:space-between;*/
/*}*/

/*.cardBox .card .numbers{*/
/*    position:relative;*/
/*    font-weight:500;*/
/*    color:#2b7bff;*/
/*    font-size:2.5em;*/
/*}*/

/*.cardBox .card .cardName{*/
/*    color:#999;*/
/*    font-size:1.1em;*/
/*    margin-top:5px;*/
/*}*/

/*.cardBox .card .iconBx{*/
/*    font-size:3.5em;*/
/*    color:#999;*/
/*}*/

/*.cardBox .card:hover{*/
/*    background:#2b7bff;*/
/*}*/

/*.cardBox .card:hover .numbers,*/
/*.cardBox .card:hover .cardName,*/
/*.cardBox .card:hover .iconBx*/
/*{*/
/*    color:white;*/
/*}*/

.dok_tutup{
    /*border:1px solid black;*/
    display:flex;
    flex-wrap: wrap;
    /*background-color: DodgerBlue;*/
    justify-content: center;
}

.dok_tutup a{
    text-decoration:none;
    /*border:1px solid black;*/
    margin:17px;
}

.dok_kotak{
    width:250px;
    /*border:1px solid black;*/
    background:var(--bg2);
    border-radius:5px;
    text-align:center;
    padding-top:10px;
}

.dok_kotak .judul{
    color:#686b6d;
    font-weight: 700;
}

.dok_kotak ion-icon{
    font-size:40px;
    color:#2b7bff;
    width:100%;
    margin-bottom:20px;
}

.dok_kotak .bawah{
    color:white;
    font-size:15px;
    margin-top:10px;
    padding:2px 0px;
    border-bottom-left-radius:5px;
    border-bottom-right-radius:5px;
}

.dok_kotak .selesai{
    background-color: #198754;
    
}

.dok_kotak .belum{
    background-color: #DC3545;
}

.dok_tutup a:hover .judul{
    color:black;
}

/*---------------------------------------------------------------------------------------------FORM-------------------------------------------------------------*/
.container .judul3{
    font-size:24px;
    font-weight:500;
    position:relative;
    color:var(--warna-gelap);
}

.container .form_kotak{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin:20px 0 12px 0;
}

.container .form_kotak .input_kotak{
    width:calc(50% - 15px);
    margin-bottom:15px;
}

.container .form_kotak .input_kotak_full{
    width:100%;
    margin-bottom:15px;
}

.container .form_kotak .label{
    font-weight:500;
    margin-bottom:5px;
    display:block;
    font-size:18px;
    color:var(--warna-gelap);
    
}

.container .form_kotak .label_kecil{
    font-weight:500;
    font-size:11px;
    
}

.container .form_kotak .input_kotak input, .container .form_kotak .input_kotak_full input,
.container .form_kotak .input_kotak select, .container .form_kotak .input_kotak_full select{
    height:45px;
    width:100%;
    border-radius:5px;
    outline:none;
    border:1px solid #ccc;
    padding-left:15px;
    font-size:16px;
    border-bottom-width:2px;
    background:var(--bg2);
    color:var(--warna-gelap);
}

.container .form_kotak select option{
    zoom:1.15;
}

.container .form_kotak .input_kotak input:focus, .container .form_kotak .input_kotak_full input:focus{
    border-color:#3F88BA;
}

.form_kotak .form_file{
    width:100%;
    border:2px dashed var(--warna-gelap);
    display:flex;
    justify-content: center;
	align-items: center;
	padding:20px;
}

.form_kotak input[type="file"]{
    display:none;
}

.form_file label{
    color:#2B7BFF;
    /*background:#464CAE;*/
    /*background:var(--bg-menu);*/
    /*padding:20px;*/
    font-size:16px;
    height:50px;
    width:150px;
    border-radius:5px;
    cursor: pointer;
    /*box-sizing: border-box;*/
    display:block;
    /*position:absolute;*/
    /*margin:auto;*/
    /*top:0;*/
    /*left:0;*/
    /*bottom:0;*/
    /*right:0;*/
 /*   display:flex;*/
 /*   justify-content: center;*/
	/*align-items: center;*/
	text-align:center;
}

/*.form_file label:hover .form_file{*/
/*    border:2px dashed red;*/
/*}*/

.form_file label ion-icon{
    font-size:40px;
}

.tombol_kotak{
    width:100%;
}

.container-login100-form-btn input{
    vertical-align:middle;
    white-space:normal;
    background:0 0;
    line-height:1;
    
    margin:0;padding:0;border:0;
    font-weight:500;
    letter-spacing:1.5px;
    font-size:16px;
}

.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #21d4fd, #014292, #21d4fd, #014292);
  background: -o-linear-gradient(right, #21d4fd, #014292, #21d4fd, #014292);
  background: -moz-linear-gradient(right, #21d4fd, #014292, #21d4fd, #014292);
  background: linear-gradient(right, #21d4fd, #014292, #21d4fd, #014292);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}

/*---------------------------------------------------------------------------------------------FORM-END------------------------------------------------------------*/

/*---------------------------------------------------------------------------------------TABEL-----------------------------------------------------------------------------------*/
.tabel .tombol{
    text-decoration: none;
    color:#2C7CFF;
    border:1px solid #2C7CFF;
    border-radius:3px;
    padding:3px 5px;
    font-size:13px;
}

.tabel .hapus{
    border:1px solid #F7665E;
    color: #F7665E;
}

/*.tabel .tombol:hover{*/
/*    color:black;*/
/*    background:white;*/
/*}*/

.tabel_atas table{
    border-collapse: collapse;
    width:100%;
}

.tabel_atas table tr{
    background:#2C7CFF;
    /*background: linear-gradient(to right, #2b7bff, #53A3FF);*/
    background:var(--bg-tabel);
    text-align:left;
    color:white;
    letter-spacing:1.5px;
    /*cursor:pointer;*/
}

.tabel_atas table th{
    padding:19px 13px;
}

.tabel_atas tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

.tabel_atas tr:first-child th:last-child {
    border-top-right-radius: 10px;
}


.tabel_isi{
    height:50vh;
    overflow-y:scroll;
}

.tabel_isi::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.tabel_isi::-webkit-scrollbar-track {
  background: #EDF5FF; 
}
 
/* Handle */
.tabel_isi::-webkit-scrollbar-thumb {
  background: #53A3FF; 
}

/* Handle on hover */
.tabel_isi::-webkit-scrollbar-thumb:hover {
  background: #2b7bff; 
}

.tabel_isi table{
    width:100%;
    border-collapse: collapse;
}

.tabel_isi table td{
    padding:13px;
    /*height:30px;*/
    cursor:pointer;
}

.tabel_isi table tr:nth-child(even) {
    background: #ddd;
    /*box-shadow:0 7px 25px rgba(0,0,0,0.1);*/
    /*box-shadow:0 5px 3px 1px rgba(0,0,0,0.2);*/
}

.tabel_isi table tr:nth-child(odd) {
    background: white;
    /*box-shadow:0 7px 25px rgba(0,0,0,0.02);*/
    /*box-shadow:0 5px 3px 1px rgba(0,0,0,0.2);*/
}

.tabel_isi tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.tabel_isi tr:last-child td:last-child {
    /*border-bottom-right-radius: 10px;*/
}

.tabel_isi table tr:hover{
    /*background: #ccc;*/
    background: linear-gradient(to right, #2b7bff, #53A3FF);
    color:white;
    /*box-shadow:0 5px 10px 2px rgba(0,0,0,0.2);*/
    /*border:1px solid #039376;*/
}

.tabel_isi table tr:hover .tombol{
    /*background: #ccc;*/
    color:white;
    border:1px solid white;
    /*box-shadow:0 5px 10px 2px rgba(0,0,0,0.2);*/
    /*border:1px solid #039376;*/
}
/*---------------------------------------------------------------------------------------TABEL-----------------------------------------------------------------------------------*/

.bt_tambah{
    position:absolute;
    width:100px;
    height:100px;
    right:25px;
    bottom:25px;
    background:var(--warna-biru);
    border:none;
    border-radius:50%;
    cursor:pointer;
    box-shadow: var(--bayang);
    font-size:60px;
    color:var(--warna-putih);
}

.bt_tambah ion-icon{
    font-size:60px;
    color:var(--warna-putih);
}


/*---------------------------------------------------------------------------------------MODAL-----------------------------------------------------------------------------------*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}



/* Modal Content */
.modal-content {
  background-color: var(--bg);
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
/*---------------------------------------------------------------------------------------MODAL SELESAI-----------------------------------------------------------------------------------*/

@media (max-width:991px){
    .navigation{
        left:-300px;
    }
    
    .navigation.active{
        width:300px;
        left:0;
    }
    
    .main{
        width:100%;
        left:0;
    }
    
    .main.active{
        width:calc(100% - 300px);
        left:300px;
    }
}

@media (max-width:480px){
    .navigation{
        width:100%;
        left:-100%;
        z-index:1000;
    }
    
    .navigation.active{
        width:100%;
        left:0;
    }
    
    .toggle{
        z-index:1001;
    }
    
    .main.active .toggle{
        color:white;
        position:absolute;
        right:0;
        /*left:initial;*/
    }
    
    .main.active{
        width:100%;
        left:0;
    }
    
    .main{
        width:100%;
        left:0;
    }
}

















