* {
	box-sizing: border-box;
}

body {
	background-image:
		linear-gradient(#525252, #6F6F6F)
		/*,
		url(img/BG2nd.png)*/
	;
	background-repeat: no-repeat;
	background-color: #6F6F6F;
	color: #FFF;
	font-family: Helvetica, Arial, Sans-Serif;
}

a {
	color: #FF0;
}

.tagline {
	font-weight: 800;
	font-size: 16pt;
	color: #000;
	text-stroke: 1px;
	-webkit-text-stroke: 1px;
	-webkit-text-fill-color: #FFF;
	text-fill-color: #FFF;
}

.game-item {
	position: relative;
}

.overlay-text {
	color: #FF0;
}

.img-overlay {
	position: absolute;
	bottom: 2em;
	text-align: center;
	right: 0;
	padding-left: 1em;
	padding-right: 1em;
	background-color: #F00;
}

.col-tag-list {
	display: flex;
	flex-wrap: wrap;
}

.col-tag-list>div {
	width: 25%;
}

.tag {
	color: #FFF;
	background-color: #222;
	padding: 0.25em;
	margin: 0.1em;
	border: 1px solid #FFF;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
}

.reader {
	max-width: 50em;
	margin-left: auto;
	margin-right: auto;
}

.limit-width {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.pending-review,
.no-tag-select {
	background-color: #FEE;
	color: #000;
}

.pending-review a {
	color: #00F;
}

.review-properties {
	display: flex;
}

.review-properties>div {
	width: 33%;
}

.game-container {
	display: flex;
}

.game-description {
	width: 50%;
}

.game-image {
	width: 50%;
	text-align: right;
}

/*
.game-image img{
	max-width:100%;
}
*/

.formdesc {
	color: #DDD;
	font-size: small;
}

.stretch [type=text],
.stretch [type=url],
.stretch [type=email],
.stretch [type=search],
.stretch textarea,
.stretch select {
	width: 100%;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.center ul {
	text-align: left;
}

li {
	/*A bit of breathing space for lists*/
	padding-bottom: 0.5em;
}

.categories a {
	margin-left: 1em;
	margin-right: 1em;
	padding: 0.5em;
	/*This is transparent on purpose*/
	border: 1px solid transparent;
	border-radius: 5px;
	text-decoration: none;
}

.help {
	cursor: help;
}

.current-category {
	background-color: #000;
}

.header a {
	display: inline-block;
	margin-left: 1em;
	margin-right: 1em;
}

.game-item {
	display: inline-block;
	margin: 1em;
}

.game-item img {
	width: 300px;
	height: 300px;
	display: block;
	background-color: #000000;
	box-shadow: 10px 10px #888888;
	/*Bottom margin should be identical to the pixel values above*/
	margin-bottom: 10px;
}

.star-vote {
	text-decoration: none;
}

.search-box {
	margin-top: 1em;
	margin-bottom: 1em;
}

input,
select,
button,
textarea {
	padding: 0.25em;
}

.search-box [type=search] {
	width: 30em;
}

.err,
.err-highlight {
	font-weight: bold;
	color: #FAA;
}

.ok-highlight {
	font-weight: bold;
	color: #0F0;
}

.note {
	font-size: smaller;
	color: #EEE;
}

/*Reviews*/

.pending-review .ok-highlight {
	color: #090;
}

.pending-review .err-highlight {
	color: #F00;
}

.review-container {
	padding-top: 1em;
	margin-top: 1em;
	border-top: 2px solid #FFF;
}

.footer {
	font-size: x-small;
	text-align: right;
}

/*Slideshow*/

.game-image>img {
	max-width: 100%;
}


.slideshow-container {
	/*max-width:500px;*/
	position: relative;
	margin: auto;
}

.slideshow-container img {
	max-width: 100%;
}

/*Hide all but the first slide*/
.slide-hidden {
	display: none;
}

.slideshow-prev,
.slideshow-next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

.slideshow-prev {
	left: 0;
	border-radius: 0 3px 3px 0;
}

.slideshow-next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.slideshow-text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

.slideshow-number {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}

@keyframes fade {
	from {
		opacity: .4
	}

	to {
		opacity: 1
	}
}