

#shape {
	stroke-width: 6px;
	fill: transparent;
	stroke: #fff;
	stroke-dasharray: 740 800;
	stroke-dashoffset: 0;
	transition: 1s all ease;
	cursor: pointer;
}

#text {
	margin-top: -45px;
	text-align: center;
	color: white;
}

.svg-wrapper #shape {
	
	animation:mymove 3s infinite;
	-webkit-animation:mymove 3s infinite;
	-moz-animation:mymove 3s infinite;
	-ms-animation:mymove 3s infinite; 
}

@keyframes mymove
{
from {}
to {stroke-dasharray: 50 0;
	stroke-width: 6px;
	stroke-dashoffset: 0;
	stroke: #fff;}
}

@-webkit-keyframes mymove 
{
from {}
to {stroke-dasharray: 50 0;
	stroke-width: 6px;
	stroke-dashoffset: 0;
	stroke: #fff;}
}

@-moz-keyframes mymove 
{
from {}
to {stroke-dasharray: 50 0;
	stroke-width: 6px;
	stroke-dashoffset: 0;
	stroke: #fff;}
}

@-ms-keyframes mymove 
{
from {}
to {stroke-dasharray: 50 0;
	stroke-width: 6px;
	stroke-dashoffset: 0;
	stroke: #fff;}
}