﻿/*------------ Profile Preview------------*/
.profile-preview {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

    .profile-preview .picture-container {
        margin-right: 12px;
        height: 34px;
        width: 34px;
        border-radius: 50%;
        border: 2px solid #dadae6;
    }

        .profile-preview .picture-container > img {
            height: 100%;
            width: 100%;
            object-fit: contain;
            border-radius: 50%;
            cursor: pointer;
        }

    .profile-preview .user-name {
        font-size: 14px;
        color: #16161e;
        font-weight: 600;
        margin-right: 12px;
        cursor: pointer;
    }

.arrow-down {
    width: 16px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.profile-preview-tooltip {
    position: absolute;
    right: 0px;
    width: 119px;
    background-color: #dadae6;
    top: 50px;
    display: flex;
    flex-flow: column;
}

    .profile-preview-tooltip > div {
        padding: 5px;
        text-align: center;
        cursor: pointer;
    }

/*------------ END Profile Preview------------*/
