/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 14/04/2021, 09:36:09 AM
    Author     : Cristian
*/

 table th {
        text-align: center;
        /*        color: #ffffff;*/
    }
    table td{
        text-align: center;
    }

    #actualizar:hover {
        color: white;
        background-color: blue;
    }

    #eliminar:hover {
        color: white;
        background-color: red;
    }



    ul.nav-tabs li{
        background-color: white;

    }  

    ul.nav-tabs li.active {
        background-color:#2BBBAD;

    }

    #dni:hover{
        background-color:#2BBBAD;
    }




    #surname:hover{
        background-color:#2BBBAD;
    }

    #secondsurname:hover{
        background-color: orange;
    }
    #firstname:hover{
        background-color: orange;
    }
    #date:hover{
        background-color: orange;
    }
    #eps:hover{



    }

    #vitae:hover{
        background-color: orange;
    }

    #mailper:hover{
        background-color: orange;
    }

    #mailins:hover{
        background-color: orange;
    }

    .datetimepicker{
        background-color: orange;
    }

    
    .parpadea {
  
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

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

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

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