/*
.divisionCookie
        {
            position:fixed;
            top:0px;
            left:0px;
            right:0px;
            min-height:150px;
            background-color: rgba(0,0,0,0.6);
            padding:10px;
            z-index:999999;
        }
    */    
.divisionCookie 
{
	position: fixed;
	top: 10%;
	left: -300px;
	background-color:#9068ad;
  	padding: 1em;
  	z-index: 999999;
	height: 165px;
	width: 300px;
  	max-width: 90%;
  	border-radius: 10px;
  	box-shadow: 0 0 10px rgba(0,0,0,0.2);  
  text-align: center;
	transition:1000ms;
}

.divisionCookie.montre {
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  
  
}



.fondCookie
{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index:9;
}

.fondCookie img
{
	width:80%;
	opacity:0.4;
}

.texteCookie
{
	z-index:10;
	position: absolute;
	left:0px;
	top:0px;
	padding-left: 15px;
}
        
        
        .divisionCookie p
        {
            text-align: center;
            font-family: Arial;
            font-size: 15px;
            color:#FFFFFF;            
        }
        .divisionCookie div
        {
            text-align: center;
        }
        
        .divisionCookie div button
        {
            padding:8px;
            width:100px;
            border:none;
            background-color: #b5d2ef;
            color:#000000;
            font-size: inherit;
            border-radius:8px;
        }
        
        .divisionCookie div button:hover
        {
            cursor:pointer;
            background-color: #EFEFEF;
        }