

#showimage2 {
    position: fixed;
    width: 23%;
    top: 20%;
    left: 4.5%;
    z-index: 9990;
}

#showimage3 {
    position: fixed;
 /*    width: 29%;*/
    width: 23%;
    top: 20%;
	 left: 39%;
    z-index: 9990;
}
#showimage4 {
    position: fixed;
        width: 23%;
    top: 20%;
	 left: 14%;
    z-index: 9990;
}


.showimage .pop_inner {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px;
    box-sizing: border-box;
    display: inline-block;
    background-color: #fff;
}

.showimage .img_pop {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showimage .img_pop img{
    width: 100%;
    cursor: pointer;
}

.showimage .check_pop {
    background-color: transparent !important;
    width: 100%;
    font-size: 14px;
    padding-top: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.showimage .check_pop input {
    margin-right: 5px;
}

.showimage .check_pop label {
    cursor: pointer;
    color: #111;
    font-family: 'Pretendard-Regular', sans-serif;
    display: flex;
    align-items: center;
}

 .showimage .check_pop label input {
    margin-right: 5px;
    cursor: pointer;
}

.showimage a.btn_close {
    cursor: pointer;
    color: #111;
    font-family: 'Pretendard-Regular', sans-serif;
}


































/* mobile */
@media screen and (max-width: 767px) {


    #showimage2,
    #showimage3,
    #showimage4{
        width: 80%;
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
    }

    .showimage .pop_inner,
    .showimage .img_pop,
    .showimage .img_pop img {
        width: 100%;
    }

    .showimage .check_pop {
        font-size: 12px;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    #showimage2,
    #showimage3,
    #showimage4{
        width: 45%;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }
    .showimage .pop_inner,
    .showimage .img_pop,
    .showimage .img_pop img {
        width: 100%;
    }

    .showimage .check_pop {
        font-size: 12px;
    }

}