div.elementor-widget-strokify {
position:relative;}
div.elementor-widget-strokify svg {
	width:100%;
	box-sizing: padding-box !important;
	height:100%;}
.strokify {  
    fill: none;
    stroke: #000;
    stroke-dasharray: 6% 29%;   /* 1px glitter...testiraj, 100% sa linear animation zavrsi sve */
    stroke-dashoffset: 0%;
    animation: strokifyOffset 15.5s infinite linear;
	animation-direction: alternate!important;
}
.strokifyOnce {
	animation-iteration-count: 1!important;
	-ms-animation-iteration-count: 1!important;
	-webkit-animation-iteration-count: 1!important;
}
.strokify:nth-child(1){
	animation-delay: -1s;
}
.strokify:nth-child(2){
	animation-delay: -2s;
}

.strokify:nth-child(3){
	animation-delay: -3s;
}

.strokify:nth-child(4){
	animation-delay: -4s;
}

.strokify:nth-child(5){
	animation-delay: -5s;
}
@keyframes strokifyOffset{
	100% {stroke-dashoffset: -55%;}
}