

/* Popup consentement cookies */
.consent_popup { 
display: none;
position: fixed;  
width: 600px;
bottom: 50px;  
right: 50px;  
padding: 30px 50px 50px 50px;
background: #fff;  
border: solid 1px #aaa;
z-index: 10000;
}

.consent_button {
position: relative;    
float: right;    
background: #d10000;    
border: none;    
color: #fff;    
cursor: pointer;    
width: 150px;    
padding: 10px;    
font-weight: bold;    
font-size: 16px;    
opacity: 1;
transition: all 0.3s;
}

.consent_button:hover {
/*background: #989898;*/
opacity: 0.6;
}

@media (max-width: 768px) {
.consent_popup {
box-sizing: border-box;
width: 100%;
top: 150px;
right: 0;
padding: 25px;
}
}