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: white;
}
tr:hover td {
          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;
    }
    .title-mobile{
        font-weight: bold;
    }
    tr.title-table-child td:before{
        padding-right: 0px;
    }

}
@media (max-width: 767px){
    .title-mobile{
        padding-left: 6px;
    }
}

.td-press{
    background-color: #eee;
}
tr.title-table{
    background: #efe8d5;
}
tr.title-table td{
    color: var(--primary-color1);
    font-size: 18px;
    font-family: 'SanFranciscoDisplay';
    font-weight: bold;
    padding-left: 6px;
    text-transform: uppercase;
}
tr.title-table-child{
    background: #efe8d5;
}
tr.title-table-child td{
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
}
tr.title-table-child td:before{
    position: absolute;
    left: 6px;
    top: 13px;
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: block; 
}
.heading-chart{
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px
}
#chart-col1{
    height: 350px;
}
#chart-col2{
    height: 350px;
}
#chart-col3{
    height: 350px;
}
#chart-col4{
    height: 350px;
}
#chart-col5{
    height: 350px;
}
#chart-col6{
    height: 350px;
}
#chart-col7{
    height: 350px;
}
#chart-col8{
    height: 350px;
}
#chart-col9{
    height: 350px;
}
.text-chart{}
.text-chart h3{
    font-family: 'SanFranciscoDisplay';
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: radial-gradient(circle, #4e3729, #b18b2e, #4e3729);
    font-size: 40px;
    font-weight: lighter;
}
.text-chart p{
    color: var(--primary-color1);
}
@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;
    }
    #chart-col7{
        height: 400px;
    }
    #chart-col8{
        height: 400px;
    }
    #chart-col9{
        height: 400px;
    }
}

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