.bonus-header{
    display: flex;
    margin-left: 10px;
    margin-bottom: 10px;
 }

 .bonus-header img{
     height: 30px;
 }

 @keyframes green-glow{
    0%{
        filter: drop-shadow(0 0 3px rgba(0, 255, 0, 0.01));
    }
    50%{
        filter: drop-shadow(0 0 8px rgba(255, 115, 0, 0.5));
    }
    100%{
        filter: drop-shadow(0 0 3px rgba(0, 255, 0, 0.01));
    }
 }

 #angpao{
     /* background: rgb(0 0 0 / 15%); */
     margin-top: 25px;
     border-radius: 8px;
     /* background: rgba(255, 255, 255, 0.05); */
 }

 .bonus-wrapper{
     display: flex;
     flex-wrap: wrap;
     gap: 10px;

 }

 #bonus-wrapper{
     display: flex;
     flex-wrap: wrap;
 }

#bonus-wrapper div{
    display: flex;
    flex-direction: column;
    gap:5px;
    flex: 0 0 calc(33.333% - 5px);
    align-items: center;
    margin: 5px 2.5px;
    justify-content: flex-start;
    position: relative;
 }

 #bonus-wrapper div img{
     width: 90%;
 }

 .angpao-glow{
    animation: angpao-glow 2.5s infinite ;
 }

 @keyframes angpao-glow{
    0%{
        filter: drop-shadow(0 4px 3px #195e3b);
    }

    50%{
         filter: drop-shadow(0 4px 8px var(--clr-primary));
    }

    100%{
        filter: drop-shadow(0 4px 3px #195e3b);
    }
 }
 #bonus-wrapper div label{
    text-align: center;
    position: absolute;
    width: 75%;
    top: 10px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
 }

 @keyframes shake1 {
     3%{
         transform: rotate(0);
     }
     4%{
         transform: rotate(-7deg);
     }
     5% {
         transform: rotate(7deg);
     }
     6% {
         transform: rotate(-7deg);
     }
     7% {
         transform: rotate(7deg);
     }
     8% {
         transform: rotate(-7deg);
     }
     9% {
         transform: rotate(0);
     }
 }

 @keyframes shake2 {
     10%{
         transform: rotate(0);
     }
     11%{
         transform: rotate(-7deg);
     }
     12% {
         transform: rotate(7deg);
     }
     13% {
         transform: rotate(-7deg);
     }
     14% {
         transform: rotate(7deg);
     }
     15% {
         transform: rotate(-7deg);
     }
     16% {
         transform: rotate(0);
     }
 }

 @keyframes shake3 {
     31%{
         transform: rotate(0);
     }
     32%{
         transform: rotate(-7deg);
     }
     33% {
         transform: rotate(7deg);
     }
     34% {
         transform: rotate(-7deg);
     }
     35% {
         transform: rotate(7deg);
     }
     36% {
         transform: rotate(-7deg);
     }
     37% {
         transform: rotate(0);
     }
 }

 @keyframes shake4 {
     68%{
         transform: rotate(0);
     }
     69%{
         transform: rotate(-7deg);
     }
     70% {
         transform: rotate(7deg);
     }
     71% {
         transform: rotate(-7deg);
     }
     72% {
         transform: rotate(7deg);
     }
     73% {
         transform: rotate(-7deg);
     }

     74% {
         transform: rotate(0);
     }
 }

 @keyframes shake5 {
     89% {
         transform: rotate(0deg);
     }
     90% {
         transform: rotate(-7deg);
     }
     91% {
         transform: rotate(7deg);
     }
     92% {
         transform: rotate(-7deg);
     }
     93% {
         transform: rotate(7deg);
     }
     94% {
         transform: rotate(-7deg);
     }
     95% {
         transform: rotate(0);
     }
 } 

 #promo{
     /* padding: 20px 5px; */
     margin-top: 15px;
 }

 #promo-wrapper img{
     margin-bottom: 10px;
     width: 100%;
     border-radius: 8px;
     filter: drop-shadow( 2px 4px 6px black);
 }

#bonus-modal .modal-content{
    max-width:400px;
    top: 0%;
    transform: translate(-50%, 10%)
}

#bonus-modal .modal-content .content{
    padding: 15px;
}

#bonus-modal .title{
    font-size: 22px;
    font-weight: 700;
    /* filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.65)); */
    margin-bottom: 15px;
    /* background-image: var(--grd-primary);
    background-clip: text; */
    color: #000;
    margin: 0 15px 10px;
    text-align: center;
}

#bonus-modal ul, #bonus-modal ol{
    margin-left: 22px;
    width: calc(100% - 22px);
}

#bonus-modal li, #bonus-modal b, #bonus-modal p, #bonus-modal span{
    color: #000;
    font-size: 13px;
}

#bonus-modal li{
    margin-bottom: 3px;
}

#bonus-modal li .white-glow{
    animation: 1.5s white-glow infinite;
}

#bonus-modal .action-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 5px
}

#bonus-modal .btn-cancel{
    width: 80%;
    margin: 0 15px 10px;
    text-align: center;
    padding: 10px 15px;
    border: none;
    font-size: 16px;
}

.modal .sub-title{
    color: #db6200;
    border-bottom: 1px solid;
    margin:5px 0 15px;
}

@keyframes white-glow{
    0%{
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0));
    }

    50%{
        filter: drop-shadow(0 0 5px rgb(255, 255, 255));
    }

    100%{
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0));
    }
}

.btn:disabled {
    cursor: not-allowed;
    background: #c8c8c8;
    color: #757575;
    border: 2px solid #757575;
}

.blackout{
    filter: grayscale(0.1) brightness(0.35);
}

#bonus_example table{
    border-collapse: collapse;
    width: 50%;
    background-color: var(--clr-primary);
    border-radius: 8px;
    color: black;
    text-align: center;
    width: 100%
}

#bonus_example td, #bonus_example th{
    border: 1px solid black;
    padding: 8px;
    text-align: left;
 
}