/* 기본 스타일 */
.image-gallery {
    text-align: center;
    margin: 20px;
}

.thumbnail {
    width: 200px;
    cursor: pointer;
    border: 2px solid #ddd;
}

.popup {
    display: none;
    /* 기본적으로 숨김 */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-body {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    max-height: 50%;
    align-items: center;
    justify-content: center;
}

.close_wrap {
    width: 100%;
    height: 35px;
    display: flex;
    flex-direction: row-reverse;
}

.check_wrap {
    width: 100%;
    display: flex;
    color: #fff;
}


@media (max-width:767px) {
    .popup-body {
        max-width: 100%;
        max-height: 100%;
    }

}



.close {

    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
}

.close:hover {
    color: #bbb;
}


.popup-options label {
    font-size: 14px;
}