/* Hide and position second image */
.my-custom-thumb-info .thumb-info-wrapper img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: 0;
}

/* Hide first image when hover */
.my-custom-thumb-info:hover .thumb-info-wrapper img:nth-child(1) {
	opacity: 0;
	visibility: 0;
}

/* Show second image when hover */
.my-custom-thumb-info:hover .thumb-info-wrapper img:nth-child(2) {
	opacity: 1;
	visibility: 1;
}