/* CSS Document */
.popup-anchor{
	display:block;
	position:relative;
	max-width: 100%;
	}
.mv-popup {
	display:inline-block;
	position:relative;
	max-width: 100%;
	}
.mv-popup-anchor::before {
	content:"";
	display:block;
	height:40px;
	width:40px;
	position:absolute;
	margin:auto;
	top:0;
	left:0;
	bottom:0;
	right:0;
	border:4px solid #fff;
	background-color:rgba(0,0,0,.4);
	z-index:2;
	border-radius: 40px;
	box-shadow: 0 0 6px rgba(0,0,0,.8);
	}
.mv-popup-anchor::after {
	content:"";
	display:block;
	height:0;
	width:0;
	position:absolute;
	margin:auto;
	top:0;
	left:0;
	bottom:0;
	right:-6px;
	z-index:2;
	border-left:20px solid #fff;
	border-top:15px solid transparent;
	border-bottom:15px solid transparent;
	}
.mv-popup-anchor:hover::before
, .mv-popup-anchor:hover::after {
	opacity: 0.7;
	}
.im-popup-anchor::before {
	content:"";
	display: block;
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 24px;
	height: 24px;
	background-image: url(/img/icon/ZOOM.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}