.popup-container-bg {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-container {
    width: 60%;
    height: auto;
    overflow-y: auto;
    background: #ececed;
}

.popup-header {
    height: 40px;
    background: #2b2f35;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
}

.popup-headline {
    text-transform: uppercase;
    font-weight: 700;
}

.popup-close {
    cursor: pointer;
}

.popup-body {
    width: 100%;
    height: auto;
    background: #ececed;
    padding: 6px;
}
.popOverflow.popup-body {
    overflow: hidden;
    height: calc(100% - 40px);
}

.popup-body-details {
    align-items: center;
    background: #fff;
    /* padding: 20px 0; */
    /* overflow: auto; */
}
.popOverflow .popup-body-details {
    overflow: auto;
    height: 100%;
}
.wallet-contents {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.walletChips {
    margin: auto;
    width: 196px;
    height: 152px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/popups/walletDetailsBg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.walletChips img {
    height: 80px;
    width: auto;
}

.detailsDiv p {
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.detailsDiv p:nth-last-child(1) {
    color: #C51A1B;
}

.wallet-details-btn {
    background: #C51A1B;
    color: #fff;
    width: 180px;
    text-align: center;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}
.walletDetails_pbd.popup-body-details {
    padding: 20px 4px !important;
}
.walletDetails_pbd.popup-body-details .detailsDiv p:nth-child(1) {
    color: #000 !important;
}
@media(max-width:767px) {
    .popup-container {
        width: 96%;
    }
}

@media(max-width:400px) {
    .wallet-contents {
        flex-direction: column;
        align-items: center;
    }
    .detailsDiv {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width:300px) {
    .popup-container {
        width: 100%;
    }
}

.wallet-details-btn.mb-button.view_vip_popup {
    display: block !important;
}
.wd_popup_close {
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: -12px;
}
.wd_popup_close:hover {
    opacity: .54;
}
