html {
  position: relative;
  min-height: 100%;
}
body {
  background: #d5d5d5;
  margin-bottom: 60px; /* Margin bottom by footer height */
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}
#mainContent {
	/*padding-bottom: 100px;*/
}
.footer {
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #999;
	font-size: 90%;
	color: #fff;
	position: fixed;
	bottom: 0px;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
header {
	background: #fff;
	color: #000;
	padding: 20px 0px;
	font-size: 0.9em;
}

.container {
  width: auto;
  max-width: 680px;
  padding: 0 15px;
}

.header-title {
	font-size: 1.5rem;
	line-height: 1.2rem;
	font-weight: 300;
}
.header-tel {
		
}

.despatched-text {
	font-weight: 600;
	text-align: center;
	padding: 20px;
}
.date {
	font-weight: 700;
	font-size: 30px;
	text-align: center;
	color: #b88667;
}
.event-date {
	font-size: 0.9em;
}
.card-container {
	padding: 20px 0px;
}

.tracking {
	font-weight: 600;;
	font-size: 1.1rem;
	padding-bottom: 10px;
}
.tracking-message {
	padding-bottom: 20px;
}
.tracking-logo {
	padding: 10px 0px;
}

/*
Timeline Css
*/
* {
  box-sizing: border-box;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #000;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 49.6%;
}

/* The circles on the timeline */
.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: #000;
  border: 4px solid #000;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
	text-align: right;
}

/* Place the container to the right */
.right {
  left: 50%;
	text-align: left;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #000;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #000;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #000;
  border-width: 10px 10px 10px 0;
  border-color: transparent #000 transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -13px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: #000;
  position: relative;
  border-radius: 6px;
  color: #fff;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .timeline {
    padding-top: 20px;
  }
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .timeline-container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 18px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}

@media (min-width: 768px) {
	.despatched-text {
		padding: 50px 0px 20px;
	}
	.date {
		font-size: 50px;
	}
}