@charset "utf-8";

/* 일반팝업 */
.popup-container {
	position:absolute;
	width: 100%;
    height: 100%;
	z-index:23;
	pointer-events: none;
}
.popup-container.fix {
	position:fixed;
}
.popup-box {
	position:absolute;
	display:block;
	z-index:2;
	display:none;
	overflow: hidden; 
	box-sizing: border-box;
	
	-webkit-border-radius: 10px; 
	   -moz-border-radius: 10px; 
		    border-radius: 10px;
	
	top: 0;
	left: 0;
	background:#fff;
	pointer-events:auto;
}
.popup-container .view_popup {
	display:block;
	opacity:0;
}
.popup-box-item {
	position:relative;
}
.popup-box-item img {
	position:relative;
	width:100%;
	max-width:100%;
	/*cursor:move;*/
}
.popup-back {
	position: fixed; 
	width: 100%;
	height: 100vh;
	top: 0px;
	left: 0;
    right: 0;
	background:rgba(0,0,0,1);
	display:none;
	visibility:hidden;
	opacity:0;
	-webkit-transition: opacity .4s ease-out;
       -moz-transition: opacity .4s ease-out;
        -ms-transition: opacity .4s ease-out;
         -o-transition: opacity .4s ease-out;
            transition: opacity .4s ease-out;
	z-index: 1;
	pointer-events:auto;	
} 

@media screen and (max-width: 768px) {
	.popup-box {
		top: 50% !important;
		left: 50% !important;
		bottom:auto !important;
		right:auto !important;
		-webkit-transform: translate(-50%, -50%) !important;
		-moz-transform: translate(-50%, -50%) !important;
		-ms-transform: translate(-50%, -50%) !important;
		-o-transform: translate(-50%, -50%) !important;
		transform: translate(-50%, -50%) !important;
	}
	.popup-back {
		display:block;
		visibility:visible;
		opacity:0.3;
	}
}


@media screen and (max-width: 480px) {
	.popup-box {
		max-width:400px !important;
	}
}

@media screen and (max-width: 425px) {
	.popup-box {
		max-width:90% !important;
	}
}

/* 그룹팝업 */
.popup-group-container {
	position:fixed;
	width: 100%;
    height: 100%;
	z-index:20;
	pointer-events: none;
}
.popup-group-box {
	position:absolute;
	display:block;
	z-index:2;
	display:none;
	overflow: hidden; 
	box-sizing: border-box;
	
	-webkit-border-radius: 10px; 
	   -moz-border-radius: 10px; 
		    border-radius: 10px;
	
	top: 50%;
	left: 50%;
	bottom:auto;
	right:auto;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background:#fff;
	pointer-events:auto;
	/*-webkit-transition: all .4s ease-out;
       -moz-transition: all .4s ease-out;
        -ms-transition: all .4s ease-out;
         -o-transition: all .4s ease-out;
            transition: all .4s ease-out;*/
}
.popup-group-container .view_group_popup {
	display:block;
	opacity:0;
}
.popup-group-box img {
	position:relative;
	width:100%;
}
.popup-shadow {
	box-shadow: 3px 3px 15px rgba(51,51,51,.3);
}
.popup-slide-box {
	position:relative;
}
.popup-slide {
	position:relative;
}
.popup-slide-box .slick-slide {
	padding: 0 0px;
	position:relative;
}
.popup-slide-box .slick-item {
	position:relative;
	font-size:0;
}
.popup-slide-box .slick-item img {
	position:relative;
	width: 100%;
	max-width:100%;
	padding-bottom:0px;
}
.popup-slide-box .pop-image {
	position: relative;
	width:100%;
}
.popup-slide-box .pop-image-item {
    position: relative;
	display: inline-block;
    overflow: hidden;
    width: 100%;
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;
}
.popup-slide-box .pop-link {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0px;
    background: transparent;
    z-index: 2;
}
.popup-slide-box .slick-dots {
    position:relative;
	bottom:0px;
    padding:18px 20px 0px;
    margin: 0;
	font-size:0;
	
}
.popup-slide-box .slick-dots li {
	position:relative;
	display:inline-block;
	width: 12px;
    height: 12px;
    margin: 0 5px;
}
.popup-slide-box .slick-dots li button {
	width: 12px;
    height: 12px;
	border-radius:50%;
	-webkit-border-radius:50%;	
	overflow:hidden; 
	background:#ccc;
	border:none;
}
.popup-slide-box .slick-dots li button:hover,
.popup-slide-box .slick-dots li button:focus,
.popup-slide-box .slick-dots li.slick-active button {
	background: #444;
}

/* dots out */
.popup-slide-dots-out .slick-dots {
    position:relative;
	bottom:0px;
    padding:0px;
    margin: 0;
	font-size:0;
	text-align:left;	
}
.popup-slide-dots-out .slick-dots li {
	position:relative;
	display:inline-block;
	width: 12px;
    height: 12px;
    margin: 0 4px;
}
.popup-slide-dots-out .slick-dots li button {
	width: 12px;
    height: 12px;
	border-radius:50%;
	-webkit-border-radius:50%;	
	overflow:hidden; 
	background:#ccc;
	border:none;
}
.popup-slide-dots-out .slick-dots li button:hover,
.popup-slide-dots-out .slick-dots li button:focus,
.popup-slide-dots-out .slick-dots li.slick-active button {
	background: #444;
}

.popup-bottom-box {
	position:relative;
	
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-flex-direction: row;
			flex-direction: row;
			
	padding: 15px 20px;
	background:#fff;
	line-height:100%;
	width:100%;
	font-size:14px;
	padding: 10px 15px;
	align-items: center;
	justify-content: center;
}
.popup-bottom-box.single {
	padding: 10px 15px;
	font-size:14px;
}
.popup-bottom-box .popup-slide-dots-out {
	position:relative;
	width:40%;
}
.popup-bottom-box .popup-slide-close {
	position:relative;
	width:60%;
	text-align:right;
	white-space:nowrap;
}
@media screen and (max-width: 460px) {
	.popup-bottom-box .popup-slide-dots-out {
		width:25%;
	}
	.popup-bottom-box .popup-slide-close {
		width:75%;
	}
}
.popup-bottom-box .popup-not-today {
	position:relative;
	width:70%;
	white-space:nowrap;
}
.popup-bottom-box .popup-close {
	position:relative;
	width:30%;
	text-align:right;
	white-space:nowrap;
}
.popup-bottom-box button {
	position:relative;
	display:inline-block;
	line-height:16px;
	white-space:nowrap;
}
.popup-bottom-box .popup-not-today-btn {
	
	color:#666;
}
.popup-bottom-box button i {
	font-size:12px;
}
.popup-bottom-box .inline-text {
	position:relative;
	display:inline-block;
	padding:0 15px;
	border-right:1px solid #ccc;
}
.popup-bottom-box .inline-text:last-child {
	padding:0 0 0 10px;	
	border-right:none;
}
.pop-pos-trans-none {
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	transform: none !important;
}
.pop-pos-cc {
	top: 50%; 
	left: 50%;
	bottom:auto;
	right:auto;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.pop-pos-cl {
	top: 50%; 
	left: 100px;
	bottom:auto;
	right:auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pop-pos-cr {
	top: 50%; 
	left: auto;
	bottom:auto;
	right: 100px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pop-pos-tl {
	top: 100px; 
	left: 100px;
	bottom:auto;
	right:auto;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.pop-pos-tc {
	top: 100px; 
	left: 50%;
	bottom:auto;
	right:auto;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.pop-pos-tr {
	top: 100px; 
	left: auto;
	bottom:auto;
	right:100px;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.pop-pos-bl {
	top: auto; 
	left: 100px;
	bottom:100px;
	right:auto;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.pop-pos-bc {
	top: auto; 
	left: 50%;
	bottom:100px;
	right:auto;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.pop-pos-br {
	top: auto; 
	left: auto;
	bottom:100px;
	right:100px;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.group-popup-back {
	position: absolute; 
	width: 100%;
	height: 100vh;
	top: 0px;
	left: 0;
    right: 0;
	background:rgba(0,0,0,1);
	visibility:hidden;
	display:none;
	opacity:0;
	-webkit-transition: opacity .4s ease-out;
       -moz-transition: opacity .4s ease-out;
        -ms-transition: opacity .4s ease-out;
         -o-transition: opacity .4s ease-out;
            transition: opacity .4s ease-out;
	z-index: 1;
	pointer-events:auto;
}


@media screen and (max-width: 768px) {
	.popup-group-box {
		top: 50% !important;
		left: 50% !important;
		bottom:auto !important;
		right:auto !important;
		-webkit-transform: translate(-50%, -50%) !important;
		-moz-transform: translate(-50%, -50%) !important;
		-ms-transform: translate(-50%, -50%) !important;
		-o-transform: translate(-50%, -50%) !important;
		transform: translate(-50%, -50%) !important;
	}	
	.popup-bottom-box .popup-not-today-btn {
		font-size:14px;
	}
}


@media screen and (max-width: 480px) {
	.popup-group-box {
		position:fixed;
		-webkit-border-radius: 10px 10px 0 0; 
		   -moz-border-radius: 10px 10px 0 0; 
				border-radius: 10px 10px 0 0;
		top: auto !important;
		left: 0 !important;
		bottom:0 !important;
		right:0 !important;
		-webkit-transform:none !important;
		-moz-transform:none !important;
		-ms-transform:none !important;
		-o-transform:none !important;
		transform:none !important;
	}
	
	.m-cc .popup-group-box {
		position:absolute;
		max-width:400px;
		-webkit-border-radius: 10px; 
		   -moz-border-radius: 10px; 
				border-radius: 10px;
		top: 50% !important;
		left: 50% !important;
		bottom:auto !important;
		right:auto !important;
		-webkit-transform: translate(-50%, -50%) !important;
		-moz-transform: translate(-50%, -50%) !important;
		-ms-transform: translate(-50%, -50%) !important;
		-o-transform: translate(-50%, -50%) !important;
		transform: translate(-50%, -50%) !important;
	}
	
	.m-bc .popup-group-box {
		position:absolute;
		max-width:400px;
		-webkit-border-radius: 10px; 
		   -moz-border-radius: 10px; 
				border-radius: 10px;
		top: auto !important;
		left: 50% !important;
		bottom:60px !important;
		right:auto !important;
		-webkit-transform: translate(-50%, 0%) !important;
		-moz-transform: translate(-50%, 0%) !important;
		-ms-transform: translate(-50%, 0%) !important;
		-o-transform: translate(-50%, 0%) !important;
		transform: translate(-50%, 0%) !important;
	}
	
	.popup-slide {
		width:100% !important;
	}
	.popup-slide-box .pop-image-item {
		height: 100% !important;
	}
	.popup-slide-box .pop-image-item:after {
		content:'';
		display:block;
		padding-bottom: 100%;
	}
	
	.group-popup-back {
		opacity:.3;
		visibility:visible;
		display:block;
	}
	
	.popup-slide-box .slick-dots {
		padding:10px 20px 0px;
		position:absolute;
		bottom:10px;
		z-index:2;
	}
	.popup-slide-box .slick-dots li {
		width: 8px;
	    height: 8px;
		margin: 0 3px;
	}
	.popup-slide-box .slick-dots li button {
		width: 8px;
		height: 8px;
	}
	
	.popup-slide-dots-out .slick-dots li {
		width: 8px;
	    height: 8px;
		margin: 0 3px;
	}
	.popup-slide-dots-out .slick-dots li button {
		width: 8px;
		height: 8px;
	}
}

@media screen and (max-width: 425px) {
	.m-cc .popup-group-box {
		width:90%;
		max-width:90%;
	}
	
	.m-bc .popup-group-box {
		width:90%;
		max-width:90%;
	}
}

/* 공지 */
.wt-pc {
	position:absolute;
	top:-800px;
	right:70px;
	z-index:141;
	min-width:280px;
	max-width:280px;
	display:none;
	pointer-events: none;
}

.wt-mobile {
	position:absolute;	
	min-width:320px;
	max-width:320px;
	display:none !important;
}

@media (max-width: 1600px) {
	.wt-pc {
		right:60px;
	}
}
@media (max-width: 1100px) {
	.wt-pc {
		right:40px;
	}
}
@media (max-width: 768px) {
	.wt-pc {display:none !important}
	.wt-mobile {display:block !important;}
}
@media (max-width: 320px) {
	.wt-mobile {
		min-width:280px;
	}
}
.wt-area {
	font-family:"Gothic A1",serif;
	background:transparent;
}
.wt-shadow {
	box-shadow: 3px 3px 15px rgba(51,51,51,.3);
}
.wt-area .line {
	position:relative;
	width:100%;
	height:300px;
}
.wt-area .line:before {
	position: absolute;
    top: 0;
    left: 50%;
	display: block;
 	background:rgba(160,130,105,1);
    width: 1px;
    height: 100%;
    content: '';
}
.wt-area .area {
	position:relative;
	
	width:100%;
	font-size:16px;
	text-align:center;
	color:#fff;
	/*box-shadow:3px 6px 20px rgba(0,0,0,0.3);*/
	
}

.wt-area .top {
	position:relative;
	display:block;
	text-align:center;
	padding:20px 15px 15px;
	background:rgba(160,130,105,1);
	clip-path: polygon(50% 0%, 95% 30%, 100% 100%, 0 100%, 5% 30%);
	-webkit-border-radius: 10px 10px 0px 0px; 
	   -moz-border-radius: 10px 10px 0px 0px; 
		    border-radius: 10px 10px 0px 0px;
	
}
.wt-mobile.wt-area .top {
	/*clip-path:none;
	padding:10px 15px 15px;*/
}
.wt-mobile.wt-area {
	box-shadow: 3px 3px 15px rgba(51,51,51,.3);
}

.wt-area .top .wtLogo {
	position:relative;
	display:block;
	padding:0px 0 15px;
}
.wt-area .top .wtTit {
	position:relative;
	display:block;
	text-align:center;
	font-size:19px;
	letter-spacing:-0.5px;
	font-weight:600;
	line-height:100%;	
}

.wt-area .mid {
	position:relative;
	padding:15px 10px 15px 20px;
	background:rgba(255,255,255,.85);
	pointer-events: auto;
}
.wt-mobile .mid {
	background:rgba(255,255,255,1);
	
}
.wt-area .mid .contents {
	position:relative;
	text-align:left;
	color:#000;
	font-weight:500;
	padding-right:10px;
	font-size:16px;
	line-height:24px;
	font-weight:normal;
	max-height:300px;
	overflow-y:auto;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.wt-mobile .mid .contents {
	max-height:300px;
}
/* Hide scrollbar for Chrome, Safari and Opera */

/* 스크롤바 설정*/
.wt-area .mid .contents::-webkit-scrollbar{
    width: 2px;
}

/* 스크롤바 막대 설정*/
.wt-area .mid .contents::-webkit-scrollbar-thumb{
    width: 2px;
	border-radius: 0px;  
    background-color:rgba(160,130,105,1);
}

/* 스크롤바 뒷 배경 설정*/
.wt-area .mid .contents::-webkit-scrollbar-track{
	background-color: rgba(255,255,255,1);
}

.wt-area .bot {
	position:relative;
	text-align:center;
	padding:10px 15px;	
	font-size:0;
	background:rgba(160,130,105,1);
	overflow:hidden;
	-webkit-border-radius: 0px 0px 10px 10px; 
	   -moz-border-radius: 0px 0px 10px 10px; 
		    border-radius: 0px 0px 10px 10px; 
}
.wt-area .btn {
	position:relative;
	display:inline-block;
	text-align:center;
	padding:0px 15px 0 20px;
	height:30px;	
	font-size:14px;
	letter-spacing:-0.5px;
	line-height:30px;
	color:#31180a;
	font-weight:500;
	background:#fff;
	overflow:hidden;
	-webkit-border-radius: 20px; 
	   -moz-border-radius: 20px; 
		    border-radius: 20px; 
}
.wt-area .btn i {
	font-size:13px;
	line-height:30px;
}
.wt-area .close {
	position:absolute;
	top:10px !important;
	right:10px !important;
	width:30px;
	height:30px;
	display:block;
}
.wt-area .close i {
	position:absolute;
	font-size:14px;
	line-height:100%;
	color:#fff;
	top: 50%; left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
