
/*  CSS pour Modal Form de LOOK :  JV Juillet 2019   */


	.modal {
	  display: none;
	  position: fixed; 
	  padding-top: 50px;
	  left: 0; 
	  top: 0;
	  width: 100%;
	  height: 100%; 
	  background-color: rgb(0, 0, 0);
	  background-color: rgba(0, 0, 0, 0.5);
	}
	.modal-content 
	{
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
        
//    position: relative; 
//	  margin: auto; 
	  text-align: left;
	  background-color: white;
  	  border: 5px solid #444;
	  padding: 20px; 
	  width: 200px;  
	}
	.close-btn {
	  float: right; 
	  color: lightgray; 
	  font-size: 24px;  
	  font-weight: bold;
	}
	.close-btn:hover {
	  color: darkgray;
	}
