.shortcut {
    background: #d92e47;
    cursor: pointer;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    padding: 0 15px;
    line-height: 2;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.shortcut:hover,
.shortcut:active {
    background: #fff;
    color: #d92e47;
}