#wlCheckDialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    width: 95%;
    max-width: 500px;
}

#wlCheckDialog > .tipWrapper {
    background-color: rgba(236,234,231, 0.8);
    border-radius: 15px;
    padding: 40px 30px 15px;
    min-height: 150px;
}

#wlCheckDialog > .tipWrapper .title {
    color: #D345B0;
    margin-left: 10px;
}

#wlCheckDialog > .tipWrapper .inputArea {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: bold;
    padding: 10px 0;
}

#wlCheckDialog > .tipWrapper #whitelistAddress {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    outline: none;
    margin: 0 auto;
}

#wlCheckDialog > .tipWrapper #whitelistAddress::placeholder {
    color: grey;
    font-weight: bold;
}

#wlCheckDialog > .tipWrapper .tipButtonBg {
    background-image: var(--img-btn-red2);
    background-position: 50%;
    background-size: contain;

    background-repeat: no-repeat;
    width: 200px;
    height: 50px;
    margin: 10px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

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

#wlCheckDialog > .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;
}