
:root {
    --bg_odd: #fff;
    --bg_even: rgb(235, 235, 235);
    --gg-blue: #003184;
    --gg-red: #D32020;
    --th-bg: #003184;
    --border: rgb(208, 208, 208);
    --gg_font: 'Open Sans';
}

html, body, div, span {
    font-family: var(--gg_font);
}

#top .main_color table {
    border-collapse: separate;
    border: 1px solid var(--border);
    width: 100%;
    text-align: left;
    border-spacing: 0px;
    font-size: 12px;
    margin-bottom: 1px;
}

#top .main_color table.cardstable {
    border: none;
}

#top .main_color table thead tr th, #top .main_color table tr th {
    background-color: var(--th-bg);
    color: #fff;
    font-weight: 600;
    padding: 1px 3px 1px 3px;
    font-size: 14px;
    height: 25px;
    line-height: 22px;
    font-family: var(--gg_font);
}

#top .main_color table tbody tr td {
    background-color: #fff;
    color: #000;
    font-weight: 400;
    border: none;
    border-right: 1px solid #fff;
    white-space: nowrap;
    padding: 3px 1px;
    font-family: var(--gg_font);
}

#top .main_color table tbody, #top .main_color table tfoot, #top .main_color table thead {
    border: 1px solid var(--border);
}

/* ALT ROWS COLOURS */

#top .main_color table tbody tr.even td {
    background-color: rgb(235, 235, 235);
    color: #000;
}
#top .main_color table tbody tr.odd td {
    background-color: var(--bg_odd);
    color: #000;
}
#top .main_color table tbody tr.this_is td {
    border-top: 1px solid red;
    border-bottom: 1px solid red;
    font-weight: 700;
    background: #c2f9ff;
}
/* nested table override */
#top .main_color table tbody tr.odd td table tbody tr.even td {
    background-color: var(--bg_even);
    color: #000;
}
