#top-referral-page{
    margin: 15px auto;
}

#top-referral-page .banner{
    display: flex;
    margin: 15px auto;
    width: calc(100% - 20px);
}

#top-referral-page .banner img{
    width: 100%
}

#top-referral-page .winner-list{
    width: calc(100% - 20px);
    background: white;
    padding: 10px;
    border-radius: 10px;
    filter: var(--theme-shadow-light);
    margin: auto;
    margin-bottom: 15px;
}

#top-referral-page .winner-list p{
    text-align: center;
    padding: 5px 10px;
    font-size: 12px;
    color: var(--theme-color-dark-2)
}

#top-referral-page .table-winner{
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

#top-referral-page .table-winner:before{
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.55);
    content:'Coming Soon';
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

#top-referral-page .faq{
    width: calc(100% - 20px);
    background: white;
    padding: 10px;
    border-radius: 10px;
    filter: var(--theme-shadow-light);
    margin: auto;
    margin-bottom: 15px;
}

.faq-box{
    display: flex;
    gap: 5px;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
    padding: 0 5px
}

.faq-box h6{
    font-weight: 600;
    color: var(--theme-color-dark-2);
    line-height: 1.3;
    font-size: 14px
}

.faq-box p{
    font-size: 14px;
    color: var(--theme-color-default);
    line-height: 1.3
}