.pc-timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.pc-timeline .pc-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pc-timeline .pc-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}
.pc-timeline .pc-indicator-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.pc-timeline .pc-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.pc-timeline .pc-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: var(--pc-connector-width, 2px);
  background-color: var(--pc-connector-color, #ddd);
  height: calc(100% + var(--pc-items-gap) + var(--pc-indicator-height));
  z-index: -1;
}
.pc-timeline .pc-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 1;
}
.pc-timeline .pc-content .pc-pretitle {
  display: block;
}
.pc-timeline .pc-content .pc-title {
  margin-top: 0;
}
.pc-timeline .pc-content .pc-description p {
  margin-top: 0;
}
.pc-timeline .pc-content .pc-description p:last-child {
  margin-bottom: 0;
}
.pc-timeline .pc-image-container {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 2;
}
.pc-timeline .pc-image-container .pc-image {
  display: block;
}
@media only screen and (min-width: 1025px) {
  .pc-timeline .pc-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .pc-timeline .pc-item:last-child .pc-indicator::after {
    display: none;
  }
  .pc-timeline .pc-indicator::after {
    top: var(--pc-indicator-height);
  }
  .pc-timeline .pc-content-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (max-width: 1024px) {
  .pc-timeline .pc-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pc-timeline .pc-item:first-child::after {
    display: none;
  }
  .pc-timeline .pc-content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pc-timeline .pc-indicator-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .pc-timeline .pc-indicator {
    position: relative;
  }
  .pc-timeline .pc-indicator::after {
    bottom: var(--pc-indicator-height);
  }
  .pc-timeline .pc-image-container {
    width: 100%;
  }
}