:root {
	--loadingBarHeight: 2rem;
}

.slideShow{
	width: 100vw;
	height: auto;
	margin-bottom: 30rem;
	position: relative;
}

.slideShow .compact {
	margin-bottom: 0px;
}

.slideShow img {
	position: absolute;
	width: inherit;
	min-width: 700px;
	opacity: 0;
}

.slideShow.transition img {
	transition: opacity 2.5s;
}

@media (max-width:700px) {
	.slideShow img{
		margin-left: calc(50vw - 350px);
	}
}

.slideDots {
	position: absolute;
	bottom: -30rem;
	left: 0;
	right: 0;
	text-align: center;
}

.compact .slideDots {
	bottom: 10px;
}

.dots{
	width: 13rem;
	height: 13rem;
	background: gray;
	display: inline-block;
	margin: 0 5rem;
	border-radius: 50%;
	cursor: pointer;
	background-color: #8F8F8F;
}

.compact .dots{
	background-color: #0040FF;
}

.dots.active, .dots:hover {
	background-color: #333;
}

.compact .dots.active, .compact .dots:hover{
	background-color: #0B0B61;
}

.ladebalken {
	position: absolute;
	bottom: calc(-1*var(--loadingBarHeight));
	display: block;
	background: green;
	width: 100%;
	height: var(--loadingBarHeight);
	border: 0px solid darkgreen;  
}

.play, .pause{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	z-index: 10;
	background: url('../media/icon/play.svg') no-repeat center;
	background-size: 35rem 35rem;
	border-radius: 3px 3px 0 0;
	width: 50rem;
	height: 50rem;
	transition: background-color 0.35s;
	cursor: pointer;
}

.compact .play {
	display: none;
}

.pause{
	background-image: url('../media/icon/pause.svg');
}

.prev , .next{
	position: absolute;
	bottom: 50%;
	transform: translateY(50%);
	z-index: 10;
	padding: 16rem;
	border-radius: 0 3px 3px 0;
	font-size: 18rem;
	font-weight: bold;
	color: white;
	transition: background-color 0.35s;
	cursor: pointer;
}

.next{
	border-radius: 3px 0 0 3px;
	right: 0;
}

.play:hover, .pause:hover, .prev:hover,.next:hover{
	background-color: rgba(0,0,0,0.8);
}