.member {
    display: flex;
    align-items: center;

    .member-icon {
        width: 24px;
        height: 24px;
        overflow: hidden;
        background-color: var(--white);
        border-radius: 100%;

        .member-icon-provider {
            display: block;
            max-width: 16px;
            height: 24px;
            margin: auto;
        }

        svg {
            width: 100%;
            height: 100%;
        }
    }

    .member-info {
        margin-left: 14px;
        color: var(--white);

        .member-info-name {
            font-weight: var(--main-font-bold);
            font-size: 13px;
            line-height: 16px;
            text-transform: uppercase;
        }

        .member-info-email {
            margin-top: 2px;
            font-weight: var(--main-font-regular);
            font-size: 12px;
            line-height: 15px;
        }
    }
}
