
.dialog-base {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#walletDialog {
    z-index: 101;
    width: 450px;
}

#walletDialog > .dialog-wrapper {
    background-image: url("../images/passcard/bg_walllet_dlg.png");
    background-size: 100% 100%;
    border-radius: 15px;
    padding: 40px 30px 40px;
    min-height: 150px;
}

#walletDialog > .dialog-wrapper > .button-area{
    flex-direction: column;
}

#walletDialog > .dialog-wrapper .title {
    color: darkred;
    text-align: center;
}

#walletDialog > .dialog-wrapper .icon-button {
    background-image: url("../images/common/btn_bg_red5.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 300px;
    height: 64px;
    line-height: 64px;
    margin: 30px auto 0;
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    position: relative;
}

#walletDialog > .dialog-wrapper .icon-button > img {
    position: absolute;
    height: 50px;
    left: 10px;
    top: 7px;
}

#walletDialog > .tip-close {
    margin-top: 20px;
    text-align: center;
}

#walletDialog > .tip-close .tip-close-btn {
    width: 50px;
    height: 50px;
    background-image: var(--img-btn-close);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    cursor: pointer;
}