/* CSS general de colores */
.chico{
    font-size: 8pt;
}

.grande{
    font-size: 18pt;
}

/* Colores de medidas */
.Liquido{
    color: #5400FF;
}
.Peso{
    color: #8F5272;
}
.Longitud{
    color: #459669;
}
.Unidad{
    color: #B0CF35;
}

/* Colores de nivel de existencias */
.Comprar{
    color: #921E1E;
}
.Surtir{
    color: #F12222;
}
.Presupuestar{
    color: #CBC91F;
}
.Optimo{
    color: #57FAA4;
}

/* CSS para login */
.azul-club {
    /* fallback for old browsers */
    background: #2b4f2b;

    /* Chrome 10-25, Safari 5.1-6
    background: -webkit-linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+
    background: linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593); */
}

@media (min-width: 768px) {
    .gradient-form {
        height: 100vh !important;
    }
}

/* CSS para animación */
@media (min-width: 769px) {
    .gradient-custom-2 {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem;
    }
}

.blink {
        animation: blink-animation 1s steps(5, start) infinite;
        -webkit-animation: blink-animation 1s steps(5, start) infinite;
      }
      @keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
      @-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }

table.dataTable thead .sorting:after,
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before {
bottom: .5em;
}