/*!***********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./pivot-blocks/timeline/style.scss ***!
  \***********************************************************************************************************************************************************************************/
.timeline {
  position: relative;
  z-index: 1;
  padding-left: 140px;
  max-height: 750px;
  overflow-y: auto;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}
.timeline .container {
  padding: 0;
}
.timeline .timeline-name {
  color: var(--wp--preset--color--white);
}

.timeline-content {
  position: relative;
}
.timeline-content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--wp--preset--color--black);
  width: 2px;
  height: 100%;
  z-index: -1;
}

.timeline-entry {
  position: relative;
  margin-bottom: 135px;
}

.timeline-entry-content {
  display: flex;
  position: relative;
  perspective: 500px;
  flex-direction: column;
}

.timeline-year {
  display: flex;
  font-size: 20px;
  color: var(--wp--preset--color--orange);
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 900;
  position: relative;
  transform: translateX(-20px);
  opacity: 0;
  width: 150px;
  padding-left: 15px;
  flex-shrink: 0;
  text-transform: uppercase;
  text-align: right;
  transition: 0.3s ease all;
}

.circle {
  width: 25px;
  height: 25px;
  border: 1px solid black;
  border-radius: 50%;
  position: relative;
  left: -26px;
  top: -5px;
  background: var(--wp--preset--color--white);
  z-index: 2;
}

.timeline-copy {
  padding: 10px 40px;
  transform-style: preserve-3d;
  transform: rotateX(30deg);
  opacity: 0;
  flex-grow: 1;
  transition: 0.3s ease all;
}
.timeline-copy p {
  margin-top: 0;
}
.timeline-copy h3 {
  margin: 0;
}

.copy-container {
  font-size: 24px;
  color: var(--wp--preset--color--black);
  font-weight: 500;
}

body.is-touch .timeline-entry .timeline-copy,
body.wp-admin .timeline-entry .timeline-copy,
.timeline-entry.visible .timeline-copy {
  transform: rotateX(0);
  opacity: 1;
}
body.is-touch .timeline-entry .timeline-year,
body.wp-admin .timeline-entry .timeline-year,
.timeline-entry.visible .timeline-year {
  transform: translate(0) !important;
  opacity: 1 !important;
}
body.is-touch .timeline-entry .timeline-name,
body.wp-admin .timeline-entry .timeline-name,
.timeline-entry.visible .timeline-name {
  opacity: 1;
}

@media (max-width: 767px) {
  .timeline {
    padding-left: 40px;
  }
  .timeline .timeline-entry {
    margin-bottom: 60px;
  }
  .timeline .timeline-entry .timeline-copy .copy-container {
    font-size: 15px;
  }
}
@media (max-width: 400px) {
  .timeline-entry:after {
    margin-left: 127px;
  }
  .timeline-entry .timeline-copy {
    padding: 25px 0 0 50px;
  }
  .timeline-entry .timeline-year {
    width: 146px;
  }
}
