@font-face {
font-family: dinpro-regular;
font-weight: 400;
src: url(../fonts/DINProRegular.otf);
}

@font-face {
    font-family: dinpro-medium;
    font-weight: 500;
    src: url(../fonts/DINProMedium.otf);
}

@font-face {
    font-family: dinpro-bold;
    font-weight: 700;
    src: url(../fonts/DINProBold.otf);
}

@font-face {
    font-family: dinpro-black;
    font-weight: 900;
    src: url(../fonts/DINProBlack.otf);
}

.pk-section {
    background-image: url('../images/minigames/nov-2024/video-poker-bg.png?v1.1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 100vw;
    height: auto;
}

.pk-content {
    width: 1170px;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pk-img {
    width: 526px;
    height: 228px;
    object-fit: contain;
    margin-top: 10px;
}

.pk-lady-bg {
    background-image: url('../images/minigames/nov-2024/lady.png?v1.1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: 502px;
    width: 314px;
    margin-top: -70px;
    position: relative;
}

.pk-lady-bg .tutorial-video-btn {
    background-image: url('../images/minigames/nov-2024/dialog-box-bg.png?v1.1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: 146px;
    width: 198px;
    object-fit: contain;
    position: absolute;
    left: -110px;
    top: 15%;
    z-index: 2;
    padding: 20px 20px 40px;
    font-family: dinpro-bold;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    animation: scale 0.5s ease infinite alternate;
    -ms-animation: scale 0.5s ease infinite alternate;
    -webkit-animation: scale 0.5s ease infinite alternate;
    -moz-animation: scale 0.5s ease infinite alternate;
}

@keyframes scale {
    0% {
        -webkit-transform-origin: bottom top;
        -moz-transform-origin: bottom top;
        -ms-transform-origin: bottom top;
        -o-transform-origin: bottom top;
        transform-origin: bottom top;
        transform: scale(1.0);
        -ms-transform: scale(1.0);
        -webkit-transform: scale(1.0);
        -o-transform: scale(1.0);
        -moz-transform: scale(1.0);
    }

    100% {
        transform: scale(1.05);
        -ms-transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -o-transform: scale(1.05);
        -moz-transform: scale(1.05);
    }
}

.pk-lady-bg .tutorial-video-btn .cta-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* height: 28px; */
}

.pk-lady-bg .tutorial-video-btn .cta-row img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.game-table-container {
    position: relative;
    z-index: 1;
    background-image: url('../images/minigames/nov-2024/table.png?v1.1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 1170px;
    height: 622px;
    margin-top: -430px;
}

.prize-list {
    position: absolute;
    right: 74px;
    top: 2%;
    width: 347px;
    height: 220px;
    font-family: dinpro-bold;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    border-collapse: separate;
    border-spacing: 0 2px;
}

.cards-row {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.cards-row .card-item {
    transform: none;
    background-image: url('../images/minigames/nov-2024/poker/poker.png?v1.1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 103px;
    height: 144px;
    margin: 0px 4px;
}

.cards-row .card-item .hold-icon {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    width: 73px;
    height: 49px;
}

.cards-row .card-item:not(.disabled) {
    cursor: pointer;
    transform: scaleX(-1) rotateY(180deg);
    transition: transform 0.8s;
}

.cards-row .card-item.flipNoHold {
    transform: scaleX(-1) rotateY(-180deg);
    transition: transform 0.8s;
}

.cards-row .card-item.holdCard>img {
    display: inline;
}

.game-tips {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    animation: shine 0.6s ease-in infinite alternate;
    -ms-animation: shine 0.6s ease-in infinite alternate;
    -webkit-animation: shine 0.6s ease-in infinite alternate;
    -moz-animation: shine 0.6s ease-in infinite alternate;
}

@-webkit-keyframes shine {
    0% { opacity: 0.05; }
    80% { opacity: 1; }
    100% { opacity: 1; }
}

@-moz-keyframes shine {
    0% { opacity: 0.05; }
    80% { opacity: 1; }
    100% { opacity: 1; }
}

@keyframes shine {
    0% { opacity: 0.05; }
    80% { opacity: 1; }
    100% { opacity: 1; }
}

.deal-row {
    background-image: url('../images/minigames/nov-2024/table-bottom-bg.png?v1.1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 792px;
    height: 95px;
    position: absolute;
    bottom: -1.5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.deal-row .deal-inner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.deal-row .deal-inner-wrap .deal-btn {
    background-image: url('../images/minigames/nov-2024/deal-btn.png?v1.1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 179px;
    height: 179px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: dinpro-black;
    font-weight: 900;
    font-size: 42px;
    line-height: 53px;
    color: #fff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #053B7A;
}

.deal-inner-wrap .tic-wrap,
.deal-inner-wrap .right-intro-wrap {
    height: 71px;
    width: 250px;
    background: #131220;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.deal-inner-wrap .tic-wrap {
    left: 15px;
}

.deal-inner-wrap .right-intro-wrap {
    right: 15px;
    font-family: dinpro-black;
    font-weight: 900;
    font-size: 16px;
    line-height: 23px;
    padding: 0px 15px;
}

.deal-inner-wrap .tic-wrap .tic-txt {
    font-family: dinpro-bold;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.deal-inner-wrap .tic-wrap .tic-balance-wrap img {
    height: 20px;
    width: 25px;
    object-fit: contain;
    margin-right: 4px;
}

.deal-inner-wrap .tic-wrap .tic-balance-wrap span {
    font-family: dinpro-bold;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
}

/* tutorial popup */
#poker-king-tutorial,
#poker-king-result-popup,
#poker-king-nowin-popup,
#poker-king-notix-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9;
}

#poker-king-tutorial .tutorial-popup-bg {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 366px;
    background-image: url('../images/minigames/nov-2024/tutorial-popup-bg.png?v1.1');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 542px 366px;
    line-height: initial;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#poker-king-tutorial .tutorial-popup-bg .video-wrap {
    width: 536px;
    height: 360px;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
}

#mobileStream {
    height: 100%;
}

#poker-king-tutorial .popup-title-bg {
    background-image: url('../images/minigames/nov-2024/title-bg.png?v1.1');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 290px 49px;
    width: 100%;
    height: 49px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: dinpro-bold;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

#poker-king-tutorial .closeBtn,
#poker-king-result-popup .closeBtn,
#poker-king-nowin-popup .closeBtn,
#poker-king-notix-popup .closeBtn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    height: 30px;
    width: 30px;
}

#poker-king-tutorial .closeBtn {
    top: calc(40% + 350px);
}

#poker-king-result-popup .closeBtn,
#poker-king-nowin-popup .closeBtn,
#poker-king-notix-popup .closeBtn {
    top: calc(40% + 310px);
}

#poker-king-result-popup .result-popup-bg,
#poker-king-nowin-popup .result-popup-bg,
#poker-king-notix-popup .result-popup-bg {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 332px;
    background-image: url('../images/minigames/nov-2024/poker-king-result-popup.png?v1.1');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 368px 332px;
    line-height: initial;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

#poker-king-result-popup .result-popup-bg .popup-content,
#poker-king-nowin-popup .result-popup-bg .popup-content {
    width: 368px;
    height: 100%;
    padding: 165px 30px 50px;
    margin: 0 auto;
    font-family: dinpro-bold;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

#poker-king-notix-popup .result-popup-bg .popup-content {
    width: 368px;
    height: 100%;
    padding: 200px 30px 50px;
    margin: 0 auto;
    font-family: dinpro-bold;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

#poker-king-result-popup .result-popup-bg .popup-content .amt-txt,
#poker-king-nowin-popup .result-popup-bg .popup-content .amt-txt {
    font-size: 36px;
    line-height: 53px;
    margin: 5px 0px;
}

.tnc-section {
    padding: 3px;
    margin: 0 auto;
    background-image: url('../images/minigames/nov-2024/tnc-bg.png?v1.1');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 1170px;
    height: calc(554/988 * 1170px);
    padding: 40px 30px 30px;
    position: relative;
}

.tnc-section .tnc-title-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -24px;
    width: 290px;
    height: 49px;
    background-image: url('../images/minigames/nov-2024/title-bg.png?v3');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 290px 49px;
    font-family: dinpro-bold;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tnc-section .tnc-subtitle {
    font-family: dinpro-bold;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0.75rem;
}

.tnc-section ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.tnc-section ol li {
    padding-left: 5px;
    margin-bottom: 0.3rem;
}

.tnc-section .inner-ul {
    margin: 0.5rem 0px;
    list-style-type: disc;
    padding-left: 20px;
}

.tnc-section .inner-ul li {
    padding-left: 5px;
    margin-bottom: 0.3rem;
}
/* minigame */
#minigame-frame {
    width: 100%;
    height: 800px;
    margin: 80px 0 0 0;
    transform: translate(-5%, -1%);
}
/* prize modal */
.jquery-modal.blocker {
    z-index: 3 !important;
}
#alert-box {
    z-index: 5 !important;
    background: unset;
    box-shadow: unset;
    font-size: 18px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#alert-box .modal-dialog {
    width: 350px;
    height: 350px;
    background-image: url('../images/minigames/nov-2024/poker-king-result-popup.png');
    background-size: 100% 100%;
}
#alert-box .modal-content {
    margin: 150px 0 0 0;
    border: unset;
    background-color: unset;
    box-shadow: unset;
}
#alert-box .modal-body {
    text-align: center;
}
#alert-box .prize-text {
    margin-bottom: 20px;
}
#alert-box .prize-amt {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
}
#alert-box .prize-hand {
    
}
#alert-box .noPrize-title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
}
#alert-box .noPrize-title.bm {
  font-size: 32px;
}
#alert-box .close-modal {
    left: 50%;
    top: 70%;
    background-image: url(../images/minigames/nov-2024/close-btn.png);
    background-size: 100% 100%;
}
/*  */