.product .new-products p, .product .new-products h2, .product .product-categories h2, .product .product-categories p, .product .product-categories h4, .product .product-categories li{
	-webkit-transition: color 0.5s; /* Safari */
	transition: color 0.5s; 
}
.product .product-categories, .product .new-products{
	color: #333333;
	-webkit-transition: background 0.5s, color 0.5s; /* Safari */
    transition: background 0.5s, color 0.5s;
}
.product .new-products:hover p, .product .new-products:hover h2, .product .product-categories:hover h2, .product .product-categories:hover p, .product .product-categories:hover h4, .product .product-categories:hover li{
	/* Rectangle 4 Copy 4: */
	color: #ffffff;
}
.product .new-products:hover, .product .product-categories:hover{
	/* Rectangle 4 Copy 4: */
	background: #1B87B3!important;
	color: #ffffff;
}
.info .info-box:hover{
	/* Rectangle 4 Copy 4: */
	background: #1B87B3!important;
	color: #ffffff;
}
.info .info-box{
	color: #333333;
	-webkit-transition: background 0.5s, color 0.5s; /* Safari */
    transition: background 0.5s, color 0.5s;
}
.info .info-box h3, .info .info-box p, .info .info-box h4, .info .info-box li{
	-webkit-transition: color 0.5s; /* Safari */
	transition: color 0.5s;
}
.info .info-box:hover h3, .info .info-box:hover p, .info .info-box:hover h4, .info .info-box:hover li{
	/* Rectangle 4 Copy 4: */
	color: #ffffff;
}


/*waiting */
.formWaiting{
	width:20px;
	height:auto;
	-webkit-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating {  
    0% { -webkit-transform:rotate(0deg) }
    100% { -webkit-transform:rotate(360deg) }
   /*  100% { -webkit-transform:rotate(0deg) } */
}