* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
body {
    font-family: 'Whitney Book';
    font-size: 16px;
}
h4 {
    font-family: 'Whitney Book';
    padding: 10px 0;
    color: #1D5080;
    font-size: 16px;
    display: block;
    margin-bottom: 0px;
    text-align: center;
}
body div.container {
    display: -ms-grid;
    display: grid;
    margin-top: 10px;
    max-width: 1200px;
    padding-right: 0 important!;
}
#select_list {
    -ms-grid-row: 1;
    grid-row: 1;
    border-radius: 1.5px;
    max-width: 450px;
    margin: 15px 0;
}
#list_handle {
    padding: 10px;
    background-color: #f7f8fa;
    border: 1px solid #B7BDC4;
    cursor: pointer;
    position: relative;
}
.arrow {
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 10px;
    background: transparent;
    /*  text-indent: -9999px;*/
    border-top: 2px solid #bfbfbf;
    border-left: 2px solid #bfbfbf;
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    text-decoration: none;
    color: transparent;
}
.arrow:before {
    display: block;
    height: 200%;
    width: 200%;
    margin-left: -50%;
    margin-top: -50%;
    content: "";
    -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
        transform: rotate(45deg);
}
.arrow.down {
    -webkit-transform: rotate(-135deg);
            -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
    right: 15px;
    top: 15px;
}
.arrow:hover {
    border-color: gray;
    border-width: 2px;
}

#list_handle:hover {
    color: #334152;
    border: 1px solid #2888d1;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 2px #d6ecff;
            box-shadow: 0 0 0 2px #d6ecff;
}
#list_menu {
    width: inherit;
}
#list_menu ul {
    display: block;
    position: absolute;
    border: 1px solid #b7bdc4;
    width: 450px;
    z-index: 10;
}
#list_menu ul.hidden {
    display: none;
}
#list_menu ul li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    padding: 5px 10px;
    border-collapse: collapse;
    position: relative;
    background-color: white;
    cursor: pointer;
}
#list_menu ul li:nth-child(odd) {
    -webkit-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
    background-color: #f7f8fa;
}
#list_menu ul li:hover {
    background-color: rgba(40, 136, 209,1);
    color: white;
}
#list_menu ul li:hover a {
    color: white;
}
#lists table tbody tr td:first-child {
    text-align: center;
}
table {
    width: 100%;
}
.csv-switch-button {
    color: #8C96A3;
    width: 100%;
    text-align: center;
    background-color: #F7F8FA;
    height: 50px;
    border-radius: 2px;
    border: 1px solid #D8DDE3;
    cursor: pointer;
    font-family: 'Whitney Book';
}
.csv-switch-button.active {
    background-color: #279E94;
    border: 1px solid #279E94;
    color: white;
    font-family: 'Whitney Medium';
}
#filter_buttons {
/*    display: flex;*/
    padding: 10px 0;
}
#filter_buttons div {
    display: inline-block;
    width: 150px;
    height: 50px;
    line-height: 50px; /*important for vertical alignment of anchor tag*/
    text-align: center;
    background-color: #F7F8FA;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 2px;
    border: 1px solid #D8DDE3;
}
#filter_buttons div a {
    color: #8C96A3;
}
#filter_buttons div:hover, .csv-switch-button:hover {
    border: 1px solid #334152;
}
#filter_buttons div:hover a {
    text-decoration: none;
    color: #334152;
    font-family: 'Whitney Medium';
}
#filter_buttons div.active {
    background-color: #279E94;
    border: 1px solid #279E94;
}
#filter_buttons div.active a {
    color: white;
    font-family: 'Whitney Medium';
}
#lists {
    width: 100%;
    margin: 15px auto;
/*     position: relative;
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    -ms-grid-columns: repeat(3, 1fr [col-start]);
        grid-template-columns: repeat(3, 1fr [col-start]);
    -ms-grid-row: 2;
        grid-row: 2;  
    column-count: 3;*/
    column-gap: 10px;
     column-width: auto;
    /* display: flex;
    flex-flow: row wrap; */
}
.list {
    break-inside: avoid;
    margin-bottom: 30px;
}
#lists tr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: [first] 10% [second] 75% [third] auto;
        grid-template-columns: [first] 10% [second] 75% [third] auto;
}
#lists tr td:first-child {
    color: #1D5080;
}
table .company-block .logo-block {
    width: auto;
    height: 32px;
    height: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#lists thead .column-2 {
    text-align: center; 
}
.up {
    color: green;
}
.down {
    color: red;
}
table tbody tr:hover {
    background-color: rgb(214,236,255);
}
table .logo-block img {
    width: auto;
    height: 100%;
    margin: auto;
}
thead {
    font-family: 'Whitney Medium';
    text-align: left;
    display: block;
    border-bottom: solid 2px rgb(44, 201, 183);
}
thead tr {
    padding: 5px 0;
    background-color: white;
    font-size: 14px
}
tbody {
    overflow: auto;
    display: block;
}
table tbody tr {
    font-size: 12px;    
    width: 100%;
    border-collapse: collapse;
    border-bottom: 2px solid #D8DDE3;
}
td, th {
    padding: 7px 10px;
}
tbody tr:nth-child(odd) {
    background-color: #F7F8FA;
}
tbody tr:nth-child(even) {
    background-color: white;
}
th {
    color: #476990;
    font-family: 'Whitney Book';
    line-height: 1;
}
a {
    color: #212529;
}
a:hover {
    text-decoration: none;
    cursor: pointer;
    color: #1D5080;
    font-family: 'Whitney Medium';
}
/*media queries*/
@media (max-width: 680px) {
    #lists {
        width: 100%;
        margin: 15px auto;
        column-count: 1;
        column-gap: 10px;
        column-width: 30%;
    }
    #filter_buttons div, .csv-switch-button {
        width: 100%!important;
        height: 30px;
        line-height: 30px; /*important for vertical alignment of anchor tag*/
        font-size: 12px;
    }
}

.data-wrapper {
    display: -ms-grid;
    display: grid;
    grid-row-gap: 10px;
}
.info_item_value {
    color: #1D5080;
    font-family: 'Whitney Medium';
}
.info_item_category {
        color: black;
        border-style:solid;
        border-color:black;
        border-radius:5px;
        padding:10px;
        border-width:1px;
        background-color: lightgrey;
        font-family: 'Whitney Book';
        font-size: 11px;
        display: inline-block;
        max-width: 350px;
    }

i{
    cursor: pointer;
}