/* =========================
   RAJABANDOT LIVE DRAW CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#071421;
    font-family:Arial,sans-serif;
    overflow-x:hidden;
}

/* =========================
   CONTAINER
========================= */

.container-fluid{
    padding:0 !important;
    margin:0 !important;
}

/* =========================
   HEADER LOGO
========================= */

.header-live{
    width:100%;
    background:
    radial-gradient(circle at center,#294566,#071421 80%);
    padding:20px 0;
    border-bottom:2px solid #c90000;
}

.header-live img{
    width:100%;
    display:block;
}

/* =========================
   TABLE
========================= */

.table{
    width:100%;
    margin:0 !important;
    border-collapse:collapse !important;
    background:#071421 !important;
}

/* =========================
   TITLE BAR
========================= */

#judul{
    background:
    linear-gradient(to bottom,#ff0000,#a30000) !important;

    color:#ffffff !important;

    text-align:center;

    font-size:22px;

    font-weight:900;

    padding:12px !important;

    border:1px solid #ffffff !important;

    text-transform:uppercase;

    letter-spacing:1px;
}

/* =========================
   HEADER TABLE
========================= */

.table th{

    background:
    linear-gradient(to bottom,#ff0000,#b00000) !important;

    color:#ffffff !important;

    border:1px solid #cfcfcf !important;

    padding:10px !important;

    text-align:center;

    font-size:18px;

    font-weight:bold;
}

/* =========================
   TABLE BODY
========================= */

.table td{

    background:
    linear-gradient(to bottom,#162b44,#071421) !important;

    color:#66ffd9 !important;

    border:1px solid #9d9d9d !important;

    padding:8px !important;

    text-align:center;

    font-size:18px;

    font-weight:bold;

    text-shadow:
    0 0 5px rgba(102,255,217,0.6);

    box-shadow:
    inset 0 0 10px rgba(255,255,255,0.05);
}

/* =========================
   HOVER EFFECT
========================= */

.table tbody tr:hover td{

    background:
    linear-gradient(to bottom,#234a74,#10233a) !important;

    transition:0.3s;
}

/* =========================
   FIRST ROW RESULT
========================= */

.table tbody tr:first-child td{

    color:#7fffd4 !important;

    font-weight:900;

    text-shadow:
    0 0 10px #7fffd4;
}

/* =========================
   TABLE RESPONSIVE
========================= */

.table-responsive{

    overflow-x:auto;

    width:100%;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:10px;
    height:10px;
}

::-webkit-scrollbar-track{
    background:#071421;
}

::-webkit-scrollbar-thumb{
    background:#c90000;
    border-radius:10px;
}

/* =========================
   FOOTER
========================= */

.footer{

    text-align:center;

    color:#999;

    padding:20px;

    font-size:14px;

    background:#071421;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.table th{

    font-size:13px;

    padding:8px !important;
}

.table td{

    font-size:13px;

    padding:7px !important;
}

#judul{

    font-size:16px;
}

}

/* =========================
   EXTRA GLOW EFFECT
========================= */

.table{

    box-shadow:
    0 0 25px rgba(0,255,255,0.15);
}

/* =========================
   LIVE DRAW HEADER EFFECT
========================= */

.live-title{

    color:#ff1b1b;

    text-shadow:
    4px 4px 0 rgba(255,255,255,0.35),
    0 0 15px rgba(255,0,0,0.7);

    font-size:60px;

    font-weight:900;

    text-align:center;
}

/* =========================
   IMAGE FIX
========================= */

img{

    max-width:100%;

    height:auto;

    display:block;
}