html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
input,
button,
textarea,
progress,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
  min-width: 40px;
  padding: 0 15px;
  border: 0 none;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s linear;
  text-align: center;
  width: 100%;
  max-width: 396px;
}
.btn .edglyph {
  line-height: 0;
  margin: 0 10px;
  font-size: 24px;
  text-transform: none;
}
.btn.up:hover,
.btn.up:focus {
  box-shadow: inset 0 -3.25em 0 0 rgba(255, 255, 255, 0.25);
}
.btn.up {
  margin: auto;
}
.btn.btn-primary {
  background: #4f9ed5;
  color: #fff;
}
.btn.btn-secondary {
  background: #df8432;
  color: #fff;
}
.btn.btn-success {
  background: #28a745;
  color: #fff;
}
.btn.btn-danger {
  background: #dc3545;
  color: #fff;
}
.btn.btn-warning {
  background: #ffc107;
  color: #fff;
}
.btn.btn-facebook {
  background: #1877f2;
  color: #fff;
}
.btn.btn-twitter {
  background: #1da1f2;
  color: #fff;
}
.btn.btn-pinterest {
  background: #bd081c;
  color: #fff;
}
.btn.btn-youtube {
  background: red;
  color: #fff;
}
.btn.btn-linkedin {
  background: #0077b5;
  color: #fff;
}
.btn.btn-dailymotion {
  background: #00d2f3;
  color: #fff;
}
.btn.btn-viadeo {
  background: #f07355;
  color: #fff;
}
.btn.btn-tumblr {
  background: #36465d;
  color: #fff;
}
.btn.btn-instagram {
  background: linear-gradient(-135deg, #1400c8, #b900b4, #f50000);
  color: #fff;
}
.btn.btn-flickr {
  background: #212124;
  color: #fff;
}
.btn.btn-vimeo {
  background: #1eb8eb;
  color: #fff;
}
.btn.btn-tiktok {
  background: #000;
  color: #fff;
}
.btn.btn-periscope {
  background: #40a4c4;
  color: #fff;
}
.btn.btn-twitch {
  background: #4b367c;
  color: #fff;
}
.btn.btn-discord {
  background: #7289da;
  color: #fff;
}
.slide_down {
  position: relative;
}
.slide_down .button.open + .sub_menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.slide_down .sub_menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 120%;
  z-index: 1;
  transition: 0.3s ease-in;
  background: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}
.ath {
  background: #eee;
  position: fixed;
  bottom: 20px;
  width: 250px;
  left: 50%;
  transform: translateX(-50%) translateY(-200%);
  z-index: 1500;
  border-radius: 10px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transition: transform 1s ease-in, opacity 0.5s linear;
}
.ath:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: #eee;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
}
.ath img {
  display: block;
  max-width: 50px;
  height: auto;
  margin: 0 auto 10px;
}
.ath p {
  text-align: center;
  font-size: 14px;
}
.ath p .icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 21px;
  background: url(../img/app/icon-ath.png) no-repeat center;
  text-indent: -9999px;
  margin: 0 5px;
}
.ath p .icon.app {
  background: url(../../img/app/icon-ath.png) no-repeat center;
}
.ath p strong {
  font-weight: 600;
  color: var(--secondary-color);
}
.ath.show {
  transition: transform 1s ease-in, opacity 0.5s linear;
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#installContainer {
  display: none;
}
html,
body {
  height: 100%;
  overflow: auto;
}
body {
  font-family: "Open sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background: #4f9ed5;
}
body:not(.development) .xdebug-var-dump {
  display: none;
}
a:not(.btn) {
  color: #4f9ed5;
}
.bg-danger,
.bg-success {
  margin: 10px 0px;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid rgba(0, 0, 0, 0.15);
}
.bg-danger {
  background: #dc3545;
  color: #fff;
}
.bg-success {
  background: #28a745;
  color: #fff;
}
#header {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #4f9ed5;
  background: #fff;
  padding: 15px;
  position: relative;
  z-index: 15;
  border-radius: 20px 20px 0 0;
  margin: 20px auto 0;
}
#header img {
  display: block;
  max-width: 100%;
  height: auto;
}
#header a {
  text-decoration: none;
}
#header #logos {
  display: flex;
  align-items: center;
}
#header #logos img {
  width: auto;
  height: 30px;
  max-width: none;
}
#header .slide_down {
  margin: 0 0 0 auto;
}
#header .slide_down .button {
  padding: 0;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#header .slide_down .button img {
  max-width: 32px;
}
#header .slide_down .sub_menu {
  min-width: 80px;
  background: #4f9ed5;
}
#header .slide_down .sub_menu li a {
  color: #fff;
  padding: 5px;
  display: flex;
  align-items: center;
}
#header .slide_down .sub_menu li a img {
  margin: 0 10px 0 0;
}
#header .slide_down .sub_menu li:hover a,
#header .slide_down .sub_menu li.active a {
  background: #df8432;
}
#header > a {
  display: flex;
  align-items: center;
  margin: 0 10px 0 0;
}
#header > a .svg {
  margin: 0 10px 0 0;
  flex: 0 0 48px;
}
#header .hamburger {
  margin: 0 0 0 10px;
}
#header #menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #4f9ed5;
  padding: 15px 15px 0;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
  max-height: 50vh;
  overflow: auto;
}
#header #menu a {
  color: #fff;
  display: block;
  text-align: center;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 600;
}
#header #menu a:hover {
  text-decoration: underline;
}
#header #menu a:last-child {
  margin: 0 0 15px;
}
#header #menu hr {
  width: 90%;
  margin: 10px auto;
  border: 0 none;
  height: 1px;
  background: #fff;
}
#content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  flex-grow: 1;
  display: flex;
  padding: 0 0 20px;
}
#content form {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  z-index: 10;
}
#content form .content {
  margin: 0 0 20px;
}
#content form #footer {
  width: 100%;
  background: #fff;
  max-width: 800px;
  padding: 20px;
  margin: auto auto 0;
  border-radius: 20px;
}
#content form #footer .mentions {
  text-align: center;
  margin: 10px 0 0;
}
#content .content {
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0 0 20px 20px;
  flex-grow: 1;
  position: relative;
}
#content .content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: #4f9ed5;
  background: linear-gradient(
    180deg,
    rgba(79, 158, 213, 0.25) 0%,
    rgba(0, 212, 255, 0) 100%
  );
}
#content .content h1,
#content .content .title {
  font-weight: 300;
  font-size: 22px;
  font-size: 32px;
  color: #4f9ed5;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
@media screen and (min-width: 320px) {
  #content .content h1,
  #content .content .title {
    font-size: calc(22px + 10 * (100vw - 320px) / 430);
  }
}
@media screen and (min-width: 750px) {
  #content .content h1,
  #content .content .title {
    font-size: 32px;
  }
}
#content .content h1:before,
#content .content .title:before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  height: 42px;
  background: url(../img/interface/pistil.png) no-repeat left center;
  background-size: 75% auto;
}
#content .content hr {
  height: 1px;
  border: 0 none;
  background: #df8432;
  margin: 0 0 20px 0;
}
@media all and (max-width: 800px) {
  #header {
    margin: 10px 10px 0;
    width: calc(100% - 20px);
  }
  #content {
    margin: 0 10px;
    width: calc(100% - 20px);
    padding: 0 0 10px;
  }
  #content form #footer {
    padding: 10px;
  }
  #content .content {
    padding: 10px;
  }
  #content .content h1:before {
    flex: 0 0 32px;
    height: 32px;
  }
  #tarteaucitronManager {
    padding: 0 !important;
    transform: scale(0.8);
  }
}
#navigator_obsolete {
  background: #dc3545;
  color: #fff;
  padding: 5px 35px 5px 5px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(200%);
  transition: 0.2s 0.5s ease-in-out;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
#navigator_obsolete a {
  color: inherit;
  text-decoration: underline;
}
#navigator_obsolete .edglyph.ed-circlecross {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
#navigator_obsolete.show {
  transform: translateY(0);
  transition: 0.2s 0.5s ease-in-out;
}
#eddie_profiler_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 2600;
  border: 0 none;
  padding: 0;
  width: 48px;
  height: 48px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border-top: 2px solid #b22222;
  border-right: 2px solid #b22222;
}
#eddie_profiler_btn .edglyph {
  line-height: 48px;
  font-size: 32px;
  color: #b22222;
}
#eddie_profiler {
  display: none;
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  background: #fff;
  z-index: 2500;
  padding: 15px 30px;
  border: 2px solid #b22222;
  overflow: auto;
  font-family: "Verdana";
}
#eddie_profiler legend {
  border: 0 none;
}
.clrBlack {
  color: #000 !important;
}
.clrWhite {
  color: #fff !important;
  text-shadow: -1px 0 0 rgba(0, 0, 0, 0.8), 1px 0 0 rgba(0, 0, 0, 0.8),
    0 -1px 0 rgba(0, 0, 0, 0.8), 0 1px 0 rgba(0, 0, 0, 0.8);
}
.clrError {
  color: #dc3545 !important;
}
.clrSuccess {
  color: #28a745 !important;
}
.clr1 {
  color: #4f9ed5 !important;
}
.clr2 {
  color: #df8432 !important;
}
.clrFacebook {
  color: #1877f2 !important;
}
.clrTwitter {
  color: #1da1f2 !important;
}
.clrYoutube {
  color: red !important;
}
.clrPinterest {
  color: #bd081c !important;
}
.clrViadeo {
  color: #f07355 !important;
}
.clrLinkedin {
  color: #0077b5 !important;
}
.clrInstagram {
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent;
  -webkit-backface-visibility: hidden;
  background: linear-gradient(-135deg, #1400c8, #b900b4, #f50000);
}
.clrDailymotion {
  color: #00d2f3 !important;
}
.clrVimeo {
  color: #1eb8eb !important;
}
.bgBlack {
  background: #000 !important;
}
.bgWhite {
  background: #fff !important;
  color: #000 !important;
}
.bgError {
  background: #dc3545 !important;
}
.bgSuccess {
  background: #28a745 !important;
}
.bg1 {
  background: #4f9ed5 !important;
}
.bg2 {
  background: #df8432 !important;
}
.bgFacebook {
  background: #1877f2 !important;
}
.bgTwitter {
  background: #1da1f2 !important;
}
.bgYoutube {
  background: red !important;
}
.bgPinterest {
  background: #bd081c !important;
}
.bgViadeo {
  background: #f07355 !important;
}
.bgLinkedin {
  background: #0077b5 !important;
}
.bgInstagram {
  background: linear-gradient(-135deg, #1400c8, #b900b4, #f50000) !important;
}
.bgDailymotion {
  background: #00d2f3 !important;
}
.bgVimeo {
  background: #1eb8eb !important;
}
#color-template {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: normal;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.15);
  opacity: 0;
  background: #fff;
  z-index: 1000;
}
#color-template ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  overflow: auto;
  color: #fff;
}
#color-template ul li {
  padding: 5px;
  text-align: center;
  flex: 1 0 0;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-left: 1px solid rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
#color-template ul li:last-child {
  margin: 0;
}
#color-template:hover {
  opacity: 1;
}
.modal {

    display: none; /* Masquée par défaut */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0); /* Noir avec opacité */
    background-color: rgba(0,0,0,0.4); /* Noir avec opacité */
}

/* Style pour le contenu de la modale */




.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-body {
  text-align: center    ;
  position: relative;
  padding: 15px;
  font-size: 17px;
  font-weight: 550;
  
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-content {
    border-radius: 15px;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* Style pour le bouton de fermeture */

.modal-content {
  position: relative; /* This makes the .close element positioned relative to this container */
}
.close {
 
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute; /* This positions the .close element absolutely within the .modal-content container */
    top: 10px; /* This positions the .close element at the top of the .modal-content container */
    right: 10px; /* This positions the .close element at the right of the .modal-content container */
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.btn_modal {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  min-height: 35px;
  min-width: 10px;
  padding: 0 15px;
  border: 0 none;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s linear;
  text-align: center;
  width: auto; /* Change from 50% to auto */
  max-width: 396px;
  margin-right: 10px; /* Add some margin to separate the buttons */
}
.btn_valid .edglyph {
  line-height: 0;
  margin: 0 10px;
  font-size: 24px;
  text-transform: none;
}

.btn_valid{
  background: #df8432;
  color: #fff;
  padding-right: 10px;
}

#consent-form{
  font-size: 11px;
  line-height: 12px;
  color: #4f9ed5;
  text-align: left;
}
