.shl-donate-badge {

    position: fixed;

    right: 32px;
    bottom: 32px;

    z-index: 9999;

    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

}

.shl-donate-circle {
    width: 85px;
    height: 85px;
    border-radius: 999px;
    background: #2CC7C9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.shl-donate-circle svg {

    width: 42px;
    height: 42px;

}

.shl-donate-tooltip {

    position: absolute;
    right: 40px;
    top: -34px;
    background: #E768B3;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 999px;
    z-index: 999;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

/* triangulito */

.shl-donate-tooltip:after {
    content: '';
    position: absolute;
    right: -4px;
    top: 70%;
    transform: rotate(48deg);
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 22px solid #E768B3;

}

.shl-donate-badge:hover .shl-donate-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.shl-donate-badge:hover .shl-donate-circle {
    transform: scale(1.06);
    box-shadow:0 16px 40px rgba(0, 0, 0, .24);
}

/* Mobile */

@media(max-width: 768px) {

    .shl-donate-circle {
        width: 72px;
        height: 72px;
    }

    .shl-donate-tooltip {
        font-size: 12px;
        padding: 8px 14px;
        right: 62px;
    }

}