// Breakpoint Indicator
.zenblocks-breakpoint-indicator {
	position: fixed;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100000;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 4px;
	font-size: 11px;
	line-height: 1;
	color: #fff;
	pointer-events: none;
	opacity: 0.8;
	transition: opacity 0.2s;

	&:hover {
		opacity: 1;
	}

	&__label {
		font-weight: 600;
		color: #4fd1c5;
	}

	&__width {
		color: rgba(255, 255, 255, 0.7);
	}
}
