.elm.timeline {
  line-height: normal;
  position: relative;
}

.elm.timeline .timeline_linie {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  width: 2px;
  background: #C0C0C0;
}

.elm.timeline .timeline_linie_progress {
  background: [[ci_color_text]];
}

.elm.timeline .timeline_row {
  margin-bottom: 40px;
}

.elm.timeline .timeline_row .col:empty {
  height: 50px;
}

.elm.timeline .timeline_row .col.timeline_icon {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  order: 1;
}

.elm.timeline .timeline_row .timeline_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #C0C0C0;
  border-radius: 50%;
  color: #FFFFFF;
  margin-right: 10px;
}

.elm.timeline .timeline_row .timeline_icon_wrapper.active {
  background: [[ci_color_text]];
}

.elm.timeline .timeline_row .col.timeline_content {
  position: relative;
  box-shadow: 2px 2px 30px 0 rgba(156,156,192,0.26);
  order: 2;
}

body:not(.editor_active) .elm.timeline .timeline_row .col.timeline_content:before {
  content: '';
  position: absolute;
  top: 1.6rem;
  left: -5px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);  
}

body:not(.editor_active) .elm.timeline .timeline_row .is-vcentered .col.timeline_content:before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);  
}


@media only screen and (min-width : 768px) {

  .elm.timeline .timeline_linie {
    left: 50%;
  }

  .elm.timeline .timeline_row .timeline_icon_wrapper {
    margin-right: 0;
  }

  .elm.timeline .timeline_row .col.timeline_icon {
    order: 2;
  }

  .elm.timeline .timeline_row:nth-child(even) .col.timeline_content {
    order: 1;
  }

  .elm.timeline .timeline_row:nth-child(even) .col.timeline_content:before {
    left: auto;
    right: -5px;
  }

  .elm.timeline .timeline_row:nth-child(even) .col.timeline_content2 {
    order: 3;
  }

  .elm.timeline .timeline_row:nth-child(odd) .col.timeline_content {
    order: 3;
  }

  .elm.timeline .timeline_row:nth-child(odd) .col.timeline_content2 {
    order: 1;
  }

}

@media only screen and (min-width : 1024px) {

  body:not(.editor_active) .elm.timeline .col.timeline_content:before {
    left: -10px;
  }

  body:not(.editor_active) .elm.timeline .timeline_row:nth-child(odd) .col.timeline_content:before {
    right: -10px;
  }
  
}

@media only screen and (max-width : 767px) {
  .elm.timeline .col.timeline_content2 {
    display: none;
  }
}
