.product-thumb-hover {
	 position: relative;

}
 .product-thumb-hover .hover-circle {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: hsla(0, 0%, 100%, .9);
    pointer-events: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    border: 1px solid #e5e5e5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 .product-thumb-hover .hover-circle .fas.fa-plus {
	 width: 35px;
	 height: 35px;
	 border-radius: 50%;
	 background: #F3CC00;
	 color: white;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 align-content: center;
}
 .product-thumb-hover:hover .hover-circle {
	 opacity: 0.95;
}
 