@charset "UTF-8";
/* CSS Document */


.slideshow{
	position: relative;
	height: calc(100% - 140px);
	width: calc(100% - 80px);
	top: 40px;
	left: 50px;

}

.img-cont {
	display: flex;
	align-items: flex-start;
	position: relative;
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.main-img {
	position: relative;
	display: inline-block;
	left: 0;
	bottom:0;
	max-width: calc(100% - 270px);
	max-height: 70vh;
	
}

.infobox {
	position: relative;
	align-self: flex-end;
	width: 170px;
	display: inline-block;
	font-family: "Avenir";
	font-weight: 100;
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: 1px;
	margin: 0;
}
.arrow{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: auto 18px;
	width: 12px;
	height: 20px;
	opacity: 0.6;
}
.arrow:hover{
	opacity: 1.0;
}

@media (max-height: 400px) {
	
	.slideshow {
		top:15px;
	}
	
}


@media screen and (max-width: 920px) {

	.arrow{
		display: none;
		
	}
	
	.slideshow {
		top: 10px;
		left: 0;
		width: calc(100% - 0px);
		height: calc(100% - 50px);
	}
	
	.img-cont {
		width: 100%;
	}
	
	.main-img {
		left: 50%;
		transform: translate(-50%,0);
		bottom: 0;
		max-width: calc(100% - 100px);
		max-height: calc(100vh - 180px);
	
	}

	.infobox {
		position: absolute;
		text-align: center;
		left: 0;
		right: 0;
		bottom: -65px;
		margin: auto;
		line-height: 1.2;
		font-size: 11px;
	}
	
}