﻿.frame {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 400px;
	margin-top: -200px;
	border-radius: 2px;
	overflow: hidden;
	color: #333;
	font-family: "Open Sans", Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.line {
	fill: none;
	stroke-width: 4px;
	stroke-linecap: round;
	-webkit-animation: line 3s linear infinite;
	animation: line 3s linear infinite;
    opacity:0.1;
}

.circle 
{	
	position: absolute;
	border: 2px solid #fff;
	width: 50px;
	top: 210px;
	left: 120px;
	height: 50px;
	border-radius: 50%;
	-webkit-animation: circle 3.1s ease-out infinite both;
	animation: circle 3.1s ease-out infinite both;
    opacity:0.1;
}

@-webkit-keyframes line {
	from {
		stroke-dasharray: 100 660;
		stroke-dashoffset: 780;
	}
	to {
		stroke-dasharray: 100 660;
		stroke-dashoffset: 70;
	}
}
@keyframes line {
	from {
		stroke-dasharray: 100 1200;
		stroke-dashoffset: 1300;
	}
	to {
		stroke-dasharray: 100 1200;
		stroke-dashoffset: 10;
	}
}

@-webkit-keyframes circle {
	0%,
	50% {
		opacity: 1;
		transform: scale(0);
	}
	70%,
	100% {
		opacity: 0;
		transform: scale(0.2);
	}
}
@keyframes circle {
	0%,
	50% {
		opacity: 1;
		transform: scale(0);
	}
	70%,
	100% {
		opacity: 0;
		transform: scale(1);
	}
}
