@import url('../all.css');

.back_tp_adm {
    width: 100%;
    height: 100vh;
    background-color: var(--bg-transparent-black);
    position: fixed;
    z-index: 3;
    display: none;
    overflow: auto;
}
 
.isi_tp_adm {
    width: 550px;
    padding: 30px;
    box-sizing: border-box;
    background-color: var(--white);
    margin: 30px auto;
}

.add_kategori_adm {
    width: 100%;
    padding: 15px 0;
    background-color: var(--white);
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--semi-black);
    transition: 0.2s;
}

.add_kategori_adm:hover {
    color: var(--orange);
}

.add_kategori_adm p {
    font-size: 15px;
    font-weight: 500;
    margin-right: 10px;
}

.add_kategori_adm i {
    font-size: 16px;
    font-weight: 500;
}

.ci_tp {
    display: none;
}

.saldo {
    margin: 15px auto;
    box-sizing: border-box;
    background-color: var(--white);
}

.isi_saldo {
    width: 100%;
    padding: 30px;
    background-color: var(--orange);
    box-sizing: border-box;
}

.isi_saldo h1 {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
}

.isi_saldo h1 i {
    display: none;
}

.isi_saldo h5 {
    font-size: 25px;
    color: var(--white);
    font-weight: 600;
    margin-top: 8px;
}

.isi_saldo h5 span {
    font-size: 18px;
}

.riwayat_transaksi {
    width: 100%;
    box-sizing: border-box;
}

.riwayat_transaksi h1 {
    font-size: 18px;
    color: var(--black);
    padding: 20px 30px;
    box-sizing: border-box;
}

.list_riwayat_transaksi {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

.isi_list_riwayat_transaksi {
    width: 100%;
    padding: 15px 30px;
    box-sizing: border-box;
    border-top: 1px solid var(--border-grey);
    display: flex;
    flex-direction: row;
}

.icon_rt {
    width: 30px;
    height: 30px;
    background-color: var(--orange);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.deskripsi_rt {
    flex: 1;
    margin: 0 15px;
}

.tipe_rt {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.deskt_rt {
    font-size: 13px;
    color: var(--grey);
    margin-top: 3px;
    font-weight: 500;
}

.time_rt {
    font-size: 12px;
    color: var(--grey);
    margin-top: 3px;
}

.nominal_rt {
    text-align: right;
}

.h_nominal_rt {
    font-size: 15px;
    color: var(--black);
    font-weight: 600;
}

.tt_rt {
    font-size: 13px;
    color: var(--orange);
    font-weight: 500;
    margin-top: 3px;
}

.tt_rt.pending {
    color: red;
}

.b_button_ep {
  height: 10px;
}

.box_input_pro {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
  margin-top: 30px;
}

@media only screen and (max-width: 600px) {
    header {
        display: none;
    }

    .back_header {
        display: none;
    }

    .saldo {
        width: 100%;
    }

    .isi_saldo {
        padding: 15px;
    }

    .isi_saldo h1 {
        font-size: 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .isi_saldo h1 i {
        display: block;
        margin-right: 8px;
    }

    .isi_saldo h5 {
        font-size: 23px;
        margin-top: 8px;
    }

    .isi_saldo h5 span {
        font-size: 16px;
    }

    .riwayat_transaksi h1 {
        padding: 15px;
        font-size: 16px;
    }

    .isi_list_riwayat_transaksi {
        padding: 15px;
    }

    .icon_rt {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .tipe_rt {
        font-size: 14px;
    }

    .deskt_rt {
        font-size: 12px;
    }

    .time_rt {
        font-size: 11px;
    }

    .h_nominal_rt {
        font-size: 14px;
    }

    .tt_rt {
        font-size: 12px;
    }
    .box_input_pro
    {
   margin-top: 15px;
}
.isi_box_input_pro p
    {
   margin-bottom: 0;
}
}