@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: unset;
  font-size: 100%;
}

/* 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(47, 208, 74, 0.18);
}
.c-ripple.is-active .c-ripple-circle-accept {
  animation: a-ripple 0.4s ease-in;
}

.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;
  }
}
.background-popup-consent {
  position: fixed;
  background-color: black;
  width: 500%;
  height: 500%;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 1070;
  transition-duration: 0.3s;
}

.popupconsent {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  max-width: 95%;
  background: white;
  padding: 10px;
  border-radius: 12px;
  font-size: 2vh;
  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: left;
  z-index: 1080;
}
.popupconsent section {
  margin: 0;
  padding: 10px;
}
.popupconsent #contentPopupConsent:hover, .popupconsent #configureSection:hover {
  box-shadow: 0 0 0 transparent;
}
.popupconsent .content-popup-theme {
  text-align: left;
}
.popupconsent .content-popup-theme:hover {
  box-shadow: 0 0 0 transparent;
}
.popupconsent .content-popup-theme p {
  padding-right: 5px;
  padding-left: 5px;
  display: block;
  text-align: center;
}
.popupconsent .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: "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;
}
.popupconsent .buttonOk:hover {
  background: rgba(0, 0, 0, 0.08);
}
.popupconsent p {
  padding-right: 5px;
  padding-left: 5px;
  font-size: 1.2rem;
}
.popupconsent .choice-container-buttons {
  display: flex;
  justify-content: space-around;
  margin-right: 20%;
  margin-left: 20%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.popupconsent .choice-container-buttons .c-button {
  padding: 9px 0.57em;
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  overflow: visible;
  font-size: 14px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
  border: 0;
  border-radius: 1px;
  user-select: none;
  transition: all 0.2s ease;
  background: #54dbec;
  outline: 0;
}

.popupconsent .choice-container-buttons .c-button:not(:disabled) {
  cursor: pointer;
}
.popupconsent .choice-container-buttons #accept {
  color: #ffffff;
}
.popupconsent .choice-container-buttons #accept:hover {
  background: #4285f4;
}
.popupconsent .choice-container-buttons #enregistre {
  display: none;
  color: #4285f4;
}
.popupconsent .choice-container-buttons #enregistre:hover {
  background: #4285f4;
}
.cc-link {
  opacity: .8;
  display: inline-block;
  padding: 0.2em;
}
.scrollnone{
  overflow:hidden
}