/* Gráficos de barras */

.barras {
    padding: 40px 0 20px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    font-size: 16px;
    color: #717171;
}
.barras .barra {
    padding: 0 0 5px 0;
}
.barras .barra .etiqueta {
    display: inline-block;
    width: 30%;
    text-align: right;
    vertical-align: top;
    padding: 0 5px;
}
.barras .barra .etiqueta img {
    display: inline-block;
    width: 40%;
}
.barras .barra .color {
    display: inline-block;
    height: 20px;
    background-color: #ccc;
}
.barras .barra .valor {
    display: inline-block;
    padding: 0 0 0 5px;
    vertical-align: top;
}


/* Gráficos de tarta */

.ct-chart {
    margin: 20px 0;
}

.ct-label {
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    font-size: 16px;
    color: #717171;
}

.ct-chart-pie .ct-label {
    font-size: 14px;
    fill: #333;
}

.ct-series-a .ct-slice-pie {
    fill: #e4bcc2;
}
.ct-series-b .ct-slice-pie {
    fill: #e4a3ad;
}
.ct-series-c .ct-slice-pie {
    fill: #e48a98;
}
.ct-series-d .ct-slice-pie {
    fill: #e47183;
}
.ct-series-e .ct-slice-pie {
    fill: #e4586e;
}
.ct-series-f .ct-slice-pie {
    fill: #e43f59;
}
.ct-series-g .ct-slice-pie {
    fill: #e42644;
}

.valores-grafico {
    list-style-type: none;
    margin: 0;
    padding: 80px 0 20px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    font-size: 16px;
    color: #717171;
}

.valores-grafico.horizontal li {
    display: inline-block;
    margin-right: 20px;
}

.valores-grafico li .color {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.valores-grafico li .descripcion {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 5px;
}

.valores-grafico li.icono .descripcion {
    vertical-align: baseline;
    padding: 0 0 10px 5px;
}

.valores-grafico li:nth-child(1) .color {
    background-color: #e4bcc2;
}
.valores-grafico li:nth-child(2) .color {
    background-color: #e4a3ad;
}
.valores-grafico li:nth-child(3) .color {
    background-color: #e48a98;
}
.valores-grafico li:nth-child(4) .color {
    background-color: #e47183;
}
.valores-grafico li:nth-child(5) .color {
    background-color: #e4586e;
}
.valores-grafico li:nth-child(6) .color {
    background-color: #e43f59;
}
.valores-grafico li:nth-child(7) .color {
    background-color: #e42644;
}


/* Tablas */

.tabla-web {
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    font-size: 16px;
    color: #717171;
}

.tabla-web th:nth-child(2), .tabla-web th:nth-child(3), .tabla-web th:nth-child(4),
.tabla-web td:nth-child(3), .tabla-web td:nth-child(4), .tabla-web td:nth-child(5) {
    text-align: right;
}

.tabla-web .resaltada {
    background-color: #e42644;
    color: #fff;
}


@media (max-width: 991px) {
    .barras .barra .etiqueta {
        display: block;
        width: 100%;
        text-align: left;
        padding-left: 0;
    }
    .barras .barra .etiqueta img {
        margin-bottom: 4px;
    }

    .valores-grafico {
        padding-top: 0;
    }

    .valores-grafico.horizontal {
        text-align: center;
    }

    .ct-chart-pie .ct-label {
        font-size: 12px;
    }

    .tabla-web {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .ct-chart-pie .ct-label {
        font-size: 9px;
    }
}
