 /* Customize the label (the Opt_BOX) */
.Opt_BOX {
  display: block;
  position: relative;
  height:100px;
  color : white;
  font-size: 1.2rem;
  font-weight : 500;
  margin:auto;
  cursor: pointer;
  z-index:0;

}

.Opt_titre {
	position : absolute;
	top : 0;
	height : 100%;
	width : 100%;
	 font-size: 1.2rem;
	text-align : center;
	line-height : 50px;
	text-shadow: 1px 1px 2px #232323,0 0 10px #232323,0 0 8px #232323;
	z-index:20;
}

@media screen and (max-width:768px)	{ 
  .Opt_titre { font-size: 1.1rem; }

}

.Opt_img {
	height: 100px;
	width: 100%;
	z-index:10;
}

.Opt_BOX:hover{
	background-color:  #d2d84a;
}

/* Hide the browser's default checkbox */
.Opt_BOX input {
  position: relative;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

/* Create a custom checkbox */
.Opt_check {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  filter: grayscale(75%);
  border : 3px solid #232323;
}


/* On mouse-over, add a grey background color */
.Opt_BOX:hover input ~ .Opt_check {
  filter: grayscale(0);
  border : 3px solid #d2d84a;  						/* #4183d7; /*Emma Bleu; */
}

/* When the checkbox is checked, add a blue background */
.Opt_BOX input:checked ~ .Opt_check {
  background-color:  #d2d84a; /*Emma Vert; */  /*transparent;  #d2d84a; Emma Vert */ 
  border : 3px solid #d2d84a;
  
  -webkit-filter: grayscale(100%) brightness(60%) sepia(100%) hue-rotate(20deg) saturate(500%) contrast(0.8);
  filter: grayscale(100%) brightness(60%) sepia(100%) hue-rotate(20deg) saturate(500%) contrast(0.8);	
}
 

.Opt_BOX input:checked ~ .Opt_img{

}


/* Create the Opt_check/indicator (hidden when not checked) */
.Opt_check:after {
  content: "";
  position: absolute;
  display: none;
  z-index:30;
}

/* Show the Opt_check when checked */
.Opt_BOX input:checked ~ .Opt_check:after {
  display: block;
    z-index:30;
}

.Opt_BOX .Opt_check:after {
  right: 20px;
  top: 40px;
  width: 20px;
  height: 35px;
  border: solid black;
  border-width: 0 7px 7px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
    z-index:30;
	
  -webkit-filter: grayscale(0) brightness(100%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(1);
  filter: grayscale(0) brightness(100%) sepia(100%) hue-rotate(50deg) saturate(100%) contrast(1);
	
}

/* Style the Opt_check/indicator 
.Opt_BOX .Opt_check:after {
  left: 10px;
  top: 1px;
  width: 5px;
  height: 18px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} */