/**
 * Where are all the colors?
 *
 * Everything has been moved to the bedstone/functions/palette.php file.
 *
 * In SASS, you can use the color names as css variables. There's even a
 *     lighter/darker version of each color. Here are some examples:
 *     color: var(--palette-text);
 *     background-color: var(--palette-bg-alt);
 *     border-color: var(--palette-bg-alt);
 */
.flexset {
  display: flex;
  flex-flow: row wrap;
  margin-left: -1vw;
  margin-right: -1vw;
  overflow: hidden;
}
.flexset > * {
  padding-left: calc(2vw / 2);
  padding-right: calc(2vw / 2);
}
.flexset--nogutter {
  margin-left: 0;
  margin-right: 0;
}
.flexset--nogutter > * {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 781px) {
  .flexset {
    display: flex;
    flex-flow: row wrap;
    margin-left: -1.5vw;
    margin-right: -1.5vw;
    overflow: hidden;
  }
  .flexset > * {
    padding-left: calc(3vw / 2);
    padding-right: calc(3vw / 2);
  }
  .flexset--nogutter {
    margin-left: 0;
    margin-right: 0;
  }
  .flexset--nogutter > * {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .flexset {
    display: flex;
    flex-flow: row wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    overflow: hidden;
  }
  .flexset > * {
    padding-left: calc(1.5rem / 2);
    padding-right: calc(1.5rem / 2);
  }
  .flexset--nogutter {
    margin-left: 0;
    margin-right: 0;
  }
  .flexset--nogutter > * {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .flexset {
    display: flex;
    flex-flow: row wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    overflow: hidden;
  }
  .flexset > * {
    padding-left: calc(1.5rem / 2);
    padding-right: calc(1.5rem / 2);
  }
  .flexset--nogutter {
    margin-left: 0;
    margin-right: 0;
  }
  .flexset--nogutter > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  background: var(--wp--preset--color--palette-brand-1);
  width: 4px;
  height: 95%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 30px;
}

.timeline-item {
  width: 100%;
  margin-bottom: 70px;
}

.timeline-item:nth-child(even) .timeline-content {
  float: right;
}

.timeline-item:nth-child(even) .timeline-content .date {
  right: auto;
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: "";
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 30px;
  left: -38px;
}

.timeline-item::after {
  content: "";
  display: block;
  clear: both;
}

.timeline-content {
  position: relative;
  width: 47.5%;
  border-radius: 4px;
  box-shadow: 5px 5px 20px rgb(179, 180, 179);
}

.timeline-item .timeline-content::after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 30px;
  right: -39px;
  border-width: 16px;
  border-radius: 50%;
  border-color: var(--wp--preset--color--palette-brand-1);
}

.timeline-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-top: 25px;
  margin-left: -15px;
}

.timeline-card {
  padding: 0 !important;
}

.timeline-item .timeline-img-header {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.timeline-img-header {
  height: 200px;
  position: relative;
  margin-bottom: 20px;
}

.timeline-img-header h2 {
  color: var(--palette-bg);
  position: absolute;
  bottom: 5px;
  left: 30px;
}

.date {
  background: #f1f1f1;
  color: var(--palette-bg);
  padding: 1.25rem 1rem 0.5rem;
  margin: 0;
  color: var(--wp--preset--color--palette-brand-2);
}

.timeline-content__text {
  padding: 1rem;
}

.timeline-content__heading {
  margin-block-start: 0;
}

.timeline-content-wrapper {
  padding: 0 30px 10px;
}

@media screen and (max-width: 768px) {
  .timeline::before {
    left: 50px;
  }
  .timeline .timeline-img {
    left: 50px;
  }
  .timeline .timeline-content {
    max-width: 100%;
    width: auto;
    margin-left: 70px;
  }
  .timeline .timeline-item:nth-child(even) .timeline-content {
    float: none;
  }
  .timeline .timeline-item:nth-child(odd) .timeline-content::after {
    left: -36px;
  }
  .timeline .timeline-item:nth-child(even) .timeline-content::after {
    left: -36px;
  }
}

/*# sourceMappingURL=timeline.css.map */
