.imageview .title,
.imageview .prev,
.imageview .next,
.imageview .hide {
	-background-color: rgba(0, 255, 0, 0.2);
	color:#fff;
}
.imageview .title{
	text-align:center;
}
.imageview {
	display: none;
	position: fixed;
	z-index: 10000;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background: rgba(0,0,0,0.9);
}
.imageview .prev,
.imageview .next,
.imageview .hide {
	position: absolute;
	opacity: 0.5;
	background-repeat: no-repeat;
	-moz-transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	cursor: pointer;
}
.imageview .prev:hover,
.imageview .next:hover,
.imageview .hide:hover {
	opacity: 1;
}
.imageview .prev,
.imageview .next {
	z-index: 10001;
	width: 50px;
	height: 45px;
	top:50%;
}
.imageview .prev {
	left: 0px;
	background-image: url(../images/prev.png);
}
.imageview .next {
	right: 0px;
	background-image: url(../images/next.png);
}
.imageview .hide {
	z-index: 10002;
	top: 5%;
	right: 5%;
	width: 27px;
	height: 27px;
	display:block !important;
	background-image: url(../images/close.png);
}
.imageview .image {
	display: flex;
	position: absolute;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align:center;
}
.imageview .image img {
	display: none;
	max-width: 100%;
	max-height: 100%;
}