.skv-area-cliente .skv-client-queue-host {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #fff;
	display: block;
	min-height: 0;
	padding: 0;
}

.skv-area-cliente .skv-client-queue {
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(4, 4, 5, 0.98));
	border: 1px solid rgba(214, 167, 44, 0.55);
	border-radius: 12px;
	box-shadow: 0 0 24px rgba(242, 201, 76, 0.14), 0 14px 32px rgba(0, 0, 0, 0.28);
	display: block;
	height: auto;
	max-height: none;
	overflow: visible;
	width: 100%;
}

.skv-client-queue__header {
	align-items: center;
	background: rgba(0, 0, 0, 0.22);
	border-bottom: 1px solid rgba(214, 167, 44, 0.5);
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 12px 14px;
}

.skv-client-queue__title {
	align-items: center;
	display: inline-flex;
	gap: 7px;
}

.skv-client-queue__title-icon {
	color: #f2c94c;
	flex: 0 0 auto;
	font-size: 0.65em;
	line-height: 1;
	text-shadow: 0 0 8px rgba(242, 201, 76, 0.5);
}

.skv-client-queue__total {
	flex: 0 0 auto;
}

.skv-client-queue__list {
	display: grid;
	height: auto;
	max-height: none;
	overflow: visible;
}

.skv-client-queue__item {
	align-items: center;
	animation: skv-client-queue-in 180ms ease both;
	background: rgba(8, 8, 9, 0.94);
	border-bottom: 1px solid rgba(214, 167, 44, 0.28);
	display: grid;
	gap: 12px;
	grid-template-columns: 48px minmax(0, 1fr) 30px;
	min-height: 62px;
	padding: 9px 12px;
	transition: background-color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.skv-client-queue__item:last-child {
	border-bottom: 0;
}

.skv-client-queue__item--current {
	background: linear-gradient(180deg, rgba(38, 30, 10, 0.92), rgba(13, 11, 8, 0.96));
	box-shadow: inset 0 0 0 1px rgba(242, 201, 76, 0.38), 0 0 18px rgba(242, 201, 76, 0.15);
}

.skv-client-queue__position {
	align-items: center;
	background: rgba(0, 0, 0, 0.42);
	border: 1px solid rgba(214, 167, 44, 0.85);
	border-radius: 8px;
	color: #f2c94c;
	display: inline-flex;
	font-size: 17px;
	font-weight: 900;
	height: 44px;
	justify-content: center;
	line-height: 1;
	width: 44px;
}

.skv-client-queue__item--current .skv-client-queue__position {
	border-color: #f2c94c;
	box-shadow: 0 0 14px rgba(242, 201, 76, 0.22);
	color: #ffd95f;
}

.skv-client-queue__content {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.skv-client-queue__name,
.skv-client-queue__song {
	letter-spacing: 0.04em;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.skv-client-queue__name {
	color: #fff;
	font-size: 15px;
	font-weight: 900;
}

.skv-client-queue__song {
	color: #d6a72c;
	font-size: 12px;
	font-weight: 800;
}

.skv-client-queue__person {
	align-self: center;
	height: 30px;
	justify-self: end;
	position: relative;
	width: 24px;
}

.skv-client-queue__person::before,
.skv-client-queue__person::after {
	background: #d6a72c;
	content: "";
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.skv-client-queue__person::before {
	border-radius: 50%;
	height: 10px;
	top: 2px;
	width: 10px;
}

.skv-client-queue__person::after {
	border-radius: 10px 10px 4px 4px;
	bottom: 3px;
	height: 14px;
	width: 18px;
}

.skv-client-queue__empty {
	align-items: center;
	background: rgba(8, 8, 9, 0.94);
	color: #d7d7d7;
	display: grid;
	font-size: 14px;
	min-height: 92px;
	padding: 18px;
	text-align: center;
}

@media (hover: hover) {
	.skv-client-queue__item:hover {
		background: rgba(14, 14, 15, 0.96);
	}
}

@media (max-width: 420px) {
	.skv-client-queue__header {
		padding: 11px 12px;
	}

	.skv-client-queue__item {
		gap: 10px;
		grid-template-columns: 44px minmax(0, 1fr) 26px;
		min-height: 58px;
		padding: 8px 10px;
	}

	.skv-client-queue__position {
		font-size: 16px;
		height: 40px;
		width: 40px;
	}

	.skv-client-queue__name {
		font-size: 14px;
	}

	.skv-client-queue__song {
		font-size: 11px;
	}
}

@keyframes skv-client-queue-in {
	from {
		opacity: 0;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
