@charset "utf-8";
/* CSS Document */

.popup_btn{
	cursor: pointer;
}

#popup_box {
    position: fixed;
	width: 100%;
    height: 100%;
	cursor: pointer;
	z-index: 9999;
    display: none;
}
.popup_box_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
}
.popup_box_wrapper{
	position: fixed;
	min-width: 450px;
    width: 25%;
    min-height: 90%;
    background-color: #fff;
    right: 0;
    border-left: 1px solid #bfbfbf;
    border-radius: 28px 0px 0px 28px;
    padding: 2% 3% 3% 3%;
}
.popup_box_close {
    position: relative;
    width: 50px;
    height: 50px;
    float: right;
	margin-bottom: 10px;
}
.popup_box_close:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    margin-top: 25px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.popup_box_close:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    margin-top: 25px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.popup_img, .popup_img img {
    width: 100%;
}
.popup_content {
    width: 100%;
    max-height: 760px;
    overflow-y: overlay;
}
.popup_content ul {
    list-style: none;
}

@media all and (max-width: 991px) {
.popup_box_wrapper{
	min-width: auto;
    width: 65%;
    min-height: auto;
    top: 15%;
    right: auto;
    margin: 0 auto;
    border-radius: 28px;
    border: 1px solid #bfbfbf;
    left: 50%;
    transform: translateX(-50%);
}
}
@media all and (max-width: 550px) {
.popup_box_close {
    width: 30px;
    height: 30px;
}
.popup_box_close:before, .popup_box_close:after {
    margin-top: 15px;
}
.popup_content {
    max-height: 450px;
}
}
@media all and (max-width: 450px) {
.popup_box_wrapper {
    width: 80%;
}
.popup_content {
    max-height: 750px;
}
}
@media all and (max-width: 400px) {
.popup_content {
    max-height: 600px;
}
}
@media all and (max-width: 380px) {
.popup_content {
    max-height: 450px;
}
}


