/* ----------------------------------- */
/* -------- BH-PICTURE DESKTOP ------- */
/* ----------------------------------- */

.bh-femode .bhImageInner {
    overflow: hidden;
}
.bhPicture img {
    margin: 0 auto;
}
.bhPicture.bhElement .bhImageHover {
	position: absolute;
    top: 0px;
    right: 0px;
	width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    opacity: 0;
    display: block;
	transition: all .4s;
}
a:not([href]).bhPicture.bhElement:hover .bhImageHover {
	display: none;
}
a.bhPicture[target="lightbox"]:hover .bhImageHover {
    opacity: 1;
    background-position: center center;
}
.bhPicture.bhElement .file-copyright {
	position: absolute;
	margin-top: 12px;
	right: 12px;
	font-size: 10px;
	color: rgba(255,255,255,.6);
	border-top-left-radius: 5px;
	
}
.bhPicture.bhElement figcaption {
	position: relative;
	color: rgba(255,255,255,.5);
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 1px;
	padding-top: 11px;
	padding-bottom: 10px;
	font-weight: 700;
}
.bhPicture.bhElement figcaption p {
	margin: 0;
}
.bhPicture .bhImageInner.bhe-prevent-imageresize {
    width: 100% !important;
}
.bhPicture .bhe-prevent-imageresize.bhImageInner img {
    cursor: auto;
    margin: 0 auto;
}

/* ----- BILD HOVER KEINE LUPE ----- */
a.bhPicture.bhElement.picnozoom:hover .bhImageHover {
	display: none;
}
/* ----- BILD HOVER SKALIEREN ----- */
body:not(.bhe-state-editing) a.bhPicture.bhElement.picscale .bhImageInner img {
	transition: 2s;
}
body:not(.bhe-state-editing) a.bhPicture.bhElement.picscale:hover .bhImageInner img {
	transform: scale(1.1);
}
/* ----- BILD HOVER RUNDE ECKEN ----- */
body:not(.bhe-state-editing) a.bhPicture.bhElement.picround .bhImageInner {
	border-radius: 50%;
	overflow: hidden;
}

/* ----- MEDIAQUERIES ----- */

@media screen
	and (max-width : 1023px) {
		
		.bhPicture.bhElement figcaption {
		    font-size: 10px;
		    line-height: 14px;
		}
}