/* Theme Name: The Project - Responsive Website Template
Author:HtmlCoder
Author URI:http://www.htmlcoder.me
Author e-mail:htmlcoder.me@gmail.com
Version:1.2.0
Created:December 2014
License URI:http://support.wrapbootstrap.com/
File Description: Place here your custom CSS styles
*/

.timeline {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.li {
  transition: all 200ms ease-in;
}

.timestamp {
  margin-bottom: 20px;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 400;
}

.status {
  padding: 0px 40px;
  display: flex;
  justify-content: center;
  border-top: 2px solid #D6DCE0;
  position: relative;
  transition: all 200ms ease-in;
}
.status h4 {
  font-weight: 600;
}
.status:before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 25px;
  border: 1px solid #ddd;
  position: absolute;
  top: -15px;
  left: 42%;
  transition: all 200ms ease-in;
}

.li.complete .status {
  border-top: 2px solid #D6DCE0;
}
.li.complete .status:before {
  background-color: #72d872;
  border: 4px solid #D6DCE0;
  width: 25px;
  height: 25px;
  transition: all 200ms ease-in;
}
.li.complete .status.overdue:before {
  background-color: #d9534f;
  border: 4px solid #D6DCE0;
  transition: all 200ms ease-in;
}
.li.complete .status.overduecomplete:before {
  background-color: #f0ad4e;
  border: 4px solid #D6DCE0;
  transition: all 200ms ease-in;
}
.li.complete .status.notreviewed:before {
  background-color: #09afdf;
  border: 4px solid #D6DCE0;
  transition: all 200ms ease-in;
}
.li.complete .status.static:before {
  background-color: #D6DCE0;
  border: 4px solid #D6DCE0;
  transition: all 200ms ease-in;
}
.li.complete .status h4 {
  color: #09afdf;
}

@media (min-device-width: 320px) and (max-device-width: 700px) {
  .timeline {
    list-style-type: none;
    display: block;
  }

  .li {
    transition: all 200ms ease-in;
    display: flex;
    width: inherit;
  }

  .timestamp {
    width: 100px;
  }

  .status:before {
    left: -8%;
    top: 30%;
    transition: all 200ms ease-in;
  }
}