.noti_container{
    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: 999;
}
.noti_content{
    display: flex;
    width: 320px;
    height: auto;
    padding: 32px 40px;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    box-sizing: border-box;
    margin: auto;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--basic-white, #FFF);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    gap: 24px;
    color: var(--basic-black, #000);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}
.noti_message_area{
    text-align: center;
}
.noti_btn{
    display: flex;
    width: 100%;
    gap: 8px;
}
.btn_noti{
    display: flex;
    width: 116px;
    height: 56px;
    outline: none;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    background: var(--link-blue-80, #0052F9);
    color: var(--basic-white, #FFF);
}
.noti_alert{
    background: var(--link-blue-80, #0052F9);
    color: var(--basic-white, #FFF);
}
.noti_close{
    background: var(--basic-white, #FFF);
    color: var(--disabled-gray-40, #ACACAC);
    box-shadow: -1px -1px 0px 0px #D7D7D7 inset, 1px 1px 0px 0px #D7D7D7 inset;
}
.noti_confirm{
    background: var(--link-blue-80, #0052F9);
    color: var(--basic-white, #FFF);
}
