@charset "UTF-8";

:root {
    --primary-color: #013b7a;
    --secondary-color: #03152b;
    --tertiary-color: #007bff;
    --color-light: #fff;
    --color-dark: #000;
    --hover-color-dark: #03152b;
    --hover-color-light: #007bff;
    --linear-gradient: linear-gradient(to left, #264361, #396594 40%, #396594 60%, #264361 100%);
    --linear-gradient-dark: linear-gradient(108.46deg, #013b7a 0%, #03152b 100%);
    --vertical-gradient-dark: linear-gradient(to bottom, #274463, #386592 50%, #386592 50%, #274463 100%);
    --border-bottom: #0067cb;
    --btn-regis-bg: #013b7a;
    --font-family: Arial, Helvetica, sans-serif;
}

[data-bs-theme="dark"] {
    --bs-body-bg: #000;
    --bs-body-color: #fff;
    --bs-link-color-rgb: 247, 247, 247;
    --bs-link-hover-color-rgb: 255, 255, 255;
}

[data-bs-theme="light"] {
    --bs-body-bg: #fff;
    --bs-body-color: #000;
    --bs-link-color-rgb: 37, 37, 37;
    --bs-link-hover-color-rgb: 20, 20, 20;
}

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot');
    src: url('../fonts/icomoon.eot') format('embedded-opentype'), url('../fonts/icomoon.woff2') format('woff2'), url('../fonts/icomoon.ttf') format('truetype'), url('../fonts/icomoon.woff') format('woff'), url('../fonts/icomoon.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

body {
    font-family: var(--font-family);
}

a {
    text-decoration: none;
    color: var(--primary-color)
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color)
}

img {
    max-width: 100%;
    height: auto;
}

.full-content {
    padding-left: 240px;
}

.form-control,
.form-select {
    border-color: #9e9e9e;
    min-width: 100px;
}

.form-control.disc {
    min-width: 60px;
}

.form-select.logic-form {
    min-width: 70px;
    width: 70px;

}

.lap-white .nav-pills .btn {
    color: var(--color-light);
}

.nav-pills .btn {
    white-space: nowrap;
}

tfoot {
    font-weight: bold;
}

.icomoon {
    font-family: 'icomoon';
    font-style: normal;
}

.icon-atm:before {
    content: "\e90f";
}

.icon-coinbag:before {
    content: "\e925";
}

.icon-home:before {
    content: "\e91e";
}

.icon-gift:before {
    content: "\e901";
}

.icon-chat:before {
    content: "\e913";
}

.icon-close:before {
    content: "\e918";
}

table.dataTable thead>tr>th.dt-ordering-asc:first-child .dt-column-order {
    display: none;
}

table.dataTable thead>tr>th.dt-ordering-asc:first-child {
    padding-right: 0.5rem;
}

.title-content {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
}

.formTable > div {
    border: 1px solid var(--primary-color);
    margin: 1rem 0;
    padding-bottom: 1rem;
}

.formTable h4 {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--color-light)
}

.formTable > div > div {
    padding: 0.5rem 1rem;
    align-items: center;
}

.formContent {
    padding-bottom: 1rem;
}

.login {
    background: #f0f5f9;
}

.login-form {
    background: var(--linear-gradient);
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px #000, 0 0 15px rgb(13,110,253);
}

.login-form form {
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
}

.login-form form label {
    font-weight: bold;
}

.right-transparent {
    border-right: 1px solid transparent;
}

/************************ Switch *****************************/

.form-switch {
    position: relative;
    display: inline-block;
}

.switch-label {
    position: absolute;
    top: 50%;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    transform: translateY(-50%);
    transition: all 0.5s ease-out;
}

.form-switch .form-check-input {
    appearance: none;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background-position 0.5s ease;
}

.form-switch .form-check-input:checked {
    background-color: #077000;
}

.form-switch .form-check-input {
    width: 4em;
    height: 1.75em;
    margin-top: 0;
    background-color: #ffc7c7;
}

.switch-off {
    left: 30px;
}

.switch-on {
    left: 15px;
}

/*************************************************************/

/*********************** Table Checkbox **********************/

table.table.payment.dataTable>tbody>tr.selected a {
    color: var(--color-light);
}

/*************************************************************/

/************************ Sidebar-Nav ************************/

nav.navbar {
    flex-direction: column;
    padding: 0;
    align-items: stretch;
}

.sidebar-nav {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 1px 0 5px var(--primary-color), 1px 0 10px var(--primary-color);
    overflow-y: auto;
    z-index: 999;
    width: 240px;
}

.logo {
    margin: 0.5rem auto;
}

/******************* Nav Sidebar **********************/

.sidebar {
    background: var(--vertical-gradient-dark);
    transition: 0.5s;
    width: 100%;
    color: #fff;
}

#datetime {
    height: 24px;
}

.nama-agen {
    display: flex;
    flex-direction: column;
}

.nama-web {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--linear-gradient-dark);
    font-weight: bold;
}

.menu-sidebar {
    background: var(--tertiary-color);
    width: 100%;
}

.menu-sidebar ul {
    padding: 0;
    margin: 0;
}

.menu-sidebar ul li a {
    display: block;
    color: #fff;
    padding: 0.15rem 0.75rem;
    width: 100%;
    border-top: 1px solid var(--secondary-color);
}

.menu-sidebar ul li.active a,
.menu-sidebar li a:hover {
    background: var(--tertiary-color);
    filter: brightness(150%);
    color: var(--color-dark);
}

.menu-sidebar ul li:first-child a {
    border-top: none;
}

.menu-sidebar ul li .form-control {
    border-radius: 0;
}

.menu-sidebar h5 {
    margin-bottom: 0;
    background: var(--secondary-color);
    color: gold;
    padding: 0.25rem 0.75rem;
    font-size: 1.1rem;
}

.menu-sidebar .form-select {
    border-radius: 0;
    padding: .25rem 2.25rem .25rem .75rem;
}

.nav-footer {
    padding: 1rem 1rem 0;
}

/*******************************************************/

/************************************************************/

/************************* Marquee ***************************/
.att {
    font-size: 0.9rem;
}

.running-text {
    background: #000;
    color: #fff;
}

.marquee {
    position: relative;
    white-space: nowrap;
    flex-grow: 1;
    overflow: hidden;
    line-height: 30px;
}

.marquee-isi {
    overflow: hidden;
}

.marquee span {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    position: relative;
    left: -60%;
    -moz-animation-name: marquee;
    -webkit-animation-name: marquee;

    -moz-animation-duration: 40s;
    -webkit-animation-duration: 40s;

    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

.marquee:hover span {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
}

@-webkit-keyframes marquee {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

@-moz-keyframes marquee {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

/*****************************************************/

/************************ Notif *****************************/

.notif a {
    padding: 0.75rem;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
}

.notif-memo {
    background-color: #004cff;
}

.notif-depo {
    background-color: #2cb100;
}

.notif-wd {
    background-color: #f00;
}

.notif-memo.active {
    animation: blinkMemo 1s linear infinite;
}

@keyframes blinkMemo {
    0% {
        background-color: #004cff;
    }
    25% {
        background-color: #0036b4;
    }
    50% {
        background-color: rgb(13,110,253);
    }
    75% {
        background-color: #0036b4;
    }
    100% {
        background-color: #004cff;
    }
}

.notif-depo.active {
    animation: blinkDepo 1s linear infinite;
}

@keyframes blinkDepo {
    0% {
        background-color: #2cb100;
    }
    25% {
        background-color: #238a00;
    }
    50% {
        background-color: #0e3800;
    }
    75% {
        background-color: #238a00;
    }
    100% {
        background-color: #2cb100;
    }
}

.notif-wd.active {
    animation: blinkWD 1s linear infinite;
}

@keyframes blinkWD {
    0% {
        background-color: #f00;
    }
    25% {
        background-color: #b00000;
    }
    50% {
        background-color: #700000;
    }
    75% {
        background-color: #b00000;
    }
    100% {
        background-color: #f00;
    }
}

.table-overview thead th {
    background-color: var(--secondary-color);
    color: var(--color-light);
    text-align: center;
    font-size: larger;
}

.table-overview tbody th {
    text-align: right;
}

tbody th,
tbody td {
    vertical-align: middle;
}

.table-overview tbody th,
.table-overview tbody td:last-child {
    width: 49.5%;
}

.table-overview tbody td:nth-child(2) {
    width: 1%;
}

.news-update {
    margin-top: 1rem;
}

.news-update h3 {
    background: var(--secondary-color);
    color: var(--color-light);
    text-align: center;
    padding: 0.5rem;
    margin: 0;
}

.news-isi {
    background-color: var(--tertiary-color);
    color: var(--color-light);
    border-bottom: 1px solid #fff;
    padding: 1rem;
}

.news-date {
    font-size: 11px;
}

.news-isi p {
    margin: 0;
}

/*************************************************************/

/*********************** Nama Pemain *************************/

.alertP {
    background: #fffbf0;
    border: 1px solid #fff3d3;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alertP i {
    cursor: pointer;
}

.tanya {
    border-radius: 50%;
    background: #007bff;
    line-height: 15px;
    color: #fff;
    width: 15px;
    height: 15px;
    font-size: 10px;
    text-align: center;
    font-weight: bold;
    margin-left: 0.25rem;
}

.btn-nP {
    background-color: var(--primary-color);
    border-radius: 0.375rem 0 0 0.375rem;
}

.btn-nP.active,
.btn-nPb.active,
.btn-nP:hover,
.btn-nPb:hover {
    background-color: var(--tertiary-color);
}

.btn-nPb {
    background-color: var(--secondary-color);
    border-radius: 0 0.375rem 0.375rem 0;
}

.formSearch {
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.65rem;
}

.tableSearch {
    margin: 0;
}

.tableSearch>:not(caption)>*>*{
    padding: 0.25rem;
}

.tableSearch .form-control,
.tableSearch .form-select {
    padding: .15rem .75rem
}

/*************************************************************/

/************************* Transaksi *************************/

.transaksi-baru .formContent > label {
    margin: 0.25rem;
}

.transaksi-baru .formContent > label > input {
    margin-right: 0.25rem;
}

.transaksi-baru .formContent a.transLink {
    text-decoration: underline;
    color: var(--primary-color);
}

.transaksi-baru .formContent a.transLink:hover {
    color: var(--tertiary-color);
}

/*************************************************************/

/************************ Bank-List *************************/

.bank-list {
    text-align: center;
}

.bank-list h4 {
    margin: 0;
    color: #fff;
    padding: 0.5rem;
}

.bank-list > table {
    margin-bottom: 0;
    border: 2px solid #dee2e6;
}

.bank-list table thead th:nth-child(2),
.bank-list table tbody td:nth-child(2) {
    text-align: left;
}

h4.bankList-update {
    margin: 0;
    background-color: var(--primary-color);
    padding: 0.5rem;
    color: var(--color-light);
    font-size: 1.25rem;
}

/************************************************************/

/************************* laporan **************************/

.laporan tr td.positive,
.positive {
    color: rgb(13,110,253);
}

.laporan tr td.negative,
.laporan tr td.down,
.laporan tr td font.down,
.laporan tbody tr td.negative a,
.laporan tbody tr td a.negative,
.negative {
    color: rgb(220,53,69);
}

.laporan tr td.up,
.laporan tr td font.up {
    color: rgb(25,135,84);
}

.laporan tbody tr td a {
    color: rgb(13,110,253);
    text-decoration: underline;
}

/************************************************************/

/************************** Role ****************************/

.submenu_1, .submenu_2, .submenu_3, .submenu_4,
.submenu_5, .submenu_6, .submenu_7, .submenu_8 {
    display: none;
}

/************************************************************/

/************************** Memo ****************************/

.memo h4 {
    text-align: center;
    background-color: var(--primary-color);
    padding: 0.5rem 0;
    color: var(--color-light);
    margin: 0;
    font-size: 1.1rem;
}

.memo .table-borderless td {
    padding: .5rem 0;
}

.memo .table-borderless td {
    padding: .5rem 0;
}

.memo-top.table td:first-child {
    width: 20%;
}

.memo-top.table td:nth-child(2) {
    width: 3%;
    text-align: center;
}

.unread {
    font-weight: bold;
}

.date-pesan {
    font-size: 0.8rem;
}

/************************************************************/

/********************** Ganti-Password **********************/

/* PIN Input Field */
input.pinInput {
    width: 200px;
    padding: 5px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 5px 0 0 5px;
    position: relative;
}

/* Toggle Button */
button.showPinButton {
    padding: 5.5px 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    margin-bottom: 10px;
}

button.showPinPadButton:hover {
    background-color: #218838;
}

.pin-pad {
    position: absolute;
    top: 0;
    right: 0;
    left: 333px;
    background-color: white;
    border: 2px solid #333;
    padding: 10px;
    border-radius: 10px;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.login .pin-pad {
    top: 45px;
    left: 0;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

button {
    padding: 5px;
    font-size: 18px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

button:active {
    background-color: #004494;
}

/***********************************************************/

/********************* history-transaksi **********************/

#history-transaksi.laporan td:last-child {
    text-align: center;
}

#history-transaksi.laporan tbody td:nth-child(5) {
    color: rgb(25,135,84);
}

#history-transaksi.laporan tbody td:nth-child(6) {
    color: rgb(220,53,69);
}

#history-transaksi.laporan tbody td:nth-child(7) {
    color: rgb(13,110,253);
}

#history-transaksi.laporan tbody td:nth-child(8) {
    font-weight: bold;
}

.spinball {
    border-radius: 50%;
    background-color: #f00;
    color: #fff;
    padding: 0.25rem
}

/***********************************************************/

/******************** Action & Order ***********************/

.table .action {
    width: 25%;
}

.table .order {
    width: 10%;
}

/***********************************************************/

/************************ Prediksi *************************/

.lap-togel.laporan thead th,
.lap-togel.laporan tbody td:first-child,
.lap-togel.laporan tbody td:nth-child(2),
.lap-togel.laporan tbody td:nth-child(6) {
    text-align: center!important;
}

/***********************************************************/

/************************* Footer **************************/

@media screen and (max-width: 1200px) {
    
}

@media screen and (min-width: 768px) {
    .nama-web {
        justify-content: space-between;
        background: var(--linear-gradient);
    }
    .hide-on-desktop {
        display: none!important;
    }
}

@media screen and (max-width: 767px) {
    .hide-on-mobile {
        display: none!important;
    }
}

@media screen and (max-width: 991px) {

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: calc(var(--swiper-navigation-size) / 2);
    }

    .marquee span {
        font-size: 0.8rem;
        -moz-animation-duration: 15s;
        -webkit-animation-duration: 15s;
    }

    .full-content {
        padding-left: 0;
    }

    .sidebar-nav {
        position: relative;
        width: 100%;
        display: flex;
        box-shadow: none;
    }

    .nav-footer {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #alias .action {
        width: 30%;
    }    
}

@media screen and (max-width: 576px) {
    #alias .action {
        width: 50%;
    }    
}

@media (max-width: 444px) {
    
}

#to-suggestions {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
}

#to-suggestions li {
    padding: 10px;
    cursor: pointer;
}

#to-suggestions li:hover {
    background: #f0f0f0;
}

.suggestions {
    position: absolute;
    z-index: 1000;
    width: max-content;
    max-height: 200px;
    overflow-y: auto;
    border-top: none;
    display: none; /* Initially hidden */
}