
a.buttonSupport {
    display: inline-block;
    color: $textcolor-light;
    font-size: 14px;
    padding: 5px 22px 6px 22px;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    text-decoration: none;

    &.paypal {
        color: $textcolor-light;
        background-color: #406c91;
        font-style: normal;
        font-weight: normal;

        &:hover {
            text-decoration: none;
        }
    }

    &.patreon {
        color: $textcolor-light;
        background-color: #e65d48;
        font-style: normal;
        font-weight: normal;

        &:hover {
            text-decoration: none;
        }
    }
}

a.buttonSupport:hover {
    background-color: #333333;
    text-decoration: none;
}


div.supportoptions {
    margin: 25px 0 25px 0;

    & > a {
        margin-left: 0;
    }

    & > a:last-child {
        margin-left: 8px;
    }
}

@media only screen and (max-width: 400px) {

    a.buttonSupport {
        display: block;
        text-align: center;
    }

    div.supportoptions {
        margin: 25px 0 25px 0;

        & > a {
            margin-left: 0;
        }

        & > a:last-child {
            margin-left: 0;
            margin-top: 10px;
        }
    }
}