.download-file-button-wrapp {
    position: relative;
}
.download-file-button-wrapp {
	margin: 0 0 20px 0;
}
.download-file-button button {
	opacity: 0.8;
	position: relative;
	background: #ff1212; /* Old browsers */
	background: -moz-linear-gradient(top,  #ff1212 0%, #ee0a6a 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #ff1212 0%,#ee0a6a 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #ff1212 0%,#ee0a6a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff1212', endColorstr='#ee0a6a',GradientType=0 ); /* IE6-9 */
	color: #ffffff;
	-webkit-box-shadow: 0px 12px 20px 0px rgba(239,10,102,0.4);
	-moz-box-shadow: 0px 12px 20px 0px rgba(239,10,102,0.4);
	box-shadow: 0px 12px 20px 0px rgba(239,10,102,0.4);
	text-decoration: none;
	padding: 15px 30px 15px 70px;
    border-radius: 30px;
    font-size: 16px;
    line-height: 20px;
	border: none;
    display: inline-block;
    text-align: center;
	cursor: pointer;
}
.download-file-button button:hover {
	opacity: 1;
}
.download-file-button button:active {
	opacity: 1;
}
.download-file-button span {
    display: block;
    width: 30px;
    height: 30px;
    background: url('images/download-bg.png') center center no-repeat;
    position: absolute;
    top: 50%;
	margin-top: -15px;
    left: 25px;
}
