@import url(https://fonts.googleapis.com/css?family=Lato:300);




.box{
	display: inline-block;
	height: 100%;
	width: 100%;
	position: relative;
	/*margin:0 -4px -5px -2px;*/
	transition: all .2s ease;
    background-color: rgba(0, 0, 0, 0.151);
    backdrop-filter: blur(3px);
}







/* -------------- loader8 -------------- */

.loader8{
	position: relative;
	width: 180px;
	height: 180px;

	top: 0%;
	top: -webkit-calc(50% - 43px);
	top: calc(40% - 43px);
	left: 35%;
	left: -webkit-calc(50% - 43px);
	left: calc(50% - 43px);

	border-radius: 100%;
	/* background-color: rgba(109, 109, 109, 0.24); */
	border-width: 140px;
	border-style: double;
	border-color:transparent  gray;

	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
		box-sizing:border-box;

	-webkit-transform-origin:  50% 50%;
		transform-origin:  50% 50% ;
	-webkit-animation: loader8 2s linear infinite;
		animation: loader8 2s linear infinite;
	
}




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

@keyframes loader8{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

/* Small screens (phones) */
@media (max-width: 960px) {
	.loader8{	
		top: 0%;
		top: -webkit-calc(50% - 43px);
		top: calc(40% - 43px);
		left: 35%;
		left: -webkit-calc(35% - 43px);
		left: calc(35% - 43px);
	}
  }
  
  /* Medium screens (tablets) */
  @media (max-width: 640px) {
	.loader8{	
		top: 0%;
		top: -webkit-calc(40% - 43px);
		top: calc(40% - 43px);
		left: 25%;
		left: -webkit-calc(25% - 43px);
		left: calc(25% - 43px);
	}
  }