﻿/* Float four columns side by side */
.dashbord .column {
    box-sizing: border-box;
    float: left;
    width: 20%;
    padding: 5px 10px 10px;
}

/* Remove extra left and right margins, due to padding */
.dashbord .row {
    margin: 0 -5px;
}

    /* Clear floats after the columns */
    .dashbord row:after {
        content: "";
        display: table;
        clear: both;
    }

/* Responsive columns */
@media screen and (max-width: 600px) {
    .dashbord .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}

/* Style the counter cards */
.dashbord .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 13px;
    text-align: center;
    background-color: #f1f1f1;
}

    .dashbord .card.verde {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 16px;
        text-align: center;
        color: white;
        background-color: darkgreen;
    }

/* Float four columns side by side */
.dashbordtitulo .column {
    box-sizing: border-box;
    float: left;
    width: 13%;
    padding: 5px 10px 10px;
}

/* Remove extra left and right margins, due to padding */
.dashbordtitulo .row {
    margin: 0 -5px;
}

/* Clear floats after the columns */
.dashbordtitulo row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
    .dashbordtitulo .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}

/* Style the counter cards */
.dashbordtitulo .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 13px;
    text-align: center;
    background-color: #f1f1f1;
}
