#downloads{
	color: #000;
}

#dl-header{
	text-align: center;
	font-size: 25px;
}

#downloads .dl-list-container{
	width: 100%;
	background-color: #e3e3e3;
	box-shadow: 0 -5px 14px 0 rgba(0, 0, 0, 0.6);
}

#downloads .dl-list{
	width: 50%;
	margin: 0 auto;
	padding: 25px 0;
	list-style-type: none;
}

#downloads .dl-list li{
	background-color: #fff;
	border: 3px solid #e3e3e3;
	cursor: pointer;
	padding: 0 1%;
	margin: 1rem 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

#downloads .dl-list li:hover{
	background-color: #000;
	color: #fff;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

#downloads .dl-list li span{
	padding: 7px 10px;
	font-size: 17px;
}

#downloads .dl-file{
	display: inline-block;
	margin-left: -4%;
	background: #e3e3e3;
	color: #000;
	border: 2px solid #000;
	border-radius: 100px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 39px;
	font-size: 13px;
	box-shadow: 2px 0px 12px 0 rgba(0, 0, 0, 0.6);
}

@media only screen and (max-width: 630px) {
	#downloads .dl-list li{
		padding: 0 3%;
	}
	
	#downloads .dl-file{
		margin-left: -10%;
	}
}

@media only screen and (max-width: 400px) {
	#downloads .dl-file{
		margin-left: -11%;
	}
}