img.banner {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 30px;
    background-image: linear-gradient(9deg, #d964bc 0%, rgba(255, 255, 255, 1) 50%, #d964bc 100%);
    background-origin: border-box;
    transition: all 0.5s ease-in-out 0s;
}

img.banner:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.join-btn {
    width: 30%;
    position: absolute;
    bottom: -15%;
    right: 35%;
}

.more-btn {
    width: 30%;
    position: absolute;
    bottom: -15%;
    right: 6%;
}

.join-btn img,
.more-btn img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#section-promotions h2 {
    text-align: left;
    margin: 0 auto 40px;
    color: #007502;
    max-width: 1024px;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    #section-promotions h2 {
        margin: 0 auto 20px;
    }
}

img.promo-angpao {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 30px;
    background-image: linear-gradient(9deg, #d964bc 0%, rgba(255, 255, 255, 1) 50%, #d964bc 100%);
    background-origin: border-box;
    transition: all 0.5s ease-in-out 0s;
}

img.promo-angpao:hover {
    transform: scale(1.12);
    cursor: pointer;
}

.claim-btn {
    width: 55%;
    position: absolute;
    bottom: -5%;
    right: 23%;
}

.claim-btn img {
    width: 100%;
    height: 100%;
    animation: grow linear infinite 1s;
    cursor: pointer;
}

@keyframes grow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

#home-bonus,
#promo-pop {
    overflow: scroll;
    padding: 20px !important;
    height: auto;
    width: 90%;
    border-radius: 8px;
    color: #fff;
    border: 2px solid #FFC107;
    visibility: hidden;
    display: none;
}

#home-bonus.active {
    visibility: visible;
}

#home-bonus .title,
#promo-pop .title_promo {
    color: #FFC107;
    font-weight: 700;
    border-bottom: 2px solid #FFC107;
    padding-bottom: 10px
}

#home-bonus p,
#promo-pop p {
    margin-top: 10px
}

#home-bonus .btns,
#promo-pop .btns_promo {
    overflow: hidden;
    margin-top: 20px;
    text-align: center;
}

#home-bonus .btns .btn.single,
#promo-pop .btns_promo .btn.single {
    width: 125px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    color: #000;
    font-weight: 700;
}

#popupwindow,
#popupwindow_promo {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, .6);
    visibility: hidden;
    -webkit-transition: opacity .3s
}

#popupwindow.active {
    visibility: visible;
}

.promo-wrap.active #promo-pop {
    visibility: visible!important;
    display: block!important;
}

.promo-wrap.active #popupwindow_promo {
    visibility: visible!important;
}