

body a buttonNeon {
    display: flex;
    
  }
  
  
  a buttonNeon{
    position: relative;
    width: 160px;
    height: 50px;
    line-height: 48px;
    background: #000;
    text-transform: uppercase;
    font-size: 20px;
    Letter-spacing: 4px;
    text-decoration: none;
    -webkit-box-reflect: below 1px linear-gradient (transparent, #ccc4);
    
  }
  
  a buttonNeon::before{
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,#fb0094,#00f,#0f0,#ff0,#f00,#fb0094,#00f,#0f0,#ff0,#f00);
    background-size: 400%;
    opacity: 0;
    transition: 0.5s;
    animation: animate 20s linear infinite;
  }
  
  
  a buttonNeon::after{
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,#fb0094,#00f,#0f0,#ff0,#f00,#fb0094,#00f,#0f0,#ff0,#f00);
    background-size: 400%;
    opacity: 0;
    filter: blur(20px);
    transition: 0.5s;
    animation: animate 20s linear infinite;
  }
  
  
  a buttonNeon:hover::before,
  a buttonNeon:hover::after{
    opacity: 1;
  }
  
  @keyframes animate
  {
    0%
    {
      background-position: 0 0;
    }
    50%
    {
      background-position: 300% 0;
    }
    100%
    {
      background-position: 0 0;
    }
    
  
  }
  
  a buttonNeon span{
    position: absolute;
    display: block;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    text-align: center;
    background: #0c0c0c;
    color: rgba(255,255,255,0.3);
    transition: 0.5s;
    z-index: 1;;
  
  }
  a buttonNeon:hover span{
    color: rgba(255,255,255,1);
  }
  
  a buttonNeon span::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255,255,255,0.2);
  }


  ul.Icons
  {
      position: relative;
      display: flex;
      background: none;
  }
  ul.Icons li 
  {
      list-style: none;
  }
  ul.Icons li label 
  {
      position: relative;
  }
  ul.Icons li label input[type="Checkbox"]
  {
      position: absolute;
      opacity: 0;
      cursor: pointer;
  }
  ul.Icons li label input[type="radio"]
  {
      position: absolute;
      opacity: 0;
      cursor: pointer;
  }
  ul.Icons li label  .icon{
      position: relative;
      min-width: 40px;
      padding-left: 5px;
      padding-right: 5px;
      height: 40px;
      background: #18191f;
      color: #555;
      text-transform: uppercase;
      font-size: 20px;
      Letter-spacing: 1px;
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      margin: 0 10px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: -1px -1px 4px rgba(255,255,255,0.05),
                4px 4px 6px rgba(0,0,0,0.2),
                inset -1px -1px 4px rgba(255,255,255,0.05),
                inset 1px 1px 1px rgba(0,0,0,0.1);
  }
  ul.Icons li label .icon:before{
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: calc(100%-5px);
      height: calc(50%-2px);
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      background: rgba(255,255,55,0.05);
  }
  ul.Icons li label input[type="Checkbox"]:checked ~ .icon
  {
      box-shadow: inset 0px 0px 2px rgba(255,255,255,0.05),
                    inset 4px 4px 6px rgba(0,0,0,0.2);
  }
  ul.Icons li label input[type="Checkbox"]:checked ~ .icon .fa
  {
    color: #00f3ff;
    text-shadow: 0 0 15px #00f3ff,
                 0 0 25px #00f3ff;
    animation: animateButton 5s linear infinite;
  }
  ul.Icons li label input[type="radio"]:checked ~ .icon
  {
      box-shadow: inset 0px 0px 2px rgba(255,255,255,0.05),
                    inset 4px 4px 6px rgba(0,0,0,0.2);
  }
  ul.Icons li label input[type="radio"]:checked ~ .icon .fa
  {
    color: #00f3ff;
    text-shadow: 0 0 15px #00f3ff,
                 0 0 25px #00f3ff;
    animation: animateButton 5s linear infinite;
  }
  @keyframes animateButton
  {
      0% {filter: hue-rotate(0deg);}
      100% {filter: hue-rotate(60deg);}
      
  }
  