.fotoalbum_sliderHolder {
	/* float: left; */
	width: 100%;
	/* height: 350px; */
	margin: 40px 0px;
	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: auto;
	margin: 0 40px;
	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;
	position: absolute;
	top: 0;
	right: 0;
}
.fotoalbum_prev {
	right:auto;
	left: 1rem;
}

.fotoalbum_next {
    right: 1rem;
}

.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;
    padding: 1rem;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.1);
}
.fotoalbum_slide .fotoalbum_slideContent img{
    width: auto;
    max-width: 100%;
    aspect-ratio: 1;
}
.fotoalbum_slide .fotoalbum_slideContent p{
	font-family: 'Black Ops One';
    font-size: 12px;
    line-height: 17px;
}