.shared-play-button {
	width: calc(40px + (60 - 40) * ((100vw - 320px) / (1024 - 320)));
	height: calc(40px + (60 - 40) * ((100vw - 320px) / (1024 - 320)));
	line-height: 1;
	border: 3px solid rgba(255, 255, 255, 1);
	font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1024 - 320)));
	text-align: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	position: absolute;
	padding: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	pointer-events: none;
	transition: background 100ms, border-color 100ms;
}

.contentRender[class*="contentRender_name_plugins_collections"] .img-cont:hover .shared-play-button {
	border-color: rgba(255, 255, 255, .6);
	background: rgba(0, 0, 0, .7);
}

button[data-quickview-button] {
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
	margin: 0;
	padding: 0;
	color: inherit;
	background: transparent;
}

button[data-quickview-button]:hover,
button[data-quickview-button]:focus,
button[data-quickview-button]:active {
	color: inherit;
	background: transparent;
}

button[data-quickview-button] i {
	width: 18px;
}

.js-loaded {
	opacity: 1 !important;
	transition: opacity 200ms ease-in;
}

@media (min-width: 64em) {
 	.shared-play-button {
		width: 60px;
		height: 60px;
		font-size: 26px;
	} 
}