.choose-channel button {
	min-width: 170px;
}
.choose-channel .channel-label {
	font-weight: 600;
	opacity: 0.6;
}

.vertical-line {
	display: block;
	width: 0px;
	height: 32px;
	/* background-color: #e9f0ec; */
}

.user-image {
	height: 40px;
	width: 40px;
	object-fit: cover;
	border-radius: 100%;
}
.user-setting {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.user-setting i {
	font-size: 24px;
}

.navbar-bottom .navbar-nav {
	margin-left: -20px;
	margin-right: -20px;
}

.navbar-bottom .navbar-nav li {
	display: flex;
	align-items: center;
	min-width: 80px;
	justify-content: center;
	padding-left: 10px;
	padding-right: 10px;
}

.navbar-bottom .navbar-nav li:nth-child(1n + 2)::before {
	/* border: 1px solid #e9f0ec; */
	width: 0px;
	display: block;
	height: 32px;
	content: '';
}

.navbar-nav .separator {
    border-right: solid 1px #e9f0ec;
}

/* Render 1 */

.navbar-bottom-container {
	border-bottom: 1px solid #e9f0ec;
	border-top: 1px solid #e9f0ec;
}



@media screen and (max-width: 768px) {
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 990;
	}
	.navbar-brand img {
		height: 34px;
	}
	.navbar-bottom {
		position: fixed;
		z-index: 990;
		top: 0;
		left: 0;
		width:100%;
		height: 100%;
		overflow: auto;
	}
	.navbar-bottom ul li  a {
		margin-right: auto;
	}
	.navbar-bottom ul li {
		width: 100%;
		padding: 5px 20px;
		padding-left: 40px !important;
		justify-content: flex-start !important;
		border-bottom: 1px solid var(--gray);
		display: flex;
		flex-direction: column;
	}
	.navbar-bottom ul li::before {
		display: none !important;
	}
	.navbar-bottom ul li .dropdown-menu:not(.dropdown-hide) {
		display: flex !important;
		width: 100%;
		flex-direction: column;
		border: none !important;
		padding-top: 0 !important;
	}
	.navbar-bottom ul li .dropdown-menu li:not(.dropdown-hide) {
		padding-left: 10px !important; 
		min-height: 40px !important;
	}
}
.close-box {
	display: flex;
	position: fixed;
	bottom: 20px;
	left: calc(50% - 23px);
	background-color: var(--primary);
	color: var(--white);
	border-radius: 100%;
	height: 46px;
	width: 46px;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 27px;
	z-index: 9999;
}