														 /* 23.01.26 팝업 css*/

.background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 1000;

        /* 숨기기 
        z-index: -1;
        opacity: 0;*/
      }


.popup > .title{
    min-height: 40px;
    color: #fff;
	background: linear-gradient(80deg ,#181897, #181897,#181897);
    padding: 10px 15px;
    box-sizing: border-box;
	font-size: 20px;
    font-weight: bold;
	border-radius:10px 10px 0 0;
}
.popup > .content {
    padding: 20px 40px;
    box-sizing: border-box;

}

.popup > .pop_btn {
    bottom: 0;
    min-height: 40px;
    padding: 10px 20px;
    box-sizing: border-box;
    min-height: 40px;
    text-align: right;
	 border-top: 1px solid #bcbcbc;
}

.popup > .pop_btn .button {
    border-radius: 5px;
    padding: 5px 10px;
    border: 1px solid #aaa;
}
.popup > .pop_btn .button:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.popup {
    z-index: 999999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 300px;
	width: auto;
	height: auto;
    background-color: #fff;
    box-shadow: 0 2px 55px -25px rgb(0 0 0 / 100%);
	overflow:unset;
	border-radius:4%;
	
}
.popup img {
    width:340px;
}


#check{
margin: 5px 15px 0 0;
float: left;

}

.pop_btn .close{
width:60px;
height:30px;
border-width: thin;
border-radius: 5%;
cursor: pointer;

}


@media all and (max-width: 768px) {

.popup {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	width: auto;
    background-color: #fff;
    box-shadow: 0 2px 55px -25px rgb(0 0 0 / 100%);
}
.popup img{
width: 300px;
}

.popup > .content{
padding: 10px 18px;
}

.popup > .title{
	font-size: 16px;
    font-weight: bold;
}

.popup_chk {
transform : scale(1.2);
}

.pop_btn > #popup {
margin: 0px;

}

}
