
main {
	margin: auto;
}

.header-outer {
  width: 100%;
	height: auto;
	background: transparent;
}

.header-inner {
  color: gray;
  font-size: 90%;
  border-radius: 3px 3px 0 0;
  padding: 80px 5%;
  letter-spacing: 1px;
  text-transform: uppercase;
  /*background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
	url(https://source.unsplash.com/mTorQ9gFfOg) center center/cover no-repeat scroll #000;	*/
}

.title {
  width: auto;
  min-width: 55px;
  align-items: center;
  text-align: center;
  flex: 1;
}
.title a {
  color: white;
  letter-spacing: 0px;
}
.title h1,h2,h3,h4,h5,h6 {
  color: white;
}


.title p {
  color: #ccc;
  font-size: 0.9rem;
  text-transform: initial;
  letter-spacing: 0.5px;
  padding: 0 0 0 0;
}

.time-line h4 {
  margin-bottom: 0.8rem;
}

.time-line p {
  margin-bottom: 0.8rem;
}

.new-items h4:before,
.fixed-items h4:before,
.new-items h4:after,
.fixed-items h4:after {
	display: inline-block;
}

.new-items p:before, .fixed-items p:before {
  content: "•\00a0";
  font-size: 100%;
  display: inline;
  /*vertical-align: middle;*/
  margin-right: -3px;
}

.row-wrap {
  padding-left: 10%;
  padding-right: 10%;
}

.row-wrap:nth-of-type(odd) {
  background: transparent;
}

.row-wrap:nth-of-type(even) {
  background: #161616;
}

.row {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: flex-start;
}

.column {
  flex: 1 1 0;
  border-radius: 4px;
  padding: 1rem;
}

.align-right {
  text-align: right;
  font-size: 85%;
  i {
	  border: 1px solid #555;
	  padding: 7px;
	  border-radius: 20px;
  }
}

.align-left {
  text-align: left;
  font-size: 85%;
}

.align-center {
  text-align: center;
}

.time-line {
  padding: 1rem 0 6rem 2rem;
}
.time-line::after {
  content: "";
  background-color: #1e1e1e;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 110px;
  left: -2.5px;
}
.first .time-line::after {
  background-color: #777;
    animation: pulse 8s infinite;
	
}
.time-line::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #1e1e1e;
  width: 1px;
  top: 0;
  bottom: 0;
  left: 8px;
}

.first .time-line::before {
  top: 110px; /* match timeline:before above */
}

@keyframes pulse {
  0%, 10%, 90%, 100% {
    background-color: #1e1e1e;
  }
  40% {
    background-color: #555;
  }
  60% {
    background-color: #555;
  }  
}


.mobile-updates {
	width: 95%;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-flow: column wrap;
	background: blue;
	border-radius: 5px;
	background: rgba(32,32,32,1);
	padding: 1rem 1rem;
	left: 2.5%
}

.mobile-updates-header {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	position: relative;
	align-items: start;
	
}
.mobile-updates-header span {
	flex: 1;
	font-size: 0.875rem;
	color: #777;
}
.mobile-updates-header span:last-of-type {
	flex: 1;
	text-align: right;
}

.mobile-updates p {
	color: #ccc;
	flex: 1 0 auto;
	font-size: .875rem;
	line-height: 2;
}
.mobile-updates a {
	text-decoration: none;
	background: rgba(70, 175, 227, .8);
	border: 1px solid rgba(70, 175, 227, 1);
	padding: 0 8px;
	margin: 0 0 0 5px;
	border-radius: 3px;
	color: rgb(245,245,245);
}

@media screen and (max-width: 876px) {
  .row {
    flex-direction: column;
  }
  .date {
	flex-direction: row;
	flex-grow: 0;
  }

  .row-wrap {
    padding: 0 10px 0 10px;
  }

  .time-line::after {
    top: 100px;
  }

  .first .time-line::before {
    top: 100px;
  }

  .align-right {
    text-align: right;
  }

  .align-center {
    text-align: left;
  }
}
