/* =====[ RESET ]======================================================================== */
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

*:not(.icon) {
  font-family: "Roboto", Arial, 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-size: 15px;
  color: #0d0d0d;
  z-index: 0;
  font-weight: 400;
  background: #fff;
}

h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

h2 {
  color: #58585a;
  font-size: 24px;
  font-weight: 300;
}

h3 {
  color: #58585a;
  font-size: 20px;
  font-weight: 700;
}

h4 {
  color: #2f73a1;
  font-size: 20px;
  font-weight: 700;
}

h5 {
  color: #58585a;
  font-size: 17px;
  font-weight: 700;
}

.titre-accueil h1 {
  color: #fff;
}

h1 span {
  font-size: 30px;
  display: block;
}

strong {
  font-weight: 700;
}

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

a {
  color: #162f4d;
  text-decoration: none;
}

a:hover {
  color: #44c6f0;
}

hr {
  height: 1px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #d4d4d5;
  margin: 25px 0 10px 0;
}

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

.clear {
  clear: both;
}

.center {
  text-align: center;
}

.center1 {
  text-align: center;
}

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

/* =====[ Header ]======================================================================== */
.header .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/*.header .page > div{width:60%; }*/

header {
  background: #fff;
  margin-bottom: 15px;
}

header .icon {
  font-size: 16px;
  padding: 0;
  vertical-align: top;
}

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

/*header{	border-bottom:1px solid #cccccc;}*/
header ul {
  text-align: right;
  position: relative;
  z-index: 2;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
}

header ul li {
  list-style: none;
  /*display:inline-block;*/
  color: #161b1d;
  margin: 0;
  padding: 10px 15px;
  font-size: 18px;
}

header ul li a span {
  color: #049fd1;
}

/*couleur des icones reseau sociaux*/
header ul li a:hover span {
  color: #44c6f0;
}

header ul li.deconnexion a {
  color: #fff;
  font-size: 17px;
  background: #049fd1;
  padding: 8px 30px;
  font-weight: 700;
}

header ul li.deconnexion a:hover,
header ul li.deconnexion a:hover span {
  background: #44c6f0;
}

header ul li.deconnexion span {
  color: #deb407;
  font-size: 17px;
  padding-left: 5px;
}


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

.scroll_watcher {
    position: fixed;
    z-index: 1000;
    height: 6px;
    width: 0%;
    top: 0;
    left: 0;
    right: 0;
    background-color: #049fd1;
}

@supports (animation-timeline: scroll()) {
    .scroll_watcher {
        animation: scroll_watcher linear;
        animation-timeline: scroll();
    }

    @keyframes scroll_watcher {
        to {
            width: 100%;
        }
    }
}

/* 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 */




/*.accueil{background:url(/client/cijourneeoncologieusss/images/2020_v2/bg.jpg) no-repeat top center #18b0b1;  box-sizing:border-box; padding:5% 0 80px 0;}*/
.logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  padding: 0;
  display: block;
  /*margin-top:-30px*/
}

.ligne-design {
  height: 7px;
  background: #fff;
  width: 70px;
  margin: 40px 0;
}

/*.accueil {font-size:26px; color:#2f73a1; background: url('/client/journeeoncologie/images/2020_v1-compte/galen-crout-fItRJ7AHak8-unsplash.png') no-repeat 0 0;}*/
.accueil {
  background: url(bg_journee_onco_2023.jpg) no-repeat;
  background-size: cover;
  /*padding: 5% 0;*/
  position: relative;
}

.accueil::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background: rgba(0, 0, 0, 0.25);
}

.accueil .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  padding: 50px 0;
}

.accueil h1 {
  font-size: 50px;
  margin-top: 5%;
}

.titre {
  padding: 25px 0;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  background-color: #162f4d;
}

.titre h1 {
  padding-top: 10px;
}

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

.date {
  font-weight: 700;
  padding-top: 5%;
  display: block;
  color: #162f4d;
}

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

.titre-accueil {
  width: 50%;
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  font-family: "Gilroy-Bold", Arial, sans-serif;
}

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

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

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

.connexion input {
  height: 40px;
}

.connexion input[type="submit"] {
  padding: 0px 20px;
  width: 60%;
  font-size: 18px;
  background: #18547c;
}

.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;
  font-size: 13px;
  text-align: center;
  padding: 0 20px 0 15px;
  background: url(point.png) right 25px no-repeat;
  width: 25%;
  color: #2f73a1;
}

.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;
  font-weight: 700;
  background: #162f4d;
  margin-top: 5px;
  padding: 4px 0;
  width: 100%;
  color: #fff;
}

.decompte2 ul {
  width: 100%;
}

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

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

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

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

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

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  color: #162f4d;
  padding: 10px;
  flex: 1;
  border: 1px solid #162f4d;
  outline: none;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #44c6f0;
  color: #fff;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #162f4d;
  color: #fff;
}

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

/* .tabcontent ul{list-style-type: none} */
.tabcontent ul li {
  padding-bottom: 10px;
}

.liste-kiosques {
  /* -moz-column-count: 3;
  column-count: 3; */
  padding-left: 40px;

}

.tabcontent .liste-kiosques li {
  margin: 0 0 15px 0;
  padding: 0;
  white-space: pre;
}

/* .listeeval ul{list-style-type: circle} */
/* =====[ INSCRIPTION ]======================================================================== */

.inscription {
  background-size: cover;
  width: 450px;
  text-align: center;
}

.inscription form,
.inscription .message,
.inscription .decompte2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #162f4d;
  padding: 35px;
  text-align: center;
  min-height: 540px;
}

.inscription a img {
  width: 18px;
  height: auto;
  vertical-align: middle;
  padding-left: 12px;
  margin: 0;
}

.inscription img {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
}

.inscription .add-calendar {
  background: #58585a;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #fff;
  padding: 15px;
}

.inscription .add-calendar a {
  color: #fff;
}

.inscription .add-calendar a:hover {
  color: #162f4d;
}

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

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

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

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

.desactif em,
.desactif h2 {
  color: #656c7d;
}

.message h2.icon,
.decompte2 h2.icon {
  font-size: 60px;
  margin-bottom: 15px;
  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;
}

.qr_slido {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5%;
}

.qr_slido>p {
  text-align: left;
  padding: 0;
}

.qr_slido>img {
  max-width: 100%;
  width: 120px;
  margin: 0;
}

/* =====[ FORMULAIRE ]======================================================================== */
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #454545;
  opacity: 1 !important;
  font-weight: 300;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #454545;
  opacity: 1 !important;
  font-weight: 300;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #454545;
  opacity: 1 !important;
  font-weight: 300;
}

:-ms-input-placeholder {
  color: #454545;
  font-weight: 300;
}

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

form p {
  padding: 10px 0 25px 0;
}

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

label {
  display: none;
}

.consens {
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
}

.consens label {
  padding: 0 0 20px 0;
  text-align: justify;
  width: 90%;
  display: block;
}

.consens input[type="checkbox"] {
  padding: 0 10px 0 0;
  margin: 0;
  width: 10%;
  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;
}

/* select {
	-webkit-appearance: none;
} */

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

input:disabled {
  opacity: 0.5;
  cursor: Not-Allowed;
}

input:disabled::-webkit-input-placeholder {
  /* WebKit browsers */
  opacity: 0.5;
}

input:disabled:-moz-placeholder {
  /* Firefox 18- */
  opacity: 0.5;
}

input:disabled::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 0.5;
}

input:disabled:-ms-input-placeholder {
  opacity: 0.5;
}

.desactif {
  background: #93b3ca;
  color: #58585a;
  cursor: Not-Allowed;
  width: 100%;
  padding: 10px 40px;
}

input[type="Submit"]:disabled {
  display: none;
  /*background: #eeeeee;  color:#58585a; cursor: Not-Allowed; width:100%; */
}

input[type="Submit"]:hover:disabled {
  background: #eeeeee;
  color: #58585a;
}

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

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

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

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

select {
  width: 100%;
  /* height: 25px; */
}

input[type="Submit"] {
  background: #fff;
  border: none;
  font-size: 20px;
  font-weight: normal;
  color: #18547c;
  cursor: pointer;
  padding: 10px 40px;
  margin-bottom: 0;
  font-family: "Roboto", Arial, sans-serif;
}

.center input[type="Submit"] {
  background: #049fd1;
  border: none;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  padding: 10px 40px;
  margin-bottom: 0;
  font-family: "Roboto", Arial, sans-serif;
}

.center1 input[type="Submit"] {
  background: #049fd1;
  border: none;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  padding: 10px 40px;
  margin-bottom: 0;
  font-family: "Roboto", Arial, sans-serif;
}

input[type="Submit"]:hover,
a.btn-bleu:hover,
a.btn-main:hover,
a.btn-jaune:hover {
  background: #44c6f0;
  color: #fff;
  border: none;
}

a.btn-bleu {
  background: #2f73a1;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 40px;
}

a.btn-gris {
  background: #55636d;
  border: none;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 40px;
}

a.btn-jaune {
  background: #ffc000;
  border: none;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 40px;
}

a.btn-main {
  display: inline-block;
  background: #049fd1;
  border: none;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 40px;
  /* border-radius:25px; */
}

a.btn-bleu img {
  width: 30px;
  height: auto;
  vertical-align: middle;
  padding-right: 15px;
}

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

.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
  text-decoration: none;
}

a.btn-main.selected {
  background: #162f4d;
  color: #fff;
  border: none;
}

/* =====[ 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;
}

.bg_player_representant {
  justify-content: center;
}

.player {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  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;
}

.video_btns_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 10px;
}

.video_btns_container a.btn-main {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 60px;
}



.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: 50%;
}









.content_webcast {
	padding-left: 5%;
	width: 40%;

}


.header_content_webcast {
	display: flex;
	position: relative;
	outline: 1px solid #162f4d;
}


.header_content_webcast i {
	font-size: 1.25rem;
}


.header_content_webcast > p {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	padding: 10px;
	background: #162f4d;
	color: #fff;
	flex: 1;
	text-align: left;
	font-size: 1rem;
	font-weight: 700;
}


.header_content_webcast > label {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	font-size: 1rem;
	text-align: center;
}


.toggle-label {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-weight: 700;
	color: #162f4d;
}


.toggle-label:before {
	display: inline-block;
	content: "☰";
	font-size: 1em;
	width: 1em;
	height: 1em;
	line-height: 1;
	margin-right: 0.25em;
	text-align: center;
}


.toggle-input {
	display: none;
}


.toggle-content {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
}


.toggle-input:not(checked) ~ .toggle-content {
	display: none;
}


.toggle-input:checked ~ .toggle-content {
	display: block;
	outline: 1px solid #162f4d;
}


.toggle-input:checked ~ .toggle-label:before {
	content: "✕";
}


nav:is(.toggle-content) ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}


/* nav:is(.toggle-content) li:nth-child(even) {
	background: #ebf6fc;
} */


nav:is(.toggle-content) li:not(:last-child) {
	border-bottom: 1px solid;
}


nav:is(.toggle-content) li:hover {
	background: #ebf6fc;
}


nav:is(.toggle-content) a {
	color: #162f4d;
	text-decoration: none;
	display: block;
	padding: 10px;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	width: 100%;
}


/* nav:is(.toggle-content) li:hover a {
	color: #fff;
} */


.subscription_webcast {
	display: flex;
	align-items: center;
}


.subscription_webcast i {
	font-size: 1.25rem;
	margin-right: 10px;
}


.tabcontent {
	width: 100%;
	border-left: none;
	height: auto;
}


.tabcontent textarea {
	margin-top: 15px;
}


#prochain_webdiff {
	margin: 5% 0;
}


.prochain_webdiff_date_heure {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}


#prochain_webdiff > h2 {
	margin-top: 15px;
	font-size: 1.15rem;
	font-weight: 700;
	color: #162f4d;
}


#prochain_webdiff > .btn-main {
	margin-top: 5%;
}


.success_message,
.warning_message,
.error_message {
	text-align: center;
}


.success_message > div,
.warning_message > div,
.error_message > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 15px;
	color: #fff;
}


.success_message > div + .btn-main,
.warning_message > div + .btn-main,
.error_message > div + .btn-main {
	margin-top: 5%;
}


.success_message > div {
	background: #13a538;
}


.warning_message > div {
	background: #fe9900;
}


.error_message > div {
	background: #e40613;
}


.success_message > div > p,
.warning_message > div > p,
.error_message > div > p {
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
	padding: 0;
	color: #fff;
}


.success_message i,
.warning_message i,
.error_message i {
	font-size: 4rem;
}


.success_message p,
.warning_message p,
.error_message p {
	text-align: center;
	font-weight: 700;
	color: #162f4d;
	margin: 5% 0;
	padding: 0;
}



















.contenu-player {
  /* width: 60%; */
  width: 100%;
}

.contenu-player-representant {
  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;
}

.icon-sondage2 {
  margin-right: 10px;
}

.succes {
  text-align: center;
}

.succes .icon {
  font-size: 40px;
  padding: 25px 0;
  color: #58585a;
}

.succes img {
  padding: 10px;
}

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

.succes a {
  background: #58585a;
  color: #fff;
  padding: 10px;
  text-decoration: none;
}

.btn-atelier {
  margin-top: 60px;
  text-align: right;
}

.btn-atelier a {
  background: #049fd1;
  border: none;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn-atelier a:hover {
  background: #44c6f0;
  color: #fff;
  border: none;
}

#evaluations ol,
#evaluations ul {
  margin-left: 5%;
  line-height: normal;
}

#evaluations ol li {
  padding-bottom: 10px;
}

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

.bg-info h2 {
  font-size: 25px;
  /*border-bottom:1px solid #838383;*/
  padding-bottom: 15px;
  /* margin-bottom: 40px; */
  font-weight: 700;
  color: #162f4d;
}

/*
.conf{	display:flex; flex-wrap: wrap; justify-content:space-between; margin-bottom:50px;}
.conf ul { width:30%; margin-bottom:35px}
.conf ul li{	list-style:none; box-sizing:border-box; margin:0; list-style:none; text-align:center;}
.conf ul li:nth-child(3){	min-height:50px;}
.conf ul li:first-child img{padding:0 0 20px 0; width:140px; height:auto}
.conf ul li img{padding:5px 10px; width:25px; height:auto}
.conf h3{ font-size:20px; font-weight:500}

.conf .icon{ font-size:18px; color:#55636d; padding:0 10px}
.conf .petit{ font-size:15px;}
.conf .icon:hover{ color:#deb407}
*/
/* .info{margin-bottom:50px } */
.info {
  margin-bottom: 65px;
}

.info p {
  padding: 0 0 20px 0;
}

.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 {
  /*list-style:url('images/pointeur_list.png');*/
  margin-left: 0;
  padding: 0;
}

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

.conf1 {
  padding: 0 0 20px 0;
}

.conf1 ul {
  padding-bottom: 10px;
}

.conf1 ul li {
  margin: 0;
  list-style: none;
  text-align: left;
  vertical-align: bottom;
  display: table-cell;
  color: #58585a;
}

.conf1 ul li img {
  padding: 35px 30px 0 0;
  width: 90px;
  height: auto;
  float: left;
}

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

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("moins-orange.png") no-repeat 0 0;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: 28px 28px;
  padding: 0 0 0 35px;
  display: inline-block;
  height: 28px;
  text-decoration: none;
}

a.show,
a.linkToggle {
  background: url("plus.png") no-repeat 0 0;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: 28px 28px;
  padding: 0 0 0 35px;
  display: inline-block;
  height: 28px;
  text-decoration: none;
}

/*horaire*/

.horaire-container {
  padding: 5% 0;
}

ul.activite {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  list-style: none;
  /* margin-bottom:50px;*/
}

ul.activite li {
  width: 48%;
  margin: 0 2% 2% 0;
  padding: 5% 3%;
  background: #f4f4f4;
  position: relative;
}

ul.activite li.atelier {
  padding: 0;
  width: 100%;
  /*box-sizing:border-box;  margin:0 2% 2% 0; padding:5% 3%; background:#f4f4f4; position:relative;*/
}

ul.activite li:nth-child(2n + 2) {
  margin-right: 0;
  border-right: none;
}

ul.activite li div.heure {
  font-size: 16px;
  padding: 8px 20px;
  position: absolute;
  background: #162f4d;
  color: #fff;
  font-weight: 700;
  top: 0;
  left: 0;
}

ul.activite li div.heure1 {
  font-size: 16px;
  padding: 8px 20px;
  position: absolute;
  background: #162f4d;
  color: #fff;
  font-weight: 700;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

ul.activite li div.visionner {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  background: #474747;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  width: 100px;
  padding: 5px 10px;
  margin: 25px auto 0 auto;
}

ul.activite li div.visionner:hover {
  background: #162f4d;
}

ul.activite-live {
  list-style: none;
}

ul.activite-live .heure {
  font-size: 16px;
  color: #162f4d;
  font-weight: 700;
}

ul.activite-live>li {
  font-size: 15px;
  margin-bottom: 40px;
}

ul.activite li ul.activite1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  list-style: none;
  /* margin-bottom:50px; */
}

ul.activite li ul.activite1 li {
  border-right: 3px solid #162f4d;
  margin: 0 !important;
  margin-top: 2.5%;
}

ul.activite1 li {
  width: 50%;
}

ul.activite li ul.activite1 li:nth-child(2n + 2) {
  border-right: none;
}

ul.activite h3 {
  color: #131313;
}

ul.activite h4 {
  font-size: 17px;
  padding-top: 10px;
}

.lien_documents:hover {
  text-decoration: underline;
}

/* =====[ BAS DE PAGE ]======================================================================== */
.partenaires,
.partenaires p {
  text-align: center;
}

.partenaire ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
}

.partenaire {
  font-style: italic;
  color: #4d4d4e;
  margin: 25px auto 40px auto;
}

.partenaire ul li:first-child {
  align-self: flex-start;
}

.partenaire ul li img.chu {
  max-width: 260px;
  width: 100%;
  height: auto;
}

.partenaire ul li img.rnetsa {
  padding-left: 40px;
  max-width: 260px;
  width: 100%;
  height: auto;
}

.partenaire ul li img.quebec {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.partenaire p {
  padding-bottom: 20px;
}

.bg-soutien {
  background: #f2f2f2;
}

.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: 0 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: #049fd1;
  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: #44c6f0;
}

.copyright {
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  background: #17304e;
  color: #fff;
}

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

/* :::::[ IPAD HORIZONTAL ]:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 1300px) {
  .connexion input[type="submit"] {
    width: 100%;
  }

  .accueil h1 {
    font-size: 35px;
  }

  .bg_player {
    flex-direction: column;
  }

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

  .tabcontent iframe {
    height: 400px;
  }

  .contenu-player-representant {
    width: 100%;
  }

  .content_webcast {
      padding-left: 0;
      width: 100%;
      padding-top: 20px;
  }
}

/* @media screen and (max-width: 1100px) {
  .content_webcast {
      padding-left: 0;
      width: 100%;
  }
}  */

/* :::::[ GENERALE plus petit qu'un ipad vertical' ]:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 1008px) {
  .content_webcast {
      padding-left: 0;
      width: 100%;
  }
  
  .header ul li img {
    width: 25px;
  }

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

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

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

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

  .inscription {
    margin: 5% 0 0 0;
    min-width: 0;
    width: 100%;
  }

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


  .conf ul {
    width: 45%;
  }

  ul.activite>li {
    width: 100%;
    margin: 4% 0;
    padding: 65px 5% 50px 5%;
  }

  ul.activite>li ul.activite1 li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #2f73a1;
  }

  ul.activite li:nth-child(3n + 3) {
    margin-right: 0;
  }

  ul.activite>li ul.activite1 li:nth-child(3n + 3) {
    border: none;
  }

  .btn-atelier {
    display: grid;
    text-align: center;
  }

  ul.activite li div.heure1 {
    position: relative;
  }
}

/* :::::[ 752 PIXELS LAYOUT (IPHONE HORIZONTALE)]::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 752px) {
  .header ul {
    text-align: center;
  }

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

  .logo {
    margin: 0 auto;
  }

  .header .outil .page {
    width: 100%;
  }

  /* .header ul li:last-child {
    padding: 10px 15px 10px 0;
  } */

  .accueil h1 {
    font-size: 30px;
  }

  .inscription h2 span {
    font-size: 30px;
  }

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

  .bg_player {
    padding: 10% 0 30px 0;
  }

  ul.soutien li {
    padding: 25px;
  }

  .connexion {
    width: 100%;
  }

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

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

  input[type="Submit"]:disabled {
    font-size: 18px;
  }

  .partenaire ul {
    flex-wrap: wrap;
  }

  .partenaire ul li img.rnetsa {
    padding-left: 0;
  }

  .conf1 ul li img {
    padding: 35px 0 30px 0;
    float: none;
  }

  .conf1 ul li {
    display: block;
  }
}

/* :::::[ 464 PIXELS LAYOUT (iphone vertical) ]::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 464px) {
  .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 span {
    border: none;
    background: none;
    color: #162f4d;
  }

  .btn-bleu {
    display: block;
  }

  a.btn-bleu img {
    padding-right: 0;
    margin: 0 auto;
  }

  .sondage img,
  .sondage a {
    display: block;
  }

  .sondage img {
    margin: 0 auto;
  }

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

  .question input {
    width: 100%;
  }

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

  .conf ul {
    width: 100%;
  }

  .tab {
    flex-direction: column;
  }

  .liste-kiosques {
    column-count: 2;
  }

  .qr_slido {
    flex-direction: column;
  }

  .header_content_webcast {
    flex-direction: column;
}

.header_content_webcast > p {
    justify-content: center;
    text-align: center;
}
}