.display_posts_container {
  display: flex;
  border-top: 1px solid black;
}
.display_posts_col {
  padding-top: 50px;
}
.display_posts_col_1 {
  width: 30%;
  padding-right: 40px;
  padding-left: 10px;
  /* //// */
  min-height: 100%;
}

.display_posts_col_2 {
  width: 70%;
  padding-left: 40px;
  padding-bottom: 50px;
  border-left: 1px solid black;
}

.display_posts_title {
  cursor: pointer;
  padding: 10px;
  padding-left: 40px;
  position: relative;
  /* height: 100%; */
  /* max-height: 50px; */
  height: 50px;
  /* transition: max-height 0.3s; */
  transition: padding-bottom 0.2s;

}
.display_posts_title::after,
.display_posts_title_active::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 30px;
  left: -10.5px;
  top: 8px;
  outline: 10px solid #e9f6fe;
}
.display_posts_title::after {
  background: #c3e0f1;
}
.display_posts_title_active {
  /* max-height: 30vh; */
  /* height: 30vh; */
  padding-bottom: 25vh;
  border-left: 1px solid black;
  /* transition: padding-bottom 0.2s; */
}
.display_posts_title_active::after {
  background: #e20612;
}
.display_posts_title:last-child.display_posts_title_active {
  /* max-height: 100%; */
  padding-bottom: 0;
  border-left: none;
}

.display_posts_post {
  display: none;
}

.display_posts_post_active {
  display: block;
}

.display_posts_title h3 {
  color: black !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em !important;
}

@media screen and (max-width: 768px) {
  .display_posts_col {
    padding-top: 10px;
  }
  .display_posts_col_1 {
    width: 20%;
    padding-right: 5px;
  }
  .display_posts_col_2 {
    width: 80%;
    padding-left: 5px;
  }
  .display_posts_title {
    padding-left: 10px;
    padding-top: 0;
  }
  .display_posts_title::after,
  .display_posts_title_active::after {
    outline: 4px solid #e9f6fe;
    top: 0px;
    height: 12px;
    width: 12px;
    left: -6px;
  }
  .display_posts_title h3 {
    font-size: 8px;
    font-weight: 700;
    display: inline-block;
    background: #e9f6fe;
  }
  .display_posts_title_active {
    padding-bottom: 15vh;
  }
}
