@charset "UTF-8";
*,
*:before,
*:after{
	box-sizing: border-box;
   -webkit-tap-highlight-color: transparent;
}
html{
	scroll-behavior: smooth;
   /*font-size: 100%;*/
}
body{
   transition: all 0.15s ease-in-out;
   overflow: overlay;
}
.evidword, .evidword2 {
    font-size: inherit;
}
/* Popup */
.c-ripple{
	position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   background: transparent;
}
.c-ripple-circle-accept{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   opacity: 0;
   width: 0;
   height: 0;
   border-radius: 50%;
   background: rgba(40, 167, 69, 0.18);
}
.c-ripple.is-active .c-ripple-circle-accept{
   animation: a-ripple 0.4s ease-in;
}
.c-ripple-circle-enregistre,
.c-ripple-circle-configure{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   opacity: 0;
   width: 0;
   height: 0;
   border-radius: 50%;
   background: rgba(93, 177, 251, 0.4);
}
.c-ripple.is-active .c-ripple-circle-enregistre,
.c-ripple.is-active .c-ripple-circle-configure{
   animation: a-ripple 0.4s ease-in;
}

@keyframes a-ripple{
   0%{
     opacity: 0;
   }
   25%{
     opacity: 1;
   }
   100%{
     width: 200%;
     padding-bottom: 200%;
     opacity: 0;
   }
}

.switch{
   position: relative;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   width: 60px;
   height: 31px;
   border-radius: 50px;
   background-color: white;
   padding: 5px;
   box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
   cursor: pointer;
}
.switch .circle{
   width: 23px;
   height: 23px;
   background-color: #c3c3c3;
   border-radius: 50%;
   transform: translateX(1.7rem);
   background-color: #28a745;
}

.move-circle-right{
	animation: 0.5s moveCircleRight cubic-bezier(0.87, -0.41, 0.19, 1.44) forwards;
	transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
}
.move-circle-left{
	animation: 0.5s moveCircleLeft cubic-bezier(0.87, 0.41, 0.19, 1.44) forwards;
	transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
}
#cookieConsentCircle.move-circle-left{
	animation: 0.5s moveCircleRight cubic-bezier(0.87, -0.41, 0.19, 1.44) forwards;
   transition: all 0.2s ease-in;
   -moz-transition: all 0.2s ease-in;
   -o-transition: all 0.2s ease-in;
   -webkit-transition: all 0.2s ease-in;
   -ms-transition: all 0.2s ease-in;
}
#cookieConsent.switch{
   cursor: default!important;
}

@keyframes moveCircleRight{
   0%{
     transform: translateX(0);
     background-color: #c3c3c3;
   }
   100%{
     transform: translateX(1.7rem);
     background-color: #28a745;
   }
}
@keyframes moveCircleLeft{
   0%{
     transform: translateX(1.7rem);
     background-color: #28a745;
   }
   100%{
     transform: translateX(0);
     background-color: #c3c3c3;
   }
}

.background-popup{
	position: fixed;
	background-color: black;
	width: 500%;
	height: 500%;
	top: 0;
	left: 0;
	opacity: 0.6;
	z-index: 1100;
	transition-duration: 0.3s;
}
.close{
	color: #dc3545;
	font-size: 2rem;
	position: absolute;
	top: -20px;
	right: 10px;
	padding: 1rem 1rem !important;
	margin: 1rem -.6rem -1rem auto !important;
}
#closereject.close{
	top: -40px;
}
.popup{
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	max-width: 95%;
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	word-wrap: break-word;
	text-align: justify;
	z-index: 1150;
}

.popup-bottom {
  top: auto;
  left: 0;
  transform: none!important;
  width: 100%!important;
  bottom: 0;
  width: 100%;
}

.popup section{
   margin: 0;
   padding: 30px 10px 10px;
   position:relative;
}
.popup #contentPopupConsent:hover,
.popup #configureSection:hover{
   box-shadow: 0 0 0 transparent;
}
.popup .content-popup-theme{
   text-align: left;
}
.popup .content-popup-theme:hover{
   box-shadow: 0 0 0 transparent;
}
.popup .content-popup-theme p{
   padding-right: 5px;
   padding-left: 5px;
   display: block;
   text-align: center;
}
.popup .buttonOk{
	color: black;
	background: transparent;
	padding: 9px 0.57em;
	-webkit-appearance: none;
	position: relative;
	display: block;
	margin: 0;
	overflow: visible;
	/* font-size: 14px;*/
	text-align: center;
	font-family: "Roboto", sans-serif;
	letter-spacing: 0.5px;
	border: 0;
	border-radius: 7px;
	user-select: none;
	transition: all 0.2s ease;
	outline: 0;
	cursor: pointer;
	margin-right: 2%;
	margin-left: auto;
}
.popup .buttonOk:hover{
   background: rgba(0, 0, 0, 0.08);
}
.popup p{
   padding-right: 5px;
   padding-left: 5px;
}
.popup .choice-container-buttons{
   display: flex;
   justify-content: space-between;
   margin: 20px 10px;
}
.popup .choice-container-buttons .btn-default{
	float:left;
	margin-right: 15px;
}
.popup .choice-container-buttons .btn-primary{
	float:right;
}

.popup .choice-container-buttons .c-button{
	position: relative;
	display: inline-block;
	overflow: visible;
	user-select: none;
	transition: all 0.2s ease;
	outline: 0;
}
.popup .choice-container-buttons .btn{
	min-width: 120px;
	white-space: nowrap;
}
.popup .choice-container-buttons #enregistre{
   display: none;
}
.popup #configureSection{
	display: none;
}
.popup #configureSection table th{
	color: black;
   text-align: left;
}
.popup #configureSection table .text-switch{
	padding-left: 5%;
}


/* Smartphone */
@media (max-width: 767px){
	.popup #configureSection{
		line-height: 1.2;
		font-size: 15px;	
		max-height: 75vh;
 		text-align: left;
 		padding-top: 10px;
   	overflow: scroll;
	}
	.popup td{
		vertical-align: top;
		padding:5px 0;
	}
	#reject{
		display:none;
	}
}
