.help {
    padding: 10px;
    background: #aaa1;
    border: 2px solid #555;
}
.help::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    margin-top: -17px;
    margin-left: -17px;
    background-color: #555;
}

.penalty {
    background-color: #dc3545;
}

.bonus {
    background-color: #6c757d;
}

.deposit {
    background-color: #ffc107;
}

.withdrawal {
    background-color: #28a745;
}

.referral {
    background-color: #17a2b8;
}

.earning {
    background-color: #007bff;
}

.pending {
    background-color: #ffc107;
}

.approved, .deposit-earning {
    background-color: #28a745;
}

.declined {
    background-color: #007bff;
}
.released, .deposit-release {
    background-color: #007bff;
}


/* Footer */
a.useful-link {
    padding: 5px 10px;
    border: 1px solid #888;
    border-radius: 50px;
    margin: 4px 2px;
    display: inline-block;
}

a.useful-link:hover {
    background-color: #aaa;
    color: #222;
}

hr.divider {
    border-color: #555;
    margin: 5px 0px;
}

/* Header */
.pulse {
    position: absolute;
    top: 50px;
    left: 50%;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 34px;
    text-align: center;
    animation: da-pulse 1.5s ease-in-out 0s infinite;
}

@keyframes da-pulse {

    0%,
    100% {
        transform: scale(1.15);
    }

    48%,
    52% {
        transform: scale(1);
    }
}