@charset "UTF-8";
/* CSS Document */

/*Neon*/
.class1 {
  text-align: center;
  margin: 20px 0 20px 0;
  position: relative;
}

.class2 {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.class1 .class2 {
  color: #4d4d4d;
}

.class1 .class2:hover{

  -webkit-animation: neon1 0.5s ease-in-out infinite alternate;
  -moz-animation: neon1 0.5s ease-in-out infinite alternate;
  animation: neon1 0.5s ease-in-out infinite alternate;
}

.class-active{
  -webkit-animation: neon1 0.5s ease-in-out infinite alternate;
  -moz-animation: neon1 0.5s ease-in-out infinite alternate;
  animation: neon1 0.5s ease-in-out infinite alternate;
}

.class1 .class2:hover{
  color: #fff;
}

.class2-active{
  color: #fff;
  -webkit-animation: neon1 0.5s ease-in-out infinite alternate;
  -moz-animation: neon1 0.5s ease-in-out infinite alternate;
  animation: neon1 0.5s ease-in-out infinite alternate;
}
/*glow for webkit*/


@-webkit-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #ed8300, 0 0 20px #ed8300, 0 0 30px #ed8300, 0 0 40px #ed8300, 0 0 70px #ed8300, 0 0 80px #ed8300, 0 0 100px #ed8300, 0 0 150px #ed8300;
  }
  to {
    text-shadow: 0 0 5px #ed8300, 0 0 10px #ed8300, 0 0 15px #ed8300, 0 0 20px #ed8300, 0 0 35px #ed8300, 0 0 40px #ed8300, 0 0 50px #ed8300, 0 0 75px #ed8300;
  }
}

@-moz-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #ed8300, 0 0 20px #ed8300, 0 0 30px #ed8300, 0 0 40px #ed8300, 0 0 70px #ed8300, 0 0 80px #ed8300, 0 0 100px #ed8300, 0 0 150px #ed8300;
  }
  to {
    text-shadow: 0 0 5px #ed8300, 0 0 10px #ed8300, 0 0 15px #ed8300, 0 0 20px #ed8300, 0 0 35px #ed8300, 0 0 40px #ed8300, 0 0 50px #ed8300, 0 0 75px #ed8300;
  }
}
@keyframes neon1 {
 from {
    text-shadow: 0 0 10px #fff, 0 0 20px #ed8300, 0 0 30px #ed8300, 0 0 40px #ed8300, 0 0 70px #ed8300, 0 0 80px #ed8300, 0 0 100px #ed8300, 0 0 150px #ed8300;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ed8300, 0 0 20px #ed8300, 0 0 35px #ed8300, 0 0 40px #ed8300, 0 0 50px #ed8300, 0 0 75px #ed8300;
  }
}
