.shared-play-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	padding: 0;
	font-size: 26px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	border: 3px solid rgba(255, 255, 255, 1);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
	pointer-events: none;
	transition: background 100ms, border-color 100ms;
}
.contentRender[class*=contentRender_name_plugins_collections] .slide:hover .shared-play-button {
	border-color: rgba(255, 255, 255, 0.6);
	background-color: rgba(0, 0, 0, 0.7);
}
.shared-play-button i {
	position: relative;
	left: 2px;
}
