@charset "utf-8";
/* CSS Document */

.room-sel-item {
	display: flex;
	border-radius: 5px;
	padding: 5px 10px;
	background: #ededed;
    height: 70px;
    overflow: hidden;
    cursor: pointer;
	align-items: center;
	justify-content: center;
    border-left: 5px solid #dfdfdf;
}

.room-sel-image img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}

.room-sel-name h4 {
	font-size: 16px;
    margin: 0;
    font-weight: 600;
    margin-right: 5px;
}

.room-sel-info p {
	font-size: 13px;
	margin: 0;
    margin-bottom: 2px;
}

.room-sel-info small {
	font-size: 11px;
}

.room-sel-info {
	line-height: 1;
    padding-left: 15px;
}

.room-sel-go {
	width: 50px;
	height: 74px;
	margin-right: -10px;
	margin-top: -5px;
	bottom: 0;
	background: transparent;
	box-sizing: border-box;
	border-left: 30px solid transparent;
    border-bottom: 70px solid rgb(223 223 223);
    margin-left: auto;
    transition: 0.3s;
}

.room-sel-go-icon {
	right: 0;
	top: 0;
	bottom: 0;
	width: 10px;
	height: 84px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #7390a7;
    transition: 0.3s;
}

.room-sel-item:hover .room-sel-go-icon {
	color: #fff;
}

.room-sel-item:hover .room-sel-go {
	border-bottom: 70px solid #2196f3;
}

.room-sel-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.room-sel-search-btn {
	background: #dbdee0;
    border-radius: 0;
}

.room-selector {
	display: flex;
    cursor: pointer;
    transition: 0.3s;
}

.room-selector:hover .launch-modal {
    background-color: #1cc88a;
    color: #fff;
} 

.launch-modal {
	background: #141b20;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #1cc88a;
    transition: 0.3s;
}

.room-selected {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #19232a;
	padding-right: 20px;
	margin-right: -15px;
	padding-left: 10px;
	font-size: 13px;
	line-height: 1;
	height: 30px;
	border-radius: 5px;
	color: #fff;
    margin-left: 10px;
    white-space: nowrap;
    max-width: 140px;
	overflow: hidden;
}

.room-sel-name {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.badge-room-unread {
    border-radius: 2px;
    font-size: 10px;
    padding: 3px 5px 3px;
    font-weight: normal;
}

.room-list-area a, .room-list-area a:hover {
    color: inherit;
}

.room-list-area {
    height: calc(100vh - 180px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}
