.population-notice-popup-list,
.population-notice-popup-list * {
    box-sizing: border-box;
}

.population-notice-popup-list {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px;
    padding-top: 97px;
    overflow-y: auto;
    pointer-events: none;
}

.population-notice-popup__panel {
    display: flex;
    flex-direction: column;
    flex: none;
    width: 1000px;
    max-width: 95vw;
    max-height: calc(100vh - 112px);
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
}

.population-notice-popup__body {
    flex: 1;
    min-height: 0;
    padding: 0 24px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.population-notice-popup__body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.population-notice-popup__body::-webkit-scrollbar-thumb {
    background: #d3d1c7;
    border-radius: 4px;
}

.population-notice-popup__download {
    display: block;
    width: 100%;
}

.population-notice-popup__image {
    display: block;
    width: 100%;
    height: auto;
}

.population-notice-popup__footer {
    display: flex;
    flex: 0 0 56px;
    width: 100%;
    border-top: 1px solid #e4e6ea;
}

.population-notice-popup__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    padding: 0 12px;
    color: #5a5e66;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic",
        "Apple SD Gothic Neo", sans-serif;
    font-size: 15px;
    font-weight: 700;
    background: #fff;
    border: 0;
    border-right: 1px solid #e4e6ea;
    cursor: pointer;
}

.population-notice-popup__button:hover,
.population-notice-popup__button:focus-visible {
    background: #f6f7f9;
}

.population-notice-popup__button--close {
    color: #fff;
    background: #2a6fdb;
    border-right: 0;
}

.population-notice-popup__button--close:hover,
.population-notice-popup__button--close:focus-visible {
    background: #1f5cc2;
}

/* 모바일 화면에서는 팝업(TPOP 알림 카드, PROMT 전체화면 모달)을 노출하지 않는다. */
@media (max-width: 767px) {
    .population-notice-popup-list {
        display: none;
    }

    .krds-modal.main-noti-popup {
        display: none !important;
    }
}
