.table-jackpot {
    position: relative;
}
.jackpot-items {
    font-family: "Kode Mono", monospace;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: .6rem auto 1.7rem auto;
    padding: .4rem .6rem;
    background: var(--card-bg);
    border: 1px solid var(--bs-border-color-translucent);
    border-radius: 1rem 2rem 2rem 1rem / 1rem 50% 50% 1rem;
}
.jackpot-items:hover, .jackpot-items:active {
    cursor: pointer;
    border: 1px solid var(--bs-link-color);
    box-shadow: 0px 4px 0px 0px  var(--bs-link-color);
    backface-visibility: hidden;
}
.jackpot-items:hover .jackpot-image, .jackpot-items:active .jackpot-image, .jackpot-items:hover .jackpot-provider, .jackpot-items:active .jackpot-provider {
    border: 2px solid  var(--bs-link-color);;
}
.jackpot-items > div {
    margin-right: .7rem;
}
.jackpot-image-container {
    position: relative;
    min-width: 80px;
    display: flex;
    align-items: center;
    margin-left: .7rem;
}
.jackpot-image {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border: 2px solid var(--bs-border-color-translucent);
    border-radius: 20% 75% 75% 20% / 20% 50% 50% 20%;
    box-shadow: -5px 0px 0px 1px rgb(0 0 0 / 30%), 2px 0px 4px 0px rgb(0 0 0 / 30%);
    transform: rotate(351deg);
    margin-top: -8px;
    overflow: hidden;
    left: 0;
}
.jackpot-image img {
    height: 100%;
    width: auto;
    max-width: none;
    margin-left: -0.5rem;
}
.jackpot-provider {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--bs-dark);
    border: 2px solid var(--bs-border-color-translucent);
    border-radius: 50%;
    box-shadow: 2px 0px 4px 0px rgb(0 0 0 / 30%);
    padding: 3px;
    top: 10px;
    right: 1px;
}
.jackpot-detail {
    width: 100px;
}
.jd-username {
    font-size: 13px;
    color: var(--bs-info);
    font-weight: 800;
}
.jd-game {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.jd-date {
    font-size: 12px;
    color: #999999;
    line-height: 13px;
    letter-spacing: -1px;
}
.jackpot-total-container {
    display: flex;
}
.jackpot-total {
    margin-right: .7rem;
}
.jackpot-total, .jackpot-wd {
    min-width: 125px;
}
.jt-total {
    color: var(--bs-link-color);
    font-weight: 800;
    font-size: 18px;
    text-shadow: 0px 2px #272727;
    white-space: nowrap;
    display: flex;
}
.jackpot-wd .jt-total {
    color: var(--bs-success);
}
.jt-rupiah {
    font-size: 13px;
    margin-right: 3px;
}
.jt-header {
    font-size: 13px;
}
.jt-header-mobile {
    display: none;
}
#buktiTransferModal .modal-content {
    width: fit-content;
    margin: auto;
}
#buktiTransferModal .modal-body {
    font-size: 13px;
}
#buktiTransferModal #buktiImage img {
    max-width: 350px;
    min-height: 600px;
    max-height: 600px;
    height: 100%;
    width: auto;
    border-radius: 1rem;
}
@media(max-width:768px) {
    .jackpot-items {
        width: 100%;
    }
    .jackpot-items > div {
        margin-right: .5rem;
    }
    .jackpot-image-container {
        min-width: 70px;
        margin-left: .5rem;
    }
    .jackpot-image {
        height: 70px;
        width: 70px;
        margin-top: -5px;
    }
    .jackpot-numbers, .jt-header {
        display: none;
    }
    .jt-header-mobile, .jackpot-total-container {
        display: block;
    }
    .jackpot-total {
        margin-right: 0;
    }
    .jt-total {
        font-size: 14px;
    }
    .jackpot-total, .jackpot-wd {
        display: flex;
        align-items: center;
    }
}