#ajax1,#ajax3{
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.80);
	z-index: 100;
	text-align: center;
	vertical-align: middle;
}

#ajax1 .logo,
#ajax3 .logo{
	width: 227px;
	height: 63px;
    background-image: url("../images/kpmlogo.png");
	margin: 9.1px auto;
	overflow: hidden;
	text-indent: -9999vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;		
}

#ajax2{
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.80);
	z-index: 100;
	text-align: center;
	vertical-align: middle;
}

#ajax2 .logo{
	width: 227px;
	height: 63px;
    background-image: url("../images/kpmlogo.png");
	margin: 9.1px auto;
	overflow: hidden;
	text-indent: -9999vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;		
}

#radar_wrapper {
  -webkit-animation: pulse3 3.5s ease-in-out infinite;
	width: 105px;
	height: 105px;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
	border-radius: 100%;	
}

.radar {
  /* position: absolute; */
  top: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 3px solid #333;
  box-shadow: inset 1px 1px 3px #333;
  background: -webkit-linear-gradient(-45deg, #bfd255 0%,#8eb92a 40%,#72aa00 54%,#9ecb2d 100%);
}

.radar:before {
  position: absolute;
  z-index: 100;
  top: 0px;
  left: 50%;
  width: 2px;
  height: 50px;
  border-radius: 2px;
  background: #d1f490;
  content: "";
  -webkit-animation: spin 3s linear infinite;
  -webkit-transform-origin: 50% 100%;
}

.sweep {
	display: none;
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  clip: rect(0, 50px, 100px, 0);
  -webkit-animation: spin 3s linear infinite;
  -webkit-transform-origin: 50% 50%;
}

.sweep:after {
  position: absolute;
  background: -webkit-linear-gradient(-45deg, rgba(255,255,255,0.25) 0%,rgba(255,255,255,0) 100%);
  -webkit-transform: rotate(120deg);
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50px;
  clip: rect(0px, 50px, 100px, 0px);
}

.stopwatch:after {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #eee;
  content: "";
}

.axis:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255,255,255,0.25);
}

.axis:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(255,255,255,0.25);
}

.concentric-circles {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  transform-origin: 100% 50%;
  border: 1px solid rgba(255,255,255,0.25);
}

.concentric-circles:before {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 55px;
  height: 55px;
  border-radius: 55px;
  border: 1px solid rgba(255,255,255,0.25);
  content: "";
}

.concentric-circles:after {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.25);
  content: "";
}

.target {
  position: absolute;
  opacity: 1;
  top: 20%;
  left: 20%;
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.50);
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(255,255,255,0.95);
}

.target:nth-child(1) {
  -webkit-animation: pulse2 3.5s ease-in-out infinite;
}


.target:nth-child(2) {
  top: 70%;
  left: 30%;
  -webkit-animation: pulse2 2s ease-in-out infinite;
}

.target:nth-child(3) {
  top: 50%;
  left: 70%;
  width: 3px;
  height: 3px;
  border-radius: 3px;
  -webkit-animation: pulse2 3s ease-in-out infinite;
}



@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform:rotate(360deg);
  }
}

@-webkit-keyframes pulse2 {
  0 {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes pulse3 {
  0 {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}