.wrap-bodys {
	/*position: relative;*/
	padding-top: 122px;
	height: 100%;
}

.wrap-content {
	/*display: block;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin: 0 50px;
	margin-top: 20px;*/
	height: 100vh;
}

.chat-messages {
	/*width: 22%;
	position: relative;*/
	background: rgb(255, 255, 255);
	transition: width 0.4s ease 0s;
	float: left;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px 0 0 10px;
	width: 20%;
	height: 100%;
	margin-left: 25px;
}

.messages-con {
	/*background: rgb(255, 255, 255);
			overflow: hidden;*/
	width: 100%;
	height: 100%;
	/*position: absolute;
			left: 0px;
			top: 0px;*/
	opacity: 1;
	transition: opacity 0.2s ease 0s;
	/*min-height: 590px;*/
}

.messages-con * {
	scrollbar-color: hsla(228,7%,74%,.6) transparent;
	scrollbar-width: thin;
}

.side-messages {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	height: 100%;
	justify-content: space-between;
	padding: 29px 0;
	/*position: relative;
			width: 307px;*/
	z-index: 10;
}

.side-messages .side-messages-header {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 0 25px 28px;
}

.side-messages-button {
	align-items: center;
	border-radius: 32px;
	display: flex;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 400;
	height: 36px;
	justify-content: center;
	line-height: 24px;
	opacity: 1;
	transition: all .3s;
	border: none;
	cursor: pointer;
	user-select: none;
	white-space: nowrap;
	box-shadow: none;
	box-sizing: border-box;
	outline: none;
	padding: 6px 26px;
	position: relative;
	background: #007bff;
	color: #fff;
}

.anticon {
	display: inline-flex;
	align-items: center;
	color: inherit;
	font-style: normal;
	line-height: 0;
	text-align: center;
	text-transform: none;
	vertical-align: -0.125em;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.side-span {
	color: #fff;
	font-size: 20px;
	margin-right: 8px;
}

.side-historySearch {
	align-items: center;
	border: 1px solid #e8eaf2;
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	height: 36px;
	justify-content: center;
	position: relative;
	transition: all .3s;
	width: 36px;
}

.searchIcon {
	color: #2c2c36;
	font-size: 20px;
}

.sessionListWrapper {
	display: flex;
	flex: 1;
	flex-direction: column;
	overflow: auto;
}

.sessionList {
	flex: 1;
	overflow-y: auto;
	padding: 0 22px;
}

.groupName {
	color: #878aab;
	font-size: 12px;
	height: 18px;
	margin: 12px 0;
	width: 100%;
	margin-top: 0;
}

.sessionItem {
	align-items: center;
	border-radius: 12px;
	box-sizing: border-box;
	color: #26244c;
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	font-size: 14px;
	height: 36px;
	justify-content: space-between;
	margin-bottom: 12px;
	padding: 6px 16px;
	position: relative;
}

.sessionItem .textContent {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	max-width: 260px;
	min-width: 166px;
}
.textContent > div:first-child {
	max-width: 260px;
}

.textContent .truncate {
	overflow: hidden;
	position: relative;
	text-overflow: clip;
	white-space: nowrap;
}

.sessionItem .icon {
	display: none;
	font-size: 20px;
	background-image: url(/Images/rdelete.png);
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
}
.sessionItem .icons {
	display: none;
	font-size: 20px;
	background-image: url(/Images/rupdate.png);
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}
.side-messages .footer {
	margin: 0 24px;
	padding-top: 12px;
	/*position: absolute;*/
	bottom: 20px;
}

.side-messages .footer .item {
	align-items: center;
	border-radius: 12px;
	color: #2c2c36;
	cursor: pointer;
	display: flex;
	font-size: 14px;
	gap: 8px;
	height: 36px;
	justify-content: flex-start;
	padding: 8px 16px;
	width: 100%;
}

.side-messages .footer .item > span {
	font-size: 20px;
}

.chat-container {
	display: flex;
	flex-direction: column;
	width: 77%;
	background: #fcfcfc;
	float: left;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	height: 100%;
	border-radius: 0 10px;
}

.chat-box {
	padding: 20px;
	overflow-y: auto;
	font-size: 16px;
	height: 85%;
	/*height: 88vh;
			min-height: 500px;*/
}

.chat-box .message {
	/*width: 100%;*/
	margin: 2px 0;
	padding: 6px;
	border-radius: 10px;
	font-size: 15px;
	color: #002d56;
}

.chat-box .user {
	/*background-color: #f6f6f6;*/
	align-self: flex-end;
	margin-left: auto;
	text-align: left;
	float: right;
}

.chat-box .bot {
	/*background-color: #ebf9ff;*/
	align-self: flex-start;
	text-align: left;
	float: left;
	width: 96%;
}

.chat-box .loader {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 19px;
	height: 19px;
	animation: spin 1s linear infinite;
	display: inline-block;
}

.uavatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	float: left;
	background: #f8f8f8;
}

.chatavatar {
	width: 40px;
	height: 30px;
	border-radius: 30%;
	float: left;
	margin-right: 2px;
	/*margin: 5px 6px;*/
}

.message-content-user {
	word-wrap: break-word;
	float: left;
	padding: 5px 6px;
	max-width: 95%;
	line-height: 30px;
}

.message-content-bot {
	float: left;
	padding: 10px 15px;
	max-width: 95%;
	line-height: 30px;
	background: #fff;
	border-radius: 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.chat-box::-webkit-scrollbar {
	width: 10px;
	background-color: #f5f5f5;
}

.chat-box::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: #2196f3;
}

.chat-box::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
	background-color: transparent;
}

.chat-img {
	display: block;
	margin: 0 auto;
	margin-top: 60px;
}

.chat-tips {
	display: block;
	width: 470px;
	margin: 0 auto;
	margin-top: 20px;
	font-size: 14px;
	color: #2c2c36;
}

.chat-tips.bigtitle {
	/*width: 269px;
			font-size: 22px;
			font-weight: 600;*/
	margin-top: 90px;
	overflow: hidden;
}

.chat-tips.bigtitle img {
	width: 50px;
	height: 39px;
	float: left;
}

.chat-tips.bigtitle h1 {
	float: left;
	margin-left: 15px;
	cursor: pointer;
}

.chat-tips.smalltitle {
	/*width: 299px;*/
	text-align: center;
	font-size: 16px;
}

.input-container {
	display: flex;
	/*position: relative;*/
	position: fixed;
    	bottom: 0;
    	width: 77%;
	border-top: 1px solid #eee;
	/*height: 15%;*/
	background: #d0d4f2;
}

.send-container {
	position: absolute;
	right: 0;
}

.user-input {
	flex: 1;
	padding: 36px 20px;
	outline: none;
	font-size: 16px;
	background: #fefefe;
	border-radius: 0 0 10px 0;
}

.send-button {
	padding: 8px 20px;
	margin-top: 28px;
	margin-right: 16px;
	border: none;
	background: #007bff;
	color: white;
	font-size: 14px;
	cursor: pointer;
	border-left: 1px solid #ddd;
	border-radius: 4px;
}

.container-box {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 14px;
}

.container-box .inner-box {
	width: 70%;
	height: 329px;
	text-align: center;
	background: #FFF;
	border-radius: 10px;
	padding: 30px 20px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
	.sessionItem {
		padding: 6px 10px;
	}
	.sessionItem .textContent {
		min-width: 129px;
	}
	.container-box .inner-box {
		width: 100%;
	}
	.message-content-bot {
		max-width: 92%;
	}
}
@media only screen and (min-width: 601px) and (max-width: 1024px) {
	.sessionItem {
		padding: 6px;
	}
	.sessionItem .textContent {
		min-width:102px;
	}
	.container-box .inner-box {
		width: 100%;
	}
	.message-content-bot {
		max-width: 92%;
	}
}
@media only screen and (min-width: 820px) and (max-width: 820px) and (orientation: portrait) {
	.sessionItem {
		padding: 6px;
	}
	.sessionItem .textContent {
		align-items: center;
		display: flex;
		justify-content: flex-start;
	}
	.container-box .inner-box {
		width: 100%;
	}
	.message-content-bot {
		max-width: 92%;
	}
}
.container-box .inner-box-text {
	display: inline-flex;
	text-align: center;
	padding: 10px;
}

.container-box .inner-box-text a {
	display: block;
	width: 100%;
	margin: 8px;
	padding: 10px;
	background: #fcfcfc;
	border-radius: 8px;
	color: #222;
	text-decoration: none;
	box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}
.container-box .inner-box-text a:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.stopBtn {
	float: left;
	color: #3F51B5;
	text-decoration: none; 
	margin: 0 70px;
	font-size: 12px;
}
.editable-input {
	width: 100%;
	padding: 8px; 
	font-size: 14px; 
	color: #333; 
	background-color: #fff;
	border: 1px solid #ccc; 
	border-radius: 8px; 
	transition: all 0.3s ease; 
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
	outline: none;
}
.editable-input:focus {  
     border-color: #007bff;  
     box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);  
 }
.chat-box .audio-controls {
	float: left;
	margin-top: 20px;
	position: relative;
}

.chat-box .audio-controls .btn {
	width: 28px;
    height: 28px;
	font-size: 12px;
    color: #fff;  
    background-color: #FF9800;  
    border: none;  
    border-radius: 50%;  
    cursor: pointer;  
    outline: none;  
    transition: background-color 0.3s;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
}
/*.chat-box .audio-controls .btn.playBtn{
	padding: 13px 12px;  
}
.chat-box .audio-controls .btn.pauseBtn{
	padding: 12px 16px;  
}*/
.chat-box .audio-controls .btn:hover {
	 background-color: #7799aa;  
}

.chat-box .audio-controls .btn:active {
	 background-color: #7799aa;  
}
.chat-box .audio-controls .hidden {
	display: none;
}
.loading-icon {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	animation: spin 1s linear infinite;
	display: inline-block;
	position: absolute;
	top: 5px;
	left: 5px;
	display:none;
}