.site_chat_wrap {
	background: #20262b;
	border: 1px solid #34404a;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0,0,0,.28);
	overflow: hidden;
	font-family: Inter, Arial, sans-serif;
}
.site_chat_wrap * {
	font-family: Inter, Arial, sans-serif;
}  
.site_chat_head {
	background: #273039;
	border-bottom: 1px solid #394752;
	color: #f0f3f5;
	padding: 11px 13px;
	position: relative;
}
.site_chat_sub {
	color: #9aa8b3;
	font-size: 12px;
	font-weight: 400;
	text-transform: none;
}
.site_chat_expand {
	align-items: center;
	background: #1b232a;
	border: 1px solid #3d4c57;
	border-radius: 5px;
	color: #dce7ee;
	cursor: pointer;
	display: none;
	font-size: 20px;
	font-weight: 800;
	height: 34px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 9px;
	top: 8px;
	width: 38px;
}
.site_chat_expand:hover {
	background: #22303a;
	border-color: #4d7898;
	color: #fff;
}
.site_chat_more {
	display: none;
	width: 100%;
	border: 0;
	background: #2f3a42;
	color: #dce4ea;
	padding: 9px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	margin-bottom: 8px;
	border-radius: 5px;
}
.site_chat_more:hover {
	background: #384650;
}
.site_chat_messages {
	height: 430px;
	overflow-y: auto;
	padding: 12px 10px;
	background: #161c21;
	box-sizing: border-box;
}
.site_chat_msg {
	display: flex;
	gap: 9px;
	align-items: flex-end;
	margin: 10px 0 14px;
}
.site_chat_msg_mine {
	flex-direction: row-reverse;
}
.site_chat_msg_deleted {
	filter: grayscale(1);
	opacity: .58;
}
.site_chat_avatar {
	align-items: flex-end;
	display: flex;
	flex: 0 0 48px;
	height: 54px;
	justify-content: center;
	text-decoration: none;
	width: 48px;
}
.site_chat_avatar img {
	width: 42px;
	height: 42px;
}
.site_chat_avatar_plain {
	display: block;
	height: 42px;
	position: relative;
	width: 42px;
}
.site_chat_avatar_plain img {
	border-radius: 50%;
	height: 42px !important;
	object-fit: cover;
	width: 42px !important;
}
.site_chat_status_dot {
	border: 2px solid #17232b;
	border-radius: 50%;
	bottom: 1px;
	box-shadow: 0 2px 7px rgba(0,0,0,.35);
	box-sizing: border-box;
	height: 10px;
	position: absolute;
	right: 1px;
	width: 10px;
	z-index: 5;
}
.site_chat_status_online {
	background: #51d36b;
	box-shadow: 0 0 0 2px rgba(81,211,107,.14), 0 2px 7px rgba(0,0,0,.35);
}
.site_chat_status_offline {
	background: #6d7880;
	opacity: .72;
}
.site_chat_game_dot {
	background: #78d949;
	border: 2px solid #17232b;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(120,217,73,.16), 0 0 12px rgba(120,217,73,.48);
	box-sizing: border-box;
	height: 11px;
	position: absolute;
	right: -1px;
	top: 2px;
	width: 11px;
	z-index: 6;
}
.site_chat_game_dot:after {
	background: rgba(120,217,73,.34);
	border-radius: 50%;
	content: "";
	inset: -4px;
	position: absolute;
	animation: siteChatGamePulse 1.7s ease-out infinite;
}
@keyframes siteChatGamePulse {
	0% {
		opacity: .9;
		transform: scale(.55);
	}
	100% {
		opacity: 0;
		transform: scale(1.45);
	}
}
.site_chat_ring {
	--size: 46px;
	--percent: 0;
	--thickness: 2;
	--outer: 56;
	--inner: calc(var(--outer) - var(--thickness));
	display: block;
	height: var(--size);
	position: relative;
	width: var(--size);
}
.site_chat_ring_fill {
	background: #34404a;
	border-radius: 50%;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	z-index: 1;
	-webkit-mask-image: radial-gradient(circle, transparent var(--inner)%, black var(--outer)%);
	mask-image: radial-gradient(circle, transparent var(--inner)%, black var(--outer)%);
}
.site_chat_ring_fill_inner {
	background: hsl(calc(var(--percent) * 1.5), 100%, 40%);
	bottom: 0;
	height: 0;
	left: 0;
	position: absolute;
	width: 100%;
	-webkit-mask-image: linear-gradient(to top, black 95%, transparent 100%);
	mask-image: linear-gradient(to top, black 95%, transparent 100%);
	animation: siteChatFillUp 1.2s ease-out forwards;
}
@keyframes siteChatFillUp {
	to {
		height: calc(var(--percent) * 1.1%);
	}
}
.site_chat_avatar .site_chat_ring_image {
	border-radius: 50%;
	height: calc(var(--size) * .84) !important;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(var(--size) * .84) !important;
	z-index: 2;
}
.site_chat_ring_text {
	background-color: hsl(max(0, calc(var(--percent) * 1.5)), 100%, 40%);
	border-radius: 4px;
	bottom: -12px;
	box-shadow: rgba(0,0,0,.28) 0 3px 8px;
	color: #fff;
	cursor: pointer;
	font-size: 9px;
	font-weight: 800;
	left: 50%;
	line-height: 13px;
	max-width: 42px;
	overflow: hidden;
	padding: 1px 4px;
	position: absolute;
	text-align: center;
	text-overflow: ellipsis;
	text-shadow: 0 0 3px #000;
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: 3;
}
.site_chat_ring .site_chat_status_dot {
	bottom: 2px;
	right: 2px;
}
.site_chat_ring .site_chat_game_dot {
	right: 1px;
	top: 3px;
}
.site_chat_bubble {
	max-width: 78%;
	background: #26303a;
	border: 1px solid #364653;
	border-radius: 9px 9px 9px 3px;
	padding: 8px 10px 7px;
	color: #e4eaee;
	line-height: 1.35em;
	box-sizing: border-box;
	box-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.site_chat_msg_mine .site_chat_bubble {
	background: #21415a;
	border-color: #33627f;
	border-radius: 9px 9px 3px 9px;
}
.site_chat_meta {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin-bottom: 3px;
}
.site_chat_name {
	color: #9ed0ff;
	font-size: 13px;
	font-weight: 700;
}
.site_chat_time {
	color: #9aa8b3;
	font-size: 11px;
	font-style: italic;
}
.site_chat_deleted_label {
	background: rgba(96,104,111,.22);
	border: 1px solid rgba(146,154,161,.32);
	border-radius: 4px;
	color: #b8c0c7;
	font-size: 10px;
	font-weight: 800;
	line-height: 14px;
	padding: 1px 5px;
	text-transform: uppercase;
}
.site_chat_text {
	color: #f3f6f8;
	font-size: 14px;
	line-height: 1.42em;
	word-wrap: break-word;
	word-break: break-word;
	white-space: pre-wrap;
}
.site_chat_text_blur {
	color: transparent;
	cursor: pointer;
	filter: none;
	min-height: 18px;
	overflow: hidden;
	position: relative;
	text-shadow: none;
	transition: filter .18s ease;
	user-select: none;
}
.site_chat_hidden_text {
	border-radius: 4px;
	display: inline-block;
	margin: 0 2px;
	min-width: 88px;
	padding: 1px 6px;
	vertical-align: baseline;
}
.site_chat_text_blur img,
.site_chat_text_blur .site_chat_lottie,
.site_chat_text_blur .site_chat_sticker_wrap {
	filter: blur(8px);
	opacity: 0;
}
.site_chat_text_blur:after {
	animation: siteChatRiskDots .9s linear infinite;
	background-image:
		radial-gradient(circle, rgba(87,159,232,.98) 0 1px, transparent 1.45px),
		radial-gradient(circle, rgba(132,196,255,.96) 0 1px, transparent 1.45px),
		radial-gradient(circle, rgba(51,118,190,.95) 0 1px, transparent 1.5px);
	background-position: 0 0, 6px 4px, 11px 2px;
	background-size: 11px 8px, 13px 9px, 15px 10px;
	border-radius: inherit;
	content: "";
	inset: -2px;
	mix-blend-mode: normal;
	opacity: .92;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}
.site_chat_text_blur:hover:after {
	opacity: .95;
}
@keyframes siteChatRiskDots {
	from {
		background-position: 0 0, 6px 4px, 11px 2px;
	}
	to {
		background-position: 11px 8px, -7px 13px, 26px 12px;
	}
}
.site_chat_editor_hidden {
	background: rgba(20,54,94,.42);
	border: 1px solid rgba(70,126,188,.48);
	border-radius: 4px;
	color: #d9ebff;
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	line-height: 18px;
	margin: 0 2px;
	padding: 1px 7px;
	vertical-align: middle;
}
.site_chat_reply {
	border-left: 3px solid #4d89b7;
	background: rgba(95,137,166,.12);
	border-radius: 4px;
	cursor: pointer;
	margin-bottom: 6px;
	padding: 5px 7px;
}
.site_chat_reply_name {
	color: #9ed0ff;
	font-size: 12px;
	font-weight: 800;
}
.site_chat_reply_text {
	color: #b9c6ce;
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.site_chat_reply_text .site_chat_smile_img {
	max-height: 18px !important;
	max-width: 18px !important;
}
.site_chat_reply_text .site_chat_sticker_line {
	display: inline-block;
	margin: 0 2px 0 0;
	vertical-align: middle;
}
.site_chat_reply_text .site_chat_sticker_wrap,
.site_chat_reply_text .site_chat_lottie {
	height: 28px !important;
	width: 28px !important;
}
.site_chat_actions {
	display: none;
}
.site_chat_actions button {
	background: rgba(158,208,255,.08);
	border: 1px solid rgba(158,208,255,.16);
	border-radius: 4px;
	color: #a9d6ff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	padding: 1px 7px;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.site_chat_actions button:hover {
	background: rgba(158,208,255,.15);
	border-color: rgba(158,208,255,.32);
	color: #d3ebff;
}
.site_chat_msg_focus .site_chat_bubble {
	box-shadow: 0 0 0 2px rgba(158,208,255,.55);
}
.site_chat_unread {
	align-items: center;
	color: #8ecbff;
	display: flex;
	font-size: 12px;
	font-weight: 800;
	gap: 8px;
	letter-spacing: 0;
	margin: 12px 0;
	text-align: center;
	text-transform: uppercase;
}
.site_chat_unread:before,
.site_chat_unread:after {
	background: rgba(91,154,211,.45);
	content: "";
	flex: 1 1 auto;
	height: 1px;
}
.site_chat_unread span {
	background: rgba(32,55,76,.92);
	border: 1px solid rgba(94,164,226,.55);
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0,0,0,.18);
	padding: 4px 10px;
}
.site_chat_form {
	display: flex;
	position: relative;
	gap: 6px;
	padding: 9px;
	background: #273039;
	border-top: 1px solid #394752;
	box-sizing: border-box;
	flex-wrap: wrap;
}
.site_chat_search_box {
	position: relative;
	width: 100%;
}
.site_chat_search_wrap {
	background: #273039;
	border-top: 1px solid #394752;
	box-sizing: border-box;
	padding: 8px 9px;
}
.site_chat_search {
	background: #192127;
	border: 1px solid #3d4c57;
	border-radius: 5px;
	box-sizing: border-box;
	color: #eef3f6;
	font-size: 13px;
	line-height: 20px;
	padding: 8px 10px;
	width: 100%;
}
.site_chat_search:focus {
	border-color: #4d7898;
	outline: none;
}
.site_chat_search_results {
	background: #202830;
	border: 1px solid #3b4b57;
	border-radius: 6px;
	box-shadow: 0 10px 24px rgba(0,0,0,.42);
	box-sizing: border-box;
	display: none;
	left: 0;
	max-height: 260px;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: calc(100% + 5px);
	z-index: 8;
}
.site_chat_search_results_show {
	display: block;
}
.site_chat_search_result {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(80,101,115,.45);
	color: #dce6ed;
	cursor: pointer;
	display: block;
	padding: 8px 10px;
	text-align: left;
	width: 100%;
}
.site_chat_search_result:hover {
	background: #25333d;
}
.site_chat_search_result_deleted {
	opacity: .62;
}
.site_chat_search_result_meta,
.site_chat_search_result_text {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.site_chat_search_result_meta {
	color: #91a6b5;
	font-size: 11px;
	font-weight: 800;
	margin-bottom: 3px;
}
.site_chat_search_result_text {
	color: #eef3f6;
	font-size: 13px;
}
.site_chat_search_empty {
	color: #9aa8b3;
	font-size: 13px;
	padding: 12px;
	text-align: center;
}
.site_chat_reply_panel {
	display: none;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	background: #1d2830;
	border: 1px solid #36576c;
	border-radius: 5px;
	box-sizing: border-box;
	color: #d9e8f2;
	padding: 7px 9px;
}
.site_chat_reply_panel_show {
	display: flex;
}
.site_chat_quote_panel {
	display: none;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	background: #18242b;
	border: 1px solid #3d647d;
	border-left: 3px solid #58a6d6;
	border-radius: 5px;
	box-sizing: border-box;
	color: #d9e8f2;
	margin-top: 6px;
	padding: 7px 9px;
}
.site_chat_quote_panel_show {
	display: flex;
}
.site_chat_quote_text {
	color: #c9d8e0;
	font-size: 12px;
	line-height: 1.35em;
	max-height: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.site_chat_quote_panel button {
	background: transparent;
	border: 0;
	color: #d9e8f2;
	cursor: pointer;
	font-size: 20px;
	font-weight: 800;
	line-height: 20px;
}
.site_chat_reply_panel_label {
	color: #8fbdda;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}
.site_chat_reply_panel_name {
	font-size: 13px;
	font-weight: 700;
}
.site_chat_reply_panel button {
	background: transparent;
	border: 0;
	color: #d9e8f2;
	cursor: pointer;
	font-size: 20px;
	font-weight: 800;
	line-height: 20px;
}
.site_chat_input {
	flex: 1 1 0;
	min-width: 0;
	min-height: 42px;
	max-height: 110px;
	background: #192127;
	border: 1px solid #3d4c57;
	border-radius: 5px;
	color: #eef3f6;
	font-size: 14px;
	line-height: 1.35em;
	padding: 10px;
	resize: vertical;
}
.site_chat_value {
	display: none;
}
.site_chat_editor {
	overflow-y: auto;
	outline: none;
	white-space: pre-wrap;
	word-break: break-word;
}
.site_chat_editor:empty:before {
	content: attr(data-placeholder);
	color: #7f8e99;
	pointer-events: none;
}
.site_chat_editor_item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	margin: 0 2px;
	max-width: 34px;
	max-height: 34px;
}
.site_chat_editor_item img {
	display: block;
	max-width: 28px;
	max-height: 28px;
}
.site_chat_smiles_btn {
	flex: 0 0 42px;
	width: 42px;
	min-height: 42px;
	border: 1px solid #3d4c57;
	border-radius: 5px;
	background: #192127;
	color: #dce7ee;
	cursor: pointer;
	font-size: 21px;
	font-weight: 800;
	line-height: 1;
}
.site_chat_smiles_btn:hover {
	background: #22303a;
	border-color: #4d7898;
	color: #fff;
}
.site_chat_smiles_panel {
	display: none;
	position: absolute;
	left: 9px;
	right: 9px;
	bottom: calc(100% - 1px);
	height: 310px;
	background: #202830;
	border: 1px solid #3b4b57;
	border-radius: 7px 7px 0 0;
	box-shadow: 0 -8px 22px rgba(0,0,0,.38);
	z-index: 4;
	overflow: hidden;
}
.site_chat_smiles_panel_show {
	display: flex;
	flex-direction: column;
}
.site_chat_picker_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 7px;
	background: #273039;
	border-bottom: 1px solid #384753;
}
.site_chat_picker_tabs {
	display: flex;
	gap: 5px;
}
.site_chat_picker_tab,
.site_chat_picker_close,
.site_chat_picker_back {
	border: 0;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 800;
}
.site_chat_picker_tab {
	background: #1b232a;
	color: #aebcc6;
	font-size: 12px;
	padding: 7px 10px;
}
.site_chat_picker_tab_active {
	background: #2d83bd;
	color: #fff;
}
.site_chat_picker_close {
	background: transparent;
	color: #d5e0e7;
	font-size: 22px;
	line-height: 24px;
	width: 30px;
	height: 30px;
}
.site_chat_picker_search {
	margin: 8px 8px 0;
	background: #171f25;
	border: 1px solid #3c4b56;
	border-radius: 5px;
	color: #eef3f6;
	box-sizing: border-box;
	font-size: 13px;
	padding: 8px 10px;
}
.site_chat_smiles_list {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 8px;
}
.site_chat_picker_items,
.site_chat_picker_groups {
	display: grid;
	gap: 7px;
}
.site_chat_picker_items {
	grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
}
.site_chat_picker_items_type2,
.site_chat_picker_groups {
	grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
}
.site_chat_picker_items_type2 {
	grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
}
.site_chat_picker_item,
.site_chat_picker_group {
	position: relative;
	min-height: 46px;
	border: 1px solid #344653;
	border-radius: 6px;
	background: #182127;
	color: #dce6ed;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 5px;
}
.site_chat_picker_items_type2 .site_chat_picker_item {
	min-height: 155px;
	padding: 8px;
}
.site_chat_picker_item:hover,
.site_chat_picker_group:hover {
	background: #22303a;
	border-color: #4d7898;
}
.site_chat_picker_group {
	min-height: 122px;
	flex-direction: column;
	gap: 5px;
}
.site_chat_picker_group_img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
}
.site_chat_picker_group_img img {
	max-width: 72px;
	max-height: 72px;
}
.site_chat_picker_group_name {
	font-size: 12px;
	font-weight: 800;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.site_chat_picker_group_count {
	color: #94a6b3;
	font-size: 11px;
}
.site_chat_picker_locked {
	cursor: default;
	filter: grayscale(1);
	opacity: .55;
}
.site_chat_picker_locked:hover {
	background: #182127;
	border-color: #344653;
}
.site_chat_picker_lock {
	position: absolute;
	right: 5px;
	top: 5px;
	background: rgba(0,0,0,.62);
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	line-height: 22px;
	width: 22px;
	height: 22px;
	text-align: center;
}
.site_chat_picker_unlock {
	background: rgba(34,126,76,.82);
	box-shadow: 0 0 0 1px rgba(140,235,177,.28);
}
.site_chat_picker_lottie,
.site_chat_lottie {
	display: inline-block;
	vertical-align: middle;
}
.site_chat_picker_items_type2 .site_chat_picker_lottie {
	display: block;
	height: 128px !important;
	width: 128px !important;
}
.site_chat_picker_group_img .site_chat_picker_lottie {
	display: block;
	height: 72px !important;
	width: 72px !important;
}
.site_chat_picker_lottie canvas,
.site_chat_picker_lottie svg,
.site_chat_lottie canvas,
.site_chat_lottie svg {
	display: block;
	width: 100% !important;
	height: 100% !important;
}
.site_chat_smile_img {
	display: inline-block;
	vertical-align: middle;
	margin: 0 2px;
}
.site_chat_sticker_line {
	display: block;
	margin: 4px 0;
}
.site_chat_sticker_wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
}
.site_chat_picker_back {
	background: #2f3a42;
	color: #dce4ea;
	display: block;
	margin-bottom: 8px;
	padding: 8px 10px;
	text-align: left;
	width: 100%;
}
.site_chat_picker_empty {
	color: #9aa8b3;
	padding: 18px 8px;
	text-align: center;
}
.site_chat_picker_more_loader {
	grid-column: 1 / -1;
	padding: 10px 8px;
}
.site_chat_context {
	display: none;
	position: fixed;
	z-index: 10000;
	min-width: 145px;
	background: #222b33;
	border: 1px solid #40515e;
	border-radius: 6px;
	box-shadow: 0 10px 26px rgba(0,0,0,.4);
	padding: 5px;
	font-family: Inter, Arial, sans-serif;
}
.site_chat_context * {
	font-family: Inter, Arial, sans-serif;
}
.site_chat_context_show {
	display: block;
}
.site_chat_context button {
	width: 100%;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: #e8eef2;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	padding: 8px 10px;
	text-align: left;
}
.site_chat_context button:hover {
	background: #2d83bd;
	color: #fff;
}
#site_chat_context_delete {
	color: #ffb3b3;
}
#site_chat_context_delete:hover {
	background: #9b2f2f;
	color: #fff;
}
.site_chat_context button:disabled,
.site_chat_context button:disabled:hover {
	background: transparent;
	color: #70808c;
	cursor: default;
	opacity: .65;
}
.site_chat_profile_log {
	display: grid;
	gap: 5px;
	max-height: 240px;
	overflow-y: auto;
	padding-right: 4px;
}
.site_chat_profile_log_item {
	background: rgba(20,28,34,.55);
	border: 1px solid rgba(85,108,122,.45);
	border-radius: 5px;
	box-sizing: border-box;
	color: #dce6ec;
	font-family: Inter, Arial, sans-serif;
	line-height: 1.35em;
	padding: 6px 7px;
}
.site_chat_profile_log_item * {
	font-family: Inter, Arial, sans-serif;
}
.site_chat_input:focus {
	border-color: #4d7898;
}
.site_chat_send {
	flex: 0 0 100px;
	min-height: 42px;
	border: 0;
	border-radius: 5px;
	background: #2c8f44;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
}
.site_chat_send:hover {
	background: #35a951;
}
.site_chat_send:disabled {
	opacity: .55;
	cursor: default;
}
.site_chat_guest {
	padding: 12px;
	background: #252c32;
	border-top: 1px solid #303840;
	color: #cbd4da;
	text-align: center;
}
.site_chat_blocked {
	background: #30281d;
	border-top-color: #7d5b25;
	color: #f3e2c5;
	line-height: 1.45em;
}
.site_chat_empty {
	color: #8f9da7;
	text-align: center;
	padding: 18px 10px;
	font-size: 13px;
}
.site_chat_risk_notice {
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 100%;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
	background: #30281d;
	border: 1px solid #7d5b25;
	border-radius: 5px;
	box-shadow: 0 8px 18px rgba(0,0,0,.35);
	color: #f3e2c5;
	padding: 10px 12px;
	transition: opacity .2s ease, transform .2s ease;
	z-index: 2;
}
.site_chat_risk_notice_show {
	opacity: 1;
	transform: translateY(-6px);
	pointer-events: auto;
}
.site_chat_risk_title {
	color: #ffd38c;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 4px;
	text-transform: uppercase;
}
.site_chat_risk_text {
	font-size: 13px;
	line-height: 1.45em;
}
.site_chat_risk_text a {
	color: #9ed0ff;
	font-weight: 700;
}
.site_chat_confirm {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.55);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 14px;
	box-sizing: border-box;
}
.site_chat_confirm_show {
	display: flex;
}
.site_chat_confirm_box {
	width: 100%;
	max-width: 430px;
	background: #252c32;
	border: 1px solid #44515c;
	border-radius: 6px;
	box-shadow: 0 12px 35px rgba(0,0,0,.45);
	color: #e8eef2;
	padding: 16px;
	box-sizing: border-box;
}
.site_chat_confirm_title {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 8px;
}
.site_chat_confirm_text {
	color: #cbd4da;
	font-size: 14px;
	line-height: 1.45em;
}
.site_chat_confirm_actions {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	margin-top: 14px;
}
.site_chat_confirm_actions button {
	border: 0;
	border-radius: 5px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
	padding: 9px 13px;
}
.site_chat_confirm_cancel {
	background: #3b454d;
	color: #dfe7ec;
}
.site_chat_confirm_send {
	background: #268c23;
	color: #fff;
}
@media (max-width: 700px) {
	.site_chat_expand {
		display: flex;
	}
	.site_chat_messages {
		height: 360px;
	}
	.site_chat_bubble {
		max-width: 84%;
	}
	.site_chat_form {
		flex-direction: column;
	}
	.site_chat_smiles_panel {
		height: 330px;
	}
	.site_chat_smiles_btn {
		width: 100%;
		flex-basis: auto;
	}
	.site_chat_picker_items_type2,
	.site_chat_picker_groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.site_chat_send {
		flex-basis: auto;
		padding: 10px;
	}
	body.site_chat_body_fullscreen {
		overflow: hidden;
	}
	#site_chat.site_chat_fullscreen {
		background: #161c21;
		height: 100dvh;
		inset: 0;
		margin: 0 !important;
		position: fixed;
		width: 100vw;
		z-index: 9998;
	}
	#site_chat.site_chat_fullscreen .site_chat_wrap {
		border: 0;
		border-radius: 0;
		box-shadow: none;
		display: flex;
		flex-direction: column;
		height: 100dvh;
	}
	#site_chat.site_chat_fullscreen .site_chat_messages {
		flex: 1 1 auto;
		height: auto;
		min-height: 0;
	}
	#site_chat.site_chat_fullscreen .site_chat_form,
	#site_chat.site_chat_fullscreen .site_chat_guest {
		flex: 0 0 auto;
	}
	#site_chat.site_chat_fullscreen .site_chat_smiles_panel {
		height: min(52dvh, 430px);
	}
}
