/*!
    Title: Vertical-Timeline
    Version: 2.0.0
    Last Change: 04/30/17
    Author: Ryan Fitzgerald
    Repo: https://github.com/RyanFitzgerald/vertical-timeline
    Issues: https://github.com/RyanFitzgerald/vertical-timeline/issues
	LICENSE: MIT
*/
.vtimeline {
  position: relative;
  padding:5px 30px;
  overflow: hidden; 
  }
  .vtimeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width:1px;
    /*background: #ff3939;*/
	border-left: 1px dotted #df0505;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: 0 auto; }

.vtimeline-point {
  position: relative;
  width: 100%;
  margin-bottom: 5px; }

.vtimeline-icon {
  position: absolute;
  top: 5px;
  height: 15px;
  width: 15px;
  left: -22px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ff0000; 
  
  }

.vtimeline-content { background: #fff; transition: 0.5s ease all; border-bottom: 1px dotted #9f9f9f; padding: 5px 0px 5px 0px; font-family: Roboto,sans-serif;}
.vtimeline-content p {color: #181818; font-family: Roboto,sans-serif; margin-top: 0px;}
.vtimeline-content a {color: #000; font-family: Roboto,sans-serif; font-size: 15px;}
.vtimeline-content a:hover{color: #ff4838; font-family: Roboto,sans-serif;}
  

.vt-animate-fade {
  opacity: 0; }

.vt-animate-slide {
  opacity: 0; }
  .vt-animate-slide .vtimeline-content {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }

.vt-noarrows:after {
  content: none; }
/*
@media only screen and (max-width: 992px) {
  .vtimeline:before {
    left: 30px;
    right: auto;
    margin: 0; }
  .vtimeline-icon {
    left: -10px;
    right: auto;
    margin: 0; }
  .vtimeline-block {
    width: 85%;
    margin-left: 15%; }
    .vtimeline-block:after {
      left: auto;
      right: 85%;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: none;
      border-right: 10px solid #eee; }
  .vtimeline-date {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    right: auto;
    background: #eee; }
  .vtimeline-right .vtimeline-date {
    right: auto; }
  .vtimeline.basic .vtimeline-date {
    padding: 10px 10px 0 10px; }
  .vt-animate-slide .vtimeline-content {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); } }
*/