@charset "UTF-8";
/*--------------------------------------------

Name:     Timeline
Created:  13/02/15
Author:   Raúl Hernández <raulghm@gmail.com>
Github:   raulghm

----------------------------------------------*/
/*
Using BEM SuitCSS variant, see: https://github.com/suitcss/suit/blob/master/doc/naming-conventions.md
*/
.cf:before, .Timeline-item:before, .Timeline-item-top:before,
.cf:after,
.Timeline-item:after,
.Timeline-item-top:after {
  content: " ";
  display: table;
}

.cf:after, .Timeline-item:after, .Timeline-item-top:after {
  clear: both;
}
.cf, .Timeline-item, .Timeline-item-top {
  *zoom: 1;
}
.Timeline {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.Timeline.is-dragging .Timeline-item-inner {
  opacity: .7;
}
.Timeline-item {
  width: 100%;
  position: relative;
  z-index: 90;
}
.Timeline-item-inner {
  position: relative;
  width: 100%;
  border: 1px solid #949494;
  transition: all .3s ease;
  margin: 0px 0px 20px 2.5%;
  box-sizing: content-box;
}

.Timeline-item-inner:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: -9px;
  top: 43.5%;
  height: 0;
  width: 0;
}
.Timeline-item:hover {
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.Timeline-item:hover:after {
  border-left-color: #000;
}
.Timeline-item:hover .Timeline-item-inner {
  border-color: #000;
}
.Timeline-item:hover .Timeline-item-top-tools {
  opacity: 1;
}

.Timeline-item-inner:before {
  height: 0;
  width: 0;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #949494;
  border-top: 8px solid transparent;
  border-left: 0;
  right: auto;
  left: -9px;
}
/*
.Timeline-item .Timeline-item-index {
  
  width: 45px;
  left: 0%;
  
}
*/
.Timeline-item.is-dropping {
  cursor: -webkit-grabbing;
}
.Timeline-item-index {
  /* justify-content: flex-end;*/
  display: flex !important;
  align-items: center;
  color: #000;
  /* font-weight: 200; */
  /* font-family: Georgia, "Times New Roman", Times, serif; */
  display: -webkit-inline-box;
  border: 1px solid #949494;
  padding: 0 5px 0 5px;
  margin-bottom: 20px;
  font-size: 16px;
  position: relative;
  box-sizing: content-box;
}

.Timeline-item-index:after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
}

.Timeline-item-index:after {
  height: 0;
  width: 0;
  border-bottom: 8px solid #949494;
  border-right: 8px solid transparent;
  border-top: 8px solid #949494;
  border-left: 0;
  left: auto;
  right: -8px;
}

.longer-date-right{
  left: -35%;
}
/*
.Timeline-item--quote .Timeline-item-content {
  font-family: Georgia, "Times New Roman", Times, serif; 
}
*/

.Timeline-item--image .Timeline-item-content-body img {
  max-width: 100%;
  margin-top: 5px;
}
.Timeline-item-top {
  height: 45px;
  background-color: #f8f8f8;
  padding: 10px 10px 0px 10px;
}
.Timeline-item-top:hover {
  cursor: move;
  cursor: -webkit-grab;
}
.Timeline-handle {
  position: absolute;
  top: 10px;
  right: 20px;
}
.Timeline-handle:hover {
  cursor: move;
  cursor: -webkit-grab;
}
.Timeline-item-top-type {
  float: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  font-size: 1.1rem;
}
.Timeline-item-top-type i {
  font-size: 16px;
  font-size: 1.6rem;
}
.Timeline-item-top-type span {
  margin-left: 10px;
}
.Timeline-item-content {
  height: 5.7rem;
  background-color: #fff;
  padding: 10px 20px;
  text-align: left;
  display: flex;
  align-items: center;
}
.Timeline-item-content:focus {
  outline: 3px #a61d37 dashed !important;
}
.Timeline-item-content-clickable:focus {
  outline: none !important;
  color: #000 !important;
}
.Timeline-item-content-title {
  font-size: 16px;
  /*
  font-size: 1.5rem;
  */
}
.Timeline-item-content-image {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  height: 135px;
  width: 341px;
  margin-top: 10px;
  margin-left: -20px;
}
.Timeline-item-content-body {
  position: relative;
}
.Timeline-item-content-body:empty {
  display: none;
}

.sticky{
	position: -webkit-sticky;
	position: sticky;
	top: 60px;
	z-index: 999;
}

.Timeline-item-content-clickable {
  color: #000;
}

.Timeline-item-content-clickable:hover {
  color: #000;
  text-decoration: none;
}