.fotoalbum_sliderHolder {
	float: left;
	width: 100%;
	height: 350px;
	margin: 40px 0;
	text-align:center;
}

.fotoalbum_indicator {
	width: 100%;
	display:inline-block;
	text-align:center;
    height: 40px;
    padding-top: 5px;
}
.fotoalbum_indicator span{
	display:inline-block;
	width: 12px;
	height: 12px;
	margin: 7px;
	transform: rotateZ(45deg);
	background-color:#ddd;
	transition: background .1s ease-in-out;
}
.fotoalbum_indicator span.current{
	background-color:#003986;
}

.fotoalbum_content {
	float: left;
	width: calc(100% - 80px);
	height: calc(100% - 30px);
	margin: 0;
	overflow: hidden;
	position: relative;
}
@media screen and (max-width:1024px){
    .fotoalbum_content{
		height: calc(100% - 0px);	
	}
}

.fotoalbum_next,
.fotoalbum_prev {
	float: left;
	height: 100%;
	align-items: center;
	display: flex;
	width: 40px;
	text-align: center;
}

.fotoalbum_next {}

.fotoalbum_next i,
.fotoalbum_prev i {
	width: 100%;
	text-align: center;
	font-size: 18px;
}

.fotoalbum_carousel {
	width: calc(100%);
	height: 100%;
	position: inherit;
	left:0;
	transition: left .8s ease-in-out;
}

.fotoalbum_slide {
	width: 100%;
	height: auto;
	background-size: cover;
	background-position: center;
	float: left;
	transition: all .2s ease-in-out;
	margin: 0 1.5rem 1.5rem 0;
	display: inline;
	justify-content: center;
	align-items: center;
}
.fotoalbum_slide .fotoalbum_slideContent{
    height: max-content;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: solid 1px black;
    padding: 5px;
    box-shadow: 0px 0 5px rgb(0 0 0 / 24%);
    border-radius: 5px;
}
.fotoalbum_slide .fotoalbum_slideContent img{
    max-height: 200px;
    width: auto;
    max-width: 100%;
}
.fotoalbum_slide .fotoalbum_slideContent p{
	font-family: 'Black Ops One';
    font-size: 12px;
    line-height: 17px;
}