
.masking {
  position: relative;
  display: block;
  width: 102px;
  height: 102px;
  text-align: center;

  background: ;
  border-radius: 50%;
  
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, .5));
}
.masking{
	-webkit-animation: Anim1 1s linear  infinite;
	-moz-animation: Anim1 1s linear  infinite;
	-o-animation: Anim1 1s linear  infinite;
	-ms-animation: Anim1 1s linear  infinite;
	animation: Anim1 1s linear  infinite;
}
@-webkit-keyframes Anim1{
	0%{ background-position: 0px 0; }
	100%{ background-position: 102px 102px; }
}
@-moz-keyframes Anim1{
	0%{ background-position: 0px 0; }
	100%{ background-position: 102px 102px; }
}
@-o-keyframes Anim1{
	0%{ background-position: 0px 0; }
	100%{ background-position: 102px 102px; }
}
@-ms-keyframes Anim1{
	0%{ background-position: 0px 0; }
	100%{ background-position: 102px 102px; }
}
@keyframes Anim1{
	0%{ background-position: 0px 0; }
	100%{ background-position: 102px 102px; }
}
.masking::after {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: linear-gradient(0 0, circle farthest-side, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, .8) 98%, rgba(255, 255, 255, 0) 100%) no-repeat;
  background: radial-gradient(circle farthest-side at 0 0, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, .8) 98%, rgba(255, 255, 255, 0) 100%) no-repeat;*/
  
  border-radius: 50%;
	background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 90%, rgba(255,255,255,0.8) 96%, rgba(255,255,255,0) 100%);
background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 90%, rgba(255,255,255,0.8) 96%, rgba(255,255,255,0) 100%);
background: -o-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 90%, rgba(255,255,255,0.8) 96%, rgba(255,255,255,0) 100%);
background: -ms-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 90%, rgba(255,255,255,0.8) 96%, rgba(255,255,255,0) 100%);
background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 90%, rgba(255,255,255,0.8) 96%, rgba(255,255,255,0) 100%);
 background-position: inherit;

}