/* =========================================================
   BKDataDeals - Professional Account Button
========================================================= */

.global-account-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    height: 42px;
    padding: 4px 15px 4px 5px;

    border: 1px solid rgba(224, 179, 77, 0.45);
    border-radius: 999px;

    background: rgba(224, 179, 77, 0.06);

    color: #f7f1e5;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.global-account-button:hover {

    background: rgba(224, 179, 77, 0.14);

    border-color: #e0b34d;

    transform: translateY(-1px);

    box-shadow:
        0 6px 20px rgba(224, 179, 77, 0.12);

}


/* Avatar */

.account-avatar {

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #e0b34d,
            #f3d37d
        );

    color: #111;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .3px;
}


/* Account text */

.account-button-text {

    line-height: 1;

}


/* Mobile */

@media (max-width: 600px) {

    .global-account-button {

        width: 40px;
        height: 40px;

        padding: 3px;

        justify-content: center;

    }

    .account-button-text {

        display: none;

    }

    .account-avatar {

        width: 32px;
        height: 32px;

    }

}