@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button,
textarea,
input,
select,
a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

@font-face {
  font-family: "Adelphe";
  src: local("Adelphe"), url("../fonts/Adelphe-FructidorRegular.eec5c687809d.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Adelphe";
  src: local("Adelphe"), url("../fonts/Adelphe-FructidorItalic.ccccd7d60062.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "ApfelGrotezk";
  src: local("ApfelGrotezk"), url("../fonts/ApfelGrotezk-Regular.f197efafc8b2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Amiamie";
  src: local("Amiamie"), url("../fonts/Amiamie-Regular.11f51822713d.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Amiamie";
  src: local("Amiamie"), url("../fonts/Amiamie-Italic.41a317d411ec.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
}
:root {
  /* color */
  --main-background-color: white;
  --second-background-color: blue;
  --main-color: #0000ffff;
  --second-color: white;
  --third-color: red;
  /* font */
  --main-font-size: 1rem;
  --second-font-size: 2rem;
  --third-font-size: 3rem;
  --main-line-height: 1.3rem;
  --second-line-height: 2.3rem;
  --third-line-height: 3rem;
  --main-font-family: "Adelphe", serif;
  --second-font-family: "ApfelGrotezk", sans-serif;
  --third-font-family: "Amiamie", sans-serif;
  /* margins */
  --pad: 6px;
  /* size */
  --bar-height: 18px;
}

/*

- body
--- container
------ site-header
----------- title
----------- empty
------ site-wrapper
----------- inner

 */
body {
  display: flex;
  flex-direction: column;
  font-family: "Amiamie", sans-serif;
  font-size: 14px;
  background-color: #f6f5f5;
}

::-moz-selection {
  background: #ff4b58;
}

::selection {
  background: #ff4b58;
}

.lightblack {
  color: #2d2d2d;
}

.brown {
  color: #70500a;
}

.innerbrown {
  color: #4e2600;
  background-color: #f2f2f2;
}

.lightpink {
  color: #4e2600;
  background-color: #ffd6c5;
}

.menthe {
  color: #1e9361;
}

.green {
  color: #000083;
  background-color: #00ffc3;
}

.blue {
  color: blue;
}

.red {
  color: #ff2c00;
}

.redbrown {
  color: #800b05;
}

.innerred {
  color: #ffd6c5;
  background-color: #ff4b58;
}

.grey {
  color: #781a00;
  background-color: #b6b8c1;
}

.right {
  justify-content: right;
}

.arrow-up::after {
  content: "↑";
  padding-left: 5px;
}

.arrow-down::after {
  content: "↓";
  padding-left: 5px;
}

.sort {
  cursor: pointer;
}
.sort:hover {
  color: #4e2600;
}

.container {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  /* navigation */
  /* structure */
}
.container .site-header {
  display: grid;
  grid-template-columns: 50% 50%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.container .site-header .non-bar {
  min-height: var(--bar-height);
  height: max-content;
  line-height: var(--bar-height);
}
.container .site-header .non-bar span {
  display: flex;
  align-items: center;
  padding: var(--pad);
  color: #781a00;
}
.container .site-header .bar {
  min-height: var(--bar-height);
  height: max-content;
  line-height: var(--bar-height);
}
.container .site-header .bar span {
  display: flex;
  align-items: center;
  padding: var(--pad);
  cursor: pointer;
  color: #781a00;
}
.container .site-header .bar span:hover {
  background-color: #ffffff;
}
.container .navigation-mobile {
  display: none;
}
.container .site-footer {
  right: 0;
  bottom: 0;
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  width: 100px;
  margin: 0 10px 10px 0;
  z-index: 5;
}
.container .site-footer .box {
  width: 50%;
  height: 0;
  padding-bottom: 50%;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  border-spacing: 0;
}
.container .site-footer .box a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .site-footer .box a:hover {
  background-color: white;
}
.container .site-footer .box:nth-child(1) {
  border: 1px solid black;
}
.container .site-footer .box:nth-child(2) {
  border-top: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}
.container .site-footer .box:nth-child(3) {
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}
.container .site-footer .box:nth-child(4) {
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}
.container .site-footer .box:nth-child(5) {
  border-inline: 1px solid black;
  border-bottom: 1px solid black;
}
.container .site-footer .box:nth-child(6) {
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}
.container .site-footer .box:nth-child(7) {
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
}
.container .site-footer .box:nth-child(8) {
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}
.container .site-footer .box:nth-child(9) {
  border-right: 1px solid black;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
}
.container .site-footer .box:nth-child(10) {
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}
.container .site-wrapper {
  margin-top: var(--bar-height);
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  height: 100vh;
  /* page modal verte */
  /* page index rouge */
}
.container .site-wrapper .open {
  display: flex;
}
.container .site-wrapper .close {
  display: none;
}
.container .site-wrapper .modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 29px;
  width: 100%;
  overflow: auto;
  background-color: #00ffc3;
  flex-direction: column;
}
.container .site-wrapper .modal .bar {
  height: max-content;
  padding: 0 0 0 5px;
}
.container .site-wrapper .modal .extrait-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  height: fit-content;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #781a00;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .modal .extrait-header .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  color: #1e9361;
}
.container .site-wrapper .modal .extrait-meta {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  height: fit-content;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #781a00;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .modal .extrait-meta .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
}
.container .site-wrapper .modal .extrait-meta .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .modal .extrait-meta .bar a:hover {
  color: white;
}
.container .site-wrapper .modal .index-liste {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.container .site-wrapper .modal .index-liste .index-header {
  display: grid;
  grid-template-columns: 1fr 1fr 50%;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #781a00;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .modal .index-liste .index-header .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  color: #1e9361;
}
.container .site-wrapper .modal .index-liste .index-corpus {
  display: grid;
  grid-template-columns: 1fr 1fr 50%;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #781a00;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .modal .index-liste .index-corpus .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
}
.container .site-wrapper .modal .index-liste .index-corpus .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .modal .index-liste .index-corpus .bar a:hover {
  color: white;
}
.container .site-wrapper .modal .index-liste .index-corpus li {
  margin: 0 0 5px 0;
}
.container .site-wrapper .modal .index-liste .index-corpus li:last-child {
  margin: 0;
}
.container .site-wrapper .inner {
  margin-top: 12px;
  height: 100%;
  background-color: #ff4b58;
  /* information */
  /* typologie */
  /* corpus */
  /* extrait */
  /* store */
  /* auteur */
  /* oeuvre */
  /* recherche */
  /* outils */
  /* editeur */
  /* index */
  /* extrait */
}
.container .site-wrapper .inner .information {
  display: flex;
  flex-direction: column;
  background-color: #ff4b58;
  padding: 10px 0 10px 10px;
}
.container .site-wrapper .inner .information a {
  text-decoration: underline;
}
.container .site-wrapper .inner .information a:hover {
  color: white;
}
.container .site-wrapper .inner .information header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.container .site-wrapper .inner .information header p {
  width: 50%;
  margin: 0 0 10px 0;
  color: #781a00;
}
.container .site-wrapper .inner .information h1 {
  font-weight: 400;
  margin: 10px 0 10px 0;
  color: #781a00;
}
.container .site-wrapper .inner .information .user .user-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .information .user .user-header .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .information .user .user-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .information .user .user-content .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #781a00;
}
.container .site-wrapper .inner .information .user .user-content ul {
  margin: 0 0 0 0;
}
.container .site-wrapper .inner .information .user .user-content ul li {
  margin: 0 0 10px 0;
}
.container .site-wrapper .inner .typologies {
  background-color: #ff4b58;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container .site-wrapper .inner .typologies .typologies-header tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .typologies .typologies-header tr th {
  text-align: left;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .typologies .typologies-header tr .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .typologies .typologies-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .typologies .typologies-item td {
  padding: 0;
}
.container .site-wrapper .inner .typologies .typologies-item .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
}
.container .site-wrapper .inner .typologies .typologies-item .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .inner .typologies .typologies-item .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .typologies .typologies-item li {
  margin: 0 0 5px 0;
}
.container .site-wrapper .inner .typologies .typologies-item li:last-child {
  margin: 0;
}
.container .site-wrapper .inner .corpus {
  background-color: #ff4b58;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container .site-wrapper .inner .corpus .corpus-header tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .corpus .corpus-header tr th {
  text-align: left;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .corpus .corpus-header tr .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .corpus .corpus-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .corpus .corpus-item td {
  padding: 0;
}
.container .site-wrapper .inner .corpus .corpus-item .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
}
.container .site-wrapper .inner .corpus .corpus-item .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .inner .corpus .corpus-item .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .corpus .corpus-item li {
  margin: 0 0 5px 0;
}
.container .site-wrapper .inner .corpus .corpus-item li:last-child {
  margin: 0;
}
.container .site-wrapper .inner .extraits {
  background-color: #ff4b58;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container .site-wrapper .inner .extraits .extraits-header tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  gap: 10px;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .extraits .extraits-header tr th {
  text-align: left;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .extraits .extraits-header tr .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .extraits .extraits-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .extraits .extraits-item .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
}
.container .site-wrapper .inner .extraits .extraits-item .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .inner .extraits .extraits-item .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .store {
  background-color: #ff4b58;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container .site-wrapper .inner .store .store-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .store .store-header .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .store .store-header .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: black;
}
.container .site-wrapper .inner .store .store-header .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .store .store-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .store .store-item .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
}
.container .site-wrapper .inner .store .store-item .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .inner .store .store-item .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .auteurs {
  background-color: #ff4b58;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container .site-wrapper .inner .auteurs .auteurs-header tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .auteurs .auteurs-header tr th {
  text-align: left;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .auteurs .auteurs-header tr .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .auteurs .auteurs-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: min-content;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .auteurs .auteurs-item .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
}
.container .site-wrapper .inner .auteurs .auteurs-item .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .inner .auteurs .auteurs-item .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .oeuvres {
  background-color: #ff4b58;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container .site-wrapper .inner .oeuvres .oeuvres-header tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .oeuvres .oeuvres-header tr th {
  text-align: left;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .oeuvres .oeuvres-header tr .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .oeuvres .oeuvres-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .oeuvres .oeuvres-item td {
  padding: 0;
}
.container .site-wrapper .inner .oeuvres .oeuvres-item .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
}
.container .site-wrapper .inner .oeuvres .oeuvres-item .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .inner .oeuvres .oeuvres-item .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .oeuvres .oeuvres-item li {
  margin: 0 0 5px 0;
}
.container .site-wrapper .inner .oeuvres .oeuvres-item li:last-child {
  margin: 0;
}
.container .site-wrapper .inner .recherche-form-container {
  width: 100%;
  gap: 10px;
  background-color: #ff4b58;
  margin: 0;
}
.container .site-wrapper .inner .recherche-form-container .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .recherche-form-container .bar form {
  display: flex;
  flex-direction: column;
  margin: 0 10px 0 0;
}
.container .site-wrapper .inner .recherche-form-container .bar form #id_typologies {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
  padding: 0;
}
.container .site-wrapper .inner .recherche-form-container .bar form #id_typologies input[type=checkbox] {
  padding: 5px;
}
.container .site-wrapper .inner .recherche-form-container .bar form input[type=text] {
  width: 100%;
  margin: 0 10px 0 0;
  min-height: var(--bar-height);
  color: #781a00;
  padding: 8px 12px;
  background-color: #fff;
  border: 1px solid #fff;
  margin: 10px 0 0 0;
}
.container .site-wrapper .inner .recherche-form-container .bar form input[type=text]:focus {
  outline: none;
}
.container .site-wrapper .inner .recherche-form-container .bar form input[type=submit], .container .site-wrapper .inner .recherche-form-container .bar form input[type=reset] {
  background-color: #00ffc3;
  border: none;
  color: #781a00;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  margin: 10px 0 0 0;
}
.container .site-wrapper .inner .recherche-form-container .bar form input[type=submit]:hover, .container .site-wrapper .inner .recherche-form-container .bar form input[type=reset]:hover {
  background-color: #ff4b58;
}
.container .site-wrapper .inner .recherche {
  background-color: #ff4b58;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container .site-wrapper .inner .recherche .recherche-header tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .recherche .recherche-header tr th {
  text-align: left;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .recherche .recherche-header tr .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .recherche .recherche-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px;
  background-color: #ff4b58;
}
.container .site-wrapper .inner .recherche .recherche-item .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
}
.container .site-wrapper .inner .recherche .recherche-item .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .inner .recherche .recherche-item .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .outils {
  background-color: #ff4b58;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container .site-wrapper .inner .outils .outils-header {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .outils .outils-header .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .outils .outils-items {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .outils .outils-items .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
}
.container .site-wrapper .inner .outils .outils-items .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .inner .outils .outils-items .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .outils .outils-items .bar form button {
  background-color: #00ffc3;
  border: none;
  color: #781a00;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  margin: 10px 0 0 0;
}
.container .site-wrapper .inner .outils .outils-items .bar form button:hover {
  background-color: #ff4b58;
}
.container .site-wrapper .inner .outils .outils-items .bar form input[type=file] {
  color: #781a00;
  padding: 8px 12px;
  background-color: #fff;
  border: 1px solid #fff;
  margin: 10px 0 0 0;
}
.container .site-wrapper .inner .outils .outils-items .bar form input[type=file]::file-selector-button {
  background-color: #00ffc3;
  border: none;
  color: #781a00;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  min-height: var(--bar-height);
  line-height: var(--bar-height);
}
.container .site-wrapper .inner .outils .outils-items .bar h2 {
  font-weight: normal;
  font-size: 16px;
  color: #781a00;
}
.container .site-wrapper .inner .outils .outils-items .bar textarea {
  width: 99%;
  height: 500px;
  padding: 20px;
  margin: 0 20px 0 0;
}
.container .site-wrapper .inner .editeurs {
  background-color: #ff4b58;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container .site-wrapper .inner .editeurs .editeurs-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .editeurs .editeurs-header .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
  color: #ffd6c5;
}
.container .site-wrapper .inner .editeurs .editeurs-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  gap: 10px;
  align-items: start;
  border-bottom: 1px dotted #ffffff;
  padding: 10px 0 10px 0;
}
.container .site-wrapper .inner .editeurs .editeurs-item .bar {
  min-height: var(--bar-height);
  line-height: var(--bar-height);
  padding: 0 0 0 5px;
}
.container .site-wrapper .inner .editeurs .editeurs-item .bar a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container .site-wrapper .inner .editeurs .editeurs-item .bar a:hover {
  color: white;
}
.container .site-wrapper .inner .index-extrait-info {
  position: fixed;
  font-family: "Amiamie", sans-serif;
  font-size: 14px;
  right: 0;
  bottom: 0;
  padding: var(--pad);
  width: 50%;
  color: #781a00;
}
.container .site-wrapper .inner .index-extrait {
  font-family: "Adelphe", serif;
  display: flex;
  flex-direction: column;
  font-size: 3rem;
  line-height: 1.3;
  padding: 10px 20px 0 10px;
  color: #252525;
  background-color: #f6f5f5;
  height: 100%;
}
.container .site-wrapper .inner .extrait-lecture {
  flex-direction: column;
  display: flex;
  background-color: #f6f5f5;
  padding: 20px 10px 0 10px;
  font-family: "Adelphe", serif;
  align-items: center;
  width: 100%;
  color: #252525;
  margin: 0 0 100px 0;
}
.container .site-wrapper .inner .extrait-lecture p {
  font-size: 1.6rem;
  line-height: 1.8;
  width: 60%;
  margin: 0 0 20px 0;
}
.container .site-wrapper .inner .extrait-lecture sup {
  font-family: "Amiamie", sans-serif;
  font-size: 1.1rem;
  vertical-align: baseline;
  top: -0.5em;
  position: relative;
  line-height: 0;
  padding: 0;
  margin: 0;
}
.container .site-wrapper .inner .extrait-lecture sup a {
  color: #ff4b58;
}
.container .site-wrapper .inner .extrait-lecture sup a:hover {
  color: #1e9361;
}
.container .site-wrapper .inner .extrait-lecture .footnote {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Amiamie", sans-serif;
  width: 100%;
  margin: 0 0 50px 0;
}
.container .site-wrapper .inner .extrait-lecture .footnote hr {
  display: none;
}
.container .site-wrapper .inner .extrait-lecture .footnote ol {
  margin: 0 0 0 20px;
  padding: 0 0 0 0;
}
.container .site-wrapper .inner .extrait-lecture .footnote ol li {
  list-style-type: decimal;
  font-size: 0.8rem;
  padding: 0 10px 0 5px;
  margin: 0 0 0 0;
}
.container .site-wrapper .inner .extrait-lecture .footnote ol li p {
  font-size: 0.8rem;
  line-height: 1.3;
  width: 100%;
  margin: 0;
}
.container .site-wrapper .inner .extrait-lecture .footnote ol li p a {
  color: #ff4b58;
}
.container .site-wrapper .inner .extrait-lecture .footnote ol li p a:hover {
  color: #1e9361;
}

@media only screen and (min-width: 1px) and (max-width: 812px) {
  .container .navigation-mobile {
    display: flex;
    z-index: 5;
  }
  .container .navigation-mobile .burger {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    bottom: 0;
    right: 0;
    color: #800b05;
    background-color: #ff4b58;
    width: 100%;
    cursor: pointer;
    height: 50px;
  }
  .container .navigation-mobile .open {
    display: flex;
  }
  .container .navigation-mobile .close {
    display: none;
  }
  .container .navigation-mobile .menu {
    flex-direction: column;
    position: fixed;
    color: #800b05;
    background-color: #ff4b58;
    width: 100%;
    height: 100%;
    font-size: 30px;
    line-height: 35px;
    padding: 10px 0 0 10px;
  }
  .container .navigation-mobile .menu a:hover {
    color: #f6f5f5;
  }
  .container .navigation-mobile .menu .cross {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 10px;
    margin-right: 5px;
    width: 60px;
    cursor: pointer;
  }
  .container .navigation-mobile .menu .cross svg line {
    fill: none;
    stroke: #800b05;
    stroke-width: 3;
  }
  .container .site-footer {
    display: none;
  }
  .container .site-header {
    display: flex;
    flex-direction: column;
  }
  .container .site-wrapper .inner {
    margin: 40px 0 0 0;
  }
  .container .site-wrapper .inner .index-extrait-info {
    width: 100%;
    bottom: 50px;
  }
  .container .site-wrapper .inner .extrait-lecture {
    padding: 0 40px 200px 40px;
  }
  .container .site-wrapper .inner .extrait-lecture p {
    width: 100%;
  }
  .container .site-wrapper .inner .extraits {
    margin: 0 0 200px 0;
  }
  .container .site-wrapper .inner .corpus {
    margin: 0 0 200px 0;
  }
  .container .site-wrapper .inner .auteurs {
    margin: 0 0 200px 0;
  }
  .container .site-wrapper .inner .typologies {
    margin: 0 0 200px 0;
  }
  .container .site-wrapper .inner .typologies .typologies-header {
    grid-template-columns: 1fr 50%;
  }
  .container .site-wrapper .inner .typologies .typologies-item {
    grid-template-columns: 1fr 50%;
  }
  .container .site-wrapper .inner .oeuvres {
    margin: 0 0 200px 0;
  }
  .container .site-wrapper .inner .oeuvres .oeuvres-header {
    grid-template-columns: 1fr 50%;
  }
  .container .site-wrapper .inner .oeuvres .oeuvres-item {
    grid-template-columns: 1fr 50%;
  }
  .container .site-wrapper .inner .editeurs .editeurs-header {
    grid-template-columns: 3fr 2fr 50%;
  }
  .container .site-wrapper .inner .editeurs .editeurs-item {
    grid-template-columns: 3fr 2fr 50%;
  }
  .container .site-wrapper .inner .information {
    margin: 0 0 300px 0;
    padding: 0 0 100px 10px;
  }
  .container .site-wrapper .inner .information header {
    flex-direction: column;
  }
  .container .site-wrapper .inner .information header p {
    width: 95%;
  }
}

/*# sourceMappingURL=main.css.c08c6be8bbd7.map */
