/* Sourced from https://github.com/IanLunn/Hover under MIT license */

/* Border Fade */
.knet_button {
    width:100px; 
    height:35px; 
    color:white; 
    margin-left:0px; 
    background-color:#51CE7B;
	/*font-family:'Play', sans-serif;*/ 
    font-size:15px; 
    cursor:pointer;
    border:none;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(0.5px) translateZ(0);
    transform: perspective(0.5px) translateZ(0);
    box-shadow: 0 0 0.5px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
    box-shadow: inset 0 0 0 1px #51CE7B, 0 0 0px rgba(0, 0, 0, 0);
}
.knet_button:hover, .knet_button:focus, .knet_button:active {
    background-color:#38c768;
    box-shadow: inset 0 0 0 2.5px #38c768, 0 0 0px rgba(0, 0, 0, 0);
}
