@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
body {
    font-family: "Gotham Medium", Helvetica, Arial, sans-serif;
    margin: auto;
    position: relative;
}
a {
    color: #212529;
    text-decoration: none;
}
h3 {
    margin-bottom: 12px;
}
a:hover {
    text-decoration: underline;
    cursor: pointer;
    color: #1D5080;
    font-family: 'Gotham Medium';
}
/* Card styles */
.card {
    margin-bottom: 3%;
}
.city {
    color: #999;
    font-style: italic;
}
.title {
    text-transform: uppercase;
    color: #1D5080;
    font-size: 14px;
}
.summary, .card-text {
    font-family: 'Gotham Book';
}
img {
    width: 100%;
}
/*Char styles*/
.line {
  fill: none;
  stroke: #2CC9B7;
  stroke-width: 4px;
}
/*styles for tooltips*/
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;
} 
.info_item {
    display: inline-block;
    padding: 5px;
}
.info_item_category, 
thead {
    color: #999;
    font-family: 'Gotham Book';
    font-size: 11px;
}
.info_item_value {
    color: #1D5080;
    font-family: 'Gotham Medium';
    font-size: 14px;
}
.info_item_value.up {
    color: green;
}
.info_item_value.down {
    color: red;
}
.disabled-link {
    pointer-events: none;
}