#canvas {
  position: absolute;
  display: block;
  z-index: 0;
  opacity: 0.3;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

#odb-history-down-arrow {
  position: absolute;
  font-size: 5em;
  z-index: 10000;
  left: 50%;
  color: orange;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
  cursor: pointer;
}

#odb-history-down-arrow:hover {
  opacity: 1;
  margin-top: 50px;
}

.main-container {
  width: 100%;
  position: relative;
  z-index: 1;
  /* overflow-x: hidden; */
  overflow-y: visible;
  -webkit-box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.5);
}

.odb-history--container {
  width: 100%;
  max-width: 1600px;
  position: relative;
  margin: 0 auto;
  height: 500px;
  /* top : 100px; */
  left: 0;
  /* background : white; */
  overflow-x: hidden;
  overflow-y: visible;
  /* -webkit-overflow-scrolling: touch; */
  /* background-color : #444444; */
}

.odb-history--container > .odb-history--card {
  position: absolute;
  width: 100%;
  padding: 10px;
}

.odb-history--container > .odb-history--card .odb-history--date {
  font-size: 4em;
  line-height: 0em;
  letter-spacing: -0.05em;
}

.odb-history--text-container {
  position: absolute;
  left: 25%;
  width: 300px;
  -webkit-transform: translate(-300px, -50%);
          transform: translate(-300px, -50%);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  text-align: right;
  font-size: 1em;
  z-index: 2;
}

.odb-history--card {
  max-height: 300px;
}

.odb-history--card:nth-child(even) > .odb-history--text-container {
  left: 75%;
  -webkit-transform: translate(300px, -50%);
          transform: translate(300px, -50%);
  text-align: left;
}

.odb-history--card .odb-history--text-container.appeared {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
}

.odb-history--card .odb-history--image {
  position: absolute;
  left: 75%;
  /* top: 0px; */
  -webkit-transform: translate(300px, -50%) rotate(60deg);
          transform: translate(300px, -50%) rotate(60deg);
  opacity: 0;
  width: 300px;
  height: 500px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  max-width: 300px;
  max-height: 400px;
  z-index: 2;
  /* border: 2px solid orange; */
  overflow: hidden;
  border-radius: 2px;
  /* box-shadow: 3px 3px 8px -3px #00000045; */
  /* background: white; */
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
}

.odb-history--card:nth-child(even) > .odb-history--image {
  left: 25%;
  -webkit-transform: translate(-300px, -50%) rotate(-60deg);
          transform: translate(-300px, -50%) rotate(-60deg);
}

.odb-history--card .odb-history--image.appeared {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.odb-history--card .odb-history--image > img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}

.odb-history--date-point {
  /*   border-width : 0px; */
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: 25px;
  height: 25px;
  left: 50%;
  top: 0px;
  padding: 0;
  margin: 0;
  border-radius: 100%;
  background-color: orange;
}

.odb-history--date-point-anim {
  z-index: 20;
  width: 3em;
  height: 3em;
  background-color: unset;
  border: 20px solid black;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.odb-history--date-point-anim.appeared {
  opacity: 0.3;
  border: 2px solid black;
}

.odb-history--decoration {
  opacity: 0.15;
  position: absolute;
  right: 0;
  width: 30rem;
  height: 30rem;
  top: 0;
  background-image: url("https://oeuf.fr/wordpress/wp-content/themes/wrap-child/assets/svg/chicken.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: scale(2);
          transform: scale(2);
}

.odb-history--decoration.egg {
  background-image: url("https://oeuf.fr/wordpress/wp-content/themes/wrap-child/assets/svg/egg.svg");
  left: 0;
}

@media only screen and (max-width: 640px) {
  .odb-history--card .odb-history--text-container {
    font-size: 14px;
    width: 200px;
  }
  .odb-history--card .odb-history--text-container p {
    font-size: 14px;
  }
  .odb-history--card .odb-history--image {
    /* width : 200px; */
    max-width: 200px;
  }
}

@media only screen and (max-width: 500px) {
  .odb-history--card .odb-history--text-container {
    font-size: 0.6em;
    width: 150px;
  }
  .odb-history--card .odb-history--text-container p {
    font-size: 12px;
  }
  .odb-history--card .odb-history--image {
    width: 150px;
    max-width: 150px;
  }
}
/*# sourceMappingURL=notre_histoire.css.map */