.mask .game-logo{
			position: relative;
			display:block;
			width:310px;
			height: 152px;
			text-align:center;
			margin: 0 auto;
			-webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,.5));
			animation: animatedBackground 5s linear infinite;
		}

		@keyframes animatedBackground {
			0% {
				background-position: -310px 0px; 
			}
			50% {
				background-position: 310px 0px; 
			}
			100% {
				background-position: 600px 0px;
			} 
		}

		.mask .game-logo{
			background-position: -310px 0;
			position: absolute;
			left: 0;
			right: 0;
			z-index: 3;
		}

		.mask .game-logo::after{
			content:'';
			position: absolute;
			pointer-events: none;
			top:0; left:0; right:0; bottom: 0;
			background: radial-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;
			background-position: inherit; 
			-webkit-mask: url('/platform/v1/img/rank/eo-logo-site.png') center;
			mask: url('/');
		}