.shared-play-button {
	width: 45px;
	height: 45px;
	line-height: 1;
	font-size: 20px;
	text-align: center;
	border-radius: 50%;
	background: #3fc4e0;
	color: #fff;
	position: absolute;
	padding: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	pointer-events: none;
	transition: opacity 100ms;
	opacity: 0.8;
}

.shared-play-button::before {
	content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 2px solid white;
    border-radius: 50%;
}

.contentRender[class*="contentRender_name_plugins_collections"] .img-cont:hover .shared-play-button {
	opacity: 1;
}

@media (min-width: 64em) {
	.shared-play-button {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}

	.shared-play-button::before {
	    top: -6px;
	    left: -6px;
	    width: calc(100% + 12px);
	    height: calc(100% + 12px);
	}
}

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;
}