.acf_section--slider {
	padding: 0;
}

.acf_section--slider .slider_outer_container {
	position: relative;
	width: 100%;
}

.acf_section--slider .slider_container {
	width: 100%;
	height: 60vh;
	min-height: 350px;
	overflow: auto;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.acf_section--slider .slider_container::-webkit-scrollbar {
  display: none;
}

.acf_section--slider .slider_stage {
	width: 100%;
	height: 100%;
	display: flex;
}

.acf_section--slider .slide {
	width: 100%;
	height: 100%;
	position: relative;
	scroll-snap-align: center;
}

.acf_section--slider .slide_background_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.acf_section--slider .slide_background_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acf_section--slider .slider_vordergrundbild {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	pointer-events: none;
}

.acf_section--slider .slider_vordergrundbild img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.acf_section--slider .slide>.wrapper {
	height: 100%;
}

.acf_section--slider .slide_content {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: var(--universal-gap) 0 calc(var(--universal-gap) * 2);
	text-align: center;
	position: relative;
	z-index: 1;
}

.acf_section--slider .slide_content .headline {
	color: var(--color-white);
	text-shadow: 0 0 60px rgba(0,0,0,0.6)
}

.acf_section--slider .slide_content .headline + .button {
	margin-top: var(--universal-gap);
}


.acf_section--slider .slider_arrow_container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	padding: 0 var(--universal-gap);
	z-index: 1;
}

.acf_section--slider .slider_arrow_container .arrow_nav {
	pointer-events: auto;
	cursor: pointer;
}

.acf_section--slider .slider_bar_navigation {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: var(--universal-gap);
	padding: var(--universal-gap);
	position: relative;
	z-index: 1;
}

.acf_section--slider .slider_bar_navigation .slider_nav_bar {
	width: 120px;
	width: clamp(40px, 6vw, 120px);
	height: 7px;
	background-color: var(--color-table-grey);
	display: inline-block;
	cursor: pointer;
	transition: background-color 300ms ease;
}

.acf_section--slider .slider_bar_navigation .slider_nav_bar:hover,
.acf_section--slider .slider_bar_navigation .slider_nav_bar.active {
	background-color: var(--color-blue);
}

.acf_section--slider .slider_bar_navigation .slider_nav_bar.active {
	cursor: default;
}

@media (hover: none) {
	.acf_section--slider .slider_arrow_container {
		display: none;
	}
}

@media (hover: hover) {
	.acf_section--slider .slide .wrapper {
		padding: 0 max(80px,var(--wrapper-padding))
	}
}
