/*chat css*/
.noscroll {
    overflow: hidden;
}
.chat-popup {
	position: fixed;
	bottom: 0;
	right: 15px;
	width: 300px;
	max-height: 100vh;
	background: #fff;
	border: 1px solid #ccc;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	z-index: 99999;
	padding: 15px;
	transition: all 0.3s ease;
	display: flex;
    flex-direction: column;
    justify-content: end;
}

.chat-popup.fullscreen {
	top: 60px;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100% !important;
	/*height: 100% !important;*/
	border-radius: 0;
	padding: 20px;
	overflow: auto;
}

.chat-popup.fullscreen #chat-box {
	height: 70vh !important;
}