.games {
	display: flex;
	flex-flow: row wrap;
	margin: auto;
	justify-content: center;
}

.game {
	display: flex;
	max-width: 340px;
	flex: 0 1 auto;
	flex-flow: column;
	align-items: center;
	background: #417BC0;
	color: white;
	padding: 30px;
	margin:  15px 20px;
	border-radius: 20px;
	text-align: center;
	position: relative;
}

.game.seasonal {
	background: rgba(216, 123, 30, 0.75);
	color: #2f3b55;
}

.game.seasonal::before {
	content: 'Jeu saisonnier';
	background: white;
	color: #d87b1e;
	font-size: 26px;
	position: absolute;
	top: auto;
	right: -10px;
	border: 3px solid #d87b1e;
	border-radius: 44px;
	padding: 5px 20px;
	z-index: 10;
	font-weight: bold;
}

.game.seasonal.es::before {
	content: 'Juego de temporada';
}

.game .pic-container {
	position: relative;
	max-width: 50%;
	padding: 20px 20px 0 0;
	margin: 0 -20px 0 0;
}

.game .game-icon {
	width: 125px;
	position: absolute;
	z-index: 5;
	top: -20px;
	right: -20px;
}

.game.seasonal .game-icon {
	right: auto;
	left: -40px;
}

.game .game-pic {
	width: 100%;
	border-radius: 25px;
	aspect-ratio: 1 / 1;
}

.game .stars {
	display: flex;
}

.game .stars span {
	font-family: "Material Icons";
	font-size: 15px;
	opacity: 0.2;
	pointer-events: none;
	margin: 0 2px;
}

.game .stars .active {
	opacity: 1;
	color: #d87b1e;
}

.game.seasonal .stars .active {
	color: white;
}

.game p {
	white-space: pre-line;
	margin: 0;
}

.game .effects {
	list-style: none;
	padding-left: 10px;
	text-align: left;
}

.game .effects li::before {
	content: '';
	display: inline-block;
	height: 10px;
	width: 10px;
	border-radius: 5px;
}


.effect-cognitif::before, .effect-cognitivo::before {
	background-color: #4cffe6;
}

.effect-physique::before, .effect-físico::before {
	background-color: #24e85f;
}

.effect-sensoriel::before, .effect-sensorial::before {
	background-color: #bc35d7;
}

.effect-social::before {
	background-color: #ff5300;
}

.filters {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: auto;
	text-align: center;
}

.filters h3 {
	flex: 1 0 100%;
}

.filters .form-select {
	flex: 0 0 340px;
	margin: 0 20px;
}
