body {
	font-family: Arial,sans-serif;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
img { vertical-align: middle; }

#mosaik {
	position: fixed;
	width: 100%;
	min-width: 500px;
	height: 100%;
	overflow: hidden;
	display: flex;
	/* align-items: center; */
	justify-content: space-around;
	flex-direction: column;
}

#content-wrap {
	position: relative;
	width: 100%;
	height: 0;
	/* height: padding is set in template, depending on logo size */
}
#content {
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 1;
	display: flex;
	align-content: center;
	flex-direction: column;
	max-width: 100%;
	width: 100%;
}
.row {
	flex: 1 1 auto;
	display: flex;
	line-height: 0.5;
}
.tile {
	flex: 1 1 auto;
	position: relative;
}
.pic {
	position: absolute;
	top: 0;
	left: 0;
	/* max-width: 100%; */
	width: 100%;
	height: auto;
	vertical-align: middle;
	transition: all 1.5s ease-in-out, opacity .5s ease-in-out;
	border: 0 none;
	border-color: #46b82e;
	/* cursor: pointer; */
	rotate:0;
}
.pic.hidden {
	opacity: 0; /* start invisible */
}
.pic.show { opacity: 1; }

.pic.animated {
	z-index: 5;
	border:2px solid #94c120;
}
.pic.show-full {
	z-index: 10;
    max-width: unset;
	transition: opacity .5s ease-in-out;
	rotate:720deg; 
	rotate: 1 2 1 360deg; 
}

#logo-overlay {
	position: absolute;
	bottom: 6%;
	right: 3%;
	z-index: 100;
	text-align: right;
}
#logo-overlay img {
	width: 20%;
	height: auto;
}
