.timeline {
	list-style-type: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.li {
  transition: all 200ms ease-in;
  width: 100%;
}

.timestamp {
	margin-bottom: 20px;
	padding: 0px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 100;
}

.status {
	padding: 0px 20px;
	display: flex;
	justify-content: center;
	border-top: 2px solid #D6DCE0;
	position: relative;
  	transition: all 200ms ease-in;
}

.status h4 {
  font-weight: 400;
  font-family: 'Titillium Web', sans serif;
}

.status:before {
	content: '';
	width: 12px;
	height: 12px;
	background-color: white;
	border-radius: 25px;
	border: 1px solid #ddd;
	position: absolute;
	top: -7px;
	/* left: 42%; */
	transition: all 200ms ease-in;
	background-color: #1271ca;
}

.li.complete .status {
	border-top: 2px solid #66DC71;
}

.li.complete .status:before {
	background-color: #66DC71;
	border: none;
	transition: all 200ms ease-in;
}

.li.complete .status h4 {
	color: #494949;
}

@media (min-device-width: 320px) and (max-device-width: 700px) {
	.timeline {
		list-style-type: none;
		display: block;
	}

	.li {
		transition: all 200ms ease-in;
		display: flex;
		width: inherit;
	}

	.timestamp {
		width: 100px;
	}

	.status:before {
		left: -8%;
		top: 30%;
		transition: all 200ms ease-in;
	}
}

/* html, body {
	width: 100%;
	height: 100%;
	font-family: 'Titillium Web', sans serif;
	color: #758D96;
} */

/* button {
	position: absolute;
	width: 100px;
	min-width: 100px;
	padding: 20px;
	margin: 20px;
	font-family: 'Titillium Web', sans serif;
	border: none;
	color: white;
	font-size: 16px;
	text-align: center;
} */

/* #toggleButton {
	position: absolute;
	left: 50px;
	top: 20px;
	background-color: #75C7F6;
} */


/* body {
	font-family: sans-serif;
	background-color: #eeeeee;
  } */
  
  .file-upload {
	background-color: #ffffff;
	width: 600px;
	margin: 0 auto;
	padding: 20px;
  }
  
  .file-upload-btn {
	width: 100%;
	margin: 0;
	color: #fff;
	background: #1FB264;
	border: none;
	padding: 10px;
	border-radius: 4px;
	border-bottom: 4px solid #15824B;
	transition: all .2s ease;
	outline: none;
	text-transform: uppercase;
	font-weight: 700;
  }
  
  .file-upload-btn:hover {
	background: #1AA059;
	color: #ffffff;
	transition: all .2s ease;
	cursor: pointer;
  }
  
  .file-upload-btn:active {
	border: 0;
	transition: all .2s ease;
  }
  
  .file-upload-content {
	display: none;
	text-align: center;
  }
  
  .file-upload-input {
	position: absolute;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	outline: none;
	opacity: 0;
	cursor: pointer;
  }
  
  .image-upload-wrap {
	margin-top: 20px;
	border: 4px dashed #1FB264;
	position: relative;
  }
  
  .image-dropping,
  .image-upload-wrap:hover {
	background-color: #1FB264;
	border: 4px dashed #ffffff;
  }
  
  .image-title-wrap {
	padding: 0 15px 15px 15px;
	color: #222;
  }
  
  .drag-text {
	text-align: center;
  }
  
  .drag-text h3 {
	font-weight: 100;
	text-transform: uppercase;
	color: #15824B;
	padding: 60px 0;
	font-size: .9rem;
  }
  
  .file-upload-image {
	max-height: 200px;
	max-width: 200px;
	margin: auto;
	padding: 20px;
  }
  
  .remove-image {
	width: 200px;
	margin: 0;
	color: #fff;
	background: #cd4535;
	border: none;
	padding: 10px;
	border-radius: 4px;
	border-bottom: 4px solid #b02818;
	transition: all .2s ease;
	outline: none;
	text-transform: uppercase;
	font-weight: 700;
  }
  
  .remove-image:hover {
	background: #c13b2a;
	color: #ffffff;
	transition: all .2s ease;
	cursor: pointer;
  }
  
  .remove-image:active {
	border: 0;
	transition: all .2s ease;
  }