.shortcut_section .button-group {
    margin: 0 0 0 4rem; position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.shortcut_section .button-group:before {
    content: '\2192'; position: absolute;
    top: 0; left: -4rem;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 0.875em;
}
.shortcut_section .button-group > * {
    margin: 0; position: relative;
    text-decoration: none;
}
.shortcut_section .button-group > *:hover {
    color: #ffcc00;
}

.shortcut_section .button-group > *:before {
    content: ''; position: absolute;
    bottom: 0.0625em; left: 0; right: 0.5em;
    height: 0.125rem; width: auto;
    background-color: currentColor;
}
.shortcut_section .button-group > *:after {
    content: ',';padding-right: 0.25em;
    color: #000000;
}
.shortcut_section .button-group > *:last-child:after {
    content: none;
}
.shortcut_section .button-group > *:last-child:before {
    right: 0;
}

@media screen and (min-width:40em){
    .shortcut_section .button-group > *:before {
        height: 0.1875rem;
    }
}


@media screen and (min-width:64em){
    .shortcut_section .button-group {
        margin: 0 0 0 5rem;
    }
    .shortcut_section .button-group:before {
        left: -5rem;
    }
}