/******************** POLICES ********************/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");
/******************** RESPONSIVE ********************/
/******************** CONTENEURS ********************/
/******************** COULEURS ********************/
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: #c7dbef;
}

#goto {
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
#goto:focus {
  clip-path: inset(100%);
  height: 20px;
  width: 185px;
  display: block;
  background-color: white;
  z-index: 2;
}

#page {
  max-width: 1756px;
  padding: 50px 50px 100px;
  height: 100%;
  margin: auto;
  display: flex;
  column-gap: 45px;
  justify-content: space-between;
}
#page #container {
  max-width: 1372px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#page #container h1, #page #container h2, #page #container h3 {
  font-family: "Archivo Black", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
#page #container h1 {
  font-size: 50px;
  margin: 0 0 50px;
}
#page #container h2 {
  font-size: 35px;
  margin: 50px 0 0;
}
#page #container h3 {
  font-size: 30px;
}
#page #container p, #page #container ul {
  font-size: 23px;
}
#page #container p:last-child, #page #container ul:last-child {
  margin-bottom: 0;
}
#page #container p {
  margin: 0 0 15px;
  text-align: center;
}
#page #container ul {
  margin: 0 auto 15px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
#page #container a {
  color: #1e77c6;
  text-decoration: none;
}
#page #container a:hover {
  color: #1a9dff;
}
#page #container .section {
  background: #fff;
  border: 3px solid #000;
  border-radius: 15px;
  padding: 40px;
}
@media screen and (max-width: 991px) {
  #page #container .section {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  #page {
    padding: 30px 30px 60px;
    flex-direction: column;
  }
  #page #container h1 {
    margin: 0 0 30px;
    font-size: 35px;
  }
  #page #container h2 {
    font-size: 28px;
  }
  #page #container h3 {
    font-size: 24px;
  }
  #page #container p, #page #container ul {
    font-size: 17px;
  }
  #page #container .section {
    padding: 20px;
  }
}

.actualite-filtres {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 15px;
  margin: 20px 0;
}
.actualite-filtres > span {
  cursor: pointer;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 17px;
  text-align: center;
  text-transform: uppercase;
  background: #1e77c6;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 10px 30px;
  transition: 0.3s;
}
.actualite-filtres > span:hover, .actualite-filtres > span.active {
  background: #1a9dff;
}

.actualites {
  margin-bottom: 40px;
}
.actualites .actualite {
  display: flex !important;
  column-gap: 40px;
}
.actualites .actualite .actualite-texte {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.actualites .actualite .actualite-texte:not(:only-child) {
  width: 50%;
}
.actualites .actualite .actualite-texte .actualite-date {
  font-size: 23px;
  font-weight: 300;
  margin-bottom: 10px;
}
.actualites .actualite .actualite-images {
  width: 50%;
}
.actualites .actualite .actualite-images img {
  cursor: pointer;
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .actualites .actualite {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 40px;
  }
  .actualites .actualite .actualite-texte:not(:only-child) {
    width: 100%;
  }
  .actualites .actualite .actualite-images {
    width: 100%;
  }
  .actualites .actualite .actualite-images img {
    max-height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .actualites .actualite .actualite-texte .actualite-date {
    font-size: 17px;
  }
}
#liens-livres img {
  display: block;
  width: 100%;
  max-width: 550px;
  margin: auto auto 20px;
}
@media screen and (max-width: 1199px) {
  #liens-livres img {
    max-width: 400px;
  }
}
@media screen and (max-width: 991px) {
  #liens-livres img {
    max-width: 350px;
  }
}
@media screen and (max-width: 767px) {
  #liens-livres img {
    max-width: 300px;
  }
}

#info-livre #contenu-livre {
  display: flex !important;
  column-gap: 20px;
  margin-bottom: 50px;
}
#info-livre #contenu-livre #texte-livre {
  width: 60%;
}
#info-livre #contenu-livre #texte-livre p {
  text-align: start;
}
#info-livre #contenu-livre #couverture-livre {
  width: 40%;
}
#info-livre #contenu-livre #couverture-livre img {
  cursor: pointer;
  width: 100%;
  max-height: 750px;
  object-fit: contain;
}
#info-livre h3 {
  margin-bottom: 25px !important;
}
#info-livre #extraits-livre > div {
  width: 100%;
  text-align: center;
}
#info-livre #extraits-livre > div img {
  max-height: 900px;
  object-fit: contain;
  cursor: pointer;
  margin: auto;
}
@media screen and (max-width: 991px) {
  #info-livre #contenu-livre {
    flex-direction: column;
    row-gap: 30px;
  }
  #info-livre #contenu-livre #texte-livre, #info-livre #contenu-livre #couverture-livre {
    width: 100%;
  }
  #info-livre #contenu-livre #couverture-livre img {
    max-height: 600px;
  }
}
@media screen and (max-width: 767px) {
  #info-livre #contenu-livre #couverture-livre img {
    max-height: 500px;
  }
  #info-livre #extraits-livre > div img {
    max-height: 600px;
  }
}

#liste-livres {
  margin-top: 50px;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 100px;
  row-gap: 100px;
}
#liste-livres img {
  width: 100%;
  max-height: 750px;
  object-fit: contain;
  cursor: pointer;
  transition: 0.3s;
}
#liste-livres img:hover {
  transform: scale(0.9);
}
@media screen and (max-width: 991px) {
  #liste-livres {
    column-gap: 50px;
    row-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  #liste-livres {
    column-gap: 20px;
    row-gap: 20px;
  }
}

#chronologie {
  width: 100%;
  margin-top: 100px;
  cursor: pointer;
}

.personnages {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
.personnages .personnage {
  cursor: pointer;
  border-radius: 100%;
  position: relative;
  aspect-ratio: 1/1;
  transition: 0.3s;
}
.personnages .personnage img {
  width: 100%;
  position: absolute;
  z-index: 1;
}
.personnages .personnage img.active {
  z-index: 3;
}
.personnages .personnage:hover {
  transform: scale(0.9);
}
@media screen and (max-width: 1199px) {
  .personnages {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .personnages {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .personnages {
    padding-top: 30px;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

#perso-info {
  z-index: 10;
  display: none;
  position: fixed;
  top: 50%;
  transform: translate(0%, -50%);
  background: #1e77c6;
  border: 3px solid #000;
  border-radius: 30px;
  color: #fff;
  max-width: 1372px;
  margin-right: 50px;
  padding: 50px 0;
  overflow: hidden;
  max-height: 90vh;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#perso-info > div {
  max-height: calc(90vh - 100px);
  overflow: scroll;
  padding: 0 50px;
  scrollbar-color: #fff transparent;
}
#perso-info .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 28px;
  align-items: center;
}
#perso-info .content h3 {
  text-align: center;
}
#perso-info .content p, #perso-info .content ul {
  text-align: start !important;
}
#perso-info .content ul {
  margin-left: 20px !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  row-gap: 5px !important;
}
#perso-info .content #perso-imgs {
  position: relative;
  max-width: 300px;
  width: 100%;
  aspect-ratio: 1/1;
}
#perso-info .content #perso-imgs img {
  width: 100%;
  position: absolute;
  z-index: 1;
}
#perso-info .content #perso-imgs img.active {
  z-index: 3;
}
#perso-info .close {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
#perso-info .close:hover, #perso-info .close:focus {
  color: #000;
}
@media screen and (max-width: 767px) {
  #perso-info {
    margin-right: 30px;
    padding: 30px 0;
  }
  #perso-info > div {
    max-height: calc(90vh - 60px);
    padding: 0 30px;
  }
  #perso-info .close {
    right: 15px;
  }
}

.galerie-h2 {
  margin: 0 !important;
}

.galerie-section {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.galerie-section .galerie-date {
  font-weight: 700;
}
.galerie-section .galerie-images > div {
  width: 100%;
  text-align: center;
}
.galerie-section .galerie-images > div img {
  max-width: max-content;
  width: 100%;
  cursor: pointer;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .galerie-section {
    row-gap: 15px;
  }
}

.galerie-navigation {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}
.galerie-navigation a {
  font-family: "Archivo Black", sans-serif;
  font-size: 35px;
  text-align: center;
  color: #fff !important;
  background: #1e77c6;
  transition: 0.3s;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 68px;
}
.galerie-navigation a.current-page {
  background: #1a9dff;
  cursor: initial;
}
.galerie-navigation a:hover {
  background: #1a9dff;
}
@media screen and (max-width: 1199px) {
  .galerie-navigation a {
    font-size: 27px;
    max-width: 58px;
  }
}
@media screen and (max-width: 991px) {
  .galerie-navigation {
    column-gap: 7px;
  }
  .galerie-navigation a {
    font-size: 23px;
    max-width: 53px;
  }
}
@media screen and (max-width: 767px) {
  .galerie-navigation {
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 5px;
  }
  .galerie-navigation a {
    padding: 8px;
    font-size: 16px;
    max-width: 39px;
  }
}

.critique-h2 hr {
  margin: 5px;
  border: 2px dashed #000;
}
.critique-h2 span {
  text-transform: none;
}
.critique-h2:first-of-type {
  margin-top: 0 !important;
}

.critique {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.critique .critique-images {
  width: 25%;
}
.critique .critique-images img {
  cursor: pointer;
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}
.critique .critique-iframe {
  width: 75%;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.critique .critique-iframe a {
  font-weight: 700;
}
.critique .critique-iframe .iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
}
.critique .critique-iframe .iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 99%;
  height: 99%;
}
@media screen and (max-width: 991px) {
  .critique {
    flex-direction: column;
    row-gap: 25px;
  }
  .critique .critique-images, .critique .critique-iframe {
    width: 100%;
  }
  .critique .critique-images img {
    max-height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .critique {
    row-gap: 20px;
  }
  .critique .critique-images img {
    max-height: 300px;
  }
  .critique .critique-iframe {
    row-gap: 20px;
  }
}

#auteurs {
  display: flex;
  column-gap: 50px;
}
#auteurs > div {
  width: calc((100% - 50px) / 2);
}
#auteurs > div h2 {
  margin-top: 0 !important;
}
#auteurs > div .section {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
}
#auteurs > div .section img {
  max-width: 300px;
  width: 100%;
  border-radius: 100%;
  border: 3px solid #000;
}
#auteurs > div .section p {
  text-align: start !important;
}
@media screen and (max-width: 1199px) {
  #auteurs {
    column-gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  #auteurs {
    flex-direction: column;
    row-gap: 50px;
  }
  #auteurs > div {
    width: 100%;
  }
  #auteurs > div .section img {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  #auteurs > div .section {
    row-gap: 15px;
  }
  #auteurs > div .section img {
    max-width: 200px;
  }
}

#a-propos-social {
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px;
  row-gap: 30px;
  justify-content: space-around;
}
#a-propos-social > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 5px;
}
#a-propos-social > div h3 {
  text-transform: none !important;
}
#a-propos-social > div a {
  text-align: center;
  word-break: break-word;
  transition: 0.3s;
}
#a-propos-social > div a.lien-svg {
  display: flex;
}
#a-propos-social > div a.lien-svg svg {
  max-width: 100px;
  width: 100%;
  transition: 0.3s;
}
#a-propos-social > div a:hover.lien-svg svg {
  fill: #1e77c6;
}
@media screen and (max-width: 1199px) {
  #a-propos-social > div a.lien-svg svg {
    max-width: 75px;
  }
}
@media screen and (max-width: 767px) {
  #a-propos-social > div {
    width: 100%;
  }
  #a-propos-social > div a.lien-svg svg {
    max-width: 50px;
  }
}

header {
  display: block;
  width: 100%;
  height: 480px;
  background-image: url("/src/views/assets/images/banniere.jpg");
  background-size: cover;
  animation: headerScroll 100s linear infinite;
  box-shadow: inset 0px 5px 0px 0px #000, inset 0px -5px 0px 0px #000;
}
header > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  column-gap: 170px;
  max-width: 1756px;
  padding: 0 50px;
  height: 100%;
  margin: auto;
  overflow: hidden;
}
header > div img {
  justify-self: center;
}
header > div img#header-m-y {
  max-width: 525px;
  width: 100%;
}
header > div img#header-spamm {
  max-width: 587px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  header > div {
    column-gap: 100px;
  }
}
@media screen and (max-width: 991px) {
  header {
    max-height: 300px;
  }
  header > div {
    column-gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  header {
    max-height: 250px;
  }
  header > div {
    grid-template-columns: 1fr;
    padding: 0 30px;
  }
  header > div img#header-m-y,
  header > div img#header-spamm {
    max-width: 275px;
  }
}

#page nav#nav {
  width: 339px;
  position: relative;
}
#page nav#nav > div {
  position: sticky;
  top: 0;
}
#page nav#nav > div > a {
  display: flex;
  width: fit-content;
}
#page nav#nav > div > a img {
  max-width: 110px;
  width: 100%;
  position: relative;
}
#page nav#nav > div #menu {
  display: flex;
  flex-direction: column;
  row-gap: 37px;
  margin: 20px 0 0 12px;
  position: relative;
}
#page nav#nav > div #menu a {
  text-decoration: none;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 35px;
  text-align: center;
  background: #1e77c6;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 10px 30px;
  transition: 0.3s;
}
#page nav#nav > div #menu a:hover {
  background: #1a9dff;
}
#page nav#nav > div::before {
  content: "";
  position: absolute;
  height: calc(100% + 47px);
  width: 46px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 30px;
}
@media screen and (max-width: 1199px) {
  #page nav#nav > div #menu {
    row-gap: 27px;
  }
  #page nav#nav > div #menu a {
    font-size: 27px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 991px) {
  #page nav#nav > div > a img {
    max-width: 100px;
  }
  #page nav#nav > div #menu {
    row-gap: 20px;
  }
  #page nav#nav > div #menu a {
    font-size: 23px;
  }
  #page nav#nav > div::before {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  #page nav#nav {
    display: none;
  }
}
#page nav#nav-mobile {
  display: none;
  margin-bottom: 50px;
}
#page nav#nav-mobile > div {
  display: flex;
  flex-direction: column;
  background: #1e77c6;
  padding: 15px 20px 20px;
  border: 3px solid #000;
  border-radius: 15px;
}
#page nav#nav-mobile > div > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  max-height: 75px;
  height: 100%;
}
#page nav#nav-mobile > div > span > a {
  display: flex;
  width: fit-content;
  transition: 0.3s;
}
#page nav#nav-mobile > div > span > a img {
  max-width: 75px;
  width: 100%;
  position: relative;
}
#page nav#nav-mobile > div > span > a#burger:hover {
  filter: invert(100%) sepia(0%) saturate(23%) hue-rotate(53deg) brightness(94%) contrast(105%);
}
#page nav#nav-mobile > div > span > a:not(#burger) {
  margin: -15px 0 0 -27px;
}
#page nav#nav-mobile > div #menu-mobile {
  display: none;
}
#page nav#nav-mobile > div #menu-mobile > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
  margin-top: 40px;
}
#page nav#nav-mobile > div #menu-mobile > div a {
  text-decoration: none;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
  word-break: break-word;
  text-transform: uppercase;
  transition: 0.3s;
}
#page nav#nav-mobile > div #menu-mobile > div a:hover {
  color: #000;
}
@media screen and (max-width: 767px) {
  #page nav#nav-mobile {
    display: block;
  }
}

@keyframes headerScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -7191px 0;
  }
}
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #1e77c6;
  border-top: 3px solid #000;
}
footer #footer {
  max-width: 1756px;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  column-gap: 30px;
}
footer #footer .social, footer #footer .copyright {
  display: flex;
  flex-direction: column;
  width: 50%;
  row-gap: 20px;
}
footer #footer .social div, footer #footer .copyright div {
  display: flex;
  justify-content: center;
  align-content: center;
  column-gap: 20px;
}
footer #footer .social a {
  color: #fff;
  display: flex;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}
footer #footer .social a svg {
  width: 40px;
  fill: #fff;
  transition: 0.3s;
}
footer #footer .social a:hover {
  color: #000;
}
footer #footer .social a:hover svg {
  fill: #000;
}
footer #footer .copyright p {
  color: #fff;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer #footer {
    padding: 20px 30px;
  }
  footer #footer .social div, footer #footer .copyright div {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  footer #footer .social a svg {
    width: 30px;
  }
}

body.page-romans {
  background: #4d4d4d;
}
body.page-romans #page h1, body.page-romans #page h2 {
  color: #fff;
}
body.page-romans #page #container .section {
  background: #cccccc;
  border: 2px solid #c1272d;
}
body.page-romans #page nav#nav > div #menu a {
  background: #1a1a1a;
  border: 1px solid #c1272d;
}
body.page-romans #page nav#nav > div #menu a:hover {
  background: #666666;
}
body.page-romans #page nav#nav > div::before {
  background: #cccccc;
  border: 1px solid #c1272d;
}
body.page-romans footer {
  background: #1a1a1a;
}
body.page-romans footer #footer .social a:hover {
  color: #c1272d;
}
body.page-romans footer #footer .social a:hover svg {
  fill: #c1272d;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
}
.modal .modal-content {
  position: relative;
  margin: auto;
  padding: 0 50px 150px;
  text-align: center;
}
.modal .modal-content img {
  max-width: max-content;
  width: 100%;
}
.modal .close {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
.modal .close:hover, .modal .close:focus {
  color: #999;
}
@media screen and (max-width: 767px) {
  .modal {
    padding-top: 75px;
  }
  .modal .modal-content {
    padding: 0 30px 100px;
  }
  .modal .close {
    right: 15px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  list-style: none;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px !important;
}
.slick-dots li {
  font-size: 0;
}
.slick-dots li button {
  cursor: pointer;
  line-height: 0;
  border: 0;
  background: none;
  font-size: 0;
  padding: 0;
}
.slick-dots li button::before {
  content: "";
  opacity: 1;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  width: 20px;
  transition: 0.3s;
}
.slick-dots li.slick-active button::before, .slick-dots li:hover button::before {
  background-color: #1e77c6;
}

#actualites-dots .slick-dots li button::before {
  height: 30px;
  width: 30px;
}
@media screen and (max-width: 767px) {
  #actualites-dots .slick-dots li button::before {
    height: 20px;
    width: 20px;
  }
}

.actualite-images .slick-dots,
.critique-images .slick-dots,
.galerie-images .slick-dots,
#extraits-livre .slick-dots {
  padding-top: 10px !important;
}

body.page-romans .slick-dots li button::before {
  border: 1px solid #c1272d;
  background-color: #666666;
}
body.page-romans .slick-dots li.slick-active button::before, body.page-romans .slick-dots li:hover button::before {
  background-color: #1a1a1a;
}

/*# sourceMappingURL=style.css.map */
