.llck
{
	
}

.llck .label
{
	position: absolute;
	overflow: hidden;
	animation: marquee 5s linear infinite;
}

@keyframes marquee 
{
	0% { left: 0; }
	100% { left: -100% };
}

.llck .offline::before 
{
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 16px;
    height: 16px;
    background: red;
    border-radius: 8px;
    z-index: 10000;
    animation: blinker 1.5s linear infinite;
}

.llck .ladder_component_content label
{
	position: absolute;
}

.llck marquee
{
	position: absolute;
}


.llck .leader-line-line-path
{
}

.llck .leader-line-line-path[value="0"]
{
}

.llck .leader-line-line-path[value="1"]
{
	stroke-dasharray: 10 5;
	animation: llck_binary_path_animation 2s linear infinite;
}

@keyframes llck_binary_path_animation
{
	to {
			stroke-dashoffset: -15;
	}
}


@keyframes blinker 
{
	50% {
		opacity: 0;
	}
	}
}