.popup_new {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.31);
    z-index: 999;
}

.popup_new > form > div{
    background-color: white;
    width: 80vw;
    max-width: 600px;
    margin: auto;
    margin-top: 10vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80vh;
    max-height: 400px;
    position: relative;
    overflow-y: scroll;
}

.popup_close{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding-left: 13px;
}

.popup_new input[type="submit"]{
    display: none;
}