/* Add here all your CSS customizations */

/* DEBUG : tu as oublié l'attribut "alt" 

img[alt=""],
img:not([alt]){
	border: 5px dashed #c00;
}
*/

/* Checkbox en rouge sur formulaire lead */
#consentement-error.error {
    display: block !important;
    position: absolute;
    top: 3px;
    left: 14px;
    text-indent: -9999px;
    border: 1px solid red;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    pointer-events: none;
}

#consentement:checked + label {
        border-color: transparent;
}



/*Bidouille image <a hover dans qui sommes nous */

/* Hide and position second image */
.my-custom-thumb-info .thumb-info-side-image-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-side-image-wrapper img:nth-child(1) {
	opacity: 0;
	visibility: 0;
}

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