.online-block {
	position: absolute;
	z-index: 10;
	right: 64px;
	top: 110px;
	width: 100%;
	max-width: 276px;
	padding: 3px;
	background: linear-gradient(180deg, #FFEFCD 0%, #E8DECB 100%);
	border-radius: 12px;
}

.online_wrapper {
	padding: 10px;
	width: 100%;
	pointer-events: all;
	border-radius: 10px;
	background: #FFF;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
}

.online-block__icon {
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 16px;
	height: 16px;
	aspect-ratio: 1/1;
	background-image: var(--server-icon);
}

.online-block__row {
	color: var(--server-color);
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 26px;
	cursor: pointer;
	position: relative;
	border-radius: 8px;
	transition: background-color 0.15s ease;
}

.online-block__name {
	color: var(--server-color);
	margin-left: 8px;
}

.online-block__row * {
	font-size: 16px;
	line-height: 100%;
}

.online-block__region {
	padding: 2px 6px;
	border-radius: 100px;
	background: #EEE;
	font-size: 12px;
	line-height: 100%;
	color: #080808;
	white-space: nowrap;
}

.online-block__count {
	margin-left: auto;
	white-space: nowrap;
	font-size: 14px;
}

.online-block__count span {
	color: #888;
	font-size: 14px;
}

.online-block__group {
	display: flex;
	flex-direction: column;
}

@media (max-width: 1540px) {

	.online-block__row * {
		font-size: 12px;
		line-height: 100%;
	}

	.online-block__count span {
		font-size: 12px;
	}

	.online-block__name {
		font-size: 14px;
	}

	.online-block {
		max-width: 240px;
	}

	.online-block__row {
		height: 24px;
	}

	.online_wrapper {
		gap: 9px;
	}

	.online-block__region {
		font-size: 10px;
	}
}

@media (max-width: 1480px) {
	.online-block {
		right: 32px;
	}
}

@media (max-width: 560px) {
	.online-block__row * {
		font-size: 10px;
		line-height: 100%;
	}

	.online-block__count span {
		font-size: 10px;
	}

	.online-block__name {
		display: none;
	}

	.online-block__row {
		width: 80px;
		height: 25px;
	}

	.online-block {
		max-width: 140px;
		right: -40px;
		border-radius: 8px;
	}

	.online_wrapper {
		padding: 7px;
		border-radius: 5px;
		border: 1.5px solid #D6D6D6;
	}
}