:root {
    --main-gradient:linear-gradient(to left top,#015eea80,#3498db);
    --main-gradient-2:linear-gradient(to top,#015eea80,#3498db);
    --main-color-1:#015eea80;
    --main-color-2:#3498db;
}
* {
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background-image: url(/asset/background.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center !important;
    background-size: cover !important;
    min-height: 100vh;
    height: 100%;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif
}

a {
    color: #fff
}

a,
a:active,
a:focus {
    outline: 0;
    text-decoration: none
}

a:hover {
    text-decoration: none;
    color: #fff
}

.img-zoom {
    border-radius: 4px
}

p {
    margin: 0
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0
    }

    100% {
        background-position: 0 0
    }
}

@keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

code.scatter {
    color: #efdf78;
    animation: blink 1s infinite
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

img {
    vertical-align: middle;
    border-style: none
}

.title {
    display: flex;
    justify-content: center
}

.title-text {
    color: #fff;
    font-size: 2.5rem
}

.slot {
    display: block
}

.enter {
    display: none
}

.slot .content {
    float: none;
    width: 100%;
    padding: 10px;
    flex: 0 0 100%;
    max-width: 100%;
    background-color: #1d1d1d;
    border-radius: 4px
}

.wrapper {
    width: 100%;
    padding: 0 4px 0 4px;
    margin: 5px 0;
    overflow: hidden;
    position: relative;
    z-index: 0
}

.card {
    float: left;
    width: 20%;
    padding: .5%;
    background: 0 0;
    border: none;
    text-align: center;
    position: relative
}

.card-content {
    padding: 5px;
    color: #fff;
    font-size: 12px;
    border: none;
    overflow: hidden;
    position: relative;
    background: rgb(0, 0, 0, 40%);
    border-radius: .25rem
}

@media (max-width:440px) {
    .card-content {
        margin: 3px
    }
}

.percent {
    height: 18px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    margin: 5px auto
}

.percent p {
    z-index: 15;
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(8px);
    color: #000
}

.percent-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    transition: width .6s ease;
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
    z-index: 10
}

.yellow {
    background-color: #ffc107
}
.red {
    background-color: #dc3545
}
.green {
    background-color: #28a745;
}

.hover-btn {
    position: absolute;
    opacity: 0;
    background-color: rgba(0, 0, 0, .9);
    transition: all .1s ease-in-out;
    z-index: 10;
    width: 100%;
    height: 57%;
    border-radius: 4px 4px 0 0
}

.play-btn {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    align-items: center;
    margin-top: 42%;
    padding: 8px;
    display: block;
    margin-left: 30px;
    margin-right: 30px;
    margin: 42% 30px 42% 30px;
    background-image: var(--main-gradient);
    border-radius: 4px 4px 4px 4px;
    transition: all .3s ease
}

.play-btn:hover {
    color: #fff;
    background-image: var(--main-gradient)
}

.hover-btn:hover {
    opacity: 100%;
    height: 50%;
    width: 95%
}

div.card-container>div>div.card-content>div.hover-btn:hover {
    height: 60%
}

.hover-btn:hover~.img-zoom {
    position: relative
}

.next-btn {
    background: linear-gradient(to bottom, #242424 0, #515151 46%, #242424 100%);
    width: 15%
}

.next-btn {
    background-color: #292a2b;
    border: none;
    color: #fff
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

@media (max-width:992px) {
    .content {
        float: none !important;
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important
    }

    .card {
        width: 25% !important
    }

    .hover-btn {
        display: none
    }

    .hover-btn:hover~.img-zoom {
        transform: scale(1);
        position: relative
    }

    .enter {
        display: block
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

p {
    margin: 0 0 10px
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

.clear {
    clear: both
}

.container {
    background-color: rgb(36, 36, 36, 40%);
    border-radius: 8px;
    padding: 8px;
    margin-right: auto;
    margin-left: auto
}

.marquee-text {
    height: auto;
    display: block;
    line-height: 30px;
    overflow: hidden;
    position: relative
}

.marquee-text div {
    height: auto;
    line-height: 22px;
    font-size: 13px;
    white-space: nowrap;
    z-index: 1;
    font-weight: 600;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    animation: marquee 20s linear infinite;
    margin-top: 3px
}

.marquee-text:hover div {
    animation-play-state: paused
}

.marquee-style {
    color: #fff;
    padding: 5px 0;
    border-radius: 4px
}

@keyframes marquee {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 5px;
    font: 250 11px BebasNeue;
    font-weight: 700;
    width: 100%;
    color: #fff;
    text-shadow: 0 0 3px #000;
    letter-spacing: 1px
}

@keyframes blinking {
    0% {
        border: 5px solid #fff
    }

    100% {
        border: 5px solid #fdbf02
    }
}

@keyframes blinkings {
    0% {
        border: 2px solid #fff
    }

    100% {
        border: 2px solid #fdbf02
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.p-0 {
    padding: 0
}

.col-md-12,
.col-md-4,
.col-md-6,
.col-md-8,
.col-xs-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col-xs-6 {
    float: left;
    width: 50%
}

@media (min-width:768px) {
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%
    }
}

@media (max-width:768px) {
    .logo {
        display: none
    }
}

.mt-1 {
    margin-top: .25rem
}

.mt-2,
.my-2 {
    margin-top: .5rem
}

.my-2 {
    margin-top: .5rem
}

.mb-2 {
    margin-bottom: 1rem
}

.mb-4 {
    margin-bottom: 4rem
}

.my-3 {
    margin-top: .75rem
}

.mb-3,
.my-3 {
    margin-bottom: .75rem
}

.mt-4 {
    margin-top: 1.1rem
}

.mt-5,
.my-5 {
    margin-top: 2rem
}

.mb-5,
.my-5 {
    margin-bottom: 2rem
}

.mx-5 {
    margin-left: .75rem;
    margin-right: .75rem
}

.bottom {
    float: left;
    width: 100%
}

.list {
    margin-bottom: 1rem
}

.list {
    margin-bottom: 1rem
}

.table-dark {
    color: #fff;
    background-color: #343a40
}

.table-dark td,
.table-dark th,
.table-dark thead th {
    text-transform: uppercase;
    border-color: #454d55;
    text-align: center;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    vertical-align: middle
}

.table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, .075)
}

.table-dark td {
    vertical-align: middle
}

.d-none {
    display: none
}

.button {
    display: inline;
    align-items: center;
    background: #000;
    width: 100%;
    border-radius: 5px;
    height: 38px;
    cursor: pointer;
    padding: 5px 20px;
    max-width: 128px;
    color: rgb(255 255 255);
    font-weight: 700;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s, transform .3s, box-shadow .3s;
    will-change: transform;
    min-width: 80px;
    border: 0 solid rgb(255 255 255);
    line-height: 12px;
    animation: blinking .5s infinite;
    transition: all .4s
}

.button:hover {
    color: #e7b10c;
    font-weight: 700;
    text-decoration: none;
    background: rgb(255 255 255);
    cursor: pointer;
    box-shadow: 0 4px 17px rgba(0, 0, 0, .2);
    transform: translate3d(0, -2px, 0);
    border: 2px solid #e7b10c
}

.button:active {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
    transform: translate3d(0, 1px, 0)
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

h1 {
    margin: .67em 0;
    font-size: 2em
}

img {
    border: 0
}

table {
    border-spacing: 0;
    border-collapse: collapse
}

td,
th {
    padding: 0
}

@media print {

    *,
    :after,
    :before {
        color: #000;
        text-shadow: none;
        background: 0 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    a,
    a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    thead {
        display: table-header-group
    }

    img,
    tr {
        page-break-inside: avoid
    }

    img {
        max-width: 100%
    }

    h2,
    h3,
    p {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }

    .table {
        border-collapse: collapse
    }

    .table td,
    .table th {
        background-color: #fff
    }
}

.table {
    width: 100%;
    max-width: 100%
}

.mx-width {
    max-width: 70%
}

.table>tbody>tr>td,
.table>thead>tr>th {
    padding: 18px 0;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table>thead:first-child>tr:first-child>th {
    border-top: 0
}

.table-hover>tbody>tr:hover {
    background-color: #fdbf02
}

.table-head {
    text-align: center;
    background: linear-gradient(to right, #fdbf02, #fdbf02)
}

.list {
    margin-bottom: 1rem
}

.text-center {
    text-align: center
}

@media only screen and (min-width:1200px) {
    .text-white {
        color: #fff
    }
}

.img-zoom {
    width: 100%;
    max-width: 100%
}

@media only screen and (min-width:998px) {
    .img-zoom {
        height: 148px
    }
}

@media only screen and (max-width:998px) {
    .img-zoom {
        height: 128px
    }
}

@media only screen and (max-width:768px) {
    .card {
        width: 33.33% !important
    }

    .img-zoom {
        height: 120px
    }
}

@media only screen and (max-width:584px) {
    .card {
        width: 33.33% !important
    }

    .img-zoom {
        height: 82px
    }

    .m-80 {
        width: 70%
    }

    #xpola {
        font-size: 10px
    }
}

@media only screen and (max-width:440px) {
    .card {
        width: 49% !important
    }

    #xpola {
        font-size: 9px
    }

    #xpola::before {
        font-size: 10px;
        transform: scale(.6)
    }

    .img-zoom {
        height: auto
    }
}

a:hover>.play-btn {
    text-decoration: none;
    color: #000
}

.toplist__label {
    color: #1f2426;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.58;
    color: #1f2426;
    font-size: 28px;
    margin-top: 8px
}

.content.marq {
    display: unset
}

.content.marq-header {
    background-color: var(--main-color-1);
    color: #f3f3f3
}

h3.gacor {
    color: black;
    border-bottom: 1px dotted;
    border-color:var(--main-color-1);
    border-radius: 4px;
    background-image: var(--main-gradient)
}

.table>tbody>tr>td,
.table>thead>tr>th {
    padding: 2px 0;
    line-height: 1.42857143;
    vertical-align: top
}

.m-hide {
    display: none
}

.search {
    align-items: baseline;
    border: 1px solid grey;
    border-radius: 5px;
    height: 25px;
    width: 100%;
    padding: 2px 23px 2px 30px;
    outline: 0;
    background-color: #f5f5f5
}

.search-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 14px
}

.clear-icon {
    position: absolute;
    top: 9px;
    right: 8px;
    width: 12px;
    cursor: pointer;
    visibility: hidden
}

.search:focus,
.search:hover {
    border: 1px solid #009688;
    background-color: #fff
}

@media screen and (max-width:600px) {
    h3.gacor {
        font-size: 1rem
    }
}

.box-logo {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 4px
}

#jamgacor {
    position: relative;
    z-index: 100
}

#xpola {
    position: relative;
    z-index: 99;
    min-height: 90px
}

.d-block {
    display: block !important
}

.bg-dark {
    background-color: #121212 !important
}

.rounded {
    border-radius: .25rem !important
}

.p-1 {
    padding: .25rem !important
}

.mt-md-1,
.my-md-1 {
    margin-top: .25rem !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.text-danger {
    color: #dc3545 !important
}

.hidden {
    display: none
}

.px-2 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.f-1 {
    font-size: 14px
}

.p-2 {
    padding-top: 20px;
    padding-bottom: 2px;
    padding-left: 0;
    padding-right: 0
}

#xpola:before {
    color: #fff;
    content: "POLA SLOT";
    position: relative;
    display: block;
    padding: 4px;
    left: 0;
    width: 100%;
    background-image: var(--main-gradient);
    border-radius: 8px;
    box-shadow: 0 1px 0 #06f;
    font-size: 14px;
    transform: scale(.7);
    font-weight: 900
}

.card-container {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center
}

.main_menu {
    background: #001f4d;
    padding: 1rem;
    border-radius: 4px;
    position: sticky;
    top: 0;
    z-index: 1000
}

.main_menu section {
    padding-top: 1px;
    padding-bottom: 1px;
    border-top: 1px solid hsla(0, 0%, 100%, .1);
    border-bottom: 1px solid hsla(0, 0%, 100%, .1)
}

.main_menu a:hover {
    background-image: linear-gradient(to bottom, #e7d77e 0, #a77a33 100%);
    border-radius: 4px
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px
}

.flex-container a {
    flex-basis: calc(25% - 8px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    overflow: hidden
}

@media (min-width:768px) {
    .flex-container a {
        flex-basis: calc(20% - 16px)
    }
}

.jamRange {
    font-weight: 700;
    color: #0a0a0a
}

.mr-1 {
    margin-right: .25rem
}

.text-bold {
    font-weight: 700
}

.text-shadow-1 {
    text-shadow: 1px 1px 2px #010101
}

.hot-game {
    background: url(/asset/hot.gif)
}

.top-game {
    background: url(/asset/top.gif)
}

.hot-game,
.top-game {
    background-repeat: no-repeat !important;
    position: absolute;
    width: 3rem;
    top: 0;
    z-index: 2;
    height: 2.9rem;
    left: .4rem
}

.hot-game,
.top-game {
    background-repeat: no-repeat
}

@media (min-width:768px) {
    .hot-game {
        background-size: 50px
    }

    .top-game {
        background-size: 50px
    }
}

@media (max-width:767px) {
    .hot-game {
        background-size: 30px
    }

    .top-game {
        background-size: 30px
    }
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

.pola-1 {
    text-align: center
}

@media only screen and (max-width:440px) {
    #xpola>.table-pola {
        font-size: .6rem;
        max-width: 100%;
        width: 9rem;
        font-weight: 700
    }

    #xpola>.table-pola-pp {
        font-size: .6rem;
        max-width: 100%;
        width: 7rem;
        font-weight: 700
    }
}

@media only screen and (min-width:441px) {
    #xpola>.table-pola {
        font-size: .7rem;
        max-width: 100%;
        width: 9rem;
        font-weight: 700
    }
}

#xpola>.table-pola-pp {
    font-size: .7rem;
    max-width: 100%;
    width: 7rem;
    font-weight: 700
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.span-red {
    color: #dc3545
}

.box-logo img {
    max-width: 100%;
    height: auto
}

@media (max-width:767px) {
    .box-logo img {
        max-width: 160px
    }
}

footer {
    font-size: 12px;
    background: #121212;
    color: #aaa;
    text-align: center;
    padding: 8px
}

@-webkit-keyframes snowflakes-fall {
    0% {
        top: -10%
    }

    100% {
        top: 100%
    }
}

@-webkit-keyframes snowflakes-shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px)
    }
}

@keyframes snowflakes-fall {
    0% {
        top: -10%
    }

    100% {
        top: 100%
    }
}

@keyframes snowflakes-shake {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(80px)
    }
}

.emptybox {
    height: 8px
}

.box-tombol {
    height: 95%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 50%
}

.btn-5 {
    box-sizing: border-box;
    border: 0 solid;
    font-family: monospace;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 255, 255, .5);
    outline-offset: 0;
    text-shadow: none;
    transition: all 1.25s cubic-bezier(.19, 1, .22, 1)
}

.btn-5:hover {
    box-sizing: border-box;
    border: 1px solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #427388
}

@media only screen and (min-width:768px) {
    .sticky {
        position: sticky;
        top: 0;
        z-index: 1000
    }
}

#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: 0;
    background-color: #fff;
    color: red;
    cursor: pointer;
    padding: 15px;
    border-radius: 15px;
    font-size: 24px
}

#backToTop:hover {
    background-color: #000
}

#header-logo {
    margin: 12px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap
}

#header-logo>img {
    display: block;
    padding: 10px
}

#modern-marquee {
    background: var(--main-color-2);
    position: relative;
    width: 100%;
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
    font-size: 13px
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

.card.game-one-half-slot.slots-games.animate__animated.animate__bounceIn {
    background-color: rgb(0, 0, 0, 0%);
    border: none
}

.partner-item {
    transition: background-color .3s
}

.partner-item:hover {
    background-color: rgba(0, 0, 0, .05)
}

.partner-link {
    display: block;
    padding: 0 10px;
    text-align: center;
    width: 100%
}

div.col-12.text-center.mx-auto.mx-width.d-prediksi {
    max-width: 920px
}

a[data-lightbox=gallery]>img {
    width: 516;
    height: 516;
    aspect-ratio: 1/1
}

div>#result-des {
    background-color: rgb(33 37 41 / 70%) !important
}
.labelpasaran > img {
    margin: 0 auto;
    width: 100px;
}
.container-prediksi {
    padding: 8px;
    background: rgba(3, 3, 3, 0.486);
    margin: 2px;
}
.f-direction-column {flex-direction: column;justify-content: center;}
.card-prediksi {
    background: #0000007a;
    min-width: 250px;
}
.card-result{
    margin: 0 auto;
    justify-content: center;
    flex-direction: column;
    background: var(--main-gradient);
    margin: 20px;
}
.labelpasaran{
    padding: 25px;
}
.prediksi-button {
    background-image: var(--main-gradient);
    padding: 5px;
    width: calc(50% - 2px);
    flex-direction: column;
    text-align: center;
    touch-action: manipulation;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: none;
}
.b-radius{
    border-radius: 8px;
}
.d-flex{display: flex;}
.card-prediksi h5 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.card-prediksi h6 {
    color: white;
    text-align: center;
}
.s-result{
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}
.prediksi-button:hover, .prediksi-button:focus {
    background:var(--main-color-2);
}
.button-container{
    display: flex;
}
.p-b-container{justify-content: space-around;margin: 10px 0 0 0;}
.w-full {width: 100%;}
.gif-container{display: block;overflow: hidden;}
.modal{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;}
.modal-custom .modal-header {
    background: rgb(36, 36, 36);
    border: 0;
    color: #fff;
    border-bottom: 3px solid #e4d88a;
}
.modal-content{
    /* max-width: 80%; */
    margin: 0 auto;
    background-color: #1a1a1a;
}
.bg-prize {
    background: rgb(26, 26, 26);
    border: 1px solid #434343;
}
.card-block {
    border: 1px solid #434343;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 4px;
}
.wd-full {
    width: 100%;
    font-family: Tahoma, sans-serif;
    word-spacing: 1px;
    font-size: 18px;
    font-weight: bold;}
.wd-84-center{
    width: 84%;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .modal-card-prediksi .wd-84-center {
        width: inherit;
        margin-right: -15px;
        margin-left: -15px;
    }
}
@media (max-width: 768px) {
    .modal-card-prediksi .row {
        margin-right: 0;
        margin-left: 0;
    }
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 4px;
    padding-left: 4px;
}
p.title_pred {
    color: #fff;
}
.modal-body{
    padding: 0px;
}
.modal-custom .modal-body p {
    font-size: 18px;
    margin-bottom: 0px;
    font-family: tahoma;
}
.modal-body{
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #ececec;
}
.modal-custom .modal-body .card {
    padding: 15px;
    padding-bottom: 20px;
    padding-top: 25px;
}
.card-block-custom {
    height: 255px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #efefef;
}
.row {
    padding-right: 0;
    padding-left: 0;
}
.modal-custom .modal-body {
    background: rgb(36, 36, 36);
    color: #efefef;
}
@media (min-width: 992px) {
    h3 {
        font-size: 24px;
    }
}
@media (min-width: 768px) {
    h3 {
        font-size: 22px;
    }
}

@media (min-width: 576px) {
    h3 {
        font-size: 20px;
    }
}
@media (min-width: 320px) {
    h3 {
        font-size: 18px;
    }
}
.h3, h3 {
    font-size: 24px;
}
.modal-custom .modal-body h3 {
    color: #fefefe;
}

.fw-900 {
    font-weight: 900;
}
.mt-2 {
    margin-top: 2rem;
}
.modal-custom .modal-body .card {
    padding: 15px;
    padding-bottom: 20px;
    padding-top: 25px;
}
.modal-card-prediksi mg-b-15 {
    width: unset;
    
}
.modal-card-prediksi{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-card-prediksi .row>* {
    padding-right: 2px;
    padding-left: 2px;
}
@media (max-width: 767px) {
  .cell-wrapper {
    padding: 0px 6%;
    margin: 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .navbar-nav.navbar-center {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
  }
}

@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
  }
  .col-md-2-5 {
    width: 40%;
  }
  .col-md-3-5 {
    width: 60%;
  }
  .col-md-4-5 {
    width: 80%;
  }
  .col-md-5-5 {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
  }
  .col-lg-2-5 {
    width: 40%;
  }
  .col-lg-3-5 {
    width: 60%;
  }
  .col-lg-4-5 {
    width: 80%;
  }
  .col-lg-5-5 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
  }
  .col-sm-2-5 {
    width: 40%;
  }
  .col-sm-3-5 {
    width: 60%;
  }
  .col-sm-4-5 {
    width: 80%;
  }
  .col-sm-5-5 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sticky {
    width: 60%;
    margin-left: 4px;
  }

  .kontent-paito {
    padding: 2px;
  }

  .container {
    padding-right: 2px;
    padding-left: 2px;
    margin-right: auto;
    margin-left: auto;
  }

  .navbar-brand {
    padding: 20px 15px;
  }

  table,
  th,
  td {
    font-family: Roboto, Helvetica Neue, sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 1px;
  }
}

@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
    margin-top: 10px;
  }
}

@media (max-width: 756px) {
  .kontent {
    padding: 10px;
  }
}
.game-list button, .panelatas .btn {
    color: white;
}
span.span-result{
    background-image: var(--main-gradient-2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
th.th-result{
    background-image: var(--main-gradient-2);
    color: black;
}
.bg-radial-team {
    background-color: #010028;
    background-image: radial-gradient(circle,#1a496d,#010028);
}
.team-name-box {
    min-height: 40px;
}
.separator {
    width: 2px; height: 40px; background-color: white; margin: 0 10px;
}
div.container-fluid.m-1 {
    max-width: 469px;
}
#card-prediksibola {
    min-height: 424px;
}
.glow-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5%;
    height: 5%;
    border-radius: 50%;
    box-shadow: 0em 0em 2.25em 2.6666666667em #1a496d;
    transform: translate(-50%, -50%);
}
.glow-wrap{
    position:relative;
    display:inline-block;
}
img.rounded.img-fluid {
    width: 50%;
    position: relative;
    z-index: 1;
}
button.prediksi-button.w-100.text-black.fw-bold.f-direction-column.predict-click.b-radius {
    width: 100%;
}
#main-league {
    background: var(--main-gradient);
}
