.-get-trial-btn {
	position: relative;
    padding-right: 45px;
}
.-get-trial-btn:before, .-get-trial-btn:after {
	content: "";
    position: absolute;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.-get-trial-btn:before {
	width: 28px;
    height: 28px;
    border-radius: 3px;
    background-color: rgba(255,255,255,0.25);
    top: 5px;
    right: 5px;
}
.-get-trial-btn:after {
  	width: 12px;
    height: 12px;
    top: 13px;
    right: 15px;
    border-top: 3px solid white;
    border-right: 3px solid white;
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.-get-trial-btn:hover {
	opacity: 1;
}
.-get-trial-btn:hover:before {
	background-color: transparent;
}
.-get-trial-btn:hover:after {
	-webkit-transform: translate(5px) rotate(45deg);
    -moz-transform: translate(5px) rotate(45deg);
    -ms-transform: translate(5px) rotate(45deg);
    transform: translate(5px) rotate(45deg);
}