@charset "UTF-8";
.timeline {
    position: relative;
    width: 660px;
    margin: 0 auto;
    padding: 1em 0;
    list-style-type: none;
  
  }
  
  .timeline:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: ' ';
    display: block;
    width: 6px;
    height: 100%;
    margin-left: -3px;
    background: rgb(80,80,80);
    background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
    background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
    
    z-index: 5;
  }
  
  .timeline li {
    padding: 1em 0;
  }
  
  .timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  
  .flag-wrapper {
    position: relative;
    display: inline-block;
    
    text-align: center;
  }
  
  .flag {
    position: relative;
    display: inline;
    background: rgb(48, 47, 70);
    padding: 6px 10px;
    border-radius: 5px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-align: left;
  }
  
  .element .flag {
    -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  }

  .element .flag:before {
    position: absolute;
    top: 50%;
    right: -40px;
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -10px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid rgb(74, 116, 117);
    z-index: 10;
  }
  
  .element .flag:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    height: 0;
    width: 0;
    margin-top: -8px;
    border: solid transparent;
    border-left-color: rgb(248,248,248);
    border-width: 8px;
    pointer-events: none;
  }
  
  .time-wrapper {
    display: inline;
    
    line-height: 1em;
    font-size: 0.66666em;
    color: rgb(1, 15, 95);
    vertical-align: middle;
  }
  
  .time {
    display: inline-block;
    padding: 4px 6px;
    background: rgb(255, 255, 255);
    font-size:1.5em;
  }
  
  .desc {
    margin: 1em 0.75em 0 0;
    
    font-size: 0.9em;
    font-family: copperblate;
    line-height: 1.5em;
  }
  /* ================ Timeline Media Queries ================ */
  
  @media only screen and (orientation: landscape) {
  .timeline {
       width: 50%;
      padding: 4em 0 1em 0;
  }
}
@media only screen and (orientation: portrait) {
  .timeline {
       width: 95%;
      padding: 4em 0 1em 0;
  }
}
  
  .timeline li {
      padding: 2em 0;
  }
  
  .element {
      float: none;
      width: 100%;
  
      text-align: center;
  }
  
  .flag-wrapper {
      text-align: center;
  }
  
  .flag {
      background-color: white;
      color: black;
      font-size:1rem;
      text-transform: uppercase;
      z-index: 15;
  }
  @media only screen and (orientation: portrait) {
    .flag {
      background-color: white;
      color: black;
      font-size:1rem;
      line-height:1.5;
      text-transform: uppercase;
      z-index: 15;
  }
  }
  
  .element .flag:before {
    position: absolute;
    top: -30px;
      left: 50%;
      content: ' ';
      display: block;
      width: 12px;
      height: 12px;
      margin-left: -9px;
      background: #fff;
      border-radius: 10px;
      border: 4px solid rgb(255, 0, 0);
      z-index: 10;
  }
    .element .flag:after {
      content: "";
      position: absolute;
      left: 50%;
      top: -8px;
      height: 0;
      width: 0;
      margin-left: -8px;
      border: solid transparent;
      border-bottom-color: rgb(255,255,255);
      border-width: 8px;
      pointer-events: none;
  }
  
  .time-wrapper {
      display: block;
      position: relative;
      margin: 4px 0 0 0;
      z-index: 14;
  }
  
  .element .time-wrapper {
      float: none;
  }
  
  .desc {
      position: relative;
      margin: 1em 0 0 0;
      padding: 1em;
      background: rgba(209, 209, 209, 0.144);
      color: white;
      font-size: 0.95rem;
      font-family: georgia;
      border-radius: 5px;
      -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20);
      -moz-box-shadow: 0 0 1px rgba(0,0,0,0.20);
      box-shadow: 0 0 1px rgba(0,0,0,0.20);
      
    z-index: 15;
  }
  
  .element .desc {
      position: relative;
      margin: 1em 1em 0 1em;
      padding: 1em;
      
    z-index: 15;
  }
  
  .spoil {
    opacity : 0;
  }
  
  .spoil:active {
    opacity : 1;
  }
  .spoil:hover {
    opacity : 1;
  }
  @media screen and (min-width: 400px ?? max-width: 660px) {
  
  .element .desc {
      margin: 1em 4em 0 4em;
  }
  
  }