#ladiesnewuserpopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(115,117,151, 0.7);
}

#ladiesnewuserpopup * {
    box-sizing: border-box;
}

#lnup_modal {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: calc(100% - 40px);
    width: 1000px;
    transform: translate(-50%, -50%);
    border: 1px solid;
}

#lnup_title_bar,
#lnup_content {
    padding: 10px;
}

#lnup_title_bar {
    background: #9093B7;
    color: #fff;
    font-weight: bold;
}

#lnup_title_bar::before,
#lnup_title_bar::after {
    content: '';
    display: table;
    clear: both;
}

#lnup_title {
    float: left;
}

#lnup_actions {
    float: right;
    line-height: 1;
}

#lnup_actions * {
    cursor: pointer;
    display: inline-block;
    padding: 5px;
    margin: -5px;
    margin-left: 8px;
}

#lnup_content {
    background: #fff;
    max-height: calc(100vh - 100px);
    overflow: auto;
}