.bisue-popup-container {
    /* 안에 내용물 가운데 정렬 */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;

    /* 팝업 컨테이너 꽉 채우기 */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.bisue-popup-overlay {
    /* 오버레이 꽉 채우기 */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    /* 오버레이 색깔 */
    background-color: rgba(0, 0, 0, 0.5);

    /* 오버레이 뒤로 보내기 */
    z-index: -1;
}

.bisue-popup-item {
    max-width: 280px;
}
