/****************************************************************************
 * Links
 ****************************************************************************/
a, a:visited {
    color: inherit;
    -webkit-transition: color .25s ease;
    -moz-transition: color .25s ease;
    -ms-transition: color .25s ease;
    -o-transition: color .25s ease;
    transition: color .25s ease;
}
a:hover, a:focus {
    color: inherit;
}


/****************************************************************************
 * Buttons
 ****************************************************************************/
.button, .button:visited{
    padding: 0.75rem 2.75rem;
    background-color: transparent;
    color: inherit;
    border: 0.125rem solid currentColor ;
    font-weight: 700;
    font-size: 1rem;
}

.button:hover,
.button:focus {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.black_bg .button:hover,
.black_bg .button:focus {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}