.year-tabs {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    white-space: nowrap;
}

.year-tabs > li {
    flex: 0 0 auto;
}

.site-header-inner {
    align-items: center;
    display: flex;
    height: 50px;
}

.site-header .navbar-brand {
    flex: 0 0 auto;
}

.header-breadcrumbs {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.header-breadcrumbs .breadcrumb {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 0;
    overflow: hidden;
    padding: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-breadcrumbs .breadcrumb > li {
    display: inline;
}

.header-about {
    flex: 0 0 auto;
    padding: 15px;
}

.filter-bar {
    align-items: end;
    background: #2c3034;
    border: 1px solid #3d4247;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 14px;
}

.filter-title {
    align-self: flex-end;
    line-height: 34px;
    margin-right: 4px;
}

.filter-bar label {
    font-size: 12px;
    font-weight: normal;
    margin: 0;
}

.filter-bar label span {
    display: block;
    margin-bottom: 3px;
}

.filter-bar .form-control {
    background-color: #202326;
    border-color: #444a50;
    color: #ddd;
    height: 34px;
    min-width: 130px;
    padding: 6px 10px;
}

.filter-bar .form-control:focus {
    border-color: #48a497;
    box-shadow: 0 0 0 1px #48a497;
}

.filter-bar .form-control option {
    background-color: #202326;
    color: #ddd;
}

.filter-bar label:last-of-type .form-control {
    min-width: 210px;
}

hr {
    border-width: 3px 0 0 0;
    clear: both;
}

.footer-thing {
    float: right;
}

.highcharts-series-group rect, .highcharts-data-labels text {
    cursor: pointer;
}

.ranked-chart {
    margin-top: 20px;
}

.chart-explanation {
    color: #bbb;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 70ch;
}

.chart-rows {
    display: grid;
    gap: 8px;
}

.chart-row {
    background: #2c3034;
    border: 1px solid #3d4247;
    border-radius: 4px;
    color: #eee;
    display: block;
    padding: 12px 14px 10px;
    position: relative;
    text-decoration: none;
}

.chart-row:hover,
.chart-row:focus-within {
    background: #353a3f;
    border-color: var(--chart-color);
    color: #fff;
    outline: none;
    text-decoration: none;
}

.chart-row-heading {
    align-items: baseline;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto auto;
}

.chart-row-label {
    align-items: baseline;
    display: flex;
    font-size: 16px;
    gap: 0.45em;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.icd-code {
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 0.3em;
    color: var(--chart-color, #9fc5ee);
    display: inline-flex;
    flex: 0 0 auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.78em;
    font-weight: 600;
    gap: 0.35em;
    line-height: 1.35;
    padding: 0.12em 0.42em;
    position: relative;
    white-space: nowrap;
    z-index: 2;
}

a.icd-code:hover,
a.icd-code:focus {
    background: var(--chart-color, #9fc5ee);
    color: #111;
    text-decoration: none;
}

.chart-row-link {
    color: inherit;
}

.chart-row-link::after {
    content: "";
    inset: 0;
    position: absolute;
}

.chart-row-link:hover,
.chart-row-link:focus {
    color: #fff;
    text-decoration: underline;
}

.icd-code-heading {
    font-size: 0.5em;
    margin-right: 0.2em;
    vertical-align: 0.15em;
}

.icd-code-info {
    height: 1em;
    opacity: 0.75;
    width: 1em;
}

.chart-row-value {
    color: #fff;
    font-size: 22px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.chart-row-arrow {
    color: var(--chart-color);
    font-size: 28px;
    line-height: 0;
}

.chart-bar {
    background: #202326;
    border-radius: 3px;
    display: block;
    height: 6px;
    margin-top: 8px;
    overflow: hidden;
}

.chart-bar > span {
    border-radius: inherit;
    display: block;
    height: 100%;
    min-width: 2px;
}

.chart-row-detail {
    color: #aaa;
    display: block;
    font-size: 13px;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .site-header .navbar-brand,
    .header-about {
        padding-left: 8px;
        padding-right: 8px;
    }

    .header-breadcrumbs .breadcrumb {
        padding-left: 6px;
        padding-right: 6px;
    }

    .filter-title {
        flex-basis: 100%;
    }

    .filter-bar label {
        flex: 1 1 120px;
    }

    .filter-bar .form-control,
    .filter-bar label:last-of-type .form-control {
        min-width: 0;
        width: 100%;
    }

    .chart-row-label {
        display: -webkit-box;
        overflow: hidden;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .chart-row {
        padding: 11px 12px 9px;
    }

    .chart-row-value {
        font-size: 20px;
    }
}

/* BOOTSTRAP CUSTOMIZATION */
.bs-docs-section {
    margin-top: 1em;
}
.navbar-search .form-control {
    width: 300px;
}

/* TYPEAHEAD STYLES */
.twitter-typeahead .tt-query,
.twitter-typeahead .tt-hint {
    margin-bottom: 0;
}

.tt-hint {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #999;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.tt-dropdown-menu {
    min-width: 160px;
    margin-top: 2px;
    padding: 5px 0;
    background-color: #000000;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    cursor: pointer;
}

.tt-suggestion {
    display: block;
    padding: 3px 20px;
}

.tt-suggestion.tt-is-under-cursor {
    color: #fff;
    background-color: #428bca;
}

.tt-suggestion.tt-is-under-cursor a {
    color: #fff;
}

.tt-suggestion p {
    margin: 0;
}

.tt-suggestion:hover {
    background-color: #444444;
}
.profile {
    height:150px;
    width: 150px;
    -moz-border-radius: 500px;
    -webkit-border-radius: 500px;
    border-radius: 500px;
    -moz-animation: appear 1s;
    -webkit-animation: appear 1s;
    animation: appear 1s;
}
