/**
 * Best way to overwrite these properties is by setting the css variables as described in the documentation.
 */
.ubwp-link-button a {
    display: inline-block;
    padding: var(--ubButtonPadding, 15px 60px);
    background: var(--ubButtonBackground, #327c18);
    color: var(--ubButtonColor, white);
    font-size: var(--ubButtonFontSize, inherit);
    font-weight: var(--ubButtonFontWeight, inherit);
    font-family: var(--ubButtonFontFamily, inherit);
    text-transform: var(--ubButtonTextTransform, none);
    border: var(--ubButtonBorder, none);
    border-radius: var(--ubButtonBorderRadius, 3px);
    cursor: pointer;
    text-decoration: none;
}

.ubwp-link-button a:hover {
    color: var(--ubButtonColorHover, white);
    background: var(--ubButtonBackgroundHover, #275937);
    border: var(--ubButtonBorderHover, none);
    text-decoration: none;
}