
div.button, a.button {
    display: inline-block;
    background-color: $support-color-dark;
    color: $textcolor-light;
    padding: 8px 12px 10px 12px;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    font-size: 14px;
}

a.button {
    font-weight: bold;
}

a.button.dark {
    color:gold;
    text-decoration: none;
    font-weight:bold;
    cursor: pointer;
    font-style: normal;

    &:hover {
        background-color: $background-button-dark;
        text-decoration: none;
    }
}

div.button.disabled {
    background-color: $background-lightgray;
    color: #999999;
    cursor: default;
}
div.button.disabled:hover {
    background-color: $background-lightgray;
    color: #999999;
    cursor: default;
}


div.button:hover {
    display: inline-block;
    background-color: $background-button-dark;
    text-decoration: none;
}
