@charset "UTF-8";
@font-face {
  font-family: "interReg";
  src: url("fonts/international/Inter-Regular.ttf");
}
@font-face {
  font-family: "interItal";
  src: url("fonts/international/Inter-Italic.ttf");
}
@font-face {
  font-family: "interBold";
  src: url("fonts/international/Inter-Bold.ttf");
}
@font-face {
  font-family: "interBlack";
  src: url("fonts/international/Inter-Black.ttf");
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-moz-keyframes noway {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    filter: grayscale(1);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    filter: grayscale(0);
  }
}
@-webkit-keyframes noway {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: bottom;
  }
}
@keyframes noway {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: bottom;
  }
}
::selection {
  background: black;
  color: white;
}

/* width */
::-webkit-scrollbar {
  width: 1px;
}

/* Track */
::-webkit-scrollbar-track {
  background: darkgrey;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: black;
}

.scroller {
  overflow-y: scroll;
  scrollbar-color: black white;
  scrollbar-width: 5px;
}

body {
  padding: 0 !important;
  margin: 0 !important;
  font-family: "interReg";
  letter-spacing: 0.5pt;
  overflow-x: hidden;
}
body section#liste {
  list-style: none;
  background: white;
  width: 20%;
  height: 100%;
  overflow-x: hidden;
  position: fixed;
}
body section#liste h1 {
  padding-left: 15px;
  font-weight: normal;
}
body section#liste h1 a {
  color: black;
  text-decoration: none;
}
body section#liste h1 a:hover {
  border-bottom: 1px solid black;
}
body section#liste ul {
  font-size: 15px;
  line-height: 19px;
  position: relative;
  padding-left: 0;
}
body section#liste ul li {
  list-style: none;
  padding-bottom: 15px;
  padding-top: 15px;
  border-top: 1px solid black;
  padding-right: 60px;
  padding-left: 30px;
}
body section#liste ul li .picto {
  width: 35px;
  height: auto;
  padding-right: 10px;
  position: absolute;
  right: 0;
}
body section#liste ul li:before {
  content: "↘";
  padding-right: 8px;
}
body section#liste ul li:hover span:nth-of-type(1) {
  text-decoration: underline;
}
body section#liste ul li:hover:before {
  content: "↗";
  padding-right: 8px;
}
body section#liste ul li span {
  padding-bottom: 8px;
}
body section#liste ul li span:nth-of-type(1) {
  padding-right: 8px;
}
body section#liste ul li span:nth-of-type(2) {
  text-decoration: underline;
}
body section#liste ul li a {
  text-decoration: none;
  color: black;
}
body section#liste ul li a em {
  margin-top: 10px;
  font-family: "interReg";
  font-style: normal;
  text-indent: 15px;
}
body section#liste ul li.toCome {
  opacity: 0.5;
  cursor: wait;
  color: lightgrey;
}
body section#liste ul li.toCome em{
  background: lightgrey;
  color: transparent;
}
body .fenetreCours {
  width: 79%;
  height: 100%;
  position: relative;
  left: 20%;
  padding: 0;
  margin: 0;
}
body .fenetreCours ul.subNav {
  display: block;
  padding-left: 0;
  padding-right: 0;
  width: auto;
  margin: 0;
  height: 100%;
  width: 1%;
  right: 0;
  position: fixed;
  background: white;
}
body .fenetreCours ul.subNav li {
  writing-mode: vertical-lr;
  text-align: center;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  list-style: none;
  color: black;
}
body .fenetreCours ul.subNav li:nth-last-of-type(1) {
  border-right: 0 solid;
}
body .fenetreCours ul.subNav li:hover {
  cursor: pointer;
}
body .fenetreCours ul.subNav li:hover:after {
  content: " ↗";
}
body .fenetreCours ul.subNav li:after {
  content: " ↘";
}
body .fenetreCours section {
  width: 100%;
  overflow-x: hidden;
  margin-left: 40px;
  margin-right: 40px;
  font-size: 15px;
}
body .fenetreCours section a {
  color: black;
}
body .fenetreCours section a:hover {
  color: grey;
}
body .fenetreCours section p {
  width: 40%;
  padding-left: 40px;
}
body .fenetreCours section p img {
  max-width: 200%;
  max-height: 80vh;
  margin-top: 30px;
}
body .fenetreCours section p img .vertical {
  max-width: 66%;
}
body .fenetreCours section iframe {
  margin-top: 30px;
}
body .fenetreCours section .intro {
  position: absolute;
  right: 50px;
  top: 40px;
  width: 30%;
  transform: rotate(180deg);
  animation: spin 160s linear infinite;
}
body .fenetreCours section .introLexique {
  position: absolute;
  right: 50px;
  top: 40px;
  width: 40%;
  filter: grayscale(1);
}
body .fenetreCours section pre {
  width: auto;
  height: auto;
  overflow-y: scroll;
  color: white;
  background: darkgrey;
}
body .fenetreCours section h1,
body .fenetreCours section h2,
body .fenetreCours section h3 {
  font-weight: normal;
}
body .fenetreCours section h1 em,
body .fenetreCours section h2 em,
body .fenetreCours section h3 em {
  font-family: "interItal";
  font-style: normal;
}
body .fenetreCours section h1 strong,
body .fenetreCours section h2 strong,
body .fenetreCours section h3 strong {
  font-family: "interBlack";
  font-style: normal;
}
body .fenetreCours section h1 {
  font-size: 1.5em;
  padding-bottom: 30px;
  text-decoration: underline;
}
body .fenetreCours section h1:nth-of-type(2),
body .fenetreCours section h1:nth-of-type(3),
body .fenetreCours section h1:nth-of-type(4) {
  margin-top: 75px;
}
body .fenetreCours section h2 {
  max-width: 80%;
}
body .fenetreCours section h2 img {
  border-radius: 20px;
  max-width: 80%;
}
body .fenetreCours section h3 {
  max-width: 50%;
  padding-bottom: 50px;
  font-family: "interReg";
  font-size: 15px;
  font-weight: normal;
}
body .fenetreCours section h3:before {
  content: "⟶ ";
}
body .fenetreCours section h3 em {
  font-family: "interItal";
}
body .fenetreCours section h4 {
  font-family: "interReg";
  font-weight: normal;
  text-decoration: underline;
  font-size: 15px;
}
body .fenetreCours section ol {
  font-family: "interReg";
  display: block;
  padding-bottom: 30px;
  width: 50%;
}
body .fenetreCours section ol li {
  list-style: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
}
body .fenetreCours section ol li:nth-last-of-type {
  border-bottom: 0 solid black;
}
body .fenetreCours section ol li a {
  color: black;
}
body .fenetreCours section ol li a:hover {
  color: grey;
}
body .fenetreCours section ol li del {
  opacity: 0.5;
  text-decoration: none;
}
body .fenetreCours section ol li p {
  width: 100%;
}
body .fenetreCours section ul {
  padding: 20px;
  background: lightgrey;
  list-style: none;
  width: 50%;
  border-radius: 10px;
  line-height: 22px;
}
body .fenetreCours section ul li {
  font-family: "interReg";
}
body .fenetreCours section ul li strong {
  font-family: "interBold";
}
body .fenetreCours section#exos h3 {
  padding-bottom: 0;
}
body .fenetreCours section#exos .noway {
  font-size: 30px;
  color: red;
  left: 20px;
  margin-top: -15px;
  position: absolute;
  filter: grayscale(1);
  animation: noway 0.4s linear alternate infinite;
}
body .fenetreCours section#biblio,
body .fenetreCours section#exos,
body .fenetreCours section#pad,
body .fenetreCours section#technique,
body .fenetreCours section#visuels {
  display: none;
}
body .fenetreCours section#lexique h2 {
  padding-bottom: 0;
  text-decoration: none;
  border: 1px solid black;
  border-radius: 100px;
  width: 27px;
  text-align: center;
  text-indent: 0;
  box-shadow: 2px 2px black;
}
body .fenetreCours section#lexique strong {
  text-indent: 15px;
  font-family: "interBold";
  font-weight: normal;
  text-decoration: underline;
}
body .fenetreCours section#exos h1 {
  padding-bottom: 15px;
  width: 60%;
}
body .fenetreCours section#exos h1:nth-of-type(2) {
  border-top: 1px solid black;
  padding-top: 30px;
}
body .fenetreCours section#exos ol {
  width: 60%;
  border-left: solid 0 black;
  border-bottom: 0 solid black;
}
body .fenetreCours section#exos ol li {
  padding-bottom: 15px;
}

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


@media print{

  @page{
    size: 21cm 29.7cm;
    margin-lef: 1cm;
    margin-right: 1cm;
    margin-bottom: 3cm;
    margin-top: 1cm;
  }

  body .fenetreCours {
    width: 100%;
    left: 0%;
  }

  body section#liste{
    display: none;
  }

  body .fenetreCours ul.subNav {
    display: none;
  }

  body .fenetreCours section .content p {
    left: 0px;
    margin-left: 0px;
    width: 60%;
    padding-left: 0px;
  }

}