body {
	background-color: #1a1a1a;
}

.button {
	display: inline-block;
	position: relative;
	padding: 10px 25px;
  
	background-color: #4CC713;
	color: white;
  
	font-family: sans-serif;
	text-decoration: none;
	font-size: 0.9em;
	text-align: center;
	text-indent: 15px;
}

.button:hover {
	background-color: #333;
	color: white;
}

.button:before, .button:after {
	content: ' ';
	display: block;
	position: absolute;
	left: 15px;
	top: 52%;
}

/* Download box shape  */
.button:before {
	width: 10px;
	height: 2px;
	border-style: solid;
	border-width: 0 2px 2px;
}

/* Download arrow shape */
.button:after {
	width: 0;
	height: 0;
	margin-left: 3px;
	margin-top: -7px;
  
	border-style: solid;
	border-width: 4px 4px 0 4px;
	border-color: transparent;
	border-top-color: inherit;
	
	animation: downloadArrow 0.5s ease-out infinite;
	animation-play-state: paused;
}

.button:hover:before {
	border-color: #4CC713;
}

.button:hover:after {
	border-top-color: #4CC713;
	animation-play-state: running;
}

/* keyframes for the download icon anim */
@keyframes downloadArrow {
		0% {
		margin-top: -5px;
	}
  
	50% {
		margin-top: -8px;
	}
  
	100% {
		margin-top: -5px;
	}
}