@charset "UTF-8";
#timeline-base {
  /*background: blue; /*linear-gradient(55deg, #4E75B9 30%, #5CBF98 90%);*/
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  min-height: 100vh;
  width: 100%;
  margin: 0;
  /*padding: 100px;*/
/*  font-family: 'Source Sans Pro', arial, sans-serif;*/
  font-weight: 300;
  color: #333;
  box-sizing: border-box;
  font-size: 110%;
}
#timeline-base * {
  box-sizing: border-box;
}

.timeline {
  width: 100%;
  /*max-width: 800px;*/
  /*background: #fff;*/
  /*padding: 100px 50px;*/
  position: relative;
  /*box-shadow: 0.5rem 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);*/
}
.timeline:before {
  content: '';
  position: absolute;
  top: 0px;
  left: calc(33% + 15px);
  bottom: 0px;
  width: 4px;
  background:#ffd200;
  z-index: 99;
}
.timeline:after {
  content: "";
  display: table;
  clear: both;
}

.entry {
  clear: both;
  text-align: left;
  position: relative;
}
.entry .title {
  margin-bottom: .5em;
  float: left;
  width: 33%;
  padding-right: 10px;
  text-align: right;
  position: relative;
  cursor: pointer;
}
.entry .title:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 25px solid #1565C0;
  background-color: #fff;
  border-radius: 100%;
  top: -55%;
  right: -40px; /*-8px*/
  z-index: 99;
}
.entry .title h3 {
  margin: 0px;
  font-size: 120%;
}
.entry .title p {
  margin: 0;
  font-size: 100%;
  position: absolute;
  top: -26.5%;
  right: -34px; /*-8px*/
  z-index: 99;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  background-color: #fafafa;
}

@media only screen and (max-width: 430px) {
  .entry .title p {
    top: -38.5%;
  }
}

@media only screen and (max-width: 360px) {
  .entry .title p {
    top: -45.5%;
  }
}

@media only screen and (max-width: 570px) {
  .entry .title p {
    top: -45.5%;
  }
}

@media only screen and (max-width: 640px) {
  .entry .title p {
    top: -45.5%;
  }
}

.entry .title p i{
  margin: 0;
  position: absolute;
  top: 6%;
  right: 3px; /*-8px*/
  font-size: 32px;
}

.entry .body {
  margin: 0 0 3em;
  float: right;
  width: 66%;
  padding-left: 45px;
  min-height: 30px;
}
.entry .body p {
  line-height: 1.4em;
}
.entry .body p:first-child {
  margin-top: 0;
  font-weight: 700;
}
.entry .body ul {
  color: #777;
  padding-left: 0;
  list-style-type: none;
}
.entry .body ul li:before {
  content: "–";
  margin-right: .5em;
}

.body p, .body ul, .body .row{ display: none; }