body
{
	margin: 0;
}

#timeline
{
	width: 600px;
	height: 600px;
	position: relative;

	background-image: url(../img/bg_timeline.png);
	background-repeat: no-repeat;
	background-size: cover;

	overflow: hidden;
}

#timeline ul
{
	width: 350px;
	height: 100%;
	margin: 0;
	padding: 0;

	position: absolute;
	top: 0px;
}

#timeline li
{
	padding-left: 30px;
	position: absolute;
	right: 0;
	top: 50%;

	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;

	text-align: right;
	list-style: none;

	transform: translateY(-50%);
	opacity: 0;

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#timeline li.on
{
	opacity: 1;
}

#timeline li strong
{
	display: block;
	margin-bottom: 5px;

	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 2px;
}

#timeline .line
{
	width: 100px;
	height: 0px;
	position: absolute;
	right: 120px;
	top: 50%;
	transform: translateY(-50%);

	overflow: hidden;
}

#timeline .line .bg
{
	width: 2px;
	height: 100%;
	position: absolute;
	left: 50px;
	top: 0px;

	background-color: #fff;
}

#timeline .line .point
{
	position: absolute;
	transform: translateY(-50%);
	border-radius: 1000px;

	background-color: #fff;
	cursor: pointer;

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#timeline .line .point.on
{
	box-shadow: 0px 0px 0px 15px rgba(255,255,255,0.5); 
}

#timeline .line .point.future
{
	background-color: #FFFFFF;
	transform: scale(0.7);
}

#timeline .bt-timeline
{
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 0px;
	right: 154px;

	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;

	background-color: #4262D4;
	background-image: url(../img/pointer.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 7px 4px;
	border: 2px solid #FFFFFF;
	border-radius: 30px;
	cursor: pointer;

	transform: rotate(180deg);
	z-index: 1;
}

#timeline .bt-timeline.top
{
	top: 0px;
	transform: rotate(0deg);
}
