.newgame-sleeve {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	width: 175px;
	height: 175px;
	transition: 0.25s;
}

.newgame-sleeve:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
}

#sliderRank:hover {
	cursor: pointer;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
}

td img {
	width: 100px;
	height: 100px;
}

.poster {
	display: inline-flex;
	position: relative;
	width: 235px;
	margin: 10px;
	border-radius: 20px;
	transition: 0.25s;
}

.poster img {
	border-radius: 15px;
}

.poster:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
	cursor: pointer;
}

.overlay-text {
	position: absolute;
	bottom: 0;
	right: 15px;
	text-align: right;
	font-size: 1.5em;
	font-weight: normal;
}

.poster-shape {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #177B56;
	clip-path: polygon(90% 76%, 100% 60%, 100% 100%, 0 100%, 0 76%);
	border-radius: 15px;
}

.poster-info {
	opacity: 0;
	transition: 0.25s;
}

.poster:hover .poster-info {
	opacity: 1;
}