/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 04 2026 | 12:04:11 */
.puzzle > li .puzzle-expired {
	pointer-events: none;
	filter: opacity(0);
	transition: filter ease-out 300ms;
	
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    background: #FFFFFF;
	background: radial-gradient(circle,rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
	
	& p {
		color: black;
		text-align: center;
		margin: 0;
	}
}
.puzzle > li:hover .puzzle-expired {
	filter: opacity(1);
}