        /* __________________________ */
/* POPUP CSS */
.notice-popup-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.notice-popup-box{
    position: relative;
    max-width: 90%;
    animation: noticePopupZoom 0.4s ease;
}

.notice-popup-box img{
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    display: block;
}
/* CLOSE BUTTON */
.notice-popup-close{
    position: absolute;
    top: -12px;
    right: -12px;
    width: 38px;
    height: 38px;
    border: none;
    outline: none;
    background: #ffffff;
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 9999999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}