@charset "UTF-8";
/*
Copyright (c) 2010, Arterrien. All rights reserved.
version: 1.0.0
*/
/* ------------------------- */
/* -------- RESET ---------- */
/* ------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Normalisation de marges et des réserves */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquotte, th, td {
  margin: 0;
  padding: 0;
}

/* Normalisation des tailles des polices pour les en-têtes */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

/* Normalisation des listes */
ol, ul {
  list-style: none;
}

/* Normalisation des graisses des fontes */
adress, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

/* Supression des bordures et des réserves dans les tableaux */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Supression des bordures dans les éléments fieldset et img */
fieldset, img {
  border: 0;
}

/* Debug gecko */
img {
  display: block;
}

/* Alignement du texte à gauche dans caption et th */
caption, th {
  text-align: left;
}

/* Suppression des guillemets autour de q */
q:before, q:after {
  content: "";
}

/* COULEURS */
:root {
  --swiper-theme-color: $gris;
  --swiper-navigation-size: 16px;
}

.border {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

.cap {
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.grand_titre,
.chapo {
  font-family: "Georgia", serif;
  font-style: italic;
}

.grand_titre {
  font-size: 1.875rem;
  font-weight: normal;
  margin: 10px 0;
  line-height: 1em;
}

.chapo {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.small {
  font-size: 0.8em;
}

.mb-20 {
  margin-bottom: 20px;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.p-3 {
  padding: 1rem;
}

.text-center {
  text-align: center;
}

.gap-3 {
  gap: 1rem;
}

.img-fluid {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  font: 13px/20px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

h2 {
  margin: 10px 0;
  font-weight: normal;
}

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

img {
  display: block;
}

figure {
  margin: 0;
}

.formulaire_recherche {
  margin-bottom: 20px;
}
.formulaire_recherche label,
.formulaire_recherche .submit {
  display: none;
}
.formulaire_recherche input[type=search],
.formulaire_recherche input[type=text] {
  width: 100%;
  line-height: 20px;
  padding: 4px 5px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #999999;
  border-radius: 4px;
  font-size: 100%;
}

form > div,
form li {
  margin-bottom: 10px;
}
form label {
  display: block;
}
form input[type=text],
form input[type=email],
form textarea {
  display: block;
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
form button[type=submit],
form input[type=submit] {
  padding: 15px 30px;
  text-transform: uppercase;
  background-color: #e6e6e6;
  border: 0 none;
  border-radius: 6px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
form button[type=submit]:hover,
form input[type=submit]:hover {
  background-color: #000;
  color: #fff;
}
form p.boutons {
  display: flex;
  gap: 30px;
}
form p.boutons a.cancel {
  padding: 15px 30px;
  border-radius: 6px;
  border: 1px solid #808080;
  text-transform: uppercase;
}
form p.boutons a.cancel:hover {
  background-color: #f2f2f2;
}
form .previsu ul {
  margin-bottom: 20px;
}
form .form-group {
  margin-bottom: 1rem;
}
form .boutons .image_loading {
  order: 2;
}

.reponse_formulaire {
  padding: 2rem;
  margin: 1rem 0;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
}
.reponse_formulaire p:last-of-type {
  margin-bottom: 0 !important;
}

.btn {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0 none;
  background-color: transparent;
  padding: 0;
}
.btn.btn-toggle-nav {
  width: 40px;
  height: 40px;
  padding: 6px;
}
.btn.btn-toggle-nav img {
  width: 100%;
  height: 100%;
}

.page-wrapper {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-wrapper {
    width: 740px;
    flex-direction: row;
  }
}
@media (min-width: 990px) {
  .page-wrapper {
    width: 920px;
  }
}

.page-article {
  /* Page contact */
}
.page-article.article-6 .article .cols {
  gap: 2rem;
}

.nav-site {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .nav-site {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    z-index: 100;
    transform: translate3d(110%, 0, 0);
    transition: transform 0.5s;
  }
  .nav-site.nav-open {
    transform: translate3d(0%, 0, 0);
  }
}
@media (min-width: 768px) {
  .nav-site {
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
  }
}
.nav-site ul {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .nav-site ul {
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 990px) {
  .nav-site ul {
    gap: 20px;
  }
}
.nav-site .menu-item {
  position: relative;
}
.nav-site .menu-item a {
  display: block;
  padding: 5px 0;
  font-weight: bold;
  text-transform: uppercase;
  color: #808080;
  position: relative;
  letter-spacing: 1px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .nav-site .menu-item a {
    letter-spacing: 0.07em;
  }
}
@media (min-width: 990px) {
  .nav-site .menu-item a {
    letter-spacing: 1px;
  }
}
@media (min-width: 768px) {
  .nav-site .menu-item a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #000;
    left: 50%;
    margin-left: -4px;
    display: none;
  }
}
.nav-site .menu-item a.active, .nav-site .menu-item a:hover {
  color: #000;
}
.nav-site .menu-item a.active:after, .nav-site .menu-item a:hover:after {
  display: block;
}
.nav-site .menu-item:before {
  transform: translateY(-50%);
  background-color: #000;
}
@media (min-width: 768px) {
  .nav-site .menu-item:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 12px;
    top: 50%;
    left: -6px;
  }
}
@media (min-width: 990px) {
  .nav-site .menu-item:before {
    left: -14px;
  }
}
.nav-site .menu-item:first-child:before {
  content: none;
}

.nav-site-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .nav-site-header {
    display: none;
  }
}

.page-header {
  margin-bottom: 40px;
  padding-top: 65px;
  border-bottom: 3px solid #000;
  background: #fff url(../images/top.png) center 30px no-repeat;
}
.page-header .brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .page-header .brand button {
    display: none;
  }
}
.page-header h1 {
  margin-bottom: 5px;
}

.page-content {
  margin-bottom: 20px;
}
.page-content a {
  color: #808080;
}
.page-content .row {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-content .row {
    flex-direction: row;
    gap: 30px;
  }
}
.page-content .main-content {
  width: 100%;
}
@media (min-width: 768px) {
  .page-content .main-content {
    max-width: 496px;
  }
}
@media (min-width: 990px) {
  .page-content .main-content {
    max-width: 664px;
  }
}
.page-content .main-content .rubrique .top,
.page-content .main-content .article .top {
  margin-bottom: 30px;
}
.page-content .main-content .rubrique .cols,
.page-content .main-content .article .cols {
  display: flex;
  justify-content: space-between;
}
.page-content .main-content .rubrique .cols .texte p,
.page-content .main-content .article .cols .texte p {
  margin-bottom: 10px;
}
.page-content .main-content .rubrique .cols a,
.page-content .main-content .article .cols a {
  color: #808080;
}
.page-content .main-content .rubrique .cols a:hover,
.page-content .main-content .article .cols a:hover {
  color: #c41239;
}
.page-content .main-content .rubrique .cols .info,
.page-content .main-content .article .cols .info {
  width: 170px;
}
.page-content .main-content .rubrique .cols .info .on a,
.page-content .main-content .article .cols .info .on a {
  color: #000;
}
.page-content .main-content .presentation {
  width: 100%;
}
.page-content .main-content .presentation p,
.page-content .main-content .presentation iframe,
.page-content .main-content .presentation .spip_document {
  margin-bottom: 10px;
}
.page-content .breadcrumb {
  font-family: "Georgia", serif;
  font-size: 1.25rem;
  line-height: 1.25em;
  font-style: italic;
  flex-grow: 1;
  margin: 0;
}
.page-content .breadcrumb a {
  color: #808080;
}
.page-content .breadcrumb a:hover {
  color: #c41239;
}
.page-content .logout {
  color: #808080;
}
.page-content .logout:hover {
  color: #c41239;
}
.page-content .descriptif {
  margin-bottom: 20px;
}
.page-content .descriptif p {
  margin-bottom: 10px;
}
.page-content .sidebar {
  width: 100%;
}
@media (min-width: 768px) {
  .page-content .sidebar {
    width: 280px;
  }
}

.page-footer {
  background: #fff url("../images/bottom.png") no-repeat 0 bottom;
  padding: 20px 0 100px;
  margin-bottom: 10px;
}
.page-footer .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 0 30px;
}
@media (min-width: 768px) {
  .page-footer .row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.page-footer h2 {
  font-family: "Georgia", serif;
  margin-bottom: 10px;
  font-weight: normal;
}
.page-footer a {
  color: #808080;
}
.page-footer a:hover {
  color: #000;
}
.page-footer .nav-site-footer {
  font-family: "Georgia", serif;
}
.page-footer .nav-site-footer a {
  color: #000;
}
.page-footer .nav-site-footer a:hover {
  color: #808080;
}
.page-footer .nav-site-footer .on a {
  color: #808080;
}

.sidebar h3 {
  margin-bottom: 10px;
}
.sidebar .bandeau {
  margin-bottom: 10px;
}
.sidebar .bandeau a {
  display: block;
  color: #fff;
  padding: 4px 10px;
  background-color: #000;
}
.sidebar .bandeau a:hover {
  background-color: #999999;
}
.sidebar .themes {
  margin-bottom: 20px;
}
.sidebar .themes a {
  color: #808080;
}
.sidebar .themes a:hover {
  color: #000;
}
.sidebar .themes .on a {
  color: #000;
  font-style: italic;
}

.ouvrage {
  margin-bottom: 20px;
}
.ouvrage .top {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}
.ouvrage .top.top-ouvrage {
  min-height: 36px;
  display: flex;
  align-items: center;
}
.ouvrage .cols {
  display: grid;
  column-gap: 20px;
  grid-template-columns: 100px auto;
}
@media (min-width: 768px) {
  .ouvrage .cols {
    column-gap: 30px;
    grid-template-columns: 170px auto;
  }
}
.ouvrage .info > div, .ouvrage .info > ul {
  margin-bottom: 1rem;
}
.ouvrage .info .documents .pdf a {
  display: flex;
  gap: 0.25rem;
}
.ouvrage a {
  color: #808080;
}
.ouvrage a:hover {
  color: #c41239;
}
.ouvrage img {
  max-width: 100%;
  height: auto;
  border: 1px solid lightgray;
}
.ouvrage img.spip_document_icone {
  border: 0 none;
}
.ouvrage.multi .top {
  justify-content: space-between;
  position: relative;
}
.ouvrage.multi .main {
  position: relative;
}
.ouvrage.multi .swiper {
  /*margin-left: 2.5rem;
  margin-right: 2.5rem;*/
}
.ouvrage.multi .swiper-navigation-container {
  position: relative;
  width: 60px;
}
.ouvrage.multi .swiper-button-prev {
  left: 0;
}
.ouvrage.multi .swiper-button-next {
  right: 0;
}

.content-ouvrage .top {
  position: relative;
  margin-bottom: 20px;
}
.content-ouvrage .top .sous-titre {
  font-size: 1rem;
  font-family: "Georgia", serif;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: normal;
}
.content-ouvrage .top .auteur {
  font-family: "Georgia", serif;
  font-size: 1.125rem;
}
.content-ouvrage .top .auteur a {
  color: #808080;
}
.content-ouvrage .top .auteur a:hover {
  color: #c41239;
}
.content-ouvrage .top .social {
  position: absolute;
  top: 50px;
  right: 0;
}
.content-ouvrage .cols {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.content-ouvrage .cols .info {
  width: 170px;
}
.content-ouvrage .cols .info .couverture,
.content-ouvrage .cols .info .technique {
  margin-bottom: 20px;
}
.content-ouvrage .cols .info .couverture img {
  border: 1px solid lightgray;
}
.content-ouvrage .cols .info .documents {
  margin-bottom: 20px;
}
.content-ouvrage .cols .info .documents li {
  margin-bottom: 10px;
}
.content-ouvrage .cols .info .documents li a {
  display: flex;
  justify-content: space-between;
  color: #808080;
  line-height: normal;
}
.content-ouvrage .cols .info .documents li a:hover {
  color: #000;
}
.content-ouvrage .cols .info .documents li a .right {
  width: 130px;
}
.content-ouvrage .cols .info .documents li.boutique .left, .content-ouvrage .cols .info .documents li.lire .left, .content-ouvrage .cols .info .documents li.audio .left, .content-ouvrage .cols .info .documents li.acheter_numerique .left {
  width: 30px;
  height: 30px;
}
.content-ouvrage .cols .info .documents li.boutique .left {
  background: transparent url("../images/caddie.png") no-repeat 0 0;
}
.content-ouvrage .cols .info .documents li.lire .left {
  background: transparent url("../images/feuilleter.jpg") no-repeat 0 0;
}
.content-ouvrage .cols .info .documents li.audio .left {
  background: transparent url("../images/casque.jpg") no-repeat 0 0;
}
.content-ouvrage .cols .info .documents li.acheter_numerique .left {
  background: transparent url("../images/liseuse.jpg") no-repeat 0 0;
}
.content-ouvrage .cols .info .revue-de-presse .cap {
  margin-bottom: 10px;
}
.content-ouvrage .cols .presentation p {
  margin-bottom: 10px;
}
.content-ouvrage .cols .presentation .descriptif {
  font-weight: 500;
  margin-bottom: 20px;
}
.content-ouvrage .spip_document {
  margin-bottom: 10px;
}

.liste_ouvrages {
  margin-bottom: 30px;
}
.liste_ouvrages > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 30px;
}
@media (min-width: 370px) {
  .liste_ouvrages > ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .liste_ouvrages > ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 990px) {
  .liste_ouvrages > ul {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.liste_ouvrages .couverture a {
  color: #808080;
}
.liste_ouvrages .couverture a:hover {
  color: #c41239;
}
.liste_ouvrages .couverture img {
  border: 1px solid lightgray;
}
.liste_ouvrages .couverture .vignette {
  margin-bottom: 10px;
}
.liste_ouvrages .couverture .legende {
  font-size: 0.75rem;
  line-height: normal;
}

.ouvrage-item h2 a {
  color: #000;
}

.pagination-items {
  display: flex;
  gap: 0.5rem;
  margin: 20px 0;
}
.pagination-items .pagination-item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #d9d9d9;
  border-radius: 999px;
}
.pagination-items .pagination-item-label:hover {
  background-color: #bfbfbf;
}
.pagination-items .pagination-item.active .pagination-item-label {
  background-color: #c41239;
  color: #fff;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 85%;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.swiper-slide.swiper-slide-active {
  opacity: 1;
}

.soutiens {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: #808080;
  font-family: "Georgia", serif;
  font-size: 1rem;
}

.podcast-item {
  transition: transform 0.2s;
}
.podcast-item:hover {
  transform: scale(1.1);
}

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