* {
	box-sizing: border-box
}
body {
	margin: 0
}
.mySlides1, .mySlides2, .mySlides3, .mySlides4, .mySlides5 {
	display: none
}
img {
	vertical-align: middle;
}

/* Slideshow container — fixed basis so every card's image is the same
   size regardless of the source image's resolution or the text length */
.slideshow-container {
	width: 500px;
	max-width: 100%;
	flex-shrink: 0;
	height: auto;
	position: relative;
	margin: auto;
}

/* Let the text column absorb the remaining space (basis 0) so it never
   pushes the image column to a different width from card to card */
#minigames .content .game .info {
	flex: 1 1 0;
	min-width: 0;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}
/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
/* On hover, add a grey background color */
.prev:hover, .next:hover {
	background-color: #f1f1f1;
	color: black;
}
/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

@-webkit-keyframes fade {
	from { opacity: .4 }
	to { opacity: 1 }
}
@keyframes fade {
	from { opacity: .4 }
	to { opacity: 1 }
}

/* On smaller screens, decrease text size */
@media only screen and (min-width: 200px) {
	.prev, .next, .text {
		font-size: 11px
	}
}
@media (max-width: 300px) {
	.slideshow-container {
		width: 100%;
	}
}

.active, .dot:hover {
	background-color: transparent; /* 717171 */
}
.image {
	height: 0px;
}
