.imageview .title,
.imageview .prev,
.imageview .next,
.imageview .hide {
	-background-color: rgba(0, 255, 0, 0.2);
}

.imageview {
	display: none;
	position: fixed;
	z-index: 10000;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background: white;
}
.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: 80px;
	height: 100%;
	background-position: 30px 50%;
	background-size: 32px;
}
.imageview .prev {
	left: -30px;
	background-position: 30px 50%;
	background-image: url(../grafik/prev.png);
}
.imageview .next {
	right: -14px;
	background-image: url(../grafik/next.png);
}
.imageview .hide {
	z-index: 10002;
	top: 0%;
	right: 0%;
	width: 80px;
	height: 80px;
	background-position: 10px 50%;
	background-size: 50px 50px;
	background-image: url(../grafik/kreuz.png);
}
.imageview .title {
	position: absolute;
	opacity: 0.5;
	z-index: 10000;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 80px;
	line-height: 80px;
	vertical-align: bottom;
	text-indent: 30px;
	font-family: Arial;
	font-size: 14px;
	color: #666;
}
.imageview .image {
	display: flex;
	position: absolute;
	top: 1%;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 98%;
}
.imageview .image img {
	display: none;
	max-width: 100%;
	max-height: 100%;
	border-left: 10px solid #fff;
	border-right: 10px solid #fff;
}