@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:ital,wght@0,400;0,700;1,400&display=swap');

/* || GENERAL |||||||||||||||||||| */

html {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: auto 0;
  color: #26262e;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1em;
  font-weight: 400;
  background-image: linear-gradient(130deg, #ffece5 5%, #f7f7f7 50%, #f7f7f7 125%);
  background-size: 100% 100%;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

/* || HTML |||||||||||||||||||| */

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75em 0;
  color: #14194c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
h1 {
  font-size: 1.5em;
  margin: 0 0;
  line-height: normal;
}
h2 {
  font-size: 1.2em;
  margin: 0 0 0.5em 0;
}
h3 {
  padding-bottom: 0;
  margin: 1em 0 0.2em 0;
}

hr {
  color: #ffffff;
  background-color: #ffffff;
  border: 1px dotted #eeede4;
  border-style: none none solid;
  margin-top: 1em;
  margin-bottom: 1em;
  clear: both;
}

p {
  margin: 0 0 1.5em 0;
}

img {
  width: inherit; /* This makes the next two lines work in IE8. */
  max-width: 100%; /* Add !important if needed. */
  height: auto; /* Add !important if needed. */
  margin: 0;
  border-radius: 12px;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.25);
}

a {
  color: #14194c;
  text-decoration: none;
}
a:hover {
  color: #3fb4a6;
}

ul {
  padding-left: 1.2em;
  list-style-image: url(../img/disc.png);
  margin: 0;
}
li {
  padding: 0.25em 0;
}

/* || SCROLLBAR STYLE  |||||||||||||||||||| */

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #f7f7f7;
}
::-webkit-scrollbar-thumb {
  background: #14194c;
}

/* || FORMS  |||||||||||||||||||| */

label {
  margin: 0em 0 0.25em 0;
  display: block;
  opacity: 0.5;
}

textarea,
input[type='text'],
input[type='url'] {
  border: none;
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -webkit-appearance: none;
  box-shadow: none;

  font-family: 'Source Serif Pro', serif;
  font-size: 1.1em;

  width: 100%;
  line-height: 2em;
  overflow: hidden;
  border-radius: 5px;
  padding: 1em;
  background-color: #fff;
  box-sizing: border-box;
  margin-bottom: 2em;
}
input[type='text'], input[type='url'] {
  padding: 0.5em 1em;
  margin-bottom: 2em;
}
textarea:hover,
input[type='text']:hover,
input[type='url']:hover,
textarea:focus,
input[type='text']:focus,
input[type='url']:focus {
  background-color: #fff;
  box-shadow: 0 6px 10px -4px rgba(20, 25, 76, 0.1);
  transition-duration: 0.5s;
}

input[type='text'], input[type='url'] {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 11pt;
  text-align: center;

  padding: 0.5em 1em;
  border-radius: 2em;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.button_form {
  text-align: center;
  text-decoration: none;
  background-color: #14194c;
  border: none;
  color: #fff;
}
button:hover {
  box-shadow: 0 6px 10px -4px rgba(20, 25, 76, 0.1);
}
button i {
  margin-right: 6pt;
}
.delete {
  background-color: #fe5f5f;
}

.button_link {
  border: 1px solid rgba(20, 25, 76, 0.1);
  color: #14194c;
  margin-left: auto;
}

.action span {
  padding-left: 0.5em;
}
.action:hover {
  border: 1px solid rgba(20, 25, 76, 0.2);
  box-shadow: 0 6px 10px -4px rgba(20, 25, 76, 0.1);
}
#content .action,
.comment .action {
  float: right;
  margin-left: 0.5em;
}

/* Style de la liste dÃ©roulante (select) */
.dropdown {
  appearance: none; /* Supprime le style par dÃ©faut du navigateur */
  width: 100%;
  padding: 1em 1em;
  margin-bottom: 2em;
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: #fff;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 1em;
}

/* Ajout d'une icÃ´ne de flÃ¨che */
.dropdown {
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"%3E%3Cpolyline points="6 9 12 15 18 9"%3E%3C/polyline%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

/* Pour enlever les bordures arrondies sur les options dans certains navigateurs */
.dropdown option {
  border-radius: 0;
}

/* Style au focus */
.dropdown:focus {
  outline: none; /* Supprime la bordure par dÃ©faut au focus */
  background-color: #fff;
  box-shadow: 0 0px 14px -4px rgba(0, 0, 0, 0.4);
  transition-duration: 0.5s;
}

.action {
  border: 1px solid rgba(20, 25, 76, 0.1);
  padding: 0.5em 1em;
  border-radius: 2em;
  font-size: 11pt;
  text-align: center;
  cursor: pointer;
  color: #14194c;
  display: inline-block;
  margin-left: auto;
  position: relative;
}
.action span {
  padding-left: 0.5em;
}
.action:hover {
  border: 1px solid rgba(20, 25, 76, 0.2);
  box-shadow: 0 6px 10px -4px rgba(20, 25, 76, 0.1);
}
#content .action,
.comment .action {
  float: right;
  margin-left: 0.5em;
}

/* || NOUVELLE HOME - Ajout de ces lignes |||||||||||||||||||| */

#index_body {
  height: 100%;
  background-image: none;
  background-color: #14194c;
  background-size: 140% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('img/index_bg.svg');
  background-attachment: scroll;
}
#index_wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em;
}
#index_screen {
  display: flex;
  flex-direction: column;
}

#index_screen_1 {
  height: 16em;
  background: linear-gradient(130deg, #bbf7ff, #f6edee, #ffd0be);
  border-radius: 1em 1em 0% 0%;
  -webkit-transform: translateZ(0);
}
#index_screen_1_txt {
  width: 100%;
  height: 16em;
  background-size: auto 12em;
  background-position: 2em;
  background-repeat: no-repeat;
  background-image: url('img/index_txt.svg');
}

#index_screen_2 {
  background: rgba(247, 247, 247, 0.2);
  border-radius: 0% 0% 1em 1em;
  height: auto;
}
#index_screen_2_txt {
  color: #fff;
  padding: 2em;
  line-height: 1.75em;
}
#index_screen_2_txt h1 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 1em;
}
#index_screen_2_txt input[type='text'] {
  margin-bottom: 0.5em;
  font-size: 1em;
  box-shadow: 0 0px 24px 0px rgba(247, 247, 247, 0.6);
}
#index_screen_2_txt .button_form {
  margin-bottom: 1em;
  background-color: #3fb4a6;
  padding: 0.75em 1.5em;
  border-radius: 5px;
  font-size: 1em;
}

@media screen and (min-width: 50em) {
  #index_body {
    background-size: 90% auto;
  }
  #index_wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em;
  }
  #index_screen {
    flex-direction: row;
  }
  #index_screen_1,
  #index_screen_2 {
    width: 24em;
    height: 24em;
  }
  #index_screen_1 {
    border-radius: 1em 0% 0% 1em;
  }
  #index_screen_1_txt {
    width: 100%;
    height: 24em;
    background-size: auto 19em;
    background-position: 2.5em;
  }
  #index_screen_2 {
    border-radius: 0% 1em 1em 0%;
  }
}

/* || GENERAL |||||||||||||||||||| */

.wrap_72,
.wrap_36,
.wrap_34 {
  max-width: 72em;
  position: relative;
  margin: auto;
  padding: 0 1em;
}
.wrap_36 {
  max-width: 36em;
}
.wrap_34 {
  max-width: 34em;
}
.button_off,
.button_on {
  /* Bouton Ã  deux Ã©tats */
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11pt;
  text-align: center;
  text-decoration: none;
  background-color: rgba(20, 25, 76, 0.05);
  border: none;
  padding: 0.5em 1em;
  border-radius: 2em;
  display: inline-block;
  margin-bottom: 1em;
}
.button_off:hover {
  background-color: rgba(20, 25, 76, 0.1);
}
.button_on {
  background-color: #3fb4a6;
  color: #fff;
}
.button_on:hover {
  background-color: rgba(63, 180, 166, 0.8);
}
.loading {
  display: block;
  width: 100%;
  height: 3em;
  background-size: 24px auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('img/loading2.gif');
}
/* || HEADER |||||||||||||||||||| */

#wrap_header {
  background-color: #fff;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  top: 0;
  left: 0;
  right: O;
  position: sticky;
  width: 100%;
}
#header {
  display: flex;
  flex-direction: row;
  height: 4em;
  align-items: center;
  justify-content: space-between;
}
#header_logo {
  width: 5em;
  height: 2em;
  background-size: auto 1.6em;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url('img/logo.svg');
}
#header_center {
  margin-left: auto;
  margin-right: 0em;
  padding: 0;
  position: relative;
}
#header_series .fa-regular,
#header_series .fas {
  margin-right: 0.25em;
  position: relative;
  top: -1px;
}
#header_menu {
  border: 1px solid rgba(20, 25, 76, 0.1);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18pt;
  background-image: url('img/ico_menu.svg');
  cursor: pointer;
  margin-left: 0.5em;
}
#header_menu:hover {
  border: 1px solid rgba(20, 25, 76, 0.2);
  box-shadow: 0 6px 10px -4px rgba(20, 25, 76, 0.1);
}
#menu {
  display: none;
  width: 90%;
  padding: 0.5em 0;
  transform: translate(0%, 0%);
  background-color: #fff;
  box-shadow: 0 0px 14px -4px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 5%;
  top: 5.2em;
  z-index: 900;
  border-radius: 12px;
  transition-duration: 0.5s;
}
#menu:hover {
  box-shadow: 0 0px 14px -4px rgba(0, 0, 0, 0.8);
  transition-duration: 1s;
}
.menu_section {
  color: #14194c;
  padding: 0.75em 1em;
  font-size: 13pt;
}
.menu_section:hover {
  background-color: rgba(20, 25, 76, 0.05);
}
.menu_section.selected {
  color: #3fb4a6;
}
.menu_section .fas,
.menu_section .fa-regular,
.menu_section .fa-solid {
  margin-right: 0.5em;
}
#menu_publish {
  border-radius: 2em;
  background-color: #3fb4a6;
  color: #fff;
  padding: 0.5em 1em;
  margin: 0.25em 0.75em 0.5em 0.75em;
  text-align: center;
}
#header_top_link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 6em;
  z-index: 500;
  width: 100%;
  max-width: 72em;
}
#header_top_link .action {
  float: right;
  background-color: #fff;
  margin-right: 1em;
}

/* || ALERTE |||||||||||||||||||| */
/* Pour confirmer ou pas une action (publication d'un Ã©pisode par exemple)  */

#wrap_alert_ok,
#wrap_alert_nok,
#wrap_alert_neutral {
  width: 100%;
  margin: auto;
  padding: 3em 0;
  background-color: #3fb4a6;
  color: #fff;
  position: relative;
}
#wrap_alert_nok {
  background-color: #fe7f7f;
}
#wrap_alert_neutral {
  background-color: #14194c;
}
#alert {
  text-align: center;
  line-height: 1.5em;
}
#alert .fas {
  font-size: 2em;
  display: block;
  margin-bottom: 0.2em;
  opacity: 0.7;
}
.alert_error {
  display: inline-block;
  background-color: #fe7f7f;
  color: #fff;
  border-radius: 3pt;
  font-size: 10pt;
  padding: 2pt 4pt;
  margin-bottom: 6pt;
}

#alert .button_off {
  margin: 0.5em 1em 0 0;
  background-color: rgba(255, 255, 255, 0.25);
  width: 3em;
}
#alert .button_on {
  margin: 0.5em 0 0 0;
  width: 3em;
}

/* || ANNONCE |||||||||||||||||||| */
/* Une information informelle pouvant apparaitre sur toute les PAGES, sous le HEADER */

#annonce {
  width: 100%;
  margin: auto;
  padding: 1em 0;
  /*
	background: linear-gradient(0.25turn, #bdfafd, #fee8e0, #fdb2af);
	-webkit-box-shadow: inset 0px 0px 13px -3px rgba(20,25,76,0.25);
	-moz-box-shadow: inset 0px 0px 13px -3px rgba(20,25,76,0.25);
	box-shadow: inset 0px 0px 13px -3px rgba(20,25,76,0.25);

	background-size: 100% 40em;
	background-position:top center;
	background-repeat:no-repeat;
	background-image:url('img/bg.jpg');*/

  background: linear-gradient(270deg, #bbf7ff, #f6edee, #ffd0be);
  background-size: 600% 600%;

  -webkit-animation: DayColors 13s ease infinite;
  -moz-animation: DayColors 13s ease infinite;
  -o-animation: DayColors 13s ease infinite;
  animation: DayColors 13s ease infinite;
}

@-webkit-keyframes DayColors {
  0% {
    background-position: 0% 97%;
  }
  50% {
    background-position: 100% 4%;
  }
  100% {
    background-position: 0% 97%;
  }
}
@-moz-keyframes DayColors {
  0% {
    background-position: 0% 97%;
  }
  50% {
    background-position: 100% 4%;
  }
  100% {
    background-position: 0% 97%;
  }
}
@-o-keyframes DayColors {
  0% {
    background-position: 0% 97%;
  }
  50% {
    background-position: 100% 4%;
  }
  100% {
    background-position: 0% 97%;
  }
}
@keyframes DayColors {
  0% {
    background-position: 0% 97%;
  }
  50% {
    background-position: 100% 4%;
  }
  100% {
    background-position: 0% 97%;
  }
}

#annonce_content {
  text-align: center;
  line-height: 1.5em;
  color: #14194c;
}

/* || HOME |||||||||||||||||||| */
#home_txt {
  text-align: center;
  font-size: 1.5em;
  color: #14194c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  padding: 2em 1em 1em 1em;
}
.home_img {
  width: 100%;
  height: 16em;
  background-size: auto 100%;
  background-position: center center;
  background-repeat: x-repeat;
  background-image: url('img/home.svg');
  margin-bottom: 1em;
}
.home_img2 {
  background-position: right;
}

.wrap_home {
  padding: 1em 0;
  line-height: 2em;
}
.wrap_home h1 {
  margin-bottom: 0.25em;
}
.wrap_home h2 {
  margin-top: 1em;
}
.wrap_home a {
  text-decoration: underline;
}
.wrap_home ul {
  list-style: none;
}
.wrap_home ul li::before {
  content: '\2022';
  color: #3fb4a6;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1.25em;
}

#home_ferns {
  width: 100%;
  height: 24em;
  background-size: auto 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('img/ferns.svg');
  margin-bottom: 3em;
}

#inscription {
  padding: 0em 0 2em 0;
}
#inscription input {
  margin: 2em 0 1em 0;
}
#inscription button {
  background-color: #3fb4a6;
}
/* || FEED |||||||||||||||||||| */

.wrap_feed {
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(20, 25, 76, 0.05);
}
.wrap_feed:hover {
  box-shadow: 0 6px 10px -4px rgba(20, 25, 76, 0.1);
  border-bottom: 1px solid rgba(20, 25, 76, 0);
}
#feed_create {
  text-align: center;
  padding: 1em 0;
}
.feed_serie {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 1.5em 1em;
}
.feed_serie_cover {
  height: 30pt;
  flex: 0 0 30pt;
  border-radius: 6px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin: 0 1em 0 0;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.25);
}
.news .feed_serie_cover {
  height: 50pt;
  flex: 0 0 50pt;
}
.discover .feed_serie_cover {
  height: 20pt;
  flex: 0 0 20pt;
}
.discover {
}
.feed_serie_middle {
  padding-right: 1em;
  align-self: center;
}
.feed_serie_title {
  font-weight: 400;
  opacity: 1;
  align-items: center;
}
.feed_serie .notifs {
}
.news .feed_serie_title {
  color: #2d264a;
  z-index: 51;
  font-weight: 800;
  line-height: 1.1em;
  word-spacing: 0.2em;
  opacity: 1;
}
.feed_serie_follow {
  color: rgba(20, 25, 76, 0.4);
  text-align: right;
  font-size: 9pt;
  margin-left: auto;
  padding: 0 0 12pt 12pt;
  opacity: 1;
  height: 12pt;
}
#wrap_actu {
  height: 4em;
  background-color: #fff;
  border-bottom: 1px solid rgba(20, 25, 76, 0.05);
}
#actu_info {
  cursor: pointer;
}
.fa-caret-down,
.fa-caret-up {
  padding-left: 0.5em;
}
.feed_discover {
  cursor: pointer;
  text-align: center;
  padding: 1em 0;
}
.feed_discover:hover {
  cursor: pointer;
  text-align: center;
  padding: 1em 0;
}
/* || THEME |||||||||||||||||||| */

#feed_theme {
  padding: 1em 0;
  border-bottom: 1px solid rgba(20, 25, 76, 0.1);
  text-align: center;
}
#theme h1 {
  text-transform: uppercase;
  word-spacing: 0.2em;
  font-weight: 400;
}

/* || SERIE |||||||||||||||||||| */

#wrap_serie {
  z-index: 50;
  position: relative;
  width: 100%;
  padding: 1em 0;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
#serie {
  position: relative;
  display: flex;
  flex-direction: row;
  margin-bottom: 1em;
  padding-bottom: 0;
}
#serie_left {
  align-items: flex-start;
}
.serie_cover {
  width: 7em;
  height: 7em;
  border-radius: 12px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.25);
}
#serie_right {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: right;
}
#serie_follow,
#serie_followed {
  text-align: center;
  margin-left: auto;
  cursor: pointer;
  color: #14194c;
}

#serie_theme {
  text-transform: uppercase;
  font-size: 9pt;
  margin-top: auto;
  margin-left: auto;
  word-spacing: 2pt;
  width: fit-content;
  padding-left: 2em;
}
#serie_theme:hover {
  opacity: 0.8;
}
#theme h1 {
  text-transform: uppercase;
  word-spacing: 0.2em;
  font-weight: 400;
}
#serie_date {
  padding: 0 0 1em 0;
}
#serie_date .fa-calendar-check {
  margin-right: 0.5em;
}
#serie_title {
}
#serie_title h1 {
  padding: 0 0 0.5em 0;
}

/* || EPISODES  |||||||||||||||||||| */

#wrap_episodes {
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.1);
}
.wrap_episode {
  position: relative;
  background-color: #fff;
  z-index: 20;
  border-bottom: 1px solid rgba(20, 25, 76, 0.05);
}
.wrap_episode:hover {
  box-shadow: 0 6px 10px -4px rgba(20, 25, 76, 0.1);
  z-index: 30;
}
.episode {
  display: flex;
  flex-direction: row;
  padding: 1em 1em 1em 0.6em;
  min-height: 3em;
  align-items: center;
  background-image: url('img/line.svg');
  background-position: 0.6em center;
  background-repeat: no-repeat;
  background-size: 14px auto;
}
.episode_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.5em;
}
.episode_title {
  line-height: 1em;
  color: #2d264a;
}
.episode_left .notifs {
  margin-top: 0.25em;
}
.episode_date {
  color: #2d264a;
  font-size: 9pt;
  text-transform: uppercase;
  flex: 1;
  flex-basis: 6em;
  text-align: right;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.episode_date .fas {
  font-size: 10pt;
  margin-left: 5pt;
}
.wrap_episode.selectedOLD {
  background-color: #f7f7f7;
}
.wrap_episode.selected {
  background: linear-gradient(270deg, #f7f7f7, #ffd0be, #ffffff);
  background-size: 600% 600%;
  -webkit-animation: DayColors 13s ease infinite;
  -moz-animation: DayColors 13s ease infinite;
  -o-animation: DayColors 13s ease infinite;
  animation: DayColors 13s ease infinite;
}

.wrap_episode.selected .episode {
  background-image: url('img/line_select.svg');
}
.wrap_episode.selected .episode_title {
  font-weight: 800;
}
.wrap_episode.draft .episode {
  background-image: url('img/line_draft.svg');
}
.wrap_episode.draft .episode .episode_title,
.wrap_episode.draft .episode .episode_date {
  opacity: 0.5;
}
#episode_plus_button .episode {
  background-image: url('img/line_draft.svg');
}
#episode_plus {
  display: none;
}

/* || NOTIFICATIONS |||||||||||||||||||| */

.notifs {
  position: relative;
  flex-direction: row;
  z-index: 100;
}
.notif {
  padding: 0.5em 0.7em;
  margin: 0 0.75em 0 0;
  background-color: rgba(20, 25, 76, 0.05);
  border-radius: 0.5em;
  display: inline-block;
  font-size: 9pt;
  font-weight: 300;
  color: rgba(20, 25, 76, 1);
  margin-top: 0.5em;
}
.notif .fas {
  color: rgba(20, 25, 76, 0.4);
  margin-right: 0.5em;
}
.notif.beat {
  background-color: rgba(255, 255, 255, 0);
  min-width: 1.5em;
  background-size: 1.5em auto;
  background-position: left center;
  padding: 0 0 0 2em;
  background-repeat: no-repeat;
  background-image: url('img/loading2.gif');
  color: rgba(20, 25, 76, 0.8);
  margin-top: 0em;
}

/* || CONTENTS |||||||||||||||||||| */

#wrap_content {
  position: relative;
}
#content {
  padding: 1em 1em;
  position: relative;
}
#content_text {
  font-family: 'Source Serif Pro', serif;
  font-size: 1.2em;
  line-height: 1.75em;
  font-weight: 400;
  position: relative;
}
#content_text h1 {
}
#content_text h2 {
  margin: 0.75em 0 0.25em 0;
}
.content_highlight {
  border-left: 2px solid rgba(20, 25, 76, 0.2);
  padding-left: 1em;
  font-size: 1.25em;
  margin: 1.5em 0;
  font-style: italic;
}
#content_text img {
  margin: 1em 0;
  max-width: 100%;
  max-height: 100%;
}

#content_text a {
  color: #3fb4a6;
  text-decoration: underline;
}

#content_text a:hover {
  color: #26262e;
}

#content_text a:visited {
  color: #26262e;
}

/* || MERCI |||||||||||||||||||| */

#wrap_mercis {
}
#mercis {
  padding: 1em 1em;
}
#merci_smile {
  width: 6em;
  height: 6em;
  background-size: 6em auto;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0em auto 0em auto;
}
#mercis_list {
  margin-top: 1em;
}
.merci {
  padding: 0.5em;
  margin: 0 0.5em 0.5em 0;
  background-color: rgba(20, 25, 76, 0.05);
  border-radius: 0.5em;
  display: inline-block;
  font-size: 0.9em;
}
.merci:hover {
  background-color: rgba(20, 25, 76, 0.2);
}
.merci_select {
  background-color: rgba(20, 25, 76, 1);
  color: #fff;
}

/* || COMMENTAIRES |||||||||||||||||||| */

#wrap_comments {
}
#comments {
  position: relative;
  padding: 1em;
}
#comment_form {
  margin-bottom: 3em;
}
#comment_form textarea {
  margin: 1em 0;
}
.comment {
  position: relative;
  background-color: rgba(20, 25, 76, 0.035);
  border-radius: 0.5em;
  padding: 0.75em;
  margin-top: 1em;
}
.comment .signature {
  margin-bottom: 0.2em;
}
.comment_text {
  position: relative;
  font-family: 'Source Serif Pro', serif;
  line-height: 1.5em;
  font-weight: 400;
  font-size: 1.1em;
}
.comment_reply_link {
  font-size: 0.9em;
  font-weight: 800;
  margin-top: 0.25em;
  width: fit-content;
}
.comment_reply_link .fas {
  margin-right: 5pt;
}
.comment .signature_date .fas {
  color: rgba(20, 25, 76, 0.4);
  margin-right: 0.5em;
}
.comment.new .signature_date {
  padding: 0.5em;
  margin: 0 0.5em 0 0;
  background-color: rgba(20, 25, 76, 0.07);
  border-radius: 0.5em;
  font-size: 9pt;
  color: rgba(20, 25, 76, 1);
  width: fit-content;
  margin-left: auto;
}
.comment.new .signature_date .fas {
  color: rgba(20, 25, 76, 0.4);
  margin-right: 0.5em;
}
.reply_form {
}
.reply_form textarea {
  margin: 1em 0;
}
.comment.edit .comment_text,
.comment.edit .signature_nom {
  color: rgba(38, 38, 46, 0.4);
}

/* || PAGE COMMENTAIRES |||||||||||||||||||| */
.wrap_comment {
  border-bottom: 1px solid rgba(20, 25, 76, 0.05);
  position: relative;
}
.wrap_comment:hover {
  box-shadow: 0 6px 10px -4px rgba(20, 25, 76, 0.1);
  border-bottom: 1px solid rgba(20, 25, 76, 0);
}

.wrap_comment .feed_serie {
  padding-bottom: 0em;
}
.wrap_comment .notif {
  background-color: rgba(255, 255, 255, 0);
  min-width: 1.5em;
  padding: 0;
  color: rgba(20, 25, 76, 0.8);
  margin-top: 0em;
}
.wrap_comment .comment {
  margin: 0.5em 0 1em 0;
}
.wrap_comment .signature_date {
  text-align: left;
  padding: 0 0 0.5em 0;
}

/* SIGNETS */
.wrap_signet {
  border-bottom: 1px solid rgba(20, 25, 76, 0.05);
  position: relative;
}
.wrap_signet .feed_serie {
  padding-bottom: 1.5em;
}
.wrap_signet .notif {
  background-color: rgba(255, 255, 255, 0);
  min-width: 1.5em;
  padding: 0;
  color: rgba(20, 25, 76, 0.8);
  margin-top: 0em;
}

/* || READING BAR |||||||||||||||||||| */

#wrap_player {
  background-color: #fff;
  width: 100%;
  z-index: 10000;
  color: #14194c;
  box-shadow: 0 6px 10px -4px rgba(20, 25, 76, 0.1);
  position: fixed; /* Make it stick/fixed */
  top: -60px; /* Hide the navbar 50 px outside of the top view */
  transition: top 0.3s; /* Transition effect when sliding down (and up) */
}
#player_reading_progress {
  position: fixed;
  height: 4px;
  background: linear-gradient(0.25turn, #bdfafd, #fee8e0, #fdb2af);
  transition: all linear 0.1s;
  z-index: 10001;
}
#player {
  padding: 0.7em 0;
  text-align: center;
}

/* || PROFILE |||||||||||||||||||| */

#wrap_profile {
  z-index: 50;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 1em 0;
  border-bottom: 1px solid rgba(20, 25, 76, 0.1);
}
#profile {
  position: relative;
  display: flex;
  flex-direction: row;
  padding-bottom: 0;
}
#profile_left {
  align-items: flex-start;
}
#profile_name h1 .www {
  margin-left: 0.25em;
  color: #3fb4a6;
  font-size: 0.5em;
  vertical-align: 0.8em;
  font-weight: 400;
}
#profile_photo {
  width: 7em;
  height: 7em;
  border-radius: 7em;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 8em auto;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.6);
  margin-bottom: 1em;
}
#profile_right {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: right;
}
#wrap_profile_series {
  z-index: 30;
  background-color: #fff;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 500;
}
.wrap_profile_signin {
  z-index: 500;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 4em 2em;
}
.wrap_profile_signin h1 {
  margin-bottom: 0.5em;
}
.wrap_profile_signin.white {
  background-color: #fff;
}
.feed_serie_cover {
  align-items: center;
}

/* ||COMPRENDRE L'ALGO |||||||||||||||||||| */

#wrap_algo {
  width: 100%;
  margin: auto;
  transition-duration: 1s;
  display: none;
}
#algo_button {
  height: 4em;
  background-size: 2em 2em;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('img/algo.svg');
  cursor: pointer;
}
#algo_info {
  max-width: 36em;
  margin: auto;
  padding: 2em 0em;
  line-height: 1.5em;
  text-align: left;
}
#algo_info p {
  margin-bottom: 0em;
}

/* || SIGNATURE |||||||||||||||||||| */

.signature {
  display: flex;
  flex-direction: row;
  margin: 0;
  align-items: center;
}
.signature_photo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-image: url(img/other.svg);
  width: 2em;
  height: 2em;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 2em auto;
  margin-right: 0.5em;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.6);
  position: relative;
  background-image: url(img/other.svg);
  border-radius: 2.5em;
}
.signature_nom {
  justify-content: flex-start;
  align-items: center;
  color: #14194c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.signature_date {
  color: #2d264a;
  font-size: 9pt;
  text-transform: uppercase;
  text-align: right;
  width: fit-content;
  margin-left: auto;
}

/* || TOOL - Outil latÃ©ral pour Ã©diter / dÃ©placer une zone |||||||||||||||||||| */
.tool {
}
.tool_icon {
  width: 2em;
  height: 1.75em;
  border-radius: 50%;
  transform: translate(50%, 0%);
  font-size: 12pt;
  color: rgba(20, 25, 76, 0.5);
  text-align: center;
  padding-top: 0.25em;
}
.tool_icon:hover {
  color: rgba(20, 25, 76, 1);
}
.tool_icon .fas {
}

/* ICONE POUR CLASSER LES SERIES */
.tool_rank,
.ranking_rank {
  height: 30pt;
  flex: 0 0 30pt;
  background-color: rgba(20, 25, 76, 0);
  border-radius: 0.5em;
  font-size: 9pt;
  color: rgba(20, 25, 76, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  margin-left: auto;
}
.tool_rank:hover {
  color: rgba(20, 25, 76, 1);
}
.ranking_rank:hover {
  background-color: #fff;
  box-shadow: 0 0px 6px 0px rgba(20, 25, 76, 0.5);
  color: #3fb4a6;
}

.ranking_rank.inactive {
  color: rgba(0, 0, 0, 0.2);
  background-color: #f7f7f7;
  box-shadow: 0 0px 6px 0px rgba(20, 25, 76, 0.2);
}

.ranking {
  padding: inherit;
  transform: translate(0%, -50%);
  position: absolute;
  right: 0pt;
  top: +20pt;
  z-index: 600;
}
.ranking_rank {
  background-color: #fff;
  color: rgba(20, 25, 76, 0.7);
  box-shadow: 0 0px 6px 0px rgba(20, 25, 76, 0.3);
  top: 0;
  right: 0;
  font-size: 10pt;
}
.ranking_rank.selected {
  background-color: #3fb4a6;
  box-shadow: 0 0px 6px 0px rgba(20, 25, 76, 0.5);
  color: #fff;
}
#ranking_1,
#ranking_2,
#ranking_3 {
  display: none;
  z-index: 500;
}

/* || PAGE A FORMULAIRE : PUBLICATION, EDITION, COMPTE |||||||||||||||||||| */

#wrap_bar {
  /* BARRE D'EDITION */
  background-color: #fff;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.1);
  z-index: 1200;
  position: sticky;
  top: 0;
}
#bar {
  max-width: 72em;
  height: 2em;
  padding: 1em 0 1em 1em;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#bar_left {
  display: flex;
  align-items: flex-start;
  font-weight: 800;
  font-size: 1.2em;
}
#bar_right {
  flex: 1;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 0.75em 1em;
  text-align: center;
  align-items: center;
  margin-left: auto;
}
#header_edit_right .fas {
  margin-right: 0;
}

#wrap_work {
  padding: 1em 0;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.1);
  min-height: 50vh;
}
#work .fas {
  margin-right: 0.5em;
}
#work .ou {
  padding: 1em 0;
  opacity: 0.5;
}
#calendar {
  margin: 0em 0 1em 0;
  display: block;
}
#button_draft {
  background-color: #e1e1e4;
  color: #26262e;
  margin-left: 0.5em;
}
.tool.camera {
  /* ICONE POUR CHANGER LA PHOTO */
  left: 7em;
  top: -0.5em;
}
#work.profile input[type='text'] {
}
#wrap_work.publish h3 {
  margin-bottom: 0.5em;
}

/* || AIDE DE BAS DE PAGE : PUBLISH ou EDIT |||||||||||||||||||| */

#wrap_help {
  padding: 1em 0;
}
#wrap_help h1 {
}
#wrap_help p {
}

/* || FOOTER |||||||||||||||||||| */

#footer_quote {
  box-shadow: inset 0px 0px 13px -3px rgba(20, 25, 76, 0.25);
  background-color: rgba(20, 25, 76, 0.1);
  width: 100%;
  text-align: center;
  font-family: 'Source Serif Pro', serif;
  font-size: 1.2em;
  padding: 1em 0em;
}
#wrap_footer {
  background-color: #14194c;
  width: 100%;
  color: #fff;
}
#footer {
  display: flex;
  flex-direction: row;
  height: 5em;
  align-items: center;
  padding: 2em 1em;
}
#footer_links {
  line-height: 2em;
}
#footer_links a {
  color: #fff;
}
#footer_links a:hover {
  color: #3fb4a6;
}
#footer_logo {
  width: 8em;
  height: 5em;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 5em;
  background-image: url('img/svatijiri.svg');
  margin-left: auto;
}

/* || LINKS DIV |||||||||||||||||||| */

#header_logo,
#header_publish,
#header_center #header_menu,
#menu_publish,
.wrap_feed,
.tool_icon,
.signature,
.wrap_episode,
#merci_smile,
.comment_reply_link,
.player_icon,
.tool_icon.sort,
button,
.button_off,
.button_on,
#serie_theme,
#bar_right,
.ranking_rank,
#algo_info,
.menu_section,
.notif,
.merci,
#wrap_alert_ok,
#wrap_alert_nok,
#actu_toggle,
#player,
#header_top_linkAAA,
.wrap_comment,
.action,
.wrap_comment {
  cursor: pointer;
  position: relative;
}
#header_logo a,
#header_publish a,
#header_center a,
#header_menu a,
#menu_publish a,
.wrap_feed a,
.tool_icon a,
.signature a,
.wrap_episode a,
#merci_smile a,
.comment_reply_link a,
.player_icon a,
.tool_icon.sort a,
button a,
.button_off a,
.button_on a,
#serie_theme a,
#bar_right a,
.ranking_rank a,
#algo_info a,
.menu_section a,
.notif a,
.merci a #wrap_alert_ok a,
#wrap_alert_nok a,
#actu_toggle a,
#player a,
#header_top_link a,
.action a,
.wrap_comment a,
.wrap_comment a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-decoration: none; /* No underlines on the link */
  z-index: 10; /* Places the link above everything else in the div */
  background-color: #fff; /* Fix to make div clickable in IE */
  opacity: 0; /* Fix to make div clickable in IE */
  filter: alpha(opacity=1); /* Fix to make div clickable in IE */
}
#header_logo:hover,
#header_publish:hover,
#menu_publish:hover,
.signature:hover,
.comment_reply_link:hover,
.player_icon:hover,
#bar_right:hover,
.notif:hover,
#player:hover,
#header_top_link:hover {
  opacity: 0.7;
}

/* || MEDIAS QUERIES |||||||||||||||||||| */

@media screen and (min-width: 35.5em) {
  body {
    font-size: 1em;
  }
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.5em;
  }

  #menu {
    width: 12em;
    right: 1em;
  }
  .menu_section {
    font-size: 11pt;
  }
  #header_top_link .action {
    margin-right: 0em;
  }
  .wrap_home {
    padding: 2em 0;
  }
  #home_txt {
    padding: 3em 0;
    font-size: 1.5em;
  }
  .home_img {
    height: 24em;
    margin-bottom: 2em;
  }
  #home_tree {
    height: 40em;
    margin-bottom: 0em;
  }
  #inscription {
    padding: 0em 0 4em 0;
  }
  #footer_quote {
    padding: 2em 0em;
  }
  #annonce {
    padding: 1em 0;
  }
  .wrap_feed {
    position: relative;
  }
  .feed_serie_cover {
  }
  #wrap_serie {
    padding: 2em 0;
  }
  #content {
    padding: 2em 1em;
  }
  #comments {
    padding: 1em 1em 2em 1em;
  }
  .comment {
    padding: 1.25em;
    margin-top: 1em;
  }
  #wrap_profile {
    padding: 2em 0;
  }
  #feed_theme {
    padding: 3em 0;
  }
  #wrap_work,
  #wrap_help {
    padding: 4em 0;
  }
}

@media screen and (min-width: 64em) {
}

@media screen and (min-width: 3000px) {
  body {
    font-size: 1.5em;
  }
}
