#luckynumber {
    padding: 10px;
}
#luckynumber p {
    margin-top: 5px;
    color:white;
}

#luckynumber .tabs{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top:25px;
}

#luckynumber .tabs .tab{
    font-size: 14px;
    font-weight: 700;
    padding: 12px 15px;
    border-radius: 5px;
    line-height: 1;
    border: 2px solid #757575;
    background: #fff;
    color: #757575;
    text-transform: uppercase;
    width: 45%;
    text-align: center;
    border-radius: 100px
}

#luckynumber .tabs .tab.selected{
    border: 2px solid #1F7A4A;
    background: #1F7A4A;
    color: white;
    animation: jumping .375s infinite linear
}

@keyframes jumping{
    0%, 100%{
        transform: translateY(-5px);
    }

    50%{
        transform: translateY(0)
    }
}

.banner-wrapper{
    position: relative;
    display: flex;
    margin-bottom: 15px
}

#btn-lucky-draw-info{
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    width: 54px;
    height: 54px;
    opacity: 0
}

#modal-lucky-draw-info .content{
    padding: 0;
    background: transparent
}


#lucky-draw-info{
    border: 5px;
    border-radius: 5px;
    position: relative;
}

#lucky-draw-info .bg-image{
    width: 100%;
}

#lucky-draw-info .info{
    position: absolute;
    inset: 40% 5% 5%;
    overflow-y: auto;
}

#lucky-draw-info .info .row{
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

#lucky-draw-info .info .row .title{
    display: flex;
    gap: 5px;
    align-items: center;
    cursor: default;
    color: #1e3f12
}

#lucky-draw-info .info .row .title h6{
    font-size: 14px;
}

#lucky-draw-info .info .row .title img{
    height: 18px
}

#lucky-draw-info .info .row p{
    font-size: 11px;
    color: black;
    line-height: 1;
    margin: 0;
    cursor: default;
    margin-left: 25px;
    position: relative;
    color: #1e3f12;
}

#lucky-draw-info .info .row p:before{
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 12px;
    height: 12px;
    background-image: url('../img/lucky_number/tick.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

#lucky-draw-info .info .row p b{
    font-size: 11px;
    font-weight: 600;
    cursor: default;
    color: #1e3f12;
}

#lucky-draw-info .info .row p a{
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    color: #206408
}