.cookie_consent  {
    background-color: #ffffff;
	z-index: 99999;
    bottom: 0%;
    position: fixed;
    /*width: 100%;    */
    border-radius: 0px;
    left: 0;
    margin: 10px;
    font-size: 14px;
    max-height: 90%;
    overflow-x: hidden;
    overflow-y: auto;
	scrollbar-arrow-color: #c1c1c1;
    scrollbar-darkshadow-color: #c1c1c1;
    scrollbar-face-color: #c1c1c1;
    scrollbar-shadow-color: #c1c1c1;
	-ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
	/*font-family: OpenSans-Regular,Arial,sans-serif;*/
	font-family: custom_main_font, sans-serif;
	padding: 10px 10px 10px 10px;
	box-sizing: border-box;
}

@media only screen and (max-width: 425px)
.cookie_consent {
    left: 0;
    width: 95%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.cookie_consent_title{
	margin: 5px 10px 10px 5px;
	font-size: 1.2rem;
}

.cookie_consent_logo{
	width:200px;
	height:auto;
}

.cookie_consent_banner {
	display: flex;
	justify-content: center;  /* Centre horizontalement */
	align-items: center;      /* Centre verticalement */
	margin: 5px 10px 15px 5px;
}

.cookie_consent_policy_text{
	font-size: 0.9rem;
	margin: 20px 5px 20px 5px;
}

.cookie_consent_buttons{
	display: flex;
    justify-content: center; /* Centrer les boutons horizontalement */
    align-items: center; /* Centrer les boutons verticalement */
}

.cookie_consent_button_yes_no  {
	background-color: #199cd9; /* Fond des boutons en bleu */
	color: white; /* Couleur du texte en noir */
	border: none; /* Retirer les bordures */
	padding: 10px 10px; /* Padding pour augmenter la taille du bouton */
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 12px;
	cursor: pointer;
	border-radius: 5px; /* Bords arrondis */
	font-size: 1rem;
}

.cookie_consent_button_yes_no:hover {
	background-color: #1db2f8; /* Changement de couleur au survol */
}

.cookie_consent_button_no{
	background-color: #59646a;	
}

.cookie_consent_button_no:hover{
	background-color: #444444;	
}

.cookie_consent_mini_button
{
	-webkit-tap-highlight-color: transparent;
	border:none;
	background: #ffffff00;
	width:44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
    position: fixed;
    left:10px;
    bottom: 16px;
	/*box-shadow: 0 5px 5px rgba(0,0,0,0.3);	*/
	z-index: 99;
	animation: mini_button_appear 1s ease forwards;
}


@keyframes mini_button_appear {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie_consent_mini_button_image{
	margin-top:4px;
	margin-right:1px;
}



.cookie_consent_hide
{
	display:none;
}

.cookie_consent_flex
{
	display:flex;
}

.cookie_consent_block
{
	display:block;
}

