/* Container für den Donation-Button */
.donation-button
{
    position: fixed;
    overflow: hidden;
    transition: transform 0.4s;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
    background: #345E74;
    color: #ffffff;
}

.donation-button:hover
{
    background: #DCE6EC;
    transform: translateX(-100%) translateX(24px);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.15));
}

/* Link zum Ziel */
.donation-button a
{
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    color: #ffffff;
}

.donation-button:hover a
{
    color: #345E74;
}

/* Container für das Donation-Icon */
.donation-button-icon
{
    display: inline-block;
    width: 24px;
}

.donation-button-icon svg
{
    width: 24px;
    fill: red;
}

.donation-button-icon i
{
    font-size: 24px;
}

/* Container für den Donation-Text */
.donation-button-text
{
    display: inline-block;
    height: 100%;
    white-space: nowrap;
}