/*
    BIFF3EN PROFILE NAVIGATION V1
*/

.b3-profile-v4-nav-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.b3-profile-v4-nav-button {
    min-height: 42px;
    padding: 0 16px;

    border:
        1px solid
        rgba(192, 92, 255, .42);

    border-radius: 11px;

    background:
        rgba(192, 92, 255, .11);

    color: #fff;

    font: inherit;
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .06em;

    cursor: pointer;
}

.b3-profile-v4-nav-button:hover {
    background:
        rgba(192, 92, 255, .20);

    border-color:
        rgba(192, 92, 255, .68);
}

.b3-profile-v4-nav-button:focus-visible {
    outline:
        2px solid
        rgba(192, 92, 255, .85);

    outline-offset: 3px;
}

@media (max-width: 600px) {

    .b3-profile-v4-nav-actions {
        width: 100%;
    }

    .b3-profile-v4-nav-button {
        width: 100%;
    }
}