.boton{
	cursor: pointer;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

body{
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

.parpadea {
  
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-iteration-count: 2;

}



@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

/* .table-hover tbody tr:hover td {
  background: gold;
} */