@font-face {
  font-family: "Gilroy";
  src: url("/client/amdm/images/2022_v1_vip/fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"),
    url("/client/amdm/images/2022_v1_vip/fonts/Gilroy-Light.woff") format("woff"),
    url("/client/amdm/images/2022_v1_vip/fonts/Gilroy-Light.ttf") format("truetype"),
    url("/client/amdm/images/2022_v1_vip/fonts/Gilroy-Light.svg#Gilroy-Light") format("svg");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/client/amdm/images/2022_v1_vip/fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"),
    url("/client/amdm/images/2022_v1_vip/fonts/Gilroy-Bold.woff") format("woff"),
    url("/client/amdm/images/2022_v1_vip/fonts/Gilroy-Bold.ttf") format("truetype"),
    url("/client/amdm/images/2022_v1_vip/fonts/Gilroy-Bold.svg#Gilroy-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
}

/* =====[ RESET ]======================================================================== */
body,
h1,
h2,
h3,
h4,
p,
quote,
small,
form,
input,
ul,
li,
ol,
label {
  /* Page reset */
  margin: 0px;
  padding: 0px;
}

/* =====[ CSS VARIABLES / COLORS ]======================================================================== */

:root {
  --bleu_agence: #0083c5;
  --cyan: #00aeef;
  --bleu_poudre: #aae0fa;

  --gris_fonce: #4c4c4e;
  --gris_moyen: #a1a9ae;
  --gris_pale: #e6e7e6;
}

/* =====[ GLOBAL STYLES ]======================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

*:not(.icon) {
  font-family: "Gilroy", Arial, Helvetica, sans-serif;
}

a,
button,
input {
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}

body {
  font-weight: 300;
  font-size: 15px;
  color: #414141;
  margin: 0;
  padding: 0;
  z-index: 0;
  background: #fff;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

h1 {
  font-size: 2.5rem;
  color: #fff;
  margin: 30px 0;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  color: var(--gris_fonce);
  font-size: 24px;
}

h3 {
  color: #36373a;
  font-size: 24px;
  padding: 15px 0;
  font-weight: 700;
}

h4 {
  color: var(--bleu_agence);
  font-size: 15px;
  padding: 20px 0;
  font-weight: 700;
}

strong {
  font-weight: 700;
}

p {
  padding: 10px 0;
  text-align: justify;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
}

hr {
  height: 1px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #e6e7e8;
  margin: 0 auto;
  /* max-width: 85%; */
}

.page {
  margin: 0 auto;
  width: 85%;
  position: relative;
}

.clear {
  clear: both;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.icon {
  font-size: 20px;
  vertical-align: middle;
  padding-left: 10px;
}

/* =====[ Header ]======================================================================== */

/* =====[ SCROLL WATCHER ]======================================================================== */

.scroll_watcher {
  position: fixed;
  height: 6px;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: var(--bleu_agence);
  scale: 0 1;
  transform-origin: left;
  animation: scroll_watcher linear;
  -webkit-animation: scroll_watcher linear;
  animation-timeline: scroll(y);
}

@keyframes scroll_watcher {
  to {
    scale: 1 1;
  }
}



/* CSS ANNULATION - DÉBUT */

.toast__container {
  position: relative;
  top: 0;
  background: #332701;
  width: 100%;
  z-index: 10;
}

.toast__shows {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border: 1px solid #ffc007;
  gap: 10px;
}

.toast__icon {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  padding: 7px;
  border-radius: 50%;
  display: inline-block;
}

.icon_alert {
  display: block;
  width: 2em;
  height: 2em;
  fill: #FFC007;
  border: none;
  animation: myAnim 2s ease-in-out 0s infinite normal none;
}


@keyframes myAnim {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

.toast__type {
  color: #FFC007;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.toast__message {
  font-size: 1rem;
  text-align: center;
  color: #FFC007;
}

.toast__shows p {
  margin: 0;
  padding: 0;
}

.toast__close {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 14px;
  cursor: pointer;
  height: 14px;
  fill: #878787;
  transform: translateY(-50%);
}

.toast--yellow .toast__icon {
  background-color: #FFC007;
}

.toast--yellow:before {
  background-color: #FFC007;
}

/* CSS ANNULATION - FIN */


.header {
  background: #fff;
}

.header .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.header img {
  max-width: 100%;
  height: auto;
}

header {
  background-color: #fff;
}

header .icon {
  font-size: 18px;
}

header .petit {
  font-size: 13px;
}

header ul {
  position: relative;
  z-index: 2;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-content: center;
  list-style: none;
}

header ul li {
  padding: 10px;
  color: #fff;
}

header ul li a {
  color: var(--bleu_agence);
}

header ul li a:hover {
  color: var(--cyan);
}

.deconnexion {
  text-transform: uppercase;
  font-size: 16px;
  margin-left: 15px;
  background-color: var(--bleu_agence);
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}

.deconnexion a {
  color: #fff;
}

.deconnexion a:hover {
  color: #fff;
}

.deconnexion:hover {
  background-color: var(--gris_fonce);
}

.langue {
  color: #628ca9;
  font-size: 13px !important;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.langue a {
  color: var(--bleu_agence);
  /* display: flex; */
  align-items: center;
  font-weight: 700;
}

.langue:hover {
  background: var(--bleu_agence);
}

.langue:hover,
.langue a:hover {
  /* background: #135582; */
  background: var(--cyan);
  color: #fff;
}

.langue .icon {
  padding-left: 0;
}

.accueil {
  background: url(./bg_amdm_2025-09-24.jpg) no-repeat top center;
  background-size: cover;
  padding: 100px 0;
}

.accueil .page {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.titre-accueil {
  width: 50%;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.titre {
  padding: 25px 0;
  background: var(--gris_fonce);
  color: #fff;
}

.titre h1 {
  font-size: 28px;
  margin: 15px 0 0 0;
  color: #fff;
}

.titre span>span {
  padding-left: 35px;
}

.head {
  padding: 50px 0 0 0;
}

/* Connexion en haut */
.connexion {
  width: 33%;
  z-index: 1;
}

.connexion h2 {
  font-size: 21px;
  text-align: left;
  margin-bottom: 5px;
}

.connexion h2 strong {
  color: #000;
}

.connexion form,
.connexion div {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  align-items: center;
}

.connexion input {
  height: 40px;
}

.connexion input[type="submit"] {
  padding: 0px 20px;
  width: 60%;
}

.connexion input[type="email"],
.connexion input[type="password"] {
  margin: 0 5px 0 0;
}

.connexion ul {
  width: 100%;
}

.connexion ul li {
  list-style: none;
  display: inline-block;
  color: #000;
  font-size: 13px;
  text-align: center;
  padding: 0 20px;
  background: url(/client/amdm/images/2022_v1/point.png) right 28px no-repeat;
  width: 25%;
}

.connexion ul li:first-child {
  padding: 0 20px 0 0;
}

.connexion ul li:last-child {
  background: none;
  padding: 0 0 0 15px;
}

.connexion ul li span {
  display: block;
  font-size: 24px;
  background: #e6e7e8;
  font-weight: 700;
  padding: 4px 0;
  width: 100%;
  margin-top: 5px;
}

.large {
  width: 55%;
}

.decompte2 ul {
  width: 100%;
}

.decompte2 ul li {
  list-style: none;
  display: block;
  font-size: 15px;
  text-align: center;
  padding: 0;
  width: 85%;

  color: #000;
  margin: 0 auto 10px auto;
}

.decompte2 ul li span {
  display: block;
  font-size: 24px;
  background: #5295b9;
  padding: 4px 0;
  width: 100%;
  color: #000;
}

/* =====[ onglet ]======================================================================== */

/* Style the tab */
.tab {
  border: none;
  background-color: #fff;
  width: 100%;
  height: auto;
  display: flex;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  color: var(--gris_fonce);
  padding: 15px 20px;
  width: 100%;
  border: 1px solid var(--gris_fonce);
  outline: none;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  font-size: 0.85rem;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: var(--bleu_agence);
  color: #fff;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: var(--gris_fonce);
  color: #fff;
}

/* Style the tab content */
.tabcontent {
  padding: 15px 0 0 0;
  width: 100%;
  /* border-left: none; */
  height: auto;
}

/* Style the tab page accueil */

.tab2 {
  /* border: none; */
  background: #fff;
  width: 100%;
  height: auto;
  display: flex;
}

/* Style the buttons inside the tab */

.tab2 button {
  /* background: inherit; */
  color: var(--bleu_agence);
  padding: 15px 20px;
  width: 100%;
  border: none;
  outline: none;
  /* text-align: left; */
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  /* color: #ef4339; */
}

/* Change background color of buttons on hover */

.tab2 button:hover {
  background: var(--cyan);
  color: #fff;
  /* border: 1px solid #ffff; */
}

/* Create an active/current "tab button" class */

.tab2 button.active2 {
  background: var(--bleu_agence);
  color: #fff;
}

/* Style the tab content */

.tabcontent2 {
  /* padding: 15px 0 0 0; */
  width: 100%;
  /* border-left: none; */
  height: auto;
}

/* =====[ INSCRIPTION ]======================================================================== */

.inscription {
  position: relative;
  width: 450px;
  text-align: center;
}

.inscription form,
.inscription .message,
.inscription .decompte2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bleu_agence);
  padding: 10%;
  text-align: center;
  min-height: 540px;
}

.add-calendar {
  background: #fff;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: var(--bleu_agence);
  padding: 15px;
}

.add-calendar a {
  color: var(--bleu_agence);
}

.add-calendar a:hover {
  color: var(--cyan);
}

.inscription h2 {
  font-size: 26px;
  text-align: center;
  color: #fff;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.inscription h2 strong {
  font-size: 50px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.inscription p {
  font-size: 13px;
  text-align: center;
  color: #fff;
}

.inscription input {
  background: #efefef;
  border: none;
}

.inscription input[type="Submit"] {
  background: #fff;
  color: var(--bleu_agence);
}

.inscription input[type="Submit"]:hover {
  background: var(--cyan);
  color: #fff;
}

.message h2.icon,
.decompte2 h2.icon {
  font-size: 60px;
  padding: 0;
}

.message p {
  font-size: 19px;
  padding: 25px 0 15px 0;
}

.message p span {
  font-size: 22px;
}

.message img {
  width: 50px;
  height: auto;
  padding-bottom: 25px;
}

.inscription .large {
  padding: 20% 35px;
  min-height: 250px;
}

.consens {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 13px;
  width: 100%;
  margin: 15px 0;
}

.consens label {
  display: block;
  text-align: left;
  color: #fff;
}

.consens input[type="checkbox"] {
  margin: 0 10px 0 0;
  background: none;
}

.consens a {
  background: none;
  padding: 0;
  color: #fff;
  display: inline;
  width: auto;
  text-align: left;
  text-decoration: underline;
}

.consens a:hover {
  text-decoration: none;
  background: none;
}

.pastille {
  position: absolute;
  left: -85px;
  top: -59px;
  width: 33%;
}

/* =====[ FORMULAIRE ]======================================================================== */
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #00324d;
  opacity: 1 !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #00324d;
  opacity: 1 !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #00324d;
  opacity: 1 !important;
}

:-ms-input-placeholder {
  color: #00324d;
}

form em {
  font-size: 13px;
  color: #fff;
  display: block;
  text-align: center;
  margin: 15px 0 15px 0;
}

form p {
  padding: 10px 0;
}

input:first-child {
  margin-top: 15px;
}

label {
  display: none;
}

select {
  /*	-webkit-appearance: none; */
  border-radius: 0;
}

/*input[type=checkbox]{	-webkit-appearance: none;}*/
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0px;
}

input,
textarea,
select {
  background: #f6f4f5;
  padding: 10px;
  border: none;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  color: #000;
  border-radius: 0px;
  margin-bottom: 10px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
}

textarea {
  width: 100%;
  padding: 20px;
  font-size: 17px;
}

select {
  width: 100%;
  height: 38px;
}

input[type="Submit"] {
  display: inline-block;
  background: var(--bleu_agence);
  border: none;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  padding: 10px 50px;
  margin-bottom: 0;
  font-weight: 700;
  /* border-radius:25px; */
}

input[type="Submit"]:hover,
a.btn-main:hover,
a.btn-sec:hover {
  background: var(--gris_fonce);
  color: #fff;
}

a.btn-sec:hover {
  border: 1px solid #5295b9;
}

a.btn-main {
  display: inline-block;
  background: var(--bleu_agence);
  border: none;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 60px;
  /* border-radius:25px; */
}

a.btn-main span,
a.btn-sec span {
  font-size: 25px;
  padding-right: 15px;
  vertical-align: middle;
}

a.btn-sec {
  border: #015a84 1px solid;
  background: #fff;
  font-size: 20px;
  color: #015a84;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 40px;
  display: block;
}

/* =====[ ERROR message ]======================================================================== */

span.error {
  color: #ff0000;
  text-transform: none;
  font-size: 15px;
  padding-bottom: 5px;
}

.error {
  color: #ff0000;
}

.error::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ff0000;
}

.error::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #ff0000 !important;
  opacity: 1 !important;
}

.error:-moz-placeholder {
  /* Firefox 18- */
  color: #ff0000 !important;
  opacity: 1 !important;
}

.error::-moz-placeholder {
  /* Firefox 19+ */
  color: #ff0000 !important;
  opacity: 1 !important;
}

.error:-ms-input-placeholder {
  color: #ff0000 !important;
}

.message_archive_inscription {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px;
  color: red;
}

.message_archive {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px;
  color: red;
}

.generic_error {
  color: red;
}

.message_champs_requis {
  text-align: right;
}

/* =====[ PLAYER - conf??rence ]======================================================================== */

.bg_player {
  padding: 5% 0 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4%;
}

.player {
  max-width: 960px;
  width: 100%;
  margin: 0 0 0 0;
  z-index: 5;
  position: relative;
}

/* Section bouton mute/unmute */

.invisible {
  transition: 0.5s;
  opacity: 0 !important;
}

.invisible:after {
  display: none;
}

.imagenonactif {
  background-image: url(icone_unmute.png) !important;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  opacity: 0.7;
}

.imagenonactif:hover {
  opacity: 1;
}

.play-button {
  position: absolute;
  z-index: 5000;
  width: 40px;
  height: 40px;
  left: 20px;
  top: 20px;
  cursor: pointer;
}

.jw-flag-ads-vpaid:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .jw-controlbar,
.jw-flag-user-inactive.jw-state-playing:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .jw-controlbar,
.jw-flag-user-inactive.jw-state-buffering:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .jw-controlbar,
.jw-flag-ads-vpaid:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .play-button,
.jw-flag-user-inactive.jw-state-playing:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .play-button,
.jw-flag-user-inactive.jw-state-buffering:not(.jw-flag-media-audio):not(.jw-flag-audio-player):not(.jw-flag-ads-vpaid-controls):not(.jw-flag-casting) .play-button {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: 250ms !important;
  transition-delay: 4000ms !important;
}

.bouton-video {
  max-width: 960px;
  width: 100%;
  margin: 20px auto;
  display: flex;
  text-align: center;
  justify-content: flex-end;
  align-items: flex-start;
}

.bouton-video p {
  padding: 0 5% 0 0;
  font-size: 14px;
  text-align: left;
}

.onglet {
  padding-left: 5%;

  width: 40%;
}

.contenu-player {
  width: 60%;
}

.question {
  max-width: 960px;
  width: 100%;
}

.question input[type="Submit"] {
  margin-top: 25px;
}

.question input[type="text"],
.question input[type="email"],
.question input[type="password"],
.question select {
  width: 49.5%;
}

.question input:nth-child(2n + 2) {
  float: right;
}

.sondage {
  text-align: center;
  margin: 5% 0;
}

.succes {
  text-align: center;
}

.succes .btn-main {
  margin-top: 5%;
}

.succes .icon {
  font-size: 40px;
  padding: 25px 0 0 0;
  color: var(--bleu_agence);
}

.succes img {
  padding: 10px;
}

.succes p {
  text-align: center;
  /* margin-bottom: 20px; */
}

.iconsupport {
  display: flex;
  justify-content: space-evenly;
  padding: 15px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
}

.iconsupport div {
  margin: 5px;
  display: flex;
  justify-content: center;
  width: auto;
  flex-wrap: wrap;
}

.iconsupport div a {
  display: inline-flex;
  align-items: center;
  width: auto;
}

.iconsupport .icon {
  padding-left: 0;
  font-size: 28px;
}

.iconsupport a,
.iconsupport .icon {
  color: #000;
}

.iconsupport .petit {
  font-size: 20px;
}

.iconsupport .icon:before {
  padding: 0 10px 0 0;
}

/* =====[ CONTENU ]======================================================================== */
.bg-info {
  padding: 100px 0;
  background: #e6e7e8;
}

.bg-info h2 {
  color: var(--bleu_agence);
  font-size: 28px;
  margin: 0 0 25px 0;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.conf h3 {
  color: var(--bleu_agence);
}

.conf {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  /* padding: 25px 0; */
}

.conf:not(:last-child) {
  margin-bottom: 50px;
}

.conf ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0;
  text-align: center;
  /* align-items: flex-start; */
}

.conf ul li {
  list-style: none;
  margin: 0;
}

.conf ul li:nth-child(3) {
  min-height: 50px;
}

.conf ul li:first-child img {
  max-width: 100%;
  min-width: 200px;
  height: auto;
  border: 1px solid var(--gris_pale);
}

.conf ul li img {
  width: 25px;
  height: auto;
}

.conf h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin: 10px 0;
  padding: 0;
}

.conf p a {
  color: var(--bleu_agence);
}

.conf .icon {
  font-size: 18px;
  color: #355c76;
  padding: 0 10px;
}

.conf .petit {
  font-size: 15px;
}

.conf .icon:hover {
  color: #65c8c6;
}

.info {
  margin: 0 0 25px 0;
}

.info p {
  padding: 10px 0;
  flex-grow: initial;
  text-align: center;
}

.info ul li,
.info ul.load {
  list-style: none;
}

.info ul li:before {
  content: "→ ";
}

.info ul.load li:before {
  content: none;
}

.info ul.load li {
  margin-left: 0;
  padding: 0;
}

/*pour une liste de t??l??chargement*/
.info ul.load li span {
  padding: 0 10px 0 0;
  color: #015a84;
}

.info h3 {
  padding-bottom: 0;
}

a.show {
  font-size: 18px;
  color: #015a84;
}

a.show>p {
  margin-top: 5px;
  padding: 0;
  font-weight: 700;
  color: #f3951f;
}

a.show:hover {
  color: #58585a;
}

.showBio {
  margin: 20px 0 0 0;
}

.showBio>div {
  margin: 0 0 25px 0;
}

a.show.minus,
a.linkToggle.minus {
  background: url("/client/amdm/images/2022_v1_vip/haut.png") no-repeat 0 0;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: 23px 20px;
  padding: 0 0 0 35px;
  display: inline-block;
  height: 28px;
  text-decoration: none;
}

a.show,
a.linkToggle {
  background: url("/client/amdm/images/2022_v1_vip/bas.png") no-repeat 0 0;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: 23px 20px;
  padding: 0 0 0 35px;
  display: inline-block;
  height: 28px;
  text-decoration: none;
}

.language_btns_container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 5px;
  gap: 5px;
}

.language_btns_container a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  /* max-width: 300px; */
}

.partenaire {
  margin-bottom: 50px;
}

.partenaire p {
  text-align: center;
  font-size: 1.5rem;
  /* background: var(--bleu_agence);; */
  border-radius: 10px;
  color: #045c84;
  font-weight: 700;
  border: 2px solid #045c84;
}

/* =====[ BAS DE PAGE ]======================================================================== */
.bg-soutien {
  background: var(--gris_fonce);
  border-bottom: 1px solid #a7a9ab;
}

.soutien .icon {
  font-size: 50px;
  padding: 0 0 10px 0;
}

.soutien .petit {
  font-size: 40px;
  padding: 0 0 20px 0;
}

ul.soutien {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
  /*padding: 50px 0;*/
  margin: 0 auto;
}

ul.soutien li {
  display: inline-block;
  margin: 0 5%;
  padding: 25px;
  vertical-align: top;
  font-size: 13px;
}

ul.soutien li img {
  vertical-align: middle;
  padding-bottom: 15px;
}

ul.soutien li a,
ul.soutien li a h2 {
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}

ul.soutien li a:hover,
ul.soutien li a:hover h2 {
  color: var(--bleu_agence);
}

.copyright {
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  background: var(--gris_fonce);
  color: #fff;
}

.copyright a {
  color: #fff;
  text-decoration: none;
}

/* :::::[ 1300px ]:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 1300px) {
  .page {
    width: 88%;
  }

  .connexion {
    right: 6%;
    width: 50%;
  }

  .connexion input[type="submit"] {
    width: 100%;
  }

  .large {
    width: 65%;
  }
}

/* :::::[ 1100px ]:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 1100px) {
  .bg_player {
    flex-direction: column;
  }

  .onglet {
    padding-left: 0;
    width: 100%;
    padding-top: 25px;
  }

  .contenu-player {
    width: 100%;
  }

  .tabcontent iframe {
    height: 400px;
  }
}

/* :::::[ Fix footer / social media bar ]:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* @media screen and (max-width: 1020px) {
	.copyright {
		margin-bottom: 36px;
	}
} */

/* :::::[ 1008px ]:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 1008px) {
  .header ul li img {
    width: 25px;
  }

  .header .page {
    flex-direction: column;
  }

  .connexion {
    width: 100%;
  }

  .connexion h2 {
    text-align: center;
    margin: 15px 0;
  }

  .connexion form,
  .connexion div {
    flex-wrap: wrap;
  }

  .connexion input[type="email"],
  .connexion input[type="password"] {
    margin: 0 0 5px 0;
  }

  .accueil {
    padding-top: 25px;
  }

  .accueil .page {
    flex-direction: column;
  }

  .titre-accueil {
    width: 100%;
    margin: 0 auto;
  }

  .inscription {
    width: 100%;
    margin: 0 auto;
  }

  .img-accueil {
    display: none;
  }

  .inscription form,
  .inscription .message {
    min-height: 200px;
  }

  .inscription h2 {
    font-size: 24px;
  }

  .inscription h2 strong {
    font-size: 35px;
  }

  /* .conf {
		flex-direction: column;
		gap: 50px;
	} */

  /* .conf ul {
		width: 100%;
	} */

  .pastille {
    position: relative;
    inset: initial;
    bottom: -35px;
  }
}

/* :::::[ 752px ]::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 752px) {
  .header .outil .page {
    width: 100%;
  }

  .titre span>span {
    padding-left: 0;
    display: block;
  }

  .sondage a {
    display: inline-block;
    margin-bottom: 10px;
  }

  .conf {
    flex-direction: column;
    align-items: center;
  }

  /* .conf ul li {
		width: 100%;
	} */

  .question input[type="text"],
  .question input[type="email"],
  .question input[type="password"],
  .question select {
    width: 100%;
  }

  .question input:nth-child(2n + 2) {
    float: none;
  }

  .language_btns_container {
    flex-direction: column;
  }
}

/* :::::[ 464px ]::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 464px) {
  h1 {
    font-size: 24px;
  }

  .accueil strong {
    font-size: 18px;
  }

  .header img {
    margin: 0 auto;
  }

  .header ul {
    text-align: center;
  }

  .header .page {
    flex-direction: column;
  }

  .inscription .message {
    min-height: 0;
  }

  .connexion input[type="email"],
  .connexion input[type="password"] {
    margin: 0 0 5px 0;
    width: 100%;
  }

  .connexion input[type="submit"] {
    width: 100%;
    font-size: 20px;
  }

  .connexion ul li {
    font-size: 10px;
    background: none;
    padding: 0 10px;
  }

  .connexion ul li span {
    border: none;
    background: none;
  }

  .btn-main {
    display: block;
  }

  a.btn-main span {
    display: block;
    padding: 0 0 10px 0;
    margin: 0 auto;
  }

  .question input[type="submit"] {
    width: 100%;
  }

  .question input {
    width: 100%;
  }

  .question input:nth-child(2n + 2) {
    float: none;
  }

  .tab {
    flex-direction: column;
  }

  .tab2 {
    flex-direction: column;
  }

  .conf ul {
    align-items: center;
    text-align: center;
  }

 
}