.lightstat_main,
.lightstat_main * {
	box-sizing: border-box;
}

.lightstat_main {
	width: 100%;
	margin: 0;
	font-family: "Inter", sans-serif;
	background: #15171c;
	border: 1px solid #1e2027;
	border-radius: 15px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
	overflow: hidden;
	color: #fff;
}

.lightstat_progress {
	width: 100%;
	padding: 0 15px;
	margin-top: 15px;
}

.lightstat_progress::after {
	content: "";
	display: block;
	clear: both;
}

.lightstat_progress span {
	height: 4px;
	display: block;
	float: left;
}

.lightstat_progress span:first-child {
	border-top-left-radius: 999px;
	border-bottom-left-radius: 999px;
}

.lightstat_progress span:last-child {
	border-top-right-radius: 999px;
	border-bottom-right-radius: 999px;
}

.lightstat_body {
	background: #15171c;
	padding: 0 0 14px 0;
}

.lightstat_body.border_none_user {
	border-radius: 15px;
}

.lightstat_is {
	display: block;
	padding: 16px 15px 12px;
	color: #b5b7c8;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	line-height: 1.5;
}

.lightstat_body .result_numb {
	padding: 0 15px;
}

.lightstat_body .result_numb div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0 0 10px 0;
	color: #9a9cae;
	font-size: 14px;
	line-height: 1.4;
}

.lightstat_body .result_numb div span:first-of-type {
	width: 8px;
	height: 8px;
	min-width: 8px;
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: middle;
}

.lightstat_body .result_numb div span:last-of-type {
	margin-left: auto;
	color: #fff;
	font-weight: 600;
}

.lightstat_body .result_numb .lightstat_user span:first-of-type {
	border: 2px solid #00a261;
}

.lightstat_body .result_numb .lightstat_guest span:first-of-type {
	border: 2px solid #1677ff;
}

.lightstat_body .result_numb .lightstat_bot span:first-of-type {
	border: 2px solid #f97316;
}

.lightstat_user_circle {
	background: #00a261;
}

.lightstat_guest_circle {
	background: #1677ff;
}

.lightstat_bot_circle {
	background: #f97316;
}

.lightstat_user_list {
	position: relative;
	background: #15171c;
	border-top: 1px solid #1e2027;
	padding: 0 0 10px;
}

.lightstat_user_list_title {
	display: block;
	padding: 16px 15px 14px;
	color: #b5b7c8;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.lightstat_user_list_item {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 0 15px 14px;
	border-bottom: 1px solid rgba(255,255,255,.04);
}

.lightstat_user_list .lightstat_user_list_item:nth-of-type(1),
.lightstat_user_list .lightstat_user_list_item:nth-of-type(2),
.lightstat_user_list .lightstat_user_list_item:nth-of-type(3) {
	display: flex;
}

.lightstat_user_list_item:last-child {
	border-bottom: 0;
}

.lightstat_user_list_item a {
	text-decoration: none !important;
	color: #fff !important;
}

.lightstat_user_list_item_avatar {
	width: 40px;
	height: 40px;
	min-width: 40px;
	display: block;
	border-radius: 50%;
	background-size: cover !important;
	background-position: center center !important;
	border: 1px solid #2a2c37;
}

.lightstat_user_list_item_info {
	min-width: 0;
	flex: 1 1 auto;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.lightstat_user_list_item_info > a {
	display: block;
	color: #fff !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lightstat_user_list_item_info span {
	display: block;
	margin-top: 3px;
	color: #9a9cae;
	font-size: 12px;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lightstat_user_list_item_info span.online {
	color: #00a261;
}

.full_list_visit_bg {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 15px 14px;
	background: linear-gradient(to bottom, rgba(21,23,28,0) 0%, rgba(21,23,28,1) 70%);
}

.full_list_visit {
	display: block;
	width: 100%;
	height: 36px;
	line-height: 34px;
	text-align: center;
	border-radius: 10px;
	border: 1px solid #f1416c;
	background: transparent;
	color: #f1416c !important;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	transition: .2s;
}

.full_list_visit:hover {
	background: #f1416c;
	color: #fff !important;
}