.btn {
    display         : inline-block;
    cursor          : pointer;
    color           : white;
    border          : none;
    box-shadow      : 2px 2px 5px 2px #7D7D7D;
    padding         : 5px 20px;
    margin          : 10px 0;
    text-decoration : none;
    font-size       : 13px;
}
.btn.green {
    background : #8BC53D;
}
.btn.orange {
    background : #F9A94A;
}
.btn.yellow {
    background : #FABD2F;
}
.btn.blue {
    background : #00aeef;
}


.btn.red {
    background : #eb1d4b;
}


.btn.no-shadow {
    box-shadow      : none;
}