.chat {
	--primary-color: #c99736;
	--primary-rgb: 201, 151, 54;
	--primary-hover: #e5ab3c;
	position: fixed;
	z-index: 1003;
	right: 20px;
	bottom: 20px;
	font-size: 15px;
}

.chat > .chat-floating {
	font-size: 1.75em;
	position: relative;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	-webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 12px 28px rgb(0 0 0 / 20%);
	box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 12px 28px rgb(0 0 0 / 20%);
	background-color: var(--primary-color);
	color: #fff;
	transition: .3s all ease;
}

.chat > .chat-floating:hover {
	background-color: var(--primary-hover);
}

.chat > .chat-floating > .chat-floating_number {
	position: absolute;
	min-height: 20px;
	min-width: 20px;
	top: -5px;
	right: -5px;
	background-color: #e80a0a;
	color: #fff;
	border-radius: 50%;
	padding: 3px 2px 1px;
	line-height: 1.2;
	font-size: .4em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	-webkit-transition: .1s all cubic-bezier(0.04, 0.5, 1, 1.51);
	-o-transition: .1s all cubic-bezier(0.04, 0.5, 1, 1.51);
	transition: .1s all cubic-bezier(0.04, 0.5, 1, 1.51);
}

.chat > .chat-floating > .chat-floating_number.is-empty {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.chat .chat-button {
	border: 0;
	border-radius: 0;
	padding: 6px;
	background-color: transparent;
	color: #65676b;
	font-size: 1.2em;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: .3s all ease-in-out;
	margin-right: -6px;
}

.chat .dropdown {
	position: relative;
	z-index: 2;
}

.chat .dropdown .dropdown-button {
	border: 0;
	border-radius: 0;
	padding: 6px;
	background-color: transparent;
	color: #65676b;
	font-size: 1.2em;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: .3s all ease-in-out;
}

.chat .dropdown .dropdown-list {
	display: none;
	flex-direction: column;
	position: absolute;
	right: 50%;
	transform: translateX(50%);
	top: calc(100% + 15px);
	background-color: #fff;
	border-radius: 12px;
	padding: .5em;
	box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	min-width: 200px;
}

.chat .dropdown .dropdown-list .dropdown-list_item {
	text-decoration: none;
	color: #131516;
	padding: .5em .75em;
	border-radius: 6px;
	width: 100%;
	display: block;
}

.chat .dropdown .dropdown-list .dropdown-list_item:hover {
	background: #f4f4f4;
}

.chat .dropdown .dropdown-list .dropdown-arrow {
	border: 6px solid #ffffff;
	border-left-color: transparent;
	border-bottom-color: transparent;
	box-shadow: rgba(255, 255, 255, .05) 1px -1px 1px 0;
	transform: translateX(-50%) rotate(-45deg);
	position: absolute;
	bottom: calc(100% - 6px);
	left: 50%;
}

.chat .chat-button:hover,
.chat .dropdown .dropdown-button:hover {
	color: #131516;
}

.chat .chat-main {
	display: none;
	justify-content: space-between;
	position: absolute;
	bottom: -20px;
	right: 65px;
	max-width: 45em;
	min-width: calc(45em / 100 * 45);
	height: 30em;
	background-color: #fff;
	-webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 12px 28px rgb(0 0 0 / 20%);
	box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 12px 28px rgb(0 0 0 / 20%);
}

.chat .chat-main .chat-box {
	width: 55%;
	min-width: calc(45em / 100 * 55);
	display: none;
	flex-direction: column;
}

.chat .chat-main .chat-box .chat-box_header {
	height: 49px;
	display: flex;
	align-items: center;
	padding: 0.5em 1em;
	background-color: #ffffff;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 3;
}

.chat .chat-main .chat-box .chat-box_header .dropdown .dropdown-button {
	margin-left: -6px;
}

.chat .chat-main .chat-box .chat-box_header .title {
	display: flex;
	align-items: center;
	width: 100%;
	margin-left: 10px;
	margin-right: 10px;
}

.chat .chat-main .chat-box .chat-box_header .title .title-avatar {
	height: 34px;
	width: 34px;
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.chat .chat-main .chat-box .chat-box_header .title .title-avatar .title-avatar_image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	max-width: 100%;
	max-height: 100%;
	border-radius: 50%;
}

.chat .chat-main .chat-box .chat-box_header .title .title-avatar .title-avatar_status {
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 50%;
	border: 2px solid #fff;
	background-color: #198754;
	height: 13px;
	width: 13px;
	z-index: 2;
}

.chat .chat-main .chat-box .chat-box_header .title .title-avatar .title-avatar_status.is-hidden {
	display: none;
}

.chat .chat-main .chat-box .chat-box_header .title .title-name {
	flex: 1 1 0%;
	max-width: calc(100% - 34px);
	padding: 2px 0 0 10px;
	font-size: 1em;
	color: #131516;
	font-weight: 500;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.chat .chat-main .chat-box .chat-box_header .dropdown,
.chat .chat-main .chat-box .chat-box_header .close {
	margin-top: 3px;
}

.chat .chat-main .chat-box .chat-box_header .close .close-button {
	margin-right: -6px;
}

.chat .chat-main .chat-box .chat-box_body {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

.chat .chat-main .chat-box .chat-box_body::-webkit-scrollbar {
	width: 7px;
	background-color: #f8f9fa;
}

.chat .chat-main .chat-box .chat-box_body::-webkit-scrollbar-thumb {
	background-color: #bbbbbb;
	border-radius: 20px;
}

.chat .chat-main .chat-box .chat-box_body-wrapper {
	padding: 0.5em 1em;
}

.chat .chat-block {
	max-width: 80%;
}

.chat .chat-block.chat-date {
	max-width: 100%;
	margin: 1em 0 !important;
	text-align: center;
	font-size: 13px;
	color: #848484;
}

.chat .chat-block.chat-date + .chat-block {
	margin-top: 0;
}

.chat .chat-block + .chat-block {
	margin-top: .5em;
}

.chat .chat-block .chat-item,
.chat .chat-block .chat-item .chatDetail {
	display: flex;
	width: 100%;
}

.chat .chat-block .chat-item + .chat-item {
	margin-top: .25em;
}

.chat .chat-block .chat-item .chat-item_avatar {
	height: 34px;
	width: 34px;
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: flex-end;
	position: relative;
}

.chat .chat-block .chat-item .chat-item_avatar .chat-item_avatar-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	max-width: 100%;
	max-height: 100%;
	border-radius: 50%;
	display: none;
}

.chat .chat-block .chat-item:last-child .chat-item_avatar .chat-item_avatar-image {
	display: flex;
}

.chat .chat-block .chat-item .chat-item_content {
	margin-left: .5em;
	flex-shrink: 0;
	max-width: calc(100% - 34px);
	padding: .75em;
	border-radius: 12px;
	background-color: rgba(0, 0, 0, 0.075);
}

.chat .chat-block .chat-item .chat-item_content .chat-item_content-msg {
	font-size: 14px;
	color: #131516;
	word-wrap: break-word;
}

.chat .chat-block .chat-item .chat-item_content .time,
.chat .chat-block .chat-item .chat-item_content .chat-item_content-time {
	font-size: 11px;
	color: #848484;
	margin-top: .35em;
	display: none;
}

.chat .chat-block .chat-item:last-child .chat-item_content {
	border-radius: 12px 12px 12px 0
}

.chat .chat-block .chat-item:last-child .chat-item_content .time,
.chat .chat-block .chat-item:last-child .chat-item_content .chat-item_content-time {
	display: block;
}

.chat .chat-block.chat-reply {
	margin-left: auto;
}

.chat .chat-block.chat-reply .chat-item,
.chat .chat-block.chat-reply .chat-item .chatDetail {
	flex-direction: row-reverse;
}

.chat .chat-block.chat-reply .chat-item .chat-item_content {
	margin-left: 0;
	margin-right: .5em;
	background-color: var(--primary-color);
}

.chat .chat-block.chat-reply .chat-item .chat-item_content-msg {
	font-size: 14px;
	color: #fff;
}

.chat .chat-block.chat-reply .chat-item .time,
.chat .chat-block.chat-reply .chat-item .chat-item_content-time {
	color: #dedede;
}

.chat .chat-block.chat-reply .chat-item:last-child .chat-item_content {
	border-radius: 12px 12px 0 12px
}

.chat .chat-main .chat-box .chat-box_footer .emoji {
	flex: 1 1 5%;
	max-width: 5%;
	margin-right: 3px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 3px;
	position: relative;
}

.chat .chat-main .chat-box .chat-box_footer .emoji .chat-button {
	margin-left: -6px;
}

.chat .chat-main .expanded-floating {
	position: absolute;
	bottom: 41px;
	left: 0.5em;
	background: #fff;
	-webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 12px 28px rgb(0 0 0 / 20%);
	box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 12px 28px rgb(0 0 0 / 20%);
	overflow: hidden;
	border-radius: 4px;
	z-index: 2;
	width: 80%;
	height: 16em;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: scale(0);
	transform-origin: left bottom;
	transition: .1s all ease-in-out;
}

.chat .chat-main .expanded-floating.is-show {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	pointer-events: auto;
}

.chat .chat-main .expanded-floating .expanded-tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5em 1em;
	background-color: var(--bs-white);
	box-shadow: 0 0 4px rgb(0 0 0 / 20%);
}

.chat .chat-main .expanded-floating .expanded-tab .expanded-tab_item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #131516;
	font-weight: 700;
	font-size: .9em;
	text-transform: uppercase;
	cursor: pointer;
	padding: .5rem .75rem;
	border-radius: 6px;
	position: relative;
	transition: .3s all ease-in-out;
	text-decoration: none;
	width: calc(50% - 4px);
}

.chat .chat-main .expanded-floating .expanded-tab .expanded-tab_item:hover {
	background-color: rgba(0, 0, 0, 0.06);
}

.chat .chat-main .expanded-floating .expanded-tab .expanded-tab_item.active {
	background-color: var(--primary-color);
	color: #fff;
}

.chat .chat-main .expanded-floating .expanded-content .expanded-content_item {
	-webkit-animation: fadeEffect .2s;
	animation: fadeEffect .2s;
}

.chat .chat-main .expanded-floating .expanded-content .expanded-content_item .expanded-content_body {
	padding: .5em 1em;
	max-height: calc(16em - 50px);
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	display: flex;
	flex-wrap: wrap;
}

.chat .chat-main .expanded-floating .expanded-content .expanded-content_item .expanded-content_body::-webkit-scrollbar {
	width: 7px;
	background-color: #f8f9fa;
}

.chat .chat-main .expanded-floating .expanded-content .expanded-content_item .expanded-content_body::-webkit-scrollbar-thumb {
	background-color: #bbbbbb;
	border-radius: 20px;
}

.chat .chat-main .expanded-floating .emoji-grid {
	display: flex;
	flex-wrap: wrap;
}

.chat .chat-main .expanded-floating .emoji-grid .emoji-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2em;
	width: calc(100% / 8);
	padding: 5px;
	cursor: pointer;
	user-select: none;
}

.chat .chat-main .expanded-floating .share-links {
	display: flex;
	flex-direction: column;
}

.chat .chat-main .expanded-floating .share-links .share-links_group + .share-links_group {
	margin-top: 1.5em;
}

.chat .chat-main .expanded-floating .share-links .share-links_group .share-links_title {
	font-size: .95em;
	color: #131516;
	font-weight: 500;
	width: 100%;
	margin-bottom: .5em;
}

.chat .chat-main .expanded-floating .share-links .share-links_group .share-links_content .link-item {
	display: flex;
	align-items: center;
}

.chat .chat-main .expanded-floating .share-links .share-links_group .share-links_content .link-item .link-item_text {
	font-size: .9em;
	color: #65676b;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	flex: 1 1 0%;
}

.chat .chat-main .expanded-floating .share-links .share-links_group .share-links_content .link-item .link-item_button {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	background-color: rgba(var(--primary-rgb), 0.15);
	font-size: .9em;
	flex-shrink: 0;
	margin-left: 5px;
	cursor: pointer;
}

.chat .chat-main .expanded-floating .share-links .share-links_group .share-links_content .link-item + .link-item {
	margin-top: .75em;
	padding-top: .75em;
	border-top: 1px solid #f8f9fa;
}

@keyframes fadeEffect {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.chat .chat-main .chat-box .chat-box_footer {
	padding: 0.5em 1em;
	background-color: #f8f9fa;
	border-top: 1px solid #E5E7EB;
	display: flex;
	align-items: center;
	position: relative;
}

.chat .chat-main .chat-box .chat-box_footer .msg {
	flex: 1 1 90%;
	max-width: 90%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding-left: 2.5%;
	padding-right: 2.5%;
}

.chat .chat-main .chat-box .chat-box_footer .msg .msg-input {
	width: 100%;
	height: 38px;
	background-color: #fff;
	border-radius: 20px;
	border: 1px solid #E5E7EB;
	padding: 0.5em 0.8em 0.4em;
	color: #131516;
	font-size: calc(1em - 1px);
	transition: .3s all ease-in-out;
	resize: none;
	line-height: 1.65;
	overflow: hidden;
}

.chat .chat-main .chat-box .chat-box_footer .msg .msg-input:focus {
	outline: none;
}

.chat .chat-main .chat-box .chat-box_footer .button {
	flex: 1 1 5%;
	max-width: 5%;
	margin-left: 3px;
	margin-top: 3px;
	position: relative;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.chat .chat-main .chat-box .chat-box_footer .button .chat-button {
	margin-right: -6px;
}

.chat .chat-main .chat-sidebar {
	width: 100%;
	min-width: calc(45em / 100 * 45);
	border-left: 1px solid #E5E7EB;
	display: none;
	flex-direction: column;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header {
	padding: 0.5em 1em;
	background-color: #f8f9fa;
	border-bottom: 1px solid #E5E7EB;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 3;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .search {
	flex: 1 1 86%;
	max-width: 86%;
	position: relative;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .search .search-input {
	width: 100%;
	background-color: #fff;
	border-radius: 20px;
	border: 1px solid #E5E7EB;
	padding: .55em 2.8em .4em .8em;
	color: #131516;
	font-size: calc(1em - 1px);
	transition: .3s all ease-in-out;
	max-height: 34px;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .search .search-input:focus {
	outline: none;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .search .search-input::placeholder {
	color: #9b9898;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .search .search-button {
	border: 0;
	border-radius: 0;
	padding: 6px;
	margin-right: -6px;
	background-color: transparent;
	color: #9b9898;
	font-size: 1em;
	display: flex;
	align-items: center;
	cursor: pointer;
	z-index: 2;
	position: absolute;
	top: 50%;
	right: .8em;
	transform: translateY(-50%);
	transition: .3s all ease-in-out;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .search .search-button:hover {
	color: #131516;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .dropdown {
	flex: 1 1 7%;
	max-width: 7%;
	margin-right: 3px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 3px;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .dropdown .dropdown-button {
	margin-left: -6px;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .dropdown .dropdown-list {
	right: calc(50% + 9px);
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .close {
	flex: 1 1 7%;
	max-width: 7%;
	margin-left: 5px;
	position: relative;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 3px;
}

.chat .chat-main .chat-sidebar .chat-sidebar_header .close .close-button {
	margin-right: -6px;
}

.chat .chat-main .chat-sidebar .chat-sidebar_body {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

.chat .chat-main .chat-sidebar .chat-sidebar_body::-webkit-scrollbar {
	width: 7px;
	background-color: #f8f9fa;
}

.chat .chat-main .chat-sidebar .chat-sidebar_body::-webkit-scrollbar-thumb {
	background-color: #bbbbbb;
	border-radius: 20px;
}

.chat .chat-main .chat-sidebar .chat-sidebar_body .user-list {
	padding: .5em;
}

.chat .chat-main .chat-sidebar .user-list {
	display: flex;
	flex-direction: column;
}

.chat .chat-main .chat-sidebar .user-list .user-item {
	display: flex;
	text-decoration: none;
	padding: .75em .5em;
	border-radius: 10px;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_avatar {
	height: 34px;
	width: 34px;
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	align-self: center;
	justify-content: center;
	position: relative;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_avatar .user-item_avatar-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	max-width: 100%;
	max-height: 100%;
	border-radius: 50%;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_avatar .user-item_avatar-status {
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 50%;
	border: 2px solid #fff;
	background-color: #198754;
	height: 13px;
	width: 13px;
	z-index: 2;
	display: none;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_avatar .user-item_avatar-status.is-online {
	display: block;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_info {
	flex: 1 1 0%;
	padding: 0 0 0 8px;
	max-width: calc(100% - 55px);
	display: flex;
	flex-wrap: wrap;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_info .user-item_name {
	padding-top: 2px;
	font-size: .95em;
	color: #131516;
	font-weight: 500;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_info .user-item_msg {
	font-size: .85em;
	max-width: 69%;
	color: #65676b;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_info .user-item_time {
	font-size: .85em;
	color: #65676b;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_info .user-item_time:before {
	content: "";
	height: 3px;
	width: 3px;
	background-color: #c2c2c2;
	border-radius: 50%;
	display: inline-flex;
	vertical-align: 2px;
	margin-right: 3px;
	margin-left: 3px;
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_count {
	margin-left: auto;
	align-self: center;
	flex-shrink: 0;
	height: 18px;
	width: 18px;
	background-color: #e80a0a;
	border-radius: 50%;
	color: #fff;
	padding: 4px 2px 1px;
	line-height: 1.2;
	font-size: .7em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	-webkit-transition: .1s all cubic-bezier(0.04, 0.5, 1, 1.51);
	-o-transition: .1s all cubic-bezier(0.04, 0.5, 1, 1.51);
	transition: .1s all cubic-bezier(0.04, 0.5, 1, 1.51);
}

.chat .chat-main .chat-sidebar .user-list .user-item .user-item_count.is-empty {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.chat .chat-main .chat-sidebar .user-list .user-item.active {
	background-color: rgba(0, 0, 0, 0.04);
}

.chat .chat-main .chat-sidebar .user-list .user-item:hover {
	background-color: rgba(0, 0, 0, 0.06);
}

.chat.is-show .chat-main,
.chat.is-show .chat-main .chat-box.is-show,
.chat.is-show .chat-main .chat-sidebar.is-show {
	display: flex;
}

.chat .dropdown.is-show .dropdown-list {
	display: flex;
}

.chat .chat-block .chat-item .chat-item_content .chat-item_content-msg .chatShareContent {
	margin-top: 0 !important;
}

.chat .chat-block .chat-item .chat-item_content .chat-item_content-msg .chatShareContent > a {
	text-decoration: none;
}

.chat .chat-block .chat-item .chat-item_content .chat-item_content-msg .chatShareContent .chatShareLink {
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	color: #0066ff;
	margin: 0 0 6px;
}

.chat .chat-block .chat-item .chat-item_content .chat-item_content-msg .chatShareContent .chatShare-header {
	display: flex;
	margin-bottom: 6px;
	gap: 10px;
}

.chat .chat-block .chat-item .chat-item_content .chat-item_content-msg .chatShareContent .chatShare-header .chatShareThumbnail {
	width: 55px;
	height: 55px;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.chat .chat-block .chat-item .chat-item_content .chat-item_content-msg .chatShareContent .chatShare-header .chatShareThumbnail img {
	width: 100%;
	height: auto;
	object-fit: contain;
	max-width: 100%;
}

.chat .chat-block .chat-item .chat-item_content .chat-item_content-msg .chatShareContent .chatShare-header .chatShareTitle {
	font-size: 14px;
	color: #131516;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.chat .chat-block.chat-reply .chat-item .chat-item_content .chat-item_content-msg .chatShareContent .chatShare-header .chatShareTitle {
	color: #fff;
}

.chat .chat-block .chat-item .chat-item_content .chat-item_content-msg .chatShareContent .chatShareDesc {
	font-size: 13px;
	color: #464343;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.chat .chat-block.chat-reply .chat-item .chat-item_content .chat-item_content-msg .chatShareContent .chatShareDesc {
	color: #f5f5f5;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.chat {
		bottom: 65px;
	}
}

@media screen and (max-width: 768px) {
	.chat {
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
		z-index: 1005;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: .3s all ease;
	}

	.chat.is-show {
		opacity: 1;
		visibility: hidden;
		pointer-events: auto;
	}

	.chat > .chat-floating {
		display: none;
	}

	.chat .chat-main {
		bottom: unset;
		right: unset;
		height: 100%;
		width: 100%;
		max-width: 100%;
		min-width: 1px;
		flex-direction: column;
		display: flex;
		background-color: transparent;
		box-shadow: none;
	}

	.chat .chat-main .chat-sidebar,
	.chat .chat-main .chat-box {
		height: 100%;
		width: 100%;
		min-width: 1px;
		max-width: 100%;
		border-left: 0;
		position: absolute;
		top: 50%;
		-webkit-transition: .3s all ease-in-out;
		-o-transition: .3s all ease-in-out;
		transition: .3s all ease-in-out;
		display: flex;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		z-index: 1;
		background-color: #fff;
	}

	.chat .chat-main .chat-sidebar.is-show,
	.chat .chat-main .chat-box.is-show {
		top: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.chat .chat-main .chat-box.is-show {
		z-index: 2;
	}

	.chat .dropdown .dropdown-list {
		right: unset !important;
		left: -15px;
		transform: translateX(0);
	}

	.chat .dropdown .dropdown-list .dropdown-arrow {
		left: 16px;
	}
}
