.popover_products_item {
    background-color: rgba(240,240,240,0.7);
    border-radius: 8px;
    border: 3px solid #DDDDDD;
    font: bold 13px Sans-Serif;
    color: black;
    text-align: center;
    padding: 4px 0;
		max-width: 68%;
    max-height: 76%;
    margin: auto;
    position: relative;
    top: 15px;
    left: -110px;
    bottom: 0;
    right: 0;
    z-index: 100;
	 	opacity: 0;
    transition: all 0.1ms ease 2s;
}

a:hover + .popover_products_item {
    display: block;
    opacity: 1;
    transition: all 0.4s ease 0s;

}