#popup_layer {
    width: 100vw;
    height: 100svh;
    background-color: rgba(0, 00, 0, 50%);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999999999999999999999999999999999999;
}

#popup_box {
    width: calc(100% - 50px);
    height: calc(100% - 100px);
    max-width: 500px;
    max-height: 700px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #FFFFFF;
}

#popup_box_header {
    width: 100%;
    height: 70px;
    background-color: #0a192f;
    color: #FFFFFF;
    font-size: 30px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

#popup_close_btn {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 14px;
    top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#popup_content {
    height: calc(100% - 70px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    padding-left: 20px;
    padding-right: 20px;
}