/****************************************************************************
 * Links
 ****************************************************************************/
a, a:visited {
    color: #997514;
    -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: #00afea;
}


a:focus {
    outline: 0.125rem solid #1600b4;
}

/****************************************************************************
 * Buttons
 ****************************************************************************/
[type="submit"], [type="submit"]:visited,
.button, .button:visited, a.button, a.button:visited,
.button.disabled, .button.disabled:focus, .button.disabled:hover,
.button[disabled], .button[disabled]:focus, .button[disabled]:hover {
    padding: 0.625rem 1.25rem; border-radius: 0; border: 0.125em solid currentColor;
    background-color: transparent; color: #00afea; font-size: 1rem; font-weight: 700;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

[type="submit"]:hover, [type="submit"]:focus,
.button:hover, .button:focus, a.button:hover, a.button:focus {
    background-color: #00afea; color: #FFFFFF;
    border: 0.125em solid #00afea;
}

/****************************************************************************
 * Buttons
 ****************************************************************************/
.button-group .button {
    font-size: 1rem;
}