Php:

/**
* Download button
*/



if ( ! defined( 'ABSPATH' ) ) {
exit;
} // Exit if accessed directly

/** @var DLM_Download $dlm_download */
?>












get_title() ); ?>




Css:

.download-button {
margin-top: calc(50% + 25px);
position: relative;
display: inline-block;
width: 177px;
height: 50px;
font-size: 1em;
font-weight: bold;
line-height: 60px;
text-align: center;
text-transform: uppercase;
background-color: transparent;
cursor: pointer;
text-decoration:none;
font-family: 'Roboto', sans-serif;
font-weight:900;
font-size:17px;
letter-spacing: 0.045em;
}

.download-button svg {
position: absolute;
top: 0;
left: 0;
}

.download-button svg rect {
//stroke: #EC0033;
stroke-width: 4;
stroke-dasharray: 353, 0;
stroke-dashoffset: 0;
-webkit-transition: all 600ms ease;
transition: all 600ms ease;
}

.download-button span{
background: rgb(47, 64, 154);
background: -moz-linear-gradient(left, rgba(47, 64, 154) 0%, rgba(225,120,237,1) 100%);
background: -webkit-linear-gradient(left, rgba(47, 64, 154) 0%,rgba(47, 64, 154) 100%);
background: linear-gradient(to right, rgba(47, 64, 154) 0%,rgba(47, 64, 226) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8282', endColorstr='#e178ed',GradientType=1 );

-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.download-button:hover svg rect {
stroke-width: 4;
stroke-dasharray: 196, 543;
stroke-dashoffset: 437;
}