/* 오늘 하루 보지 않기 팝업 */
.main_popup {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: none;
    width: 432px;
    height: 477px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    z-index: 222;

    &.on {
        display: block;
        background-color: #fff;
    }

    .main_popup_img_wrap {
        width: 400px;
        height: 432px;
        display: flex;
        /*justify-content: center;*/
        align-items: center;
        /*background: url("/assets/css/images/event_pop.png") no-repeat center;
        background-size: cover;*/
        cursor: pointer;
    }

    .main_popup_img_wrap .fp-report__image > img {
        object-fit: fill;
    }

    .fp-report__images-pagination {
        right: 6px !important;
        top: 8px !important;
        bottom: auto;
    }

    .main_pop_btn_close {
        width: 35%;
        border-left: 1px solid #aeaeae;
        height: 45px;
        background-color: #333;
        text-align: center;
        color: #fff;
        font-size: 14px;
        display: block;
    }

    .main_pop_btn_today_close {
        width: 65%;
        height: 45px;
        background-color: #333;
        text-align: center;
        color: #fff;
        font-size: 14px;
        display: block;

        span {
            display: block;
            line-height: 40px;
            vertical-align: bottom;
            opacity: 0.8;
        }
    }

    .main_pop_btn_wrap {
        display: flex;
    }
}

/* 로딩 */

#loader {
    width: 45px;
    height: 45px;
    border: 5px solid #ff9a23;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 99;
    position: fixed;
    top: 50%;
    left: 48%;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 로딩 */

#loader {
    width: 45px;
    height: 45px;
    border: 5px solid #ff9a23;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 99;
    position: fixed;
    top: 50%;
    left: 48%;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
