
  .link{
  margin:10px 0;
}


.box {
    
    width: 70px;
    height: 70px;
    margin: -32px 0px 0px 10px;
    float: right;
  }
  .container {

			z-index: 9999 !important;
		}

@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}


@media only screen and (max-width: 600px) {
    .box {
        animation: animName 2s linear infinite;
        width: 0px;
        height: 0px;
       
      }
  }




  