﻿.cardgame {
	color: #402669;
	border: solid 1px #402669;
	aspect-ratio: 1/1;
	border-radius: 10%;
	overflow: hidden;
	transform: opacity(0);
	transition: 1s;
	opacity: 0;
}

.new {
	font-size: 30px;
	font-weight: bolder;
	font-family: 'Verdana';
	color: rgb(183, 255, 0);
	text-shadow: rgb(3, 33, 65) 3px 3px 2px;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 10%;
	border: :solid 4px #402669;
}

.cardgame-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 20px;
	gap: 10px;
}

.cardgame.show {
	transform: opacity(1);
	opacity: 1;
}

.owl-loaded {
	display: flex
}

.grid-container--fit {
	display: grid;
	gap: 5px;
	grid-template-columns: repeat(3,minmax(10px, 1fr));
	margin: 8px;
}

div.sub-item > a.ui-link > h3 {
	display: none;
}