/* MAIN CONTAINERS */
.chat {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.chat-container-left {
    width: 320px;
    display: flex;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
}

.chat-container-right {
    flex: 1;
    display: flex;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    /*background-color: var(--base-theme-color);*/
    /*background-image: url(images/shattered.png);*/
    background-color: var(--base-bg-lighter);
    /*background-image: var(--base-background-chat-image);*/
    background-repeat: repeat;
    -webkit-app-region: drag;
    /* Mozilla Firefox */
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 2px 10px 0px;
    z-index: 1;
}

.xs .chat-container-left, .sm .chat-container-left {
    width: 100%;
}

.xs .chat-user-tabs {
    order: 4;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 2px 10px 0px;
    height: 60px !important;
    margin-top: 0px !important;
    padding-bottom: 0px !important;
}

.chat-context-menu {
    padding: 1px 0px 1px 4px;
    filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 6px 16px);
    background: var(--base-bg-lighter);
    border-radius: 5px;
    min-width: 150px;
}

.chat-context-menu-button {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 0;
    overflow: hidden;
    align-items: center;
    justify-content: flex-start;
    border-color: rgba(0, 0, 0, 0);
    text-align: left;
    border-width: 0px 0px 0px 2px;
    min-height: 32px;
    border-style: solid;
    padding: 0px;
    cursor: pointer;
    background-color: transparent;
    color: var(--base-text-color);
}

    .chat-context-menu-button:hover {
        background-color: var(--base-bg-10);
    }

.chat-context-menu-button-text {
    position: relative;
    display: inline;
    flex-grow: 1;
    flex-shrink: 1;
    overflow: hidden;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    font-size: 15px;
    font-family: "SF Regular", "Segoe System UI Regular", "Segoe UI Regular", sans-serif;
    font-weight: 400;
    padding-left: 12px;
    padding-right: 35px;
    cursor: inherit;
}

.chat-context-menu-button-icon {
    position: relative;
    overflow: visible;
    background-color: transparent;
    flex-grow: 0;
    flex-shrink: 0;
    height: 20px;
    width: 20px;
    align-self: center;
    margin-left: 12px;
    border-style: none;
    display: flex;
}

    .chat-context-menu-button-icon i.ic-fluent {
        font-size: 20px;
    }

.mobile .chat-container-left .chat-user-list .chat-user-img-container {
    width: 60px;
    height: 60px;
}

    .mobile .chat-container-left .chat-user-list .chat-user-img-container .chat-user-avatar-text {
        font-size: 17px;
    }

.mobile .chat-container-left  .chat-user-list .chat-user-status {
    right:0px;
    bottom:0px;
}

.mobile .chat-container-left .chat-user-list .chat-users-list-item {
height:70px;
}