body {
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  background-color: #F3F2E2;
}
body main {
  width: 100%;
  height: 100%;
}
body main section {
  overflow: auto;
  width: 100%;
  height: 100%;
}
body main section .map {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 1920px;
  height: auto;
  cursor: grab;
}
body main section .map svg {
  width: 100%;
  height: 95%;
  transform: translate(0, 0);
  transform-origin: center;
}
body main section .map rect {
  border: black 1px solid;
}
body main section .map #rouge {
  cursor: pointer;
}
body main section .map #rouge path {
  transition: fill ease-in 200ms;
}
body main section .map #rouge:hover path {
  fill: black;
}
body main section .contenu {
  height: 101%;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 150%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--clr-claire);
  transition: left ease-in-out 300ms;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main section .contenu .titre {
  display: flex;
  justify-content: center;
  align-items: center;
}
body main section .contenu .titre h1 {
  padding: 50px;
  font-size: 3.5rem;
}
body main section .contenu .titre h2 {
  font-size: 3rem;
  font-family: Arial, Helvetica, sans-serif !important;
  cursor: pointer;
}
body main section .contenu p {
  padding: 10px;
  padding-left: 100px;
  padding-right: 100px;
  text-align: left;
  letter-spacing: normal;
  font-size: 1.1rem;
}
body main section .contenu .infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--clr-claire-secondaire);
  width: 80%;
  border-radius: 50px;
  padding: 30px;
  margin: 20px;
  -moz-text-align-last: left;
       text-align-last: left;
}
body main section .contenu .infos div {
  margin: 10px;
  height: 80%;
}
body main section .contenu .infos div h2 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
body main section .contenu .infos div h3 {
  font-size: 0.8rem;
}
body main section .contenu .infos .distance {
  font-size: 2rem;
}
body main section .contenu .infos .difficulte {
  height: 75px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
body main section .contenu .infos .difficulte h3 {
  font-size: 1rem;
}
body main section .contenu .liens {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 25px;
}
body main section .contenu .liens h2 {
  font-size: 1rem;
  margin: 10px;
  letter-spacing: 1px;
  padding: 10px;
  padding-left: 100px;
  padding-right: 100px;
}

@media screen and (max-width: 768px) {
  body main section .contenu .titre {
    width: 50%;
  }
  body main section .contenu .titre h1 {
    font-size: 1.5rem;
    padding: 20px;
  }
  body main section .contenu .titre h2 {
    font-size: 1.7rem;
  }
  body main section .contenu p {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1rem;
  }
}/*# sourceMappingURL=carte.css.map */