table { 
    width: 100%; 
    border-collapse: collapse; 
    }

/* Zebra striping */
/* tr:nth-of-type(odd) { 
    background: #eee; 
    } */

th { 
    background: var(--primary-color); 
    color: white; 
    font-weight: bold;
    font-size: 18px; 
    }
td{
    font-size: 15px;
}
td, th { 
    padding: 5px; 
    border: 1px solid #ccc; 
    text-align: left; 

    }
tr{
    background: #ecedee;
}
tr:hover {
          background-color: #ccc;
        }
/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

    table { 
        width: 100%; 
    }

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr { 
        display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr { border: 1px solid #ccc; }
    
    td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50%; 
    }

    td:before { 
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%; 
        padding-right: 10px; 
        white-space: nowrap;
        /* Label the data */
        content: attr(data-column);

        color: #000;
        font-weight: bold;
    }

}


tr.title-table{
    background: #d7d7d8;
}
tr.title-table td{
    color: var(--primary-color);
    font-size: 18px;
    font-family: 'HelveticaNeue-Bold';
    padding-left: 6px;
}

.quote-finan{
    text-align: center;
}
.quote-finan span{
    margin: 0 5px;
}
.quote-finan img{
    display: inline-block;
    margin-right: 5px;
}
.text-finan h4 span{
    font-family:'Helvetica Neue';font-weight: initial;
}
#chart-col1{
    height: 450px;
}
#chart-col2{
    height: 450px;
}
#chart-col3{
    height: 450px;
}
#chart-col4{
    height: 450px;
}
#chart-col5{
    height: 450px;
}
#chart-col6{
    height: 450px;
}
@media (max-width: 767px){
    #chart-col1{
        height: 400px;
    }
    #chart-col2{
        height: 400px;
    }
    #chart-col3{
        height: 400px;
    }
    #chart-col4{
        height: 400px;
    }
    #chart-col5{
        height: 400px;
    }
    #chart-col6{
        height: 400px;
    }
}

@media (max-width: 325px){
    #chart-col3{
        height: 300px;
    }
    #chart-col4{
        height: 300px;
    }
    .text-finan h4 {
        width: 100%;
    }
    .quote-finan{
        width: 100%;
    }
}