
/* Serveix pq les etiquetes tinguin totes la mateixa amplada */
.etiqueta {
    min-width: 100px !important;
    display: inline-block !important
  }
/* Prova per evitar salts de linia en camps de taula...

th {
    white-space: pre;
}

*/



.full-width {
  display:block;
}


/* Serveix per separar dos botons, per exemple utilització: <div class="divider"/> */
.divider{
    width:50px;
    height:auto;
    display:inline-block;
}

/* Color del cammp focus de l formulari */
input:focus {
    background-color: #FFFACD;
}

/*  Color del focus de la taula modificables*/
td:focus {
    background-color: #FFFACD;
}

/*  Color del focus de la taula modificables*/
select:focus {
    background-color: #FFFACD;
}

/* Canviem tamany de les alertes g*/
.alert {
    width:80%;    
 }

 

 a:link {
    text-decoration: none;
  }
  
  a:visited {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  a:active {
    text-decoration: none;
  }


  .botoncito{
    position: relative;
    
    display: inline-block;
    
    width: 3.6rem;
    
    height: 2rem;
    
    }
    
    .botoncito input { 
    
    opacity: 0;
    
    width: 0;
    
    height: 0;
    
    }
    
    .deslizadora{
    
    position: absolute;
    
    cursor: pointer;
    
    top: 0;
    
    left: 0;
    
    right: 0;
    
    bottom: 0;
    
    background-color: #ccc;
    
    transition: .4s;
    
    }
    
    .deslizadora:before {
    
    position: absolute;
    
    content: "";
    
    height: 1.6rem;
    
    width: 1.6rem;
    
    left: 0.2rem;
    
    bottom: 0.2rem;
    
    background-color: white;
    
    transition: .4s;
    
    }
    
    input:checked + .deslizadora {
    
    background-color: #34a853;
    
    }
    
    input:checked + .deslizadora:before {
    
      transform: translateX(1.6rem);
    
    }

    .taula_indirectes{
      background-color: #ff8000; 
    }



    .tatxat{text-decoration:line-through;}



.parpadea {
    
    animation-name: parpadeo;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  
    -webkit-animation-name:parpadeo;
    -webkit-animation-duration: 2s;
    -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; }
  }

  

  .selector-normes {
    background-color:#2c8e77;
    border:1px solid #aaa;
    border-radius:4px;
    cursor:default;
    float:left;
    margin-right:5px;
    margin-top:5px;
    padding:0 5px
   }

