body {
    font-size: 12px;
     max-width: 1200px;
}
div.logo-wrapper {
    width: 20%;
    margin-left: auto;
    margin-right: 20px;
    text-align: right;
/*    height: 10px;*/
}
.logo-wrapper img {
    width: 100%;
    height: auto;
    padding-top: 15px;
}
.logo-wrapper span {
    font-family: 'Gotham Light Italic';
    font-size: 10px;
    margin-left: auto;
    margin-right: 20px;
}
/*variable selection styles*/
#variable_selector {
    margin: 20px 20px 20px 95px;
/*    margin: auto;*/
}
thead th {
    font-family: 'Gotham Medium';
    text-align: left;
}
tr {
    line-height: 1.1;
}
td, th {
    padding: 6px 10px;
    font-family: 'Gotham Book';
}
tbody tr:nth-child(odd) {
    background-color: #F7F8FA;
}
tbody tr:first-child {
    border-top: solid 2px #2cc9b7;
}
input {
    margin-right: 5px;
}
ul.legend {
    margin: 60px 20px 0 90px;
}
.legend li {
    padding-left: 10px;
    display: inline;
}
.legend span {
    font-family: 'Gotham Medium';
    padding: 5px 0;
    font-size: 16px;
}
.legend .dot {
    height: 15px;
    width: 15px;
    display: inline-block;
    border-radius: 50%;
}
.dot.country1 {
    background-color: rgb(29, 80, 128);
}
.dot.country2 {
    background-color: rgb(44, 201, 183);
}
.dot.country3 {
    background-color: rgb(113, 186, 235);
}
.dot.country4 {
    background-color: rgb(226, 187, 24);
}
.dot.country5 {
    background-color: rgb(140, 150, 163);
}
.dot.country6 {
    background-color: rgb(40, 53, 68);
}
div.tooltip {
    max-width: 250px;
    position: absolute;           
    padding: 10px;           
    background: white;
    border: 1px solid #d8dde3;
    border-radius: 2px;
    pointer-events: none;
    font-size: 12px;
    box-shadow: 0 8px 9px rgba(0,0,0,0.24),
      0 1px 8px rgba(0,0,0,0.12);
}
div.tooltip h3 {
    font-family: 'Gotham Medium';
    padding: 10px 0;
    border-bottom: solid 2px rgb(44, 201, 183);
    color: #1D5080;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
} 
div.tooltip .company-block {
    height: 80px;
    padding: 5px 0;
}
div.tooltip img {
    height: 100%;
    width: auto;
}
.data-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: [first] 1fr [second] 1fr;
    grid-template-columns: [first] 1fr [second] 1fr;
    grid-row-gap: 5px;
}
.row_1 {
    -ms-grid-row: 1;
        grid-row: 1;
}
.row_2 {
    -ms-grid-row: 2;
        grid-row: 2;
}
.row_3 {
    -ms-grid-row: 3;
        grid-row: 3;
}
.col_1 {
    -ms-grid-column: 1;
        grid-column: 1;
}
.col_2 {
    -ms-grid-column: 2;
        grid-column: 2;
}
.col_3 {
    -ms-grid-column: 3;
        grid-column: 3;
}
.info_item {
    display: inline-block;
    padding: 5px;
}
.info_item_category {
/*    display: inline-block;*/
    color: #999;
    font-family: 'Gotham Book';
    font-size: 11px;
}
.info_item_value {
    color: #1D5080;
    font-family: 'Gotham Medium';
}