@font-face {
  font-family: Hind;
  src: url(../fonts/Hind-Regular.ttf), url(../fonts/Hind-Medium.ttf), url(../fonts/Hind-SemiBold.ttf), url(../fonts/Hind-Bold.ttf);
}
@font-face {
  font-family: League Spartan;
  src: url(../fonts/LeagueSpartan-Bold.otf);
}
html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: #0C0C0D;
  color: white;
  font-family: Hind;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body ::-webkit-scrollbar {
  display: none;
}
@media (min-width: 480px) {
  body {
    font-size: 1rem;
  }
}

main {
  scrollbar-width: none;
}

h2 {
  font-family: League Spartan;
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 480px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1100px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-family: League Spartan;
  font-size: 1.5rem;
}
@media (min-width: 1100px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
}
@media (min-width: 1100px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-family: League Spartan;
  font-size: 14px;
  margin-top: 1.5rem;
}
@media (min-width: 480px) {
  h5 {
    font-size: 1rem;
  }
}
h5.bigger {
  font-size: 2rem;
  text-align: center;
}

.h5-like {
  font-family: League Spartan;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.scrollbarContainer .simplebar-scrollbar {
  margin: 1px;
}
.scrollbarContainer .simplebar-scrollbar::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.topBar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  border-bottom: 1px solid #545455;
}
@media (min-width: 1100px) {
  .topBar {
    height: 6rem;
  }
}
.topBar a {
  display: flex;
}
.topBar a img {
  max-height: 3.5rem;
}
@media (min-width: 1100px) {
  .topBar a img {
    max-height: 5rem;
  }
}
.topBar .menu {
  position: absolute;
  left: 1rem;
  width: 2rem;
}
@media (min-width: 1100px) {
  .topBar .menu {
    display: none;
  }
}

section.session_confirm {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s;
  overflow: hidden;
}

section.session_confirm.displayed {
  display: flex;
}

section.session_confirm.opacity1 {
  opacity: 1;
}

section.session_confirm.opacity1 .confirm_bloc {
  top: 0;
}

.session_confirm .confirm_bloc {
  background-color: #31A8FF;
  color: white;
  width: 65vw;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  top: 15vh;
  transition: top 0.3s;
}

.confirm_bloc p {
  margin-bottom: 20px;
}

.confirm_bloc button {
  background: transparent;
  border: 0;
  color: white;
  font-weight: bold;
  /* border-bottom: solid 3px white; */
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 20px;
  font-family: "Hind";
  font-size: 1rem;
  margin: 0 10px;
  transition: background 0.3s;
  outline: 0;
  border-radius: 5px;
  /* padding-bottom: 4px; */
  /* padding: 0 0 4px; */
  /* border-color: rgba(0,0,0,.3); */
}

.confirm_bloc button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.session_wait {
  display: flex;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 10%;
  color: white;
  background-color: #070707;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  font-weight: bold;
  transition: background-color 0.5s;
}

.session_wait.session_valid {
  background-color: #3CB043;
}

.session_wait h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin: 5vh 0 0;
}

.session_wait .fa-check-circle {
  font-size: 3.75rem;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.session_wait .cancel {
  font-size: 1rem;
  background: transparent;
  color: #e21617;
  text-decoration: none;
  border: 0;
  outline: 0;
  margin-top: 100px;
}

.session_wait .cancel i {
  font-size: 1rem;
  margin-right: 5px;
}

.session_wait .spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.session_wait .spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.session_wait .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.session_wait .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.simplebar-content-wrapper {
  scroll-behavior: smooth;
}

.popup:nth-of-type(1) {
  top: 6rem;
  left: 5%;
  position: absolute;
  padding: 1rem 2rem 1rem 1rem;
  background-color: #31A8FF;
  color: #0C0C0D;
  border-radius: 0.5rem;
  max-width: 20rem;
  z-index: 9999;
  box-shadow: 0 1rem 2rem rgba(49, 168, 255, 0.2);
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.5, 0, 0.25, 1.5);
}
.popup:nth-of-type(1) span {
  font-size: 0.8rem;
}
.popup:nth-of-type(1) img {
  cursor: pointer;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.2rem;
}
.popup:nth-of-type(1) img {
  filter: invert(1);
}
.popup:nth-of-type(1)::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 2rem;
  width: 1rem;
  height: 1rem;
  background-color: #31A8FF;
  transform: rotate(45deg);
}
.popup:nth-of-type(1).closed {
  transform: scale(0);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 480px) {
  .popup:nth-of-type(1) {
    left: 30%;
  }
}
@media (min-width: 1100px) {
  .popup:nth-of-type(1) {
    top: 12rem;
    left: 50%;
  }
}
.popup:nth-of-type(2) {
  top: 3.5rem;
  left: 2%;
  position: absolute;
  padding: 1rem 2rem 1rem 1rem;
  background-color: #31A8FF;
  color: #0C0C0D;
  border-radius: 0.5rem;
  max-width: 20rem;
  z-index: 9999;
  box-shadow: 0 1rem 2rem rgba(49, 168, 255, 0.2);
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.5, 0, 0.25, 1.5);
}
.popup:nth-of-type(2) span {
  font-size: 0.8rem;
}
.popup:nth-of-type(2) img {
  cursor: pointer;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.2rem;
}
.popup:nth-of-type(2) img {
  filter: invert(1);
}
.popup:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  width: 1rem;
  height: 1rem;
  background-color: #31A8FF;
  transform: rotate(45deg);
}
.popup:nth-of-type(2).closed {
  transform: scale(0);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 1100px) {
  .popup:nth-of-type(2) {
    top: 20rem;
    left: 30%;
    position: absolute;
    padding: 1rem 2rem 1rem 1rem;
    background-color: #31A8FF;
    color: #0C0C0D;
    border-radius: 0.5rem;
    max-width: 20rem;
    z-index: 9999;
    box-shadow: 0 1rem 2rem rgba(49, 168, 255, 0.2);
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.5, 0, 0.25, 1.5);
  }
  .popup:nth-of-type(2) span {
    font-size: 0.8rem;
  }
  .popup:nth-of-type(2) img {
    cursor: pointer;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.2rem;
  }
  .popup:nth-of-type(2) img {
    filter: invert(1);
  }
  .popup:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: -0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #31A8FF;
    transform: rotate(45deg);
  }
  .popup:nth-of-type(2).closed {
    transform: scale(0);
    opacity: 0;
    transition: 0.2s ease-in-out;
  }
}
.popup:nth-of-type(3) {
  top: 4.5rem;
  left: 40%;
  position: absolute;
  padding: 1rem 2rem 1rem 1rem;
  background-color: #31A8FF;
  color: #0C0C0D;
  border-radius: 0.5rem;
  max-width: 20rem;
  z-index: 9999;
  box-shadow: 0 1rem 2rem rgba(49, 168, 255, 0.2);
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.5, 0, 0.25, 1.5);
}
.popup:nth-of-type(3) span {
  font-size: 0.8rem;
}
.popup:nth-of-type(3) img {
  cursor: pointer;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.2rem;
}
.popup:nth-of-type(3) img {
  filter: invert(1);
}
.popup:nth-of-type(3)::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  width: 1rem;
  height: 1rem;
  background-color: #31A8FF;
  transform: rotate(45deg);
}
.popup:nth-of-type(3).closed {
  transform: scale(0);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 480px) {
  .popup:nth-of-type(3) {
    left: 45%;
  }
}
@media (min-width: 1100px) {
  .popup:nth-of-type(3) {
    top: 7rem;
    left: 47%;
  }
}
.popup:nth-of-type(4) {
  top: 20%;
  right: 5rem;
  position: absolute;
  padding: 1rem 2rem 1rem 1rem;
  background-color: #31A8FF;
  color: #0C0C0D;
  border-radius: 0.5rem;
  max-width: 20rem;
  z-index: 9999;
  box-shadow: 0 1rem 2rem rgba(49, 168, 255, 0.2);
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.5, 0, 0.25, 1.5);
}
.popup:nth-of-type(4) span {
  font-size: 0.8rem;
}
.popup:nth-of-type(4) img {
  cursor: pointer;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.2rem;
}
.popup:nth-of-type(4) img {
  filter: invert(1);
}
.popup:nth-of-type(4)::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: -0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #31A8FF;
  transform: rotate(45deg);
}
.popup:nth-of-type(4).closed {
  transform: scale(0);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 480px) {
  .popup:nth-of-type(4) {
    top: 15%;
  }
}
@media (min-width: 1100px) {
  .popup:nth-of-type(4) {
    top: 25%;
  }
}
.popup:nth-of-type(5) {
  bottom: 2rem;
  left: 5%;
  position: absolute;
  padding: 1rem 2rem 1rem 1rem;
  background-color: #31A8FF;
  color: #0C0C0D;
  border-radius: 0.5rem;
  max-width: 20rem;
  z-index: 9999;
  box-shadow: 0 1rem 2rem rgba(49, 168, 255, 0.2);
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.5, 0, 0.25, 1.5);
}
.popup:nth-of-type(5) span {
  font-size: 0.8rem;
}
.popup:nth-of-type(5) img {
  cursor: pointer;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.2rem;
}
.popup:nth-of-type(5) img {
  filter: invert(1);
}
.popup:nth-of-type(5)::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 2rem;
  width: 1rem;
  height: 1rem;
  background-color: #31A8FF;
  transform: rotate(45deg);
}
.popup:nth-of-type(5).closed {
  transform: scale(0);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 480px) {
  .popup:nth-of-type(5) {
    left: 30%;
  }
}
@media (min-width: 1100px) {
  .popup:nth-of-type(5) {
    left: 45%;
  }
}
.popup:nth-of-type(6) {
  top: calc(50% - 10rem);
  left: 5%;
  position: absolute;
  padding: 1rem 2rem 1rem 1rem;
  background-color: #31A8FF;
  color: #0C0C0D;
  border-radius: 0.5rem;
  max-width: 20rem;
  z-index: 9999;
  box-shadow: 0 1rem 2rem rgba(49, 168, 255, 0.2);
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.5, 0, 0.25, 1.5);
}
.popup:nth-of-type(6) span {
  font-size: 0.8rem;
}
.popup:nth-of-type(6) img {
  cursor: pointer;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.2rem;
}
.popup:nth-of-type(6) img {
  filter: invert(1);
}
.popup:nth-of-type(6)::before {
  content: "";
  position: absolute;
  display: none;
  width: 1rem;
  height: 1rem;
  background-color: #31A8FF;
  transform: rotate(45deg);
}
.popup:nth-of-type(6).closed {
  transform: scale(0);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 480px) {
  .popup:nth-of-type(6) {
    left: 30%;
  }
}
@media (min-width: 1100px) {
  .popup:nth-of-type(6) {
    left: 45%;
  }
}

.all-content {
  display: flex;
  height: 100vh;
  width: 100%;
}
.all-content nav, .all-content main {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow-y: scroll;
  /*overflow-x: hidden;*/
  scrollbar-width: none;
  box-sizing: border-box;
}

.leftBar {
  width: 90vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 4rem;
  background-color: #0C0C0D;
  z-index: 999;
  border-right: 1px solid #545455;
  transition: 0.5s ease-in-out;
}
@media (min-width: 480px) {
  .leftBar {
    width: 60vw;
  }
}
@media (min-width: 1100px) {
  .leftBar {
    width: 50%;
    height: auto;
    position: static;
    padding: 4rem 0;
  }
}
.leftBar.closed {
  transform: translateX(-90vw);
}
@media (min-width: 480px) {
  .leftBar.closed {
    transform: translateX(-60vw);
  }
}
@media (min-width: 1100px) {
  .leftBar.closed {
    transform: translateX(0);
  }
}
.leftBar .cross {
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  left: 1rem;
  width: 2rem;
}
@media (min-width: 1100px) {
  .leftBar .cross {
    display: none;
  }
}
.leftBar .homeLink {
  margin: 0 4rem 2rem auto;
  transform: translateY(-0.3rem);
  display: flex;
  gap: 1rem;
}
.leftBar .homeLink:not(.backbutton) {
  margin: 0 4rem 0 auto;
}
@media (min-width: 1100px) {
  .leftBar .homeLink {
    margin: 0 8rem 0 auto;
    transform: translateY(0);
  }
  .leftBar .homeLink:not(.backbutton) {
    margin: 0 8rem 0 auto;
  }
}
.leftBar .homeLink img {
  width: 1rem;
  transform: translateY(-0.1rem);
}
.leftBar .title {
  font-size: 1.5rem;
  margin: 2rem auto 0.5rem;
}
@media (min-width: 1100px) {
  .leftBar .title {
    font-size: 2rem;
    margin: 3rem 8rem 0 auto;
  }
}
.leftBar .them_name {
  margin: 0.5rem auto 2rem;
}
@media (min-width: 1100px) {
  .leftBar .them_name {
    margin: 0 8rem 3rem auto;
  }
}
.leftBar .button {
  margin: 0 auto 2rem auto;
  color: #0C0C0D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  padding: 0.6em 2em;
  border-radius: 1em;
  background-color: #31A8FF;
  transition: 0.3s ease-in-out;
}
.leftBar .button img {
  width: 1.2rem;
  transition: 0.3s ease-in-out;
}
@media (min-width: 1100px) {
  .leftBar .button:hover {
    background-color: #F5C61F;
    color: #0C0C0D;
  }
  .leftBar .button:hover img {
    filter: invert(1);
  }
}
@media (min-width: 1100px) {
  .leftBar .button {
    margin-right: 8rem;
  }
}
.leftBar .navChapter {
  width: 100%;
  padding: 2rem 3rem 2rem 2rem;
  text-align: right;
  transition: 0.3s ease-in-out;
}
@media (min-width: 480px) {
  .leftBar .navChapter {
    padding: 2rem 4rem;
  }
}
@media (min-width: 1100px) {
  .leftBar .navChapter {
    padding: 2rem 8rem;
  }
}
.leftBar .navChapter.closed {
  transition: 0.3s ease-in-out;
}
.leftBar .navChapter.closed .navChapter-name img {
  transform: translateY(-0.1rem) rotate(-90deg);
}
.leftBar .navChapter.closed .navChapter-content {
  height: 0;
}
.leftBar .navChapter.closed .navChapter-content ul {
  opacity: 0;
}
.leftBar .navChapter:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.leftBar .navChapter-name {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 1.1rem;
}
@media (min-width: 480px) {
  .leftBar .navChapter-name {
    font-size: 1.2rem;
  }
}
.leftBar .navChapter-name img {
  width: 1rem;
  margin: 0 0.5rem 0 auto;
  transform: translateY(-0.1rem);
  transition: 0.3s ease-in-out;
}
.leftBar .navChapter-name p span {
  color: #31A8FF;
}
.leftBar .navChapter-content {
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.leftBar .navChapter-content ul {
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}
.leftBar .navChapter-content ul li {
  margin: 2rem 2rem 2rem 0;
  cursor: pointer;
}
.leftBar .navChapter-content ul li span {
  font-family: League Spartan;
  font-size: 1.8rem;
  line-height: 0;
}
.leftBar .navChapter-content ul li p {
  line-height: 70%;
}
.leftBar .navChapter .link-evaluation {
  margin: 1rem 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3em 0.8em 0.2em 0.8em;
  border-radius: 99rem;
  background-color: #FF3142;
  transition: 0.3s ease-in-out;
}
.leftBar .navChapter .link-evaluation img {
  width: 0.8rem;
  transform: translateY(-0.2rem);
}
@media (min-width: 1100px) {
  .leftBar .navChapter .link-evaluation:hover {
    background-color: #c92634;
  }
}

.rightBar {
  width: 100%;
  padding-bottom: 6rem;
}
@media (min-width: 1100px) {
  .rightBar {
    max-width: 66%;
  }
}
.rightBar .menu-container {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0C0C0D;
  padding: 1.5rem 1rem;
  font-size: 0;
  z-index: 100;
}
.rightBar .menu-container .menu {
  width: 2rem;
}
@media (min-width: 1100px) {
  .rightBar .menu-container {
    display: none;
  }
}
.rightBar .close-menu {
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
.rightBar .close-menu.visible {
  background-color: rgba(12, 12, 13, 0.5);
  pointer-events: all;
}

.section {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(4rem);
  opacity: 0;
  transition: 1s ease-in-out;
}
.section .text-content {
  transform: translateY(2rem);
  opacity: 0;
  transition: 0.5s 0.5s ease-in-out;
}
.section.visible {
  transform: translate(0);
  opacity: 1;
}
.section.visible .text-content {
  transform: translate(0);
  opacity: 1;
}
.section .text-center {
  text-align: center;
  display: block;
}
.section .text-center.plus {
  font-size: 3rem;
}
.section.quote {
  padding: 2rem;
  position: relative;
}
@media (min-width: 480px) {
  .section.quote {
    padding: 3rem 6rem;
  }
}
@media (min-width: 1100px) {
  .section.quote {
    padding: 6rem 8rem;
  }
}
.section.quote .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 90%;
  transform: translate(-50%, -50%);
  opacity: 0.075;
  z-index: -1;
}
.section.quote h5 {
  text-align: center;
}
.section.quote .author {
  text-align: right;
  margin-top: 1rem;
}
.section.intro {
  padding-bottom: 6rem !important;
}
.section.chapter {
  padding: 4rem 2rem;
  position: relative;
  align-items: center;
  margin-top: 6rem;
  /*&:not(:nth-child(1)){
      margin-top:5rem;
  }*/
}
.section.chapter:nth-of-type(1) {
  margin-top: 0;
}
@media (min-width: 480px) {
  .section.chapter {
    padding: 6rem 6rem 4rem 6rem;
  }
}
@media (min-width: 1100px) {
  .section.chapter {
    padding: 8rem;
  }
}
.section.chapter .background-image, .section.chapter .background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section.chapter .background-image {
  -o-object-fit: cover;
     object-fit: cover;
}
.section.chapter .background-gradient {
  background: linear-gradient(rgba(12, 12, 13, 0.5), rgba(12, 12, 13, 0.8));
}
.section.chapter h2 {
  margin-top: 2rem;
}
.section.chapter .logo {
  height: 10rem;
}
@media (min-width: 1100px) {
  .section.chapter .logo {
    height: 12rem;
    bottom: 2rem;
  }
}
.section.chapter button {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  padding: 0.6em 2em;
  border-radius: 1em;
  background-color: #FF3142;
  transition: 0.3s ease-in-out;
}
.section.chapter button img {
  width: 1.2rem;
  transition: 0.3s ease-in-out;
}
@media (min-width: 1100px) {
  .section.chapter button:hover {
    background-color: #F5C61F;
    color: #0C0C0D;
  }
  .section.chapter button:hover img {
    filter: invert(1);
  }
}
@media (min-width: 1100px) {
  .section.chapter button {
    margin-top: 2rem;
  }
}
.section.chapter .done-button {
  pointer-events: none;
  display: none;
}
.section.chapter.done .begin-button {
  display: none;
}
.section.chapter.done .done-button {
  display: flex;
}
.section.chapter .pin-container {
  position: absolute;
  top: 30%;
  right: 0;
  width: 14rem;
  padding: 0.8rem 1.2rem;
  background-color: white;
  border-radius: 0.5rem 0 0 0.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  transform: translateX(11rem);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.section.chapter .pin-container:hover {
  transform: translateX(0);
}
.section.chapter .pin-container img {
  height: 1.5rem;
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
}
.section.chapter .pin-container p {
  color: #0C0C0D;
}
.section.chapter .pin-container .pinned {
  display: none;
}
.section.chapter .pin-container.pinned {
  transform: translateX(0);
  background-color: #F5C61F;
}
.section.chapter .pin-container.pinned img {
  transform: rotate(0);
}
.section.chapter .pin-container.pinned .pinned {
  display: block;
}
.section.chapter .pin-container.pinned .unpinned {
  display: none;
}
.section.category {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}
@media (min-width: 480px) {
  .section.category {
    padding: 3rem 6rem;
  }
}
@media (min-width: 1100px) {
  .section.category {
    padding: 4rem 8rem;
  }
}
.section.category .number {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3em 0.8em 0.2em 0.8em;
  border-radius: 99rem;
  background-color: #FF3142;
  transition: 0.3s ease-in-out;
  cursor: default;
  font-weight: 700;
}
.section.category .number img {
  width: 0.8rem;
  transform: translateY(-0.2rem);
}
@media (min-width: 1100px) {
  .section.category .number:hover {
    background-color: #c92634;
  }
}
.section.category .tools {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 480px) {
  .section.category .tools {
    position: absolute;
    top: 3rem;
    right: 6rem;
    margin: 0;
  }
}
@media (min-width: 1100px) {
  .section.category .tools {
    top: 4rem;
    right: 8rem;
  }
}
.section.category .tools .previous {
  color: #0C0C0D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3em 0.8em 0.2em 0.8em;
  border-radius: 99rem;
  background-color: #31A8FF;
  transition: 0.3s ease-in-out;
}
.section.category .tools .previous img {
  width: 0.8rem;
  transform: translateY(-0.2rem);
}
@media (min-width: 1100px) {
  .section.category .tools .previous:hover {
    background-color: white;
  }
}
.section.category .tools .previous img {
  filter: invert(1);
  transform: rotate(180deg);
}
.section.category .tools .next {
  color: #0C0C0D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3em 0.8em 0.2em 0.8em;
  border-radius: 99rem;
  background-color: #F5C61F;
  transition: 0.3s ease-in-out;
}
.section.category .tools .next img {
  width: 0.8rem;
  transform: translateY(-0.2rem);
}
@media (min-width: 1100px) {
  .section.category .tools .next:hover {
    background-color: white;
  }
}
.section.category .tools .next img {
  filter: invert(1);
}
.section.category .image {
  width: 50%;
  max-width: 20rem;
  border-radius: 1.5rem;
  margin: 4rem auto 0 auto;
}
.section.image-part {
  padding: 4rem 2rem;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media (min-width: 480px) {
  .section.image-part {
    padding: 6rem;
  }
}
@media (min-width: 1100px) {
  .section.image-part {
    padding: 12rem 15%;
  }
}
.section.image-part .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.section.image-part .text-content {
  padding: 1rem;
  border-radius: 0.3rem;
}
@media (min-width: 480px) {
  .section.image-part .text-content {
    padding: 3rem;
  }
}
@media (min-width: 1100px) {
  .section.image-part .text-content {
    padding: 5rem;
  }
}
.section.image-part .text-content h4, .section.image-part .text-content h5 {
  margin: 0;
}
.section.image-part .text-content p, .section.image-part .text-content ul {
  margin: 0.5rem 0;
}
.section.image-part .text-content ul {
  padding-left: 2rem;
}
.section.image-part .text-content ul li {
  list-style: disc;
}
@media (min-width: 480px) {
  .section.image-part.right {
    padding: 6rem 5% 6rem 40%;
  }
}
@media (min-width: 1100px) {
  .section.image-part.right {
    padding: 12rem 5% 12rem 40%;
  }
}
@media (min-width: 480px) {
  .section.image-part.left {
    padding: 6rem 40% 6rem 5%;
  }
}
@media (min-width: 1100px) {
  .section.image-part.left {
    padding: 12rem 40% 12rem 5%;
  }
}
.section.image-part.separated {
  display: flex;
  flex-direction: row;
  padding: 0;
}
.section.image-part.separated.left {
  flex-direction: row-reverse;
}
.section.image-part.separated .background-image {
  position: static;
  width: 50%;
  height: auto;
  min-height: 32rem;
}
.section.image-part.separated .text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  border-radius: 0;
}
.section.switch-part {
  padding: 2rem 3rem;
}
@media (min-width: 480px) {
  .section.switch-part {
    padding: 3rem 6rem;
  }
}
@media (min-width: 1100px) {
  .section.switch-part {
    padding: 6rem 8rem;
  }
}
.section.switch-part.text-content .content p {
  color: white !important;
  text-align: center;
}
.section.switch-part h5 {
  margin: 0;
}
.section.switch-part p {
  color: #bcbcd3;
  margin-top: 1rem;
}
.section.switch-part .arrow {
  width: 1.5rem;
  position: absolute;
  top: 50%;
  cursor: pointer;
}
.section.switch-part .arrow.left {
  left: 1rem;
  transform: rotate(90deg);
}
@media (min-width: 480px) {
  .section.switch-part .arrow.left {
    left: 2rem;
  }
}
@media (min-width: 1100px) {
  .section.switch-part .arrow.left {
    left: 4rem;
  }
}
.section.switch-part .arrow.right {
  right: 1rem;
  transform: rotate(-90deg);
}
@media (min-width: 480px) {
  .section.switch-part .arrow.right {
    right: 2rem;
  }
}
@media (min-width: 1100px) {
  .section.switch-part .arrow.right {
    right: 4rem;
  }
}
.section.switch-part .content {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.section.switch-part .content.active {
  display: block;
  opacity: 1;
}
.section.switch-part .content.left {
  transform: translateX(-50%);
  opacity: 0;
}
.section.switch-part .content.right {
  transform: translateX(50%);
  opacity: 0;
}
.section.image-container {
  display: flex;
  align-items: center;
  padding: 2rem;
  flex-direction: column;
}
@media (min-width: 480px) {
  .section.image-container {
    flex-direction: row;
  }
}
.section.image-container img {
  max-width: 24rem;
  max-height: 24rem;
}
.section.image-container.image-center img {
  margin-left: auto;
  margin-right: auto;
}
.section.part {
  padding: 2rem;
}
@media (min-width: 480px) {
  .section.part {
    padding: 3rem 6rem;
  }
}
@media (min-width: 1100px) {
  .section.part {
    padding: 6rem 8rem;
  }
}
.section.part.table-container {
  background-image: url(../images/cours/5-15/48-6-motiftableau.png);
  background-repeat: repeat;
}
.section.part.image-bg {
  position: relative;
}
.section.part.image-bg .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(5px);
  opacity: 0.4;
  z-index: -1;
}
.section.part h4 {
  position: relative;
}
.section.part h4::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #F5C61F;
}
@media (min-width: 480px) {
  .section.part h4::before {
    left: -2rem;
  }
}
.section.part.follow-up {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 480px) {
  .section.part.follow-up {
    flex-direction: row;
  }
}
@media (min-width: 1100px) {
  .section.part.follow-up {
    padding: 2rem 8rem;
  }
}
.section.part.follow-up .flex-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}
@media (min-width: 480px) {
  .section.part.follow-up .flex-row {
    display: grid;
    grid-template-columns: 3fr 1fr 3fr 1fr 3fr;
  }
}
.section.part.follow-up .flex-row div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 480px) {
  .section.part.follow-up .flex-row div {
    flex-direction: row;
  }
}
.section.part.follow-up .flex-row div img {
  transform: rotate(95deg);
}
@media (min-width: 480px) {
  .section.part.follow-up .flex-row div img {
    transform: none;
  }
}
.section.part.follow-up .arrow {
  width: 2rem;
}
.section.part.follow-up .photo {
  max-width: 10rem;
  margin: 0;
}
.section.part .vertical-list {
  display: flex;
  gap: 4rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}
.section.part .vertical-list li {
  list-style: none;
  max-width: 36rem;
}
.section.part .color-equal {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.section.part .color-equal .image {
  min-width: auto;
  min-height: auto;
  width: 6rem;
  height: 6rem;
}
@media (min-width: 480px) {
  .section.part .color-equal .image {
    width: 10rem;
    height: 10rem;
  }
}
.section.part .equal {
  font-size: 3rem;
  text-align: center;
}
.section.part .equal.green {
  color: #00EF7C;
}
.section.part .equal.red {
  color: #FF3142;
}
.section.part .sign {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
}
.section.part .row-image-text {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-direction: column;
}
@media (min-width: 480px) {
  .section.part .row-image-text {
    flex-direction: row;
  }
}
.section.part .row-image-text img {
  width: 100%;
  max-width: 14rem;
  margin-top: 2rem;
}
.section.part .row-image-text div {
  width: 100%;
}
.section.part .flex-row {
  display: flex;
  gap: 4rem;
  justify-content: space-around;
  align-items: center;
  margin-top: 1rem;
  flex-direction: column;
}
@media (min-width: 480px) {
  .section.part .flex-row {
    flex-direction: row;
  }
}
.section.part .flex-row > *:not(.titre-base, .colored).petite-illu {
  width: 30% !important;
}
@media (min-width: 480px) {
  .section.part .flex-row.two-pics > * {
    width: calc(35% - 40px) !important;
  }
}
.section.part .flex-row.two-pics > * .photo {
  width: 100%;
}
.section.part .flex-row.four-pics > *:not(.feu) {
  width: 20% !important;
}
.section.part .flex-row.four-pics > .feu {
  width: 6% !important;
}
.section.part .flex-row.chap3-1 img {
  width: 25% !important;
}
.section.part .flex-row.chap3-1 p {
  width: 65% !important;
}
.section.part .flex-row.chap3-2 {
  align-items: flex-start;
}
.section.part .flex-row.chap3-2 > * {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 480px) {
  .section.part .flex-row.chap3-2 > * {
    width: 30% !important;
  }
}
.section.part .flex-row.chap3-2 > * .photo {
  margin: 0 0 1rem;
  width: 100%;
}
.section.part .flex-row.chap3-9 div p, .section.part .flex-row.chap3-9 div strong {
  text-align: center;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 2rem;
  width: 100%;
  display: block;
}
.section.part .flex-row.chap3-16 {
  justify-content: center;
}
.section.part .flex-row.chap3-16 > * {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.section.part .flex-row.chap3-16 .photo {
  width: 20% !important;
}
.section.part .flex-row.chap3-16 > .titre-base {
  text-align: center;
  width: max-width !important;
}
.section.part .flex-row.chap3-17 {
  justify-content: center;
  overflow: hidden;
  border-radius: 1.5rem;
}
.section.part .flex-row.chap3-17 > div {
  width: 50% !important;
  height: 100%;
}
.section.part .flex-row.chap3-17 > div.chauds {
  background-color: rgba(255, 255, 153, 0.5);
}
.section.part .flex-row.chap3-17 > div.froids {
  background-color: rgba(204, 255, 255, 0.5);
}
.section.part .flex-row.chap3-17 > div h5 {
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 3rem;
}
.section.part .flex-row.chap3-17 > div .flex-row img {
  width: 30% !important;
  margin: 0;
  border: 0;
  padding: 0;
}
.section.part .flex-row.chap3-17 > div > img {
  border: 0;
  padding: 0;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.section.part .flex-row.chap3-21 > img {
  width: 20% !important;
  border: 0;
  padding: 0;
}
.section.part .flex-row.chap3-21 > h5 {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}
.section.part .flex-row.isolant-thermique p {
  text-align: center;
}
.section.part .flex-row.isolant-thermique img {
  margin-left: 0;
  margin-right: 0;
}
.section.part .flex-row.isolant-thermique img.image {
  margin-bottom: 0;
}
.section.part .flex-column {
  display: flex;
  flex-direction: column;
}
.section.part .flex-column.text-center {
  text-align: center;
}
.section.part .flex-column .manager-observation {
  margin: 20px 0;
}
.section.part .flex-column .manager-observation tr {
  display: flex;
  align-items: center;
}
.section.part .flex-column .manager-observation th {
  border-right: dashed 2px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.section.part .flex-column .manager-observation td {
  padding-left: 20px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  height: 50px;
  width: calc(100% - 50px);
  text-align: left;
}
.section.part .flex-column .manager-observation td div {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.section.part p {
  color: #bcbcd3;
  margin-top: 1rem;
}
.section.part p.colored {
  display: block;
  padding: 0.3em 0.8em 0.2em 0.8em;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  border-radius: 1.5rem;
  color: white;
}
.section.part p.colored.roses {
  background-color: #FF99CC;
  color: #0C0C0D;
}
.section.part p.colored.plombes {
  background-color: #333333;
}
.section.part p.colored.verdatres {
  background-color: #003300;
}
.section.part p.legende {
  margin-top: 0;
}
.section.part p.num-example {
  font-weight: bold;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  font-size: 2rem;
  /* margin-left: auto; */
  margin: 2rem auto;
  border-radius: 1.5rem;
  padding: 20px 50px;
  border: 1px solid #545455;
}
.section.part p.plus-margin-bottom {
  margin-bottom: 3rem;
}
.section.part .color-hdt {
  color: #c92634;
}
.section.part .color-rd {
  color: #31A8FF;
}
.section.part .color-rs {
  color: #F5C61F;
}
.section.part ul {
  padding-left: 2rem;
}
.section.part ul.meches {
  list-style: none !important;
  padding-left: 0;
  gap: 3rem;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 480px) {
  .section.part ul.meches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.section.part ul.meches li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 480px) {
  .section.part ul.meches li {
    flex-direction: row;
  }
}
.section.part ul.meches li img {
  width: 100% !important;
  padding: 0;
  border: 0;
  margin: 0;
  border-radius: 0.5rem;
  max-width: 14rem;
}
.section.part ul.meches li p {
  margin-top: 1rem;
  text-align: center;
}
.section.part ul.meches li.li40v {
  width: calc(90% + (10% / 2));
}
.section.part ul.meches li.li40v img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media (min-width: 480px) {
  .section.part ul.meches li.li40v img {
    width: 30% !important;
  }
}
.section.part ul.superposition-list {
  padding-left: 0;
  margin-bottom: 3rem;
}
.section.part ul.superposition-list li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.section.part ul.superposition-list li .to-right {
  flex-direction: row-reverse;
}
.section.part ul.superposition-list li p {
  text-align: center;
}
.section.part li {
  color: #bcbcd3;
  list-style: disc;
}
.section.part li .div_in_li {
  display: flex;
  justify-content: center;
}
.section.part .images_inline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 480px) {
  .section.part .images_inline {
    flex-direction: row;
  }
}
.section.part .images_inline .image, .section.part .images_inline .photo {
  margin: 2rem;
  width: calc(33% - 4rem);
  min-width: 16rem;
}
@media (min-width: 480px) {
  .section.part .images_inline .image, .section.part .images_inline .photo {
    min-width: 24rem;
  }
}
.section.part .image {
  width: calc(100% - 2rem);
  min-width: 14rem;
  max-width: 28rem;
  border: 1px solid #545455;
  border-radius: 1.5rem;
  box-sizing: border-box;
}
.section.part .image.sans-bordure {
  border: 0;
  padding: 0;
}
@media (min-width: 480px) {
  .section.part .image {
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    margin: 2rem auto 2rem 0;
  }
}
.section.part .image.small {
  width: 14rem;
}
.section.part .image.big {
  width: 20rem !important;
  max-width: unset;
}
.section.part .photo {
  width: 70%;
  max-width: 16rem;
  margin: 3rem auto;
  border-radius: 1.5rem;
}
.section.part .photo.gomme {
  width: 40%;
}
.section.part .photo.portrait {
  width: 50%;
  margin-bottom: 5rem;
}
.section.part .photo.tdp-photo {
  margin-top: 0;
  margin-bottom: 0;
}
.section.part .small-photo {
  width: 70%;
  max-width: 14rem;
  max-height: 14rem;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 1.5rem;
}
.section.part .big-photo {
  width: 100%;
  border-radius: 1.5rem;
  margin: 2rem auto 2rem 0;
}
.section.part .cheveux-blancs td {
  width: 30%;
  text-align: center;
  padding: 20px;
}
.section.part .table-cat-2 {
  margin-top: 2rem;
}
.section.part .table-cat-2 tr {
  margin: 10px 0;
}
.section.part .table-cat-2 tr td:nth-child(1) {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-right: 10px;
  text-align: center;
}
.section.part .table-cat-2 tr td:nth-child(2) {
  padding: 10px;
}
.section.part .client-translator {
  display: flex;
  justify-content: center;
  border-collapse: collapse;
  border-radius: 0.3rem;
  background-color: rgba(23, 23, 23, 0.8);
  flex-direction: column;
}
@media (min-width: 480px) {
  .section.part .client-translator {
    flex-direction: row;
  }
}
.section.part .client-translator.first-row-important tbody tr:nth-child(1) td {
  font-family: League Spartan;
  font-size: 1rem;
  text-align: center;
  color: white;
}
.section.part .client-translator tbody {
  width: 100%;
  overflow: hidden;
}
.section.part .client-translator tbody tr {
  border-top: solid 2px #0C0C0D;
}
.section.part .client-translator tbody tr:last-child {
  border-bottom: solid 2px #0C0C0D;
}
.section.part .client-translator tbody tr td {
  width: 50%;
  /* border: solid; */
  padding: 20px;
  border-left: solid 2px #0C0C0D;
  border-right: solid 2px #0C0C0D;
}
.section.part .client-translator tbody tr td:nth-child(2) {
  border-left: 0;
}
.section.part .dialogues {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.section.part .dialogues li {
  border: 1px solid #545455;
  border-radius: 1.5rem;
  list-style: none;
  padding: 20px;
  width: 75%;
  margin: 1rem 0;
}
.section.part .dialogues li p {
  text-align: center;
}
.section.part .dialogues li p:nth-child(1) {
  margin-top: 0;
}
.section.part .dialogues li p b {
  color: white;
}
.section.checking {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}
@media (min-width: 480px) {
  .section.checking {
    padding: 3rem 6rem;
  }
}
@media (min-width: 1100px) {
  .section.checking {
    margin-top: 6rem;
    padding: 4rem 8rem;
  }
}
.section.checking .number {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3em 0.8em 0.2em 0.8em;
  border-radius: 99rem;
  background-color: #FF3142;
  transition: 0.3s ease-in-out;
  cursor: default;
  font-weight: 700;
}
.section.checking .number img {
  width: 0.8rem;
  transform: translateY(-0.2rem);
}
@media (min-width: 1100px) {
  .section.checking .number:hover {
    background-color: #c92634;
  }
}
.section.checking button {
  margin: 2rem auto 0 auto;
  color: #0C0C0D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  padding: 0.6em 2em;
  border-radius: 1em;
  background-color: #31A8FF;
  transition: 0.3s ease-in-out;
}
.section.checking button img {
  width: 1.2rem;
  transition: 0.3s ease-in-out;
}
@media (min-width: 1100px) {
  .section.checking button:hover {
    background-color: #F5C61F;
    color: #0C0C0D;
  }
  .section.checking button:hover img {
    filter: invert(1);
  }
}
.section.checking button img {
  filter: invert(1);
}
.section.checking.done button {
  pointer-events: none;
  background-color: #545455;
}/*# sourceMappingURL=thematic.css.map */