#roomChatRoom {
    max-width: 25vw !important;
    height: 100vh;
    position: absolute;
    top: 11px;
    right: .5rem;
    z-index: 7;
    /* background-color: rgba(240, 240, 240, 0.8); */
}

.room-chat-app .room-people-list {
    width: 200px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 7;
}

.room-chat-app .room-chat {
    margin-left: 200px;
    border-left: 1px solid #eaeaea
}

.room-people-list {
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s
}

.room-people-list .room-chat-list li {
    padding: 10px 10px;
    list-style: none;
    border-radius: 3px
}

.room-people-list .room-chat-list li:hover {
    background: var(--chat-bg-active);
    cursor: pointer
}

.room-people-list .room-chat-list li.active {
    background: var(--chat-bg-active);
}

.room-people-list .room-chat-list li .name {
    font-size: 15px
}

.room-people-list .room-chat-list img {
    width: 45px;
    border-radius: 50%
}

.room-people-list img {
    float: left;
    border-radius: 50%
}

.room-people-list .status {
    color: #999;
    font-size: 13px
}

.room-people-list .status .btn-outline-secondary {
    width: 25px;
    height: 25px;
    padding: 0rem !important;
    font-size: 1rem !important;
}

.room-chat .room-chat-header {
    padding: 15px 20px;
    height: 6.5rem;
    border-bottom: 2px solid #f4f7f6
}

.room-chat .room-chat-header img {
    float: left;
    font-size: 12px;
    font-weight: 600;
}

.room-chat .room-chat-header .room-chat-about {
    float: left;
    padding-left: 5px;
    width: calc(100% - 40px);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.room-chat .room-chat-history {
    padding: 20px;
    border-bottom: 2px solid #fff;
    overflow-y: auto;
    max-height: 70vh;
    height: 70vh;
}

.room-chat .room-chat-history ul {
    padding: 0
}

.room-chat .room-chat-history ul li {
    list-style: none;
    margin-bottom: 5px;
}

.room-chat .room-chat-history ul li:last-child {
    margin-bottom: 0px
}

.room-chat .room-chat-history .message-data {
    margin-bottom: 15px;
}

.room-chat .room-chat-history .message-data img {
    border-radius: 40px;
    width: 40px
}

.room-chat .room-chat-history .message-data-time {
    color: var(--chat-msg);
    padding-left: 6px
}

.room-chat .room-chat-history .message {
    color: var(--chat-msg);
    padding: 10px 10px;
    line-height: 26px;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    min-width: 40px;
    font-weight: 500;
}

#roomChatMessage {
    color: var(--chat-msg) !important;
}

.room-chat .room-chat-history .message:after {
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: var(--white);
    border-width: 10px;
    margin-left: -10px
}

.room-chat .room-chat-history .my-message {
    background: var(--left-msg-bg)
}

.room-chat .room-chat-history .my-message:after {
    bottom: 100%;
    left: 22px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: var(--left-msg-bg);
    border-width: 10px;
    margin-left: -10px
}

.room-chat .room-chat-history .other-message {
    background: #d6e7f4;
    top: -10px;
}

.room-chat .room-chat-history .other-message:after {
    border-bottom-color: #d6e7f4;
    right: 8px;
}

.room-chat .room-chat-message {
    padding: 20px
}

.room-chat-message .input-group-text {
    width: 42px !important;
}

/* @keyframes chatBlink {
    0%, 100% {background-color:white; color: hsl(60, 3%, 12%);}
    50% {background-color: hsl(60, 3%, 12%); color: white;}
} */




.notification-badge {
    position: absolute;
    top: 2px;
    right: 11px;
    background-color: red;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

#roomChatCloseButton {
    margin-left: auto;
}

#roomChatCloseButton i {
    font-size: 20px
}

.chat-tab-button{
    width: unset;
    height: unset;
}

.tab-actions {
    margin: 3px 0;
}
.tab-actions ul.nav{
    gap:5px;
}
.tab-actions .nav-link:not(.active) {
    color: #444444 !important;
    background-color: #ededed !important;
    border: 0px solid #ededed;
}

.tab-actions .nav-link:hover {
    color: #ffffff !important;
    background-color: transparent !important;
    border: 0px solid #7c7c7c;
    background-image: linear-gradient(to right,#3f85ed, #04befe) !important;
}

.tab-actions .nav-link:focus, 
.tab-actions .nav-link .active{
    background-color: transparent !important;
    color: #ffffff !important;
    background-image: linear-gradient(to right, #04befe, #3f85ed) !important;
}

#chatButton{
    position: relative;
}

.msg-count{
    position: absolute;
    right: -2px;
    top: -11px;
    background: #ff4d4d;
    color: #fff;
    min-width: 21px;
    height: 21px;
    padding: 4px;
    text-align: center;
    font-size: 14px;
    line-height: 14px;
    border-radius: 50px;
    z-index: 1;
}

.msg-blinker{
    position: absolute;
    width: 21px;
    height: 21px;
    top: -8px;
    right: -4px;
}
.msg-blinker:before {
    background: #ff4d4d;
}
.msg-blinker:before {
    content: "";
    display: block;
    position: absolute;
    left: -5px;
    top: -5px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in;
}
@keyframes pulse {
    from {
        transform: scale(0.5);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

#tableChatTab, #skylerverseChatTab{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skyler-chat-blinker.msg-blinker{
    width: 26px;
    height: 26px;
    position: initial;
    display: block;
}

.skyler-chat-blinker.msg-blinker:before{
    position: initial;
}

#clearTableChatButton, #roomChatClearButton{
    color: red;
}


.pre-scroll-handle{
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    overflow-x: hidden !important;
}
