:root
{
    --primary: #00DCFF;
    --bg: #010101;
}

.body-login 
{
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    list-style: none;
}

/* Login */
.body-login .row
{
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.body-login .row .slogan 
{
    flex: 1 1 55rem;
    width: 100%;
    object-fit: cover;
    padding: 1.5rem 1.7rem;
    top: 150px;
    text-align: center;
}

.body-login .row .map 
{
    flex: 1 1 55rem;
    width: 100%;
    height: 40rem;
    object-fit: cover;
    padding: 1.5rem 1.7rem;
    top: 150px;
}

.body-login .row form
{
    flex : 1 1 40rem;
    padding: 5rem;
    text-align: center;
}

.body-login .row form .input-group 
{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    background-color: var(--bg);
    border: 1px solid #eee;
    padding-left: 2rem;
}

.body-login .row form .input-group input 
{
    width: 100%;
    padding: 2rem;
    font-size: 0,5rem;
    background: none;
    color: #fff;
}

.body-login .row form .btn-login 
{
    margin-top: 3rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background-color: var(--primary);
    cursor: pointer;
}

/* sidebar */
.sidebar
{
    position: fixed;
    background: #181818;
    width: 20vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.brand
{
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid lightgray;
    margin-bottom: 10px;
    color: white;
    cursor: pointer;
}

.brand i
{
    font-size: 30px;
}

.sidebar ul li
{
    font-size: 24px;
    padding: 10px 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: left;
    cursor: pointer;
}


.sidebar ul li a
{
    color: white;
    align-items: center;
    display: flex;
}

.sidebar ul li:hover
{
    background: rgba(0, 0, 0, 0.5);
    color: greenyellow;
}


.sidebar .active
{
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary);
}

/* nav */
.container 
{
    position: absolute;
    right: 0;
    width: 80vw;
    height: 100vh;
    background:black;
}

.header
{
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    height: 10vh;
    background: lightgray;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.nav
{
    width: 90%;
    display: flex;
    align-items: center;
}

.search
{
    flex: 5;
    display: flex;
    justify-content: center;
}

.search input
{
    border: none;
    background: white;
    padding: 10px;
    width: 50%;
    box-shadow: 0 8px 6px 0 rgba(0, 0, 0, 0.5);
}

.search button
{
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 6px 0 rgba(0, 0, 0, 0.5);
}

.search button:hover
{
    background: var(--primary);
}


.user
{
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user i
{
    font-size: 25px;
    text-align: center;
}

.user a
{
    width: 33px;
    height: 35px;
    padding: 5px;
    background: wheat;
    border-radius: 50%;
    color: #191919;
    margin: 5px 5px;
}
.user a:hover
{
    background: var(--primary);
}

.user span
{
    font-weight: 700;
    font-size: 20px;
    margin-left: 5px;
}

.user .username
{
    display: flex;
    width: 110px;
    height: 35px;
    padding: 5px;
    background: wheat;
    border-radius: 7px;
    color: #191919;
    margin: 5px 5px;
}

/* dashboard content */
.content
{
    position: absolute;
    margin-top: 10vh;
    min-height: 90vh;
    top: 0;
    right: 0;
    width: 80vw;
    background-color: lightblue;
}

.cards
{
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cards3
{
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card
{
    width: auto;
    height: 130px;
    background: white;
    margin: 15px 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    padding : 10px;
}

.card2
{
    width: auto;
    height: 400px;
    background: white;
    margin: 15px 8px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    padding : 10px;
    overflow:scroll;
}

.card-report
{
    width: 250px;
    height: 300px;
    background: white;
    margin: 15px 8px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    text-align: center;
    align-items: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    padding : 10px;
}

.card-report img
{
    width: 200px;
}


.card-table
{
    width:450px;
    overflow:scroll;
}

.card i
{
    font-size: 50px;
    color: var(--primary);
}

.box h2
{
    color: goldenrod;
}

.icon
{
    color: gray;
    color: goldenrod;
    font-size: 40px;
    font-weight: bold;
}

.content-data,
.content-master,
.content-detailmaster,
.content-detailorder,
.content-produksi,
.content-supply,
.content-supplyin,
.content-qc,
.content-delivery,
.content-report1,
.content-report2,
.content-report3,
.content-tambahproduk1,
.content-tambahproduk2
{
    min-height: 60vh;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 50px auto;
    overflow:auto;
}

.col
{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.row1
{
    flex:  2;
    display: flex;
    flex-direction: column;
}
.row2
{
    flex:  4;
    display: flex;
    flex-direction: column;
}

.content-supply
{
    margin-top: 10px;
}

.list-order
{
    min-height: 50vh;
    flex:  5;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.content .title
{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 15px 10px;
    border-bottom: 2px solid #999;
}

.content .btn
{
    background: var(--primary);
    color: black;
    padding: 5px 10px;
    text-align: center;
}

.content i
{
    align-items: center;
}

.content .btn:hover
{
    color: white;
    background: var(--bg);
    padding: 5px 10px;
    text-align: center;
}

.content table
{
    padding: 10px;
}

.content table th
{
    text-align: center;
    padding: 8px;
    border-bottom: 1px solid var(--bg);
}

.content table td
{
    text-align: left;
    padding: 8px;
}

/* content master */
.produksi-now
{
    flex: 2;
    background: white;
    min-height: 50vh;
    margin:  0 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;

}

.master-produk
{
    min-height: 80vh;
    flex:  4    ;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.wrapper-order
{
    margin: 0 25px 25px 25px;
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.master-bahan
{
    min-height: 40vh;
    flex:  4;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.content .aksi
{
    display: flex;
    justify-content: space-around;
}

/* Detail Produk */
.gambar-display
{
    flex:  4;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.deskripsi-produk
{
    min-height: 40vh;
    flex:  4;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.container-deskripsi
{
    min-height: 60vh;
    margin-top: 50px;
    width: 100%;
}

.deskripsi
{
    min-height: 40vh;
    background: white;
    width: 40%;
    margin: 25px 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    padding: 10px 12px;
    margin-left: 50%;
    transform: translate(-50%)
}

.deskripsi-kode
{
    min-height: 40vh;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

/* detail order */
.rekap-order
{
    flex:  4;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.rincian-pengiriman
{
    min-height: 40vh;
    flex:  6;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}


/* Pagination */
.slide-halaman
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

.slide-halaman .next,
.slide-halaman .before
{
    flex: 2;
    display: flex;
    padding: 10px 10px;
    color: var(--primary);
}

.slide-halaman a:hover
{
    color: var(--bg);
}

/* search content */
.content .search
{
    flex: 2;
    display: flex;
    justify-content: end;
}
.content .search input
{
    border: none;
    background: white;
    padding: 10px;
    width: 50%;
    box-shadow: 0 8px 6px 0 rgba(0, 0, 0, 0.5);
}

.content .search button
{
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 6px 0 rgba(0, 0, 0, 0.5);
}

/* btn add */
.btn-add
{
    background: var(--primary);
    padding: 10px 15px;
    font-size: 30px;
    color: black;
}

/* content produksi */
.pekerja
{
    min-height: 80vh;
    flex:  3;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.produksi
{
    min-height: 60vh;
    flex:  4;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.report
{
    min-height: 60vh;
    width: auto;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

/* text */
.text-start
{
    text-align: right;
}

.text-end
{
    text-align: left;
}

.text-center
{
    text-align: center;
}

.total
{
    font-size: 30px;
    font-weight: 700;
}

/* supply */
.supply-out
{
    min-height: 60vh;
    flex:  4;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.supply-outnon
{
    min-height: 60vh;
    flex:  3;
    margin: 0 25px 25px 25px;
    display: flex;
    flex-direction: column;
    
}

.supply-in
{
    min-height: 60vh;
    flex:  4;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

.supply-bayangan
{
    min-height: 30vh;
    flex: 4;
    display: flex;
    flex-direction: column;
}

.supply-keterangan
{
    min-height: 60vh;
    flex:  4    ;
    background: white;
    margin: 0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
}

/* content-qc */
.qc-bagus
{
    flex: 4;
    background: white;
    min-height: 50vh;
    margin:  0 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.qc-nonbagus
{
    flex: 4;
    min-height: 50vh;
    margin:  0 25px;
    display: flex;
    flex-direction: column;
}

.qc-repair,
.qc-riject,
.qc-selesai
{
    background: white;
    min-height: 50vh;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

/* content delivery */
.delivery,
.retur
{
    flex: 2;
    background: white;
    min-height: 50vh;
    margin:  0 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

/* Content Report */
.report-borongan,
.report-qc,
.report-pemakaian,
.report-pengiriman,
.report-stockyard,
.report-orderan
{
    flex: 2;
    background: white;
    min-height: 50vh;
    margin:  0 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

/* content tambah produk */
.data-indukproduk
{
    flex: 2;
    background: white;
    min-height: 70vh;
    margin:  0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.data-pembesian
{
    flex: 2;
    background: white;
    min-height: 50vh;
    margin:  0 25px 25px 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.data-file
{
    flex: 2;
    background: white;
    min-height: 50vh;
    margin:  0 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.data-config
{
    flex: 2;
    background: white;
    min-height: 50vh;
    margin:  0 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.form-input
{
    display: flex;
    align-items: center;
    margin-top: 1rem;
    background: none;
    width: 100%;
}

.form-input input,
.form-input select,
.form-input textarea
{
    flex: 4;
    width: 100%;
    padding: 1rem;
    font-size: 0,5rem;
    background: none;
    color: black;
    border: 1px solid lightblue;
    font-size: 18px;
}

.form-input .readonly
{
    cursor: no-drop;
}

.wrapper-section
{
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    margin: 1rem;
}

.crd{
    flex: 3;
    display: flex;
    flex-direction: column;
    margin: 1rem;
}

.wrapper-section a
{
    text-decoration: none;
    color: black;
    
}

.card-section {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    border-radius: 5px;
    text-align: center;
  }
  
.card-section:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
.card-section  img {
    border-radius: 5px 5px 0 0;
    width: 50%;
  }
  
.container-section {
    padding: 2px 2px;
  }

.wrapper-form button
{
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 1rem;
    font-size: 18px;
    color: #fff;
    background-color: var(--primary);
    cursor: pointer;
}

.wrapper-form button:hover
{
    background: black;
}

.wrapper-form .disable
{
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 1rem;
    font-size: 18px;
    color: #fff;
    background-color: #C7C7C7;
    cursor: not-allowed;
}

.wrapper-form .btn-delete
{
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 0.5rem;
    font-size: 15px;
    color: #fff;
    background-color: #FE0000;
    cursor: pointer;
}

.meja-pembesian
{
    height: 300px;
    width: 100%;
    padding: 10px;
    border : 1px solid lightblue;
}

.wrapper-form h2
{
    margin-top: 10px;
}

/* alert message */
.alert-msg
{
    position: fixed;
    width: 100%;
}

.alert-berhasil
{
    margin-top: 10px;
    margin-left: 10%;
    display: flex;
    justify-content: space-between;
    padding: 2px;
    border: 1px solid lightgreen;
    border-radius: 10px;
    background-color: lightgreen;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
    width: 60%;
}

.alert-gagal
{
    margin-top: 10px;
    margin-left: 10%;
    display: flex;
    justify-content: space-between;
    padding: 2px;
    border: 1px solid lightcoral;
    border-radius: 10px;
    background-color: lightcoral;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
    width: 60%;
}

.icon-msg
{
    flex: 1;
    font-size: 30px;
    margin: auto;
}

.body-msg
{
    flex: 6;
    font-size: 30px;
    margin: auto;
}

.btn-msg
{
    flex: 1;
    background: none;
    font-size: 20px;
}

.btn-msg:hover
{
    color: #eee;
    cursor: pointer;
}

/* ZOOM GAMBAR */


.myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width :250px;
    margin: auto;
}
  
.myImg:hover {opacity: 0.7;}
  
  /* The Modal (background) */
.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.9); /* Black w/ opacity */
}
  
/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}
  
/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.progress {
    width: auto;
    background-color: grey;
  }
  


/* card */

  
/* Add Animation */
.modal-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}
  
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}
  
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
  
/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
  
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
  
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
.modal-content {
    width: 100%;
    }
}



/* Media Queries */
/* Desktop */
@media (max-width: 1366px) 
{
    html {
      font-size: 75%;
    }
}

/* Tablet */
@media (max-width: 900px) 
{
    .sidebar ul li span
    {
        display: none;

    }

    .sidebar
    {
        align-items: center;
    }

    .sidebar ul li i
    {
        font-size: 30px;
    }

    .sidebar ul li:hover
    {
        padding: 8px 38px;
    }

    .brand h1
    {
        display: none;
    }

    .content .aksi
    {
        display: flex;
        flex-direction: column;
    }
    .content .aksi a
    {
        margin-top: 5px;
    }
    .card-section {
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
        transition: 0.3s;
        width: 60%;
        border-radius: 5px;
        text-align: center;
      }
      
    .card-section  img {
        border-radius: 5px 5px 0 0;
        width: 80%;
      }
    .crd{
        margin: 1rem;
    }
    .wrapper-section
    {
        width: 100%;
        padding: 10px;
    }
    .deskripsi
    {
        min-height: 40vh;
        background: white;
        width: 100%;
        margin: 25px 25px 25px 25px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
        padding: 10px 12px;
        margin-left: 50%;
        transform: translate(-50%)
    }
}

/* HP */
@media (max-width: 600px) 
{
    .body-login .row .map 
    {
        height: 2rem;
    }
    
    td,
    th
    {
        font-size: 10px;
        padding: 2px;
    }

    h2
    {
        font-size: 15px;
    }

    .btn-add
    {
        padding: 1px 1px;
    }

    .qc-nonbagus
    {
        margin-top: 25px;
    }

    .delivery,
    .retur
    {
        margin-bottom: 25px;
    }

    .report-borongan,
    .report-qc,
    .report-stockyard
    {
        margin-bottom: 25px;
    }
    .card-section {
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
        transition: 0.3s;
        width: 100%;
        border-radius: 5px;
        text-align: center;
      }
      
    .card-section  img {
        border-radius: 5px 5px 0 0;
        width: 100%;
      }

    .deskripsi
    {
        min-height: 40vh;
        background: white;
        width: 100%;
        margin: 25px 25px 25px 25px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
        padding: 10px 12px;
        margin-left: 50%;
    }

    .card2
    {
        width: 100%;
        height: auto;
        background: white;
        margin: 15px 8px;
        display: flex;
        justify-content: space-around;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
        padding: 10px;
    }

    .cards
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        flex-wrap: wrap;
    }

    .card-table
    {
        width:450px;
        overflow:auto;
    }

    .progress {
        width:80%;
        background-color: grey;
    }
    
    .header
    {
        right: 0;
        width: 80vw;
        z-index:1;
        position:absolute;
    }
    
    .sidebar
    {
        z-index:2;
        height: 100%;
    }
    
    .nav
    {
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .content
    {
        width: 80vw;
    }
    
    .container 
    {
        width: 100%;
    }
    
    .sidebar ul li
    {
        padding:10px 10px;
    }

}
/* komponen */
.text_center
{
    text-align: center;
}

.text_start
{
    text-align: left;
}

.text_end
{
    text-align: right;
}