<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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.salepopup {
	top: 0;
    display: block;
}
.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_wrapper.salepopup{
	min-width: 850px;
    min-height: auto;
    top: 50%;
	left: auto;
    right: 50%;
    background-color: transparent;
    border-left: 0px;
    transform: translate(50%, -50%);
    border-radius: 0px;
    padding: 0%;
}
.popup_box_close {
    position: relative;
    width: 100px;
    height: 100px;
    float: right;
	margin-bottom: 10px;
}
.salepopup .popup_box_close {
    position: absolute;
    top: -7%;
    right: -5%;
    margin-bottom: auto;
}
.popup_box_close:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    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: #fff;
    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_img_l, .popup_img_r {
    width: 50%;
    float: left;
}
.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%);
}
.popup_box_wrapper.salepopup {
    min-width: auto;
	border: 0px;
}
}
@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_box_wrapper.salepopup {
    width: 90%;
}
.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;
}
}


</pre></body></html>