/* color main: #fffc11 */
/* Popup */
:root {
	--cookie-color: #FFFFFF;
	--cookie-text: #FFFFFF;
	--cookie-font: Titillium Web,Geneva,Tahoma,sans-serif;
	--dot-color: #f77d11;
}

.c-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  border:0px solid #fffc11;
}

.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(47, 208, 74, 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: 55px;
  height: 23px;
  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: #fffc11;
  */
}

.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;
}

@keyframes moveCircleRight {
  0% {
    transform: translateX(0);
    background-color: #c3c3c3;
  }
  100% {
    transform: translateX(1.7rem);
    background-color: var(--dot-color);
  }
}
@keyframes moveCircleLeft {
  0% {
    transform: translateX(1.7rem);
    background-color: var(--dot-color);
  }
  100% {
    transform: translateX(0);
    background-color: #c3c3c3;
  }
}
.background-popup {
  position: fixed;
  background-color: black;
  width: 500%;
  height: 500%;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 99998;
  transition-duration: 0.3s;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  max-width: 95%;
  background: white;
  padding: 10px;
  border-radius: 0px;
  font-size: 1.25em;
  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: 99999;
}
.popup section {
  margin: 0;
  padding: 10px;
}
.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;
  vertical-align: middle;
  overflow: visible;
  font-size: 14px;
  text-align: center;
  font-family: var(--cookie-font)!important;
  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;
  font-size: 1rem;
}
.popup .choice-container-buttons {
  display: flex;
  justify-content: space-around;
  margin-right: 20%;
  margin-left: 20%;
  /*margin-top: 20px;*/
  margin-bottom: 20px;
}
.popup .choice-container-buttons .c-button {
  padding: 9px 1.50em;
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  overflow: visible;
  font-size: 14px;
  text-align: center;
  font-family: var(--cookie-font)!important;
  letter-spacing: 0.5px;
  background: transparent;
  border: 0;
  border-radius: 1px;
  user-select: none;
  transition: all 0.2s ease;
  background: transparent;
  outline: 0;
}
.popup .choice-container-buttons #configure {
  color: #4285f4; display: none;
}
/*
.popup .choice-container-buttons .c-button:hover, .popup .choice-container-buttons .c-button:focus {
  text-decoration: none;
}
.popup .choice-container-buttons .c-button:not(:disabled) {
  cursor: pointer;
}
.popup .choice-container-buttons #accept {
  color: #24cc31;
}
.popup .choice-container-buttons #accept:hover {
  background: #2fd04a17;
}

.popup .choice-container-buttons #configure:hover {
  background: #F0F8FF;
}
.popup .choice-container-buttons #enregistre {

  color: #4285f4;
}
.popup .choice-container-buttons #enregistre:hover {
  background: #F0F8FF;
}
*/

.popup #configureSection {

}
.popup #configureSection table th {
  color: black;
  text-align: left;
  border:0px;
}
.popup #configureSection table .text-switch {
  padding-left: 20px;
  font-size: 19px;
  font-weight: 100;
}
/*
.popup .choice-container-buttons #enregistre,
.popup .choice-container-buttons #accept {color: #fffc11;}*/
.c-ripple {border:0px solid #fffc11;}

.popup .choice-container-buttons #accept,
.popup .choice-container-buttons #enregistre {font-family: var(--cookie-font)!important;}

/*
.popup .choice-container-buttons #accept:hover,
.popup .choice-container-buttons #enregistre:hover {background:#fffc11; color:#FFF;}*/

.popup #configureSection table tr {vertical-align: top; min-height: 50px; display: block;}
.popup {background: linear-gradient(315deg,#f22a78,#f77d11);}
.popup,.popup #configureSection table th {color:var(--cookie-text); vertical-align: middle;}

/*
 .popup .choice-container-buttons #accept:hover,
 .popup .choice-container-buttons #accept {color:var(--cookie-color); font-weight: 600; font-size: 16px; background-color:#FFF}
 
 .popup .choice-container-buttons #enregistre:hover,
 .popup .choice-container-buttons #enregistre {color:var(--cookie-color); font-weight: 600; font-size: 16px; background-color:#FFF}

 .popup .choice-container-buttons #accept:hover,
 .popup .choice-container-buttons #enregistre:hover {text-decoration: underline;}
*/
 .popup  button {width: 100%;}
 .popup .choice-container-buttons #enregistre .c-ripple {border-color: transparent;}
 .switch {background-color: #FFF;}
 .popup h4,
 .popup #configureSection table th b {color:var(--cookie-color);}
 .popup {border:0px solid #fffc11}
 .popup h4 {margin:0px;}
 /*
 .popup,
 .switch,
 .switch .circle {border-radius: 0px;}
 */
 .accept_all {order:2}
 .accept_selected {order:1}

@media (max-width:768px){
 .accept_all {order:1}
 .accept_selected {order:2}
}
 

/** BS STYLES **/
.popup .row>* {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x)*.5);
    padding-right: calc(var(--bs-gutter-x)*.5);
    width: 100%;
}

.popup .mt-2 {margin-top: 8px!important;}
.popup .mb-4 { margin-bottom: 24px!important;}

.popup .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)*-.5);
    margin-right: calc(var(--bs-gutter-x)*-.5);
    margin-top: calc(var(--bs-gutter-y)*-1);
}

.popup .btn {
    font-size: 16px;
    padding: 12px 24px;
    text-decoration: none;
    white-space: normal;
}



.popup .btn {
    background-color: transparent;
    border: 0 solid transparent;
    border-radius: 4px;
    color: #f77d11;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    user-select: none;
    vertical-align: middle;
}

.popup .btn-primary {
    background-color: #FFF;
    border-color: #FFF;
    box-shadow: inset 0 1px 0 hsl(0deg 0% 100% / 15%), 0 1px 1px rgb(0 0 0 / 8%);
    color: #f22a78;
}

.popup .btn-outline-primary {
    background-color: transparent;
    background-image: none;
    box-shadow: inset 0 0 0 2px #FFF;
    color: #FFF;
}


@media (min-width: 768px){
	.popup .col-md-4 { flex: 0 0 auto; width: 33.33333333%;}
	.popup .offset-md-2 {margin-left: 16.66666667%;}
}

@media (hover: hover){
	.popup .btn-primary:hover {
	    background-color: #dbdbdb;
	    border-color: #dbdbdb;
	}
	.popup .btn-outline-primary:hover {
	   box-shadow: inset 0 0 0 2px #dbdbdb;
	   color: #dbdbdb;
	}	
	
}

@media (max-width: 768px){
	.popup .row {
	    --bs-gutter-x: 0px;
	    --bs-gutter-y: 0;
	    display: flex;
	    flex-wrap: wrap;
	    margin-left: calc(var(--bs-gutter-x)*-.5);
	    margin-right: calc(var(--bs-gutter-x)*-.5);
	    margin-top: calc(var(--bs-gutter-y)*-1);
	}
}


/** BS STYLES **/ 