/* Popup */
#popup {
	position: fixed;
	top: var(--default-spacing);
	left: var(--default-spacing);
	z-index: 210;
	width: calc(100% - (var(--default-spacing) * 2));
    max-width: 1000px;
	background: #fff;
    overflow-y: scroll;
    min-height: 450px;
}
#popup .loading {
	display: block;
	margin: auto;
	margin-top: 20px;
}
#popup_mask {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #666;
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
	z-index: 200;
    overflow-y: scroll;
}
#product nav {
	padding-bottom: 15px;
} 
.next {
	background: url('../img/next.svg') no-repeat center center;
	display: inline-block;
	width: 10px;
	height: 20px;
	text-indent: -5000px;
	margin-left: 10px;
}
.prev {
	background: url('../img/prev.svg') no-repeat center center;
	display: inline-block;
	width: 10px;
	height: 20px;
	text-indent: -5000px;
	margin-right: 10px;
}
#popup .bar {
    position: relative;
}
#popup #close {
	position: absolute;
	background: url('../img/close.svg') no-repeat;
	top: 0;
	right: 0;
	cursor: pointer;
	width: 20px;
	height: 20px;
	z-index: 500;
}
#popup #close:hover {
	filter: alpha(opacity=60);
	-moz-opacity: 0.60;
	opacity: 0.60;
}
.flex-control-nav {
	text-align: center;
	padding-top: 10px;
}
.flex-control-nav li {
	display: inline-block;
	width: 13px;
	height: 12px;
	background: url('../img/pager.svg') no-repeat;
	cursor: pointer;
	margin: 5px;
}
.flex-control-nav li a {
	display: block;
	text-indent: -5000px;
}
.flex-control-nav li:hover,
.flex-active {
	background: url('../img/pager_selected.svg') no-repeat;
}
#adding_notice {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 500;
	background: #fff;
	padding: 20px;
    width: 100%;
    bottom: 0;
    box-sizing: border-box;
	text-align: center;
}
#adding_notice button {
    margin-bottom: 10px;
}
#adding_notice h2 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}