:root {
  --body-bg: #fff;
  --msger-bg: #444654;
  --border: 2px solid #1e1e1e;
  --left-msg-bg: #F8F8F8;
  --right-msg-bg: #95ED69;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--body-bg);
  font-family: Helvetica, sans-serif;
}

.msger {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 867px;
  height: 100%;
  border-radius: 5px;
}

.msger-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #F0F0F0;
  color: #000000;
}

.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.msger-chat::-webkit-scrollbar {
  width: 6px;
}

.msger-chat::-webkit-scrollbar-track {
  background: #2b2c34;
}

.msger-chat::-webkit-scrollbar-thumb {
  background: #444654;
}

.msg {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.msg:last-of-type {
  margin: 0;
}

.msg-img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  align-self: flex-start;
}

.msg-bubble {
  max-width: calc((100% - 55px) / 10 * 9);
  padding: 8px 12px;
  border-radius: 5px;
  background: var(--left-msg-bg);
  color: #000;
  font-size: 14px;
  line-height: 22px;
}

.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}

.msg-info-time {
  font-size: 0.85em;
}

.msg-button{
  margin-left: 8px;
  width: 25px;
  height: 25px;
}

.msg-text{
  float: left;
}

.msg-running{
  float: left;
  width: 18px;
  height: 18px;
  margin-left: 8px;
}

.right-msg {
  flex-direction: row-reverse;
}

.right-msg .msg-bubble {
  background: var(--right-msg-bg);
  color: #000;
}

.right-msg .msg-img {
  margin: 0 0 0 10px;
}

.right-msg .msg-button {
  margin: 0 10px 0 0;
}

.msger-inputarea {
	width: 100%;
	height: 70px;
	background: #F8F7F6;
	box-sizing: border-box;
	padding: 15px 20px 15px;
	display: flex;
}

.msger-inputarea * {
  border: none;
}

.msger-input {
	flex: 1;
	background: #fff;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0 15px;
	height: 40px;
	border-radius: 10px;
}

.msger-send-btn {
	width: 60px;
	height: 40px;
	background: linear-gradient(to right,#FFC36D,#FF7225);
	color: #fff;
	line-height: 40px;
	text-align: center;
	margin-left: 10px;
	border-radius: 10px;
  cursor: pointer;
}
.msger-send-btn:disabled{
  opacity: .5;
}
.sidebar {
  position: sticky;
  top: 0;
  height: 100%;
  width: 150px;
  background-color: #202123;
  padding-top: 20px;
  overflow-y: auto;
  overflow-x: hidden;
}

.tablink {
  display: block;
  color: #fff;
  text-align: left;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 16px;
  border: none;
  background-color: #202123;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.tablink.active {
  background-color: #444654;
  color: #fff;
}


/* Styles for the tab content */
.tabcontent {
  display: none;
  padding: 20px;
  height: 100%;
}

/* Styles for the first tab */
#tab1 {
  display: block;
}

.sidebar-header {
     font-weight: bold;
     text-align: center;
     margin-bottom: 26px;
     cursor: auto;
}
#delete-button {
  background: none!important;
  border: none;
  padding: 0!important;
  /*optional*/
  font-family: arial, sans-serif;
  /*input has OS specific font-family*/
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
}
.tips{
  background: #F8F7F6;
  text-align: center;
  color: #AAAAAA;
  padding: 0 0 15px;
  font-size: 13px;
}
.show-model{
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10;
}
.show-model-content{
	width: 88%;
  height: 80vh;
  overflow-y: auto;
	border-radius: 15px;
	box-sizing: border-box;
  scrollbar-width: none; /* firefox */
  -ms-overflow-style: none; /* IE 10+ */
	background: #fff;
	padding: 20px;
}
.show-model-content::-webkit-scrollbar {
   display: none; /* Chrome Safari */
}
.show-model-list{
	width: 100%;
	display: flex;
	justify-content: center;
	font-size: 14px;
	color: #A2A2A2;
}