.btn-arrow-right {
    position: relative;
    padding-right: 26px;
    padding-left: 50px;
}

.btn-arrow-right:before,
.btn-arrow-right:after { /* make two squares (before and after), looking similar to the button */
    content:"";
    position: absolute;
    top: 5px; /* move it down because of rounded corners */
    width: 33px; /* same as height */
    height: 34px; /* button_outer_height / sqrt(2) */
    background: inherit; /* use parent background */
    border: inherit; /* use parent border */
    border-left-color: transparent; /* hide left border */
    border-bottom-color: transparent; /* hide bottom border */
    border-radius: 3px 4px 2px 0px; /* round arrow corner, the shorthand property doesn't accept "inherit" so it is set to 4px */
    -webkit-border-radius: 3px 4px 2px 0px;
    -moz-border-radius: 3px 4px 2px 0px;
}

.btn-arrow-right:before,
.btn-arrow-right:after {
    transform: rotate(45deg); /* rotate right arrow squares 45 deg to point right */
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.btn-arrow-right:before { /* align the "before" square to the left */
    left: -15px;
}

.btn-arrow-right:after { /* align the "after" square to the right */
    right: -15px;
}

.btn-arrow-right:after { /* bring arrow pointers to front */
    z-index: 1;
}

.btn-arrow-right:before { /* hide arrow tails background */
    background-color: white;
}

.btn-arrow-right:hover:before {
    background-color: #F5F5F5;
}