
@mixin tablet-and-up {
    @media screen and (min-width: 769px) { @content; }
}
@mixin mobile-and-up {
    @media screen and (min-width: 601px) { @content; }
}
@mixin tablet-and-down  {
    @media screen and (max-width: 768px) { @content; }
}
@mixin mobile-only {
    @media screen and (max-width: 600px) { @content; }
}


.list-timeline, .items-timeline{
  list-style: none;
  padding: 0;
}
.items-timeline {
 padding-bottom: 1.5rem;
  border-left: 1px solid #abaaed;
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
}
.items-timeline:before{
    content: '';
    width: 15px;
    height: 15px;
    background: #0972e7;
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 0px;
}
.items-timeline:last-child{
    border: 0px;
    padding-bottom: 0;
  }
