@charset "UTF-8";

:root {
    --primary-color: gold;
    --secondary-color: rgb(112 94 0);
    --tertiary-color: rgb(255, 229, 82);
    --fourth-color: #ac9100;
    --fifth-color: #fff600;
    --btnTema-hover: #675000;
    --black-color: #000;
    --white-color: #fff;
    --linear-gradient: linear-gradient(to left, rgb(83, 67, 0), #000 50%, rgb(83, 67, 0) 100%);
    --linear-gradient-light: linear-gradient(to left, rgb(83, 67, 0), rgb(83, 67, 0) 25%, #000 50%, rgb(83, 67, 0) 75%, rgb(83, 67, 0) 100%);
    --vertical-gradient: linear-gradient(to bottom, rgb(83, 67, 0), #000 50%, rgb(83, 67, 0) 100%);
    --border-color: gold;
    --padding-logo: 101px;
    --footer-background: rgb(29 28 24);
    --font-family: Arial, Helvetica, sans-serif;
    --bs-gap: 0.5rem;
    --bs-body-font-size: 0.75rem;
}

.btn {
    font-size: 0.75rem;
}

.btn[name=btn_process] {
    margin-bottom: 0.75rem
}

.table>:not(caption)>*>* {
    padding: .5em .2rem;
    vertical-align: middle;
}

[data-bs-theme="dark"] {
    --bs-body-bg: #060606;
    --bs-body-color: var(--white-color);
    --bs-link-color-rgb: 247, 247, 247;
    --bs-link-hover-color-rgb: 255, 255, 255;
}

[data-bs-theme="light"] {
    --bs-body-bg: var(--white-color);
    --bs-body-color: var(--black-color);
    --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;
}

i {
    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    padding-top: var(--padding-logo);
}

a {
    text-decoration: none;
}

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

ol,
ul {
    list-style: none;
}

.form-control, .form-select {
    padding: .35rem .7rem;
    font-size: var(--bs-body-font-size);
}

.form-control,
.form-control:focus {
    background: var(--white-color);
    color: var(--black-color);
}

.form-control::placeholder {
    color: #999;
    font-style: italic;
}

#main {
    width: 0;
    position: fixed;
    height: 100%;
    top: 0px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.border-gold {
    border: 1px solid gold;
    text-shadow: 0 0 2px #000;
}

.light-green {
    color: #8cff4e!important;
}

.light-red {
    color: #ffc0cb!important;

}

.light-blue {
    color: #00ffff!important;
}

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

.daterangepicker .ranges li,
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    color: #000;
}

/********************** Side Nav ***************************/
#menu-sidebar {
    background: var(--secondary-color);
    padding: 0;
    height: 100%;
    width: 110px;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: -110px;
    overflow-x: hidden;
    transition: 0.5s;
}

.logo-menu {
    background: linear-gradient(1turn,
            var(--mobile-background),
            var(--mobile-navbar-background-gradient) 101%);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    width: 300px;
}

.logo-menu {
    display: flex;
    padding: 1rem;
    justify-content: center;
}

.nav-sidenav-list {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    flex: 1;
    overflow: auto;
    width: 110px;
    padding-bottom: 100px;
}

.nav-sidenav-list a {
    width: 100%;
    padding: 10px 25px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    font-size: 0.75rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.nav-sidenav-list a:last-child {
    border-bottom: none;
}

.mobile-menu {
    padding: 10px;
    color: var(--white-color);
    z-index: 1;
}

.mobile-menu svg {
    width: 27px;
    height: 27px;
}

.close-sidebar:hover {
    background: var(--tertiary-color);
}

.close-sidebar {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 0.75rem;
    padding: 2px 7px;
    cursor: pointer;
    background: var(--black-color);
    border: 1px solid var(--white-color);
    border-radius: 100%;
}

.white-bg {
    background: #fefefe;
    padding: 1rem;
    color: #000;
}

.btn.btn-tema {
    background: var(--primary-color);
    background-image: -webkit-linear-gradient(top, var(--primary-color) 0%, var(--fourth-color) 100%);
    background-image: linear-gradient(to bottom, var(--primary-color) 0%, var(--fourth-color) 100%);
    margin: 0.25rem;
    background-repeat: repeat-x;
    color: #000000;
    border: 1px solid var(--fifth-color) !important;
    border-width: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    font-weight: bolder;
}

.btn.btn-tema:hover {
    color: var(--btnTema-hover);
}

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

/************************ Header *****************************/

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: var(--black-color);
    border-bottom: 5px solid var(--border-color);
}

.btn-daftar {
    background: var(--linear-gradient);
    border: 1px solid var(--border-color);
    padding: 0.5rem 2rem;
    text-shadow: 0 0 1px #000, 0 0 5px #000;
}

.btn-daftar:hover {
    background: var(--black-color);
    border: 1px solid var(--border-color);
}

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

/************************ Slider *****************************/

#slider img {
    width: 100%;
}

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

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

.running-text {
    background: var(--black-color);
    color: var(--white-color);
    border-bottom: 1px solid var(--border-color);
}

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

.marquee-isi {
    overflow: hidden;
}

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

    /* Set the duration, s = seconds */
    -moz-animation-duration: 40s;
    -webkit-animation-duration: 40s;

    /* How many times the animation to repeat */
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;

    /* Several options available, use linear for this example */
    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

/* Stop the marquee on :hover */
.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%;
    }
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

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

/********************* Daftar ************************/

.radio_2 {
    padding-left: 0;
    padding-right: 0;
}

.radio_2 label {
    background-color: #fff;
    border: 1px solid var(--fourth-color);
    color: var(--fourth-color);
    display: block;
    height: 32px;
    line-height: 32px;
    text-align: center;
    transition: .7s;
    width: 100%
}

.radio_2 label .marked {
    background-color: #fff;
    border-radius: 50%;
    color: var(--fourth-color);
    display: inline-block;
    height: 16px;
    line-height: 16px;
    margin-left: 2px;
    opacity: 0;
    transition: .2s;
    vertical-align: middle;
    vertical-align: text-bottom;
    width: 16px
}

.radio_2 input[type=radio] {
    height: 0;
    opacity: 0;
    position: absolute;
    width: 0
}

.radio_2 input[type=radio]:checked~label {
    background-color: var(--fourth-color);
    color: #fff;
    transition: .7s
}

.radio_2 input[type=radio]:checked~label .marked {
    opacity: 1;
    transition: .2s
}

.icon-checkmark:before {
    content: "\e914";
}

.icon-refresh::before {
    content: "\f021";
}

.icon-envelop::before {
    content: "\e904";
}

#form-daftar h3 {
    border-left: 6px solid var(--fourth-color);
    padding-left: 0.3rem;
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

#form-daftar .btn-tema {
    margin: 1rem auto;
    display: block;
}


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

/******************** form-login *********************/

#form-login {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-align: center;
    color: white;
    padding: 15px 15px 10px 15px;
    border: 1px solid var(--border-color);
}

#form-login input {
    height: 35px;
    font-size: 0.75rem;
    border: none;
    color: #495057;
}

#form-login .input-group input {
    text-align: left;
}

.showpassword {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    border-radius: 0 0.375rem 0.375rem 0;
    cursor: pointer;
}

.ubahPass {
    border: 1px solid var(--bs-border-color);
    border-radius: 0px 5px 5px 0px;
    -moz-border-radius: 0px 5px 5px 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
}

.showpassword img {
    filter: contrast(0.5);
}

.button-login {
    width: 100%;
    padding: 5px 0px;
    margin-bottom: 5px;
    font-weight: bold;
    border-radius: 5px;
}

#form-login .button-color {
    background: var(--tertiary-color);
    color: var(--black-color);
}

#form-login .button-color:hover {
    background: var(--primary-color);
}

.forget-password {
    font-size: 0.75rem;
    font-style: italic;
    text-decoration: underline;
    text-align: left;
}

.forget-password:hover {
    text-decoration: none;
}

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

/******************** produk-home ********************/

.gm-ttl,
.rns,
.nv-btn {
    gap: var(--bs-gap);
}

.gm-ttl h3::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
}

.rns-btn {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #D3D4D7;
}

.rns-btn svg {
    width: 0.625rem;
    color: #222939;
}

.rns-btn:hover,
.lbx .bp:hover {
    background: #BDBFC4;
}

.nv-btn {
    display: flex;
}

.nv-btn .rns-btn {
    width: 32px;
    border-radius: 50%;
}

.result {
    border-radius: 8px;
    padding: 0.6rem;
    display: grid;
    grid-template-areas:
        "pasaran"
        "keluaran"
        "tanggal";
    overflow: hidden;
    font-weight: 700;
    aspect-ratio: 1/1;
}

.resultBg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    filter: brightness(40%);

}

.result>.pasaran {
    grid-area: pasaran;
    text-align: center;
    width: 100%;
    text-shadow: 0 0 1px var(--primary-color);
    z-index: 3;
}

.result>.keluaran {
    grid-area: keluaran;
    padding: 0;
    font-family: "Oswald", sans-serif;
    line-height: 36px;
    font-size: 36px;
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color), 0 0 5px #000;
    display: grid;
    place-items: center;
    z-index: 3;
    letter-spacing: 5px;
}

.result>.tanggal {
    grid-area: tanggal;
    width: 100%;
    height: 100%;
    background: var(--vertical-gradient);
    font-size: 0.7rem;
    padding: 0;
    display: grid;
    place-items: center;
    font-family: "Abel", sans-serif;
    color: var(--result-tanggal-color);
    border-radius: 50px;
    z-index: 3;
}

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

/********************* dashboard *********************/

.main-head {
    background: var(--secondary-color);
}

.main-head h3 {
    color: var(--fifth-color);
    margin-bottom: 0;
    font-size: 1.25rem;
}

.main-head > div > span {
    font-size: 0.9rem;
}

.list-togel > div {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
}

.angka-togel {
    color: var(--tertiary-color);
    font-weight: bold;
}

.bet-closed {
    color: #ff4343;
    font-weight: bold;
}

.scroll-game {
    max-height: 100vh;
    overflow-y: auto;
}

.slot-list {
    grid-template-columns: 1fr 1fr;
}

.slot-list .card {
    border: 1px solid rgb(25,135,84);
}

.dashboard .card,
.slot-list .card {
    border-radius: 1rem;
    margin: 0 auto;
    max-width: 220px;
}

.sportbook-list {
    grid-template-columns: 1fr 1fr;
}

.sportbook-list .card {
    border: 1px solid rgb(220,53,69);
}

.casino-list {
    grid-template-columns: 1fr 1fr;
}

.casino-list .card {
    border: 1px solid rgb(13,110,253);
}

.esport-list .card {
    border: 1px solid rgb(108,117,125);
}

.fishing-list .card {
    border: 1px solid rgb(33,37,41);
}

.card-head {
    border-radius: 1rem 1rem 0 0;
}

.card-head img {
    box-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
    border-radius: 1rem;
}

.card-title,
.popup-title {
    font-weight: bold;
    color: var(--tertiary-color);
    text-shadow: 0 0 2px var(--primary-color);
    word-break: break-word;
}

.popup-title {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.modal-content {
    border: 1px solid var(--primary-color);
}

.modal-body .nv-btn .rns-btn {
    border-radius: 0;
    width: 40px;
    height: 40px;
}

.modal-body .rns-btn svg {
    width: 0.75rem;
}

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

/*********************** Togel ***********************/

.menu-select {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem 0.75rem;
    align-items: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    width: 100%;
}

.tipe-betting {
    background: var(--linear-gradient-light);
    border-radius: 0.375rem 0.375rem 0 0;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 2px solid #26001b;
    margin-top: 1rem;
}

.tipe-betting label,
.menu-generator label {
    width: 15%;
}

.menu-generator {
    background: var(--linear-gradient-light);
    border-radius: 0 0 0.375rem 0.375rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.tab-selector {
    background: var(--secondary-color);
    border-radius: 0.375rem 0.375rem 0 0;
    padding: 0.6rem;
}

.contentset {
    padding: 1rem;
}

.centang {
    margin-right: 0.2rem;
    cursor: pointer;
}

.auto th {
    border-bottom: none;
    padding-bottom: 0;
}

input[type="text"]:disabled {
    background: #dddddd;
}

.no-table {
    width: 6%;
}

[class^="tile color"].color .table-togel>thead>tr>td {
    border-bottom: 0;
    padding-bottom: 0;
    vertical-align: bottom;
}

[class^="tile color"].color .table-togel>thead>tr>td:after {
    background-color: rgba(255, 255, 255, 0.3);
    content: "";
    display: block;.
    height: 4px;
    width: 100%;
    margin-top: 0.5rem;
}

[class^="tile color"] input[type=number],
[class^="tile color"] input[type=tel],
[class^="tile color"] input[type=text],
[class^="tile color"] textarea,
[class^="tile color"] select {
    border-radius: 5px;
    font-size: 0.75rem;
    padding: 3px 5px;
    margin: 0;
    border: 1px solid #818285;
    width: 100%;
    text-align: center;
    min-height: 35px;
}

[class^="tile color"] input.auto-colok {
    margin-left: 5px;
}

[class^="tile color"] input.rclass,
[class^="tile color"] input.auto-colok,
[class^="tile color"] input.onlyNumber,
[class^="tile color"] input.autobet {
    font-family: Verdana;
    color: #000000;
    background: #fff;
    border: 1px solid #ffffff;
    cursor: pointer;
    font-weight: bold;
    flex: 1 0 0%;
}

.table-togel {
    width: 100%;
    color: #fff;
    background: transparent;
}

#baris {
    width: auto;
}

.first-no {
    width: 17%;
}

.radbut {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
}

.radbut input,
.radbut label {
    cursor: pointer;
    margin-right: 0.3rem;
}

.bg-yellow {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
    background-image: var(--bs-gradient)!important;
    color: #000!important;
}

[class^="tile color"].color table>thead>tr>td,
[class^="tile color"].color table>thead>tr>th,
[class^="tile color"].color table>tbody>tr>td,
[class^="tile color"].color table>tbody>tr>th,
[class^="tile color"].color table>tfoot>tr>td,
[class^="tile color"].color table>tfoot>tr>th {
    border-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid #fff;
    vertical-align: middle;
}

.tile.color [class^="tile color-"] {
    color: #fafafa;
    background-color: transparent;
}

.tile.color .tile.color-widget {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.tile.color {
    border-radius: 10px;
}

.tile.color form {
    padding: 1rem;
    color: #fff;
}

.tab-content {
    overflow-x: auto;
}

.tile.color .tab-pane {
    border-radius: 0 0 0.375rem 0.375rem;
}

.taruhan {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.taruhan .taruh {
    align-self: flex-end;
}

.x1000 {
    flex: 0 0 auto;
    width: auto;
    padding: 5px;
    text-align: left;
}

#caraMain {
    width: 100%;
}

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

/********************* Peringatan ********************/

.peringatan {
    background: #ffc0cb;
    font-size: smaller;
}

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

/********************** Deposit **********************/

.unread {
    font-weight: bold;
}

.laporan a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

/*********************** table ***********************/

table.centered-table thead th,
table.centered-table tbody td {
    text-align: center!important;
    vertical-align: middle;
}

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

/******************** Produk-Home ********************/

.produk-home .nav-pills {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 7px;
    margin-top: 5px;
}

.produk-home .nav-link {
    background: var(--linear-gradient);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.75rem;
    color: var(--white-color);
    padding: 10px 5px;
    border: 1px solid var(--border-color);
    height: 100%;
    text-align: center;
    text-shadow: 0 0 1px #000, 0 0 5px #000;
}

.produk-home .nav-link.active,
.produk-home .nav-link:hover {
    background: var(--black-color);
}

.produk-home .nav-link img {
    margin-bottom: 0.25rem;
}

.produk-grids {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
}

.produk-items {
    text-align: center;
}

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

/********************** Payment **********************/

.payment {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}

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

.blink {
    text-decoration: blink;
    font-weight: bold;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.box-grid-3 {
    grid-column: span 3;
}

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

/********************** Layanan **********************/

.layanan {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--black-color);
    border-radius: 10px;
    color: #f1f1f1;
}

.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";
}

.progress-lyn i {
    color: #a5a3a1;
    background: linear-gradient(180deg, #a5a3a1, #fefefe 37.29%, #adaba9 70.1%, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
}

.progress-lyn {
    padding: 16px 9px;
    background: linear-gradient(180deg, rgba(117, 115, 98, 0.5) 24.5%, rgba(28, 26, 16, 0.5));
    box-shadow: 0 4px 24px 1px rgba(0, 0, 0, .15);
    border-radius: 10px;
    margin: 5px 0;
    width: 49.5%;
    border: 1px solid #f1f1f1;
}

.head-lyn {
    display: flex;
    align-items: center;
}

.circle-lyn {
    width: 2em;
    height: 2em;
    font-size: 25px;
    display: inline-block;
    line-height: 2em;
    vertical-align: middle;
    background: var(--black-color);
    border-radius: 50%;
    text-align: center;
    margin-right: 0.5rem;
    border: 1px solid #f1f1f1;
}

.text-lyn .txt-titleLyn {
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    margin: 0;
    color: var(--tertiary-color);
}

.text-lyn span {
    font-size: 0.75rem;
    line-height: 1.2;
    margin: 0;
}

.footer-lyn p {
    margin-bottom: 0.5rem;
    text-align: right;
    font-size: 0.75rem;
}

.footer-lyn .progress {
    background: var(--black-color);
    border-radius: 10px;
    height: 12px;
    margin-bottom: 10px;
}

.footer-lyn .progress .progress-bar {
    background: linear-gradient(180deg, #a5a3a1, #fefefe 37.29%, #adaba9 70.1%, var(--white-color));
    border-radius: 150px;
    line-height: 12px;
}

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

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

footer {
    background: var(--footer-background);
    padding: 0.5rem 0 6rem;
}

article .accordion h1,
article .accordion p {
    text-align: center;
}

article h1.accordion-button {
    font-size: calc(1rem + 1.5vw);
}

.footer-img {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-top: 20px;
}

.fixed-footer {
    background: var(--secondary-color);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid var(--border-color);
    z-index: 99;
}

.fixed-footer > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    flex: 1 0 0%;
}

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

@media screen and (min-width: 768px) {
    .slot-list,
    .casino-list {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .sportbook-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .logo img {
        width: auto;
        height: 60px;
    }

    .progress-lyn {
        width: 100%;
    }

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

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

    .produk-grids {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .promo img {
        border-top-right-radius: var(--bs-border-radius)!important;
        border-bottom-left-radius: 0!important;
    }
    .promo .rounded-end {
        border-bottom-left-radius: var(--bs-border-radius)!important;
        border-top-right-radius: 0!important;
    }

    .tipe-betting label,
    .menu-generator label {
        width: 22%;
    }

    .table-responsive-md {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}

@media (max-width: 424px) {
    .produk-grids,
    .produk-home .nav-pills,
    .payment {
        grid-template-columns: repeat(3, 1fr);
    }

    #table-togel .btn-tema {
        letter-spacing: 0;
        padding: 0.5rem;
    }

    #table-togel tr td {
        padding: 0.15rem;
    }
}