@charset "UTF-8";
/* CSS Document */
.productDetailPage #ec_detail_layout .popup table:not(.item_size_table):not(.size):not(.list-table) tbody {display: table-row-group;}
.productDetailPage #ec_detail_layout .popup table:not(.item_size_table):not(.size):not(.list-table) tr {display: table-row;}
.productDetailPage #ec_detail_layout .popup table:not(.item_size_table):not(.size):not(.list-table) th {display: table-cell;}
.productDetailPage #ec_detail_layout .popup table:not(.item_size_table):not(.size):not(.list-table) td {display: table-cell;}

.popup * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.popup {
	z-index: -1;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	white-space: nowrap;
	background: #0b0b0b;
	background: rgba(0, 0, 0, 0.9);
	outline: none !important;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
.popup.popup_opened {
	opacity: 1;
	z-index: 9990;
}
.popup_wrap {
	z-index: 9990;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	outline: none !important;
	padding: 30px;
	box-sizing: border-box;
}
.popup_wrap:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}
.popup_container {
	z-index: 9992;
	position: relative;
	text-align: left;
	vertical-align: middle;
	display: inline-block;
	white-space: normal;
	max-width: 100%;
	max-height: 100%;
	outline: none !important;
	overflow: auto;
}
.popup_content {
	z-index: 9993;
	width: 100%;
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: -o-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
	max-width: 1240px;
	overflow: visible;
}
.popup_opened .popup_content {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.popup_content:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.popup_close {
	z-index: 9994;
	width: 60px;
	height: 60px;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-appearance: none;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	padding: 0;
	color: #fff;
	font-style: normal;
	font-size: 60px;
	font-family: Arial, Baskerville, monospace;
	line-height: 60px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	border: 0;
	background: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

@media screen and (max-width: 899px){
	.popup_wrap {
		padding: 30px 20px;
	}
	
	.popup_container {
	  overflow: auto;
	  padding: 30px 0;
	  box-sizing: border-box;
	  -webkit-overflow-scrolling: touch;
	}
	.popup_close {
	  position: fixed;
	  top: 20px;
	  right: 5px;
	}
}





