.h_noti{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    align-items: baseline;
    justify-content: center;
    z-index: 9999;
}
.h_noti_container{
    width: 300px;
    height: auto;
    min-height: auto;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    position: relative;
    margin: 1.75em;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}
.h_noti_content{
    border: 1px solid #d1d1d1;
    border-width: 1px 0;
    min-height: 88px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    text-align: center;
    font-size: 15px;
}
.h_noti_footer{
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.h_noti_btn_alert{
    outline: none;
    border: 1px solid #d1d1d1;
    border-width: 0 1px 0 0;
    background: transparent;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.h_noti_btn_close{
    outline: none;
    border: 1px solid #d1d1d1;
    border-width: 0 1px 0 0;
    background: transparent;
    width: 50%;
    height: 100%;
}
.h_noti_btn_confirm{
    outline: none;
    border: none;
    background: transparent;
    width: 50%;
    height: 100%;
}
.h_noti_btn_confirm:hover,
.h_noti_btn_close:hover{
    background-color: #f0f6ff;
    cursor: pointer;
}
