/*알림 팝업*/
.noti_pop_whole{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: -100%;
    z-index: 30;
}

.noti_pop_bg{
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: transparent;
}
.noti_pop_box{
    position: absolute;
    width: 260px;
    height: 100vh;
    padding: 16px 16px 16px 15px;
    background-color: #fff;
    box-shadow: -3px 0 20px 0 rgba(0, 0, 0, 0.16);
    top: 0;
    right: 0;
}
.dark .noti_pop_box{
    position: absolute;
    width: 260px;
    height: 100vh;
    padding: 16px 16px 16px 15px;
    background-color: black;
    box-shadow: -3px 0 20px 0 rgba(0, 0, 0, 0.16);
    top: 0;
    right: 0;
}
.noti_pop_hide{
    display: block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-color: transparent;
    margin: 0 0 0 auto;
}
.noti_pop_hide img{
    display: block;
    width: 100%;
    height: auto;
    background-size: contain;
    background-color: transparent;
}
.noti_pop_row{
    width: 100%;
    height: auto;
    max-height: calc(100vh - 200px);
    overflow: hidden;
    overflow-y: auto;
}
.noti_pop_row::-webkit-scrollbar{
    display: none;
}
.noti_pop_row a p{
    padding: 10px;
    margin: 10px auto 0 auto;
}
.noti_pop_row a:first-child p{
    margin-top: 14px;
}