#button-9kFlTHGUxlM {
    margin: 0 5px 0;
}

#hongbao0 {
    display: none;
    cursor: pointer;
    transition: 0.3s ease;
    animation: chillsEffect 1s ease-in-out infinite;
}

@keyframes chillsEffect {
    0% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1) rotate(2deg);
    }

    50% {
        transform: scale(1) rotate(-2deg);
    }

    75% {
        transform: scale(1.02) rotate(1deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.hb_modal_main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 20%;
    left: 50%;
    margin-left: -156px;
    z-index: 99
}

.hb_content {
    display: block;
    width: 312px;
    height: 339px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(./img/tc1_2x.png);
    font-size: 18px;
    font-family: ArialMT;
    color: #b5621f
}

.tips {
    margin: 55px auto 14px;
    width: 100%;
    text-align: center
}

.hb_banner {
    width: 240px;
    height: 208px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(./img/tcjf_2x.png);
    font-size: 17px;
    color: #ff3743;
    display: flex;
    align-items: center;
    flex-direction: column
}

.hb_banner>span:nth-child(1) {
    font-size: 43px;
    font-family: Arial-Black, Arial;
    font-weight: 900;
    color: #fe1826;
    margin-top: 10%;
    line-height: 60px
}

.btn-p {
    width: 264px;
    height: 53px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(./img/bott_get2x.png);
    font-size: 18px;
    color: #ffe5b3;
    text-align: center;
    line-height: 53px
}

.close_icon {
    display: block;
    position: relative;
    top: 50px;
    right: -138px;
    width: 64px;
    height: 64px;
    cursor: pointer
}



.btn-wrapper {
    margin: auto;
    width: 300px;
    height: 150px;
    text-align: center;
    left: 50%;
    margin-left: -150px;
    z-index: 99999;
    position: fixed;
    bottom: 20px
}

.btn-wrapper h1 {
    margin-top: 15px;
    font-size: 12px;
    color: red
}

.btn-wrapper .bonus {
    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -40px;
    width: 60px;
    height: 80px;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    background-color: red;
    transition: all 0.75s ease;
    -webkit-animation-name: shaking;
    animation-name: shaking
}

.btn-wrapper .bonus:after {
    position: absolute;
    top: 15px;
    left: 0;
    content: '';
    width: 80px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 3px 0 2px #ff0;
    z-index: 3
}

.btn-wrapper .bonus:before {
    position: absolute;
    top: 17px;
    left: 50%;
    margin-left: -20px;
    content: '₱';
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    font-weight: 700;
    color: red;
    background-color: #ff0;
    border-radius: 50%;
    z-index: 4
}

.jumping,
.shaking {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    animation-time-function: ease;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

@-webkit-keyframes jumping {
    0% {
        bottom: 5px;
        transform: rotate(-10deg) scale(.98)
    }

    10% {
        bottom: 30px;
        transform: rotate(0deg) scale(1)
    }

    50% {
        bottom: 5px;
        transform: rotate(10deg) scale(.98)
    }

    60% {
        bottom: 30px;
        transform: rotate(0deg) scale(1)
    }

    100% {
        bottom: 5px;
        transform: rotate(-10deg) scale(.98)
    }
}

@keyframes jumping {
    0% {
        bottom: 5px;
        transform: rotate(-10deg) scale(.98)
    }

    10% {
        bottom: 30px;
        transform: rotate(0deg) scale(1)
    }

    50% {
        bottom: 5px;
        transform: rotate(10deg) scale(.98)
    }

    60% {
        bottom: 30px;
        transform: rotate(0deg) scale(1)
    }

    100% {
        bottom: 5px;
        transform: rotate(-10deg) scale(.98)
    }
}