@charset "utf-8";
/*---------------------------------------------------------
*	CSS Document
*	Oswin Baumann (c)2023
*	info(a)motoreisen.ch
---------------------------------------------------------*/
.mySlides {display: none}
.myText {
	display: none;
	font-family: 'Coda', cursive;
	text-align: center;
}

.slideshow-container {
	max-width: 69rem;
	position: relative;
	padding-top:50px;
	margin: auto;
}

/* previous & next buttons */
.pic-slide-prev, .pic-slide-next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	background-color: rgba(128,128,128,0.8);
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}
.pic-slide-next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
.pic-slide-prev:hover, .pic-slide-next:hover {
	background-color: rgba(0,0,0,0.8);
}

.pic-slide-text {
	color: #ffffff;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}
.pic-slide-numbertext {
	color: black;
	font-size: 1.5rem;
	padding: 8px 12px;
	position: relative;
	margin-top: 20px;
}

.pic-slide-dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 5px;
	background-color: #999999;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
.activeSlide {
	background-color: #111111;
	height: 25px;
	width: 25px;
}
.pic-slide-dot:hover {
	background-color: red;
}

.pic-slide-fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.0s;
	animation-name: fade;
	animation-duration: 1.0s;
}
@-webkit-keyframes fade {
	from {opacity: .5} 
	to {opacity: 1}
}
@keyframes fade {
	from {opacity: .5} 
	to {opacity: 1}
}
@media only screen and (max-width: 300px) {
.pic-slide-prev, .pic-slide-next,.pic-slide-text {font-size: 11px}
}
