html {
    font-size: 15px;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'futura-pt', sans-serif;
    background-color: white;
}

h1, h2, h3 {
    font-weight: 500;
}

a {
    outline: 0;
}

strong {
    font-weight: 500;
}

a.normal_link {
    color: #eb9721;
}

    a.normal_link:hover {
        text-decoration: none;
    }

/* Header */

header {
    background-color: white;
    width: 100%;
    margin: 0px;
    position: fixed;
    z-index: 100;
    top: 0;
}

.header-top-nav-container {
    display:flex;
    align-items:center;
}

#banner_container {
    padding:10px 0 10px 7px;
    display:inline-block;
    flex:1;
}

#banner_container img {
    height: 25px;
    float: left;
    margin-right: 7px;
    opacity:
}

#small_logo {
    display: none;
}

#header_menu {
    display:inline-block;
    list-style: none;
    padding: 0 20px;
    margin: 0;
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    flex:1;
}

#header_menu li {
    margin: 0px 5px;
    display: inline-block;
}

    #header_menu li a {
        font-family: 'futura-pt', sans-serif;
        color: hsl(0, 0%, 50%);
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
    }

    #header_menu li a:hover {
        color: #eb9421;
        transition: 0.3s;
    }

    #header_menu li a.current {
        font-weight: 500;
        color: hsl(0, 0%, 25%);
    }

/* Stats Nav */

#stats_nav {
    background-color: #505050;
    width: 100%;
    height:auto;
    padding: 0;
    list-style-type: none;
    top: 45px;
    left: 50%;
    margin: 0;
    z-index: 99;
    transition: 0.3s;
}

    #stats_nav ul {
        list-style-type: none;
        padding: 0px;
        margin: 0 35px;
    }

    #stats_nav li {
        display: inline-block;
        position: relative;
        font-size: 22px;
        text-transform: uppercase;
        margin: 0;
    }

    #stats_nav li a {
        text-decoration: none;
        color: hsl(0, 0%, 75%);
        padding: 13px 10px 16px;
        display:inline-block;
    }

        #stats_nav li:hover > a {
            color: white;
            background-color: #777;
            transition-duration: 0.3s;
            cursor: pointer;
        }

    #stats_nav input {
        font-size: 15px;
        width: 250px;
        margin: 0 5px 0 0;
        box-sizing: border-box;
        padding: 8px 10px;
        border: 0;
        border-radius: 0;
        outline: none;
        box-shadow: none;
        transition: all 1s;
        color: white;
        font-weight: 500;
        background-color: #777;
        box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    }

        #stats_nav input::placeholder {
            color: #C8C8C8;
        }

        #stats_nav input:focus {
            background-color: hsl(0, 0%, 55%);
        }

    #stats_nav .sub_menu {
        font-size: 16px;
        margin: 0 5px;
    }

    #stats_nav .collapse_content {
        display: inline-block;
    }

        #stats_nav .collapse_content ul {
            display: inline;
        }

#stats_nav .stats_sub_nav {
    display:block;
}

@media screen and (min-width:600px) {
    #stats_nav .stats_sub_nav {
        visibility: hidden;
        display: none;
        position: absolute;
        opacity: 0;
        background:#777;
        left: 0;
        margin: 0;
    }

    #stats_nav ul li:hover > ul,
    #stats_nav ul li ul:hover {
      visibility: visible;
      opacity: 1;
      display: block;
    }
}

#stats_nav .stats_sub_nav {
     min-width: 150px;
}

#stats_nav .stats_sub_nav li {
    display:block;
}

#stats_nav .stats_sub_nav li a{
    padding:.5em;
    display: block;
}

#stats_nav .stats_sub_nav li a:hover{
    background: #777;
}

    .ui-autocomplete {
        box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
        font-family: 'futura-pt', sans-serif;
    }

        .ui-autocomplete .ui-menu-item:hover {
            border: 0;
        }

        .ui-autocomplete .ui-menu-item-wrapper {
            padding: 7px 15px;
            color: #C8C8C8;
            background-color: #777;
            transition: 0.3s;
        }

        .ui-autocomplete .ui-menu-item-wrapper:hover {
            background-color: #505050;
            color: white;
            cursor: pointer;
        }

        .ui-state-active, .ui-widget-content .ui-state-active {
            border: 0;
            background: none;
        }

        .ui-menu .ui-state-focus, .ui-menu .ui-state-active {
            background-color: #505050;
            color: white;
            margin: 0;
        }

        .ui-widget-content {
            border: 0;
        }

        .ui-widget.ui-widget-content {
            border: 0;
        }

        .ui-autocomplete .ui-auto-player-smaller {
            font-style: italic;
            font-size: 0.8em;
        }

li#mobile_menu_button {
    display: none;
}

/* Content */

#content_wrapper {
    margin: 0 auto;
}

#content {
    background-color: white;
    margin: 78px auto 0px auto;
    padding: 25px 0px 0 0;
}

    #content_header {
        color: #444;
        text-transform: uppercase;
        overflow: hidden;
        vertical-align: middle;
        line-height: 25px;
        padding: 20px 35px 5px 35px;
    }

    #page_name {
        font-size: 35px;
        font-weight: 500;
        margin-left: 0;
        padding: 0px;
    }

    #content h2 {
        text-transform: uppercase;
        color: #505050;
        font-size: 25px;
        margin: 0;
        line-height: 1em;
    }

    #content .explanation_text {
        font-size: 18px;
        color: #707070;
        line-height: 1.4em;
    }

        #content .explanation_text a {
            color: #eb9241;
        }

    #content .warning_text {
        font-size: 22px;
        color: ##505050;
        margin-top: 24px;
    }

        #content .warning_text a {
            color: #eb9241;
        }

    #inner_content {
        padding: 10px 35px;
        margin: auto;
    }

/* Section Nav */

.section_explainer {
    background-color: hsl(0, 0%, 95%);
    padding: 15px;
    color: hsl(0, 0%, 31%);
    margin: 10px 0px 15px 0px;
    transition-duration: 0.2s;
    font-size: 18px;
    border-radius: 4px;
}

    .section_explainer:hover {
        background-color: hsl(0, 0%, 92%);
        cursor: pointer;
    }

    .section_explainer h3 {
        color: hsl(0, 0%, 31%);
        text-transform: uppercase;
        margin: 0;
        padding: 0;
        font-size: 1em;
        font-weight: 500;
    }

    .section_explainer i {
        margin-right: 8px;
    }

    .click_to_show {
        font-size: 0.75em;
        margin-left: 7px;
        font-weight: 400;
    }

    .section_explainer__content {
        margin: 10px 0 0 0;
        display: none;
    }

        .section_explainer__content input, .section_explainer__content select {
            font-size: 16px;
            padding: 3px 6px;
            border: 0;
        }

    .section_explainer p {
        margin: 10px 0 0 0;
        display: none;
    }

    .section_explainer p a {
        color: #eb9421;
    }

    .section_explainer p a:hover {
        color: #eb9421;
        text-decoration: none;
    }


#section_header {
    text-align: left;
    padding: 0px;
}

    #section_header a {
        display: inline-block;
        text-transform: uppercase;
        text-decoration: none;
        color: #505050;
        font-size: 16px;
        margin-right: 12px;
        margin-bottom: 5px;
        transition: 0.3s;
    }

        #section_header a.selected {
            border-bottom: 3px solid #eb9421;
        }

            #section_header a.selected:hover {
                color: #505050;
                cursor: default;
            }

        #section_header a:hover {
            color: #eb9421;
        }

.button {
    padding: 5px 7px;
    font-size: 14px;
    font-family: 'futura-pt', sans-serif;
    background-color: white;
    color: #777;
    border: 0;
    text-transform: uppercase;
    transition: 0.3s;
    margin-left: 0px;
    font-weight: 400;
    vertical-align: text-bottom;
}

    .button:hover {
        color: #eb9421;
        cursor: pointer;
    }

    .button i {
        margin-right: 3px;
    }

.button_flat {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    color: hsl(0, 0%, 31%);
    background-color: hsl(0, 0%, 95%);
    font-size: 16px;
    margin-right: 12px;
    margin-bottom: 5px;
    margin-top: 0px;
    transition: 0.3s;
    border: 0;
    outline: 0;
}

    .button_flat h3 {
        margin-bottom: 0px;
    }

.button_flat.selected {
    border-bottom: 3px solid #eb9421;
}

    .button_flat.selected:hover {
        color: #505050;
        cursor: default;
    }

/* Player Overview Body */

.content_section {
    padding: 0px;
    margin-bottom: 25px;
    background-color: white;
}

    .content_section h2 {
        text-transform: uppercase;
        color: #505050;
        font-size: 25px;
        margin: 0px;
    }

    .content_section p {
        font-size: 20px;
        color: #505050;
        margin: 0.5em 0;
    }

    .content_section .stat_table {
        margin-bottom: 10px;
    }

.content_section table {
    margin-top: 7px;
}

/* Stats Tables */

table {
    border-collapse: collapse;
}

.stat_table_container {
    -webkit-overflow-scrolling: touch;
    overflow:scroll;
    overflow-y: auto;
    overflow-x: auto;
    position: relative;
    scrollbar-width: none;
}

.stat_table_shadow_container {
    position:relative;
}

.stat_table_shadow_left,
.stat_table_shadow_right {
    content:" ";
    display:block;
    position:absolute;
    height:100%;
    width: 10px;
    top:0;
    right:0px;
    /* box-shadow:0 0 8px rgba(0,0,0,1); */
    background-image: linear-gradient(-90deg, #000 1%, transparent);
    opacity:.05;
    transition: all 1250ms;
}

@media screen and (max-width:600px) {
    .stat_table_shadow_container {
        margin: 0px -35px;
    }

    .stat_table_shadow_left,
    .stat_table_shadow_right {
        opacity:.25;
    }
}

.stat_table_shadow_left {
    right: auto;
    left:0;
    background-image: linear-gradient(90deg, #000 1%, transparent);
}


.stat_table_shadow_left.stat_table_shadow_scroll_end,
.stat_table_shadow_right.stat_table_shadow_scroll_end {
    box-shadow:0 0 0;
    opacity:0;
    width:0;
}

.stat_table {
    font-size: 15px;
    line-height: 1em;
    margin: .47rem 0 1.67rem 0;
    font-family: 'Roboto';
    font-weight: 400;
    background-color: white;
    color: #444;
}

.stat_table th {
    outline: none;
    font-size: .9em;
    border-bottom: 1px solid hsl(0, 0%, 27%);
    padding: 12px .7em 8px .7em;
}

.stat_table td, th {
    padding: .6em .7em;
}

    .stat_table td {
        transition: 0.2s;
    }

.stat_table th {
    cursor: pointer;
}

.stat_table a {
    color: #444;
}

    .stat_table a:hover {
        text-decoration: none;
    }

.stat_table .team_name {
    white-space: nowrap;
}

.stat_table .team_name a {
    color: #505050;
}

.stat_table .team_logo {
    overflow: hidden;
    position: relative;
    width: 45px;
    padding: 0;
}

.stat_table .team_logo img {
    height: 75px;
    position: absolute;
    left: -15px;
    top: -25px;
    filter: saturate(0);
    opacity: 0.25;
}

.stat_table tr:hover .team_logo img {
    filter: saturate(1);
    opacity: 1;
}

.stat_table .section_header th {
    text-transform: uppercase;
    padding-bottom: 6px;
    border: 0;
}

    .stat_table .section_header th.section_header_text {
        border-bottom: 2px solid hsl(0, 0%, 90%);
    }

    .stat_table .subhead th {
        border: 0;
        background-color: hsl(0, 0%, 95%);
        color: hsl(0, 0%, 60%);
        padding: .6em .7em;
    }

        .stat_table .subhead th.rank {
            text-align: right;
        }

.tip_expw_onoff {
    min-width: 40px;
}

.stat_table .stat {
    text-align: right;
    vertical-align: text-bottom;
}

.stat_table .value {
    font-size: 0.85em;
    padding-left: 8px;
    padding-right: 16px;
}

.stat_table .stat.rank[id] {
    cursor: pointer;
}

.stat_table .intro_stat {
    width: auto;
}

.stat_table td.intro_stat {
    font-size: 0.85em;
    white-space: nowrap;
}

.stat_table a.lineup_team_name {
    font-weight: 900;
    color: #000;
}

.stat_table th.player_name {
    text-align: left;
    padding-left: 0.8rem;
}

.stat_table td.spacer, th.spacer {
    padding: 0px 12px;
}

.table_footnote {
    font-size: 12px;
    margin-bottom: 30px;
    font-style: italic;
}

/* this lets us define certain styles for tables that are too wide */
.too_wide .value {
    /*padding-left: .22rem;*/
}

/* Tooltips */

.tooltip {
    font-family: 'Roboto', sans-serif;
    max-width: 250px;
    line-height: 1.3em;
    font-size: 15px;
    background-color: white;
    color: #444;
    border: 0;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
}

    .tooltip .qtip-content {
        padding: 5px 10px;
    }

    .tooltip .qtip-titlebar {
        background-color: hsl(0, 0%, 95%);
    }

.tooltip_shots .qtip-content {
    text-align: center;
    font-family: 'Roboto';
}

.section_guide {
    font-size: 15px;
    color: #999;
    text-decoration: underline;
    text-transform: uppercase;
}

    .section_guide:hover {
        text-decoration: none;
        cursor: pointer;
    }

/* Jump To */

#jump_to {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

    #jump_to a {
        color: #777;
        margin: 0px 5px 0px 0px;
        transition: 0.3s;
    }

    #jump_to a:hover {
        color: #eb9421;
    }

    #jump_to h3 {
        text-transform: uppercase;
        margin: 0;
    }

/* Info notice */

#info_notice {
    font-size: 25px;
    padding: 7px;
    color: #505050;
}

/* Shot Charts */

.shot_chart {
    height: 329px;
    width: 350px;
    margin-right: 15px;
    margin-top: 7px;
}

    .shot_chart img {
        height: 100%;
        width: 100%;
        opacity: 0.5;
    }

/* Year Nav */

#year_nav {
    margin-bottom: 20px;
}

#year_nav h2 {
    font-weight: 300;
    font-size: 20px;
}

#year_nav select {
    border: 1px solid #AFAFAF;
    padding: 5px;
    margin: 0 5px;
    outline: 0;
}

.year_nav__selector {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
    align-self: baseline;
}



@media (max-width: 600px) {
    .year_nav__selector_container {
        flex-direction: column;
    }

    .year_nav__selector {
        margin-bottom: 10px;
    }

}

.year_nav__selector_container {
    display: flex;
    margin-top: 10px;
}

.year_nav__selector select {
    margin: 0!important;
}

.year_nav__button {
    background-color: #666666;
    text-transform: uppercase;
    color: white;
    padding: 10px 14px;
    margin-top: 16px;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    outline: 0;
    border: 0;
}

.year_nav__button:hover {
    background-color: #505050;
}

#clear_filters {
    background-color: transparent;
    color: hsl(0, 0%, 45%);
    border: 0;
}

    #clear_filters:hover {
        color: hsl(0, 0%, 0%);
    }

#content a.playoffs_stats_toggle {
    padding: 8px 10px;
    font-size: 14px;
    color: hsl(0, 0%, 31%);
    background-color: hsl(0, 0%, 95%);
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
}

    #content a.playoffs_stats_toggle:hover {
        background-color: hsl(0, 0%, 100%);
        transition-duration: 0.3s;
    }

    #content a.playoffs_stats_toggle i {
        margin-right: 6px;
    }

#content a.hide_playoffs_stats {
    color: white;
    background-color: hsl(34, 83%, 63%);
}

    #content a.hide_playoffs_stats:hover {
        background-color: hsl(34, 83%, 53%);
    }

/* Footer */

footer {
    clear: both;
    font-size: 16px;
    color: #777;
    text-align: left;
    padding: 14px 35px;
    background-color: #f2f2f2;
    line-height: 1.5em;
}

    footer a {
        text-decoration: underline;
        color: #eb9421;
        font-weight: 500;
    }

#sportradar_logo {
    width: 150px;
    filter: saturate(0);
    opacity: 0.6;
}

/* Control FOUT */

.wf-loading {
    visibility: hidden;
}

/* Cards */

.card {
    display: block;
    /* box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */
    border:2px #fff solid;
    background-color: white;
    text-decoration: none;
    color: #505050;

}

.button {
    background-color: #eb9421;
    text-transform: uppercase;
    color: white;
    padding: 12px;
    margin: 10px;
    display: inline-block;
}

/* Subscription messages */

#not_subscribed {
    text-align: center;
    font-family: 'futura-pt', sans-serif;
    font-size: 35px;
    color: #505050;
    line-height: 1em;
    margin: 25px 0;
    padding: 20px 0;
    background-color: #F2F2F2;
    max-width: 650px;
    border-radius: 4px;
}

#not_subscribed .button {
    border-radius: 4px;
    color: white;
    font-size: 14px;
    padding: 2px 12px;
    text-decoration: none;
    background-color: hsl(0, 0%, 40%);
    font-weight: 400;
    box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.2);
    transition-duration: 0.3s;

}

    #not_subscribed .button:hover {
        background-color: hsl(0, 0%, 45%);
        transition-duration: 0.3s;
        transform: scale(1.1);
    }

    #click_to_login {
        margin-top: 4px;
    }

#not_subscribed a {
    color: #eb9421;
}

#not_subscribed #premium_button {
    color: white;
    display: inline-block;
    margin: 20px auto;
    padding: 7px 12px;
    font-size: 0.8em;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    background-color: hsl(34, 83%, 53%);
    font-weight: 400;
    margin-top: 24px;
    border: 0;
}

#subscribers_only_text {
    padding: 0 75px;
}

#not_subscribed .subs_only {
    font-weight: 500;
}

#already_member {
    font-size: 0.6em;
    margin: 15px 0;
    font-weight: 300;
}

#subscribe_offer {
    margin-top: 15px;
    font-size: 0.8em;
    padding: 0 20px;
    text-align: center;
    font-weight: 300;
}

#sub_price {
    font-weight: 500;
}

#full_plan {
    font-size: 0.75em;
}

#page_includes {
    font-size: 0.6em;
    margin: 10px auto 0 auto;
    text-align: left;
    max-width: 400px;
    line-height: 1.32em;
    font-weight: 300;
}

#not_subscribed p {
    margin: 0;
}

.coupon_code {
    font-size: 0.75em;
    font-weight: 300;
}

.subscribe_link {
    font-size: 0.7em;
    font-weight: 400;
}

.original_price {
    text-decoration: line-through;
    color: #777;
    font-weight: 300;
}

    .sale_price {
        font-weight: 500;
        font-size: 1.2em;
    }

#gift_bar {
    background-color: hsl(34, 83%, 90%);
    text-align: center;
    padding: 8px;
    font-size: 22px;
    border-radius: 4px;
    margin-bottom: 15px;
    color: #505050;
}

    #gift_bar a {
        color: #eb9421;
    }

.playoffs_row {
    background-color: #f2f2f2;
}

.hide-initially {
    display: none;
}

/* tabs */

/* .tab-select-label {
    text-transform: uppercase;
    color:#777;
    font-size:1.17em;
    font-weight:500;
} */


.tab-select,
.tab-current-label,
.drop-down {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-position: right 1.25em top 55%, 0 0;
	background-repeat: no-repeat, repeat;
	box-sizing: border-box;
	color: #505050;
	font-weight: 500;
	line-height: 1.3;
	margin: 0;
	max-width: 100%;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23505050%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-size: .65em auto, 100%;
    border:0 !important;
    border-bottom:1px #ccc solid !important;
    border-radius: 0;
    display: inline-block;
    font-family: Roboto, Verdana,Arial,sans-serif;
    font-size:20px !important;
    margin:.5em 0 1em 0;
    margin:0;
    min-width:16em;
    padding: .6em 3.4em .5em .25em;
    text-transform: none !important;
    width:auto;
}

.tab-current-label.tab-select-header.team-name-select-header{
    background-color: transparent !important;
    background-position: 97% center;
    background-size: .45em auto, 100%;
    min-width:0 !important;
    text-transform: uppercase !important;
    border:0 !important;
    font-family: futura-pt;
    font-size: 35px !important;
    padding:0 1em 0 0;
    color:#505050;
}

select.tab-select.tab-select-header {
    text-transform: uppercase !important;
}

select.tab-select.tab-select-header.active {
    text-transform: none !important;
}

@media screen and (max-width:600px) {
    .tab-select,
    .tab-current-label {
        font-size:15px;
        width:100%;
    }
}

.drop-down {
    background-color: transparent;
}

#year_nav .drop-down {
    margin:0;
}

/* Hide arrow icon in IE browsers */
.tab-select::-ms-expand {
	display: none;
}

.tab-select-container {
    position:relative;
    margin-bottom:1em;
}

.team-select-container {
    margin-bottom: 0;
}

.tab-select-container .tab-select {
    position:absolute;
    left:0;
    top:0;
    opacity:0;
    margin:0;
}

/* Hover style */
.tab-select:hover,
.tab-current-label:hover {
    border-color: #888;
    cursor: pointer;
}
/* Focus style */
.tab-select:focus,
.tab-current-label:focus {
	border-color: #aaa;
	/* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
	/* box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7); */
	/* box-shadow: 0 0 0 3px -moz-mac-focusring; */
	color: #222;
	outline: none;
}

/* Set options to normal weight */
.tab-select option {
    font-weight:normal;
}

.tabs .content_section {
    display: none;
    position: relative;
}

.tabs .content_section.tab-selected {
    display: block;
}

.tabs h2 {
    display:none;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] .tab-select, :root:lang(ar) .tab-select, :root:lang(iw) .tab-select {
	background-position: left .7em top 50%, 0 0;
    padding: .6em .8em .5em 1.4em;
}

/* jQuery UI Style Overwrites (Tabs) */

.ui-tabs {
    border:0;
    background:none;
}

.ui-tabs .ui-tabs-panel {
    padding:1em 0;
}

.ui-tabs-nav {
    background:none;
    border-width:0;
}

.ui-tabs-tab,
.ui-tabs-tab a {
    border-radius:0;
    border:0 !important;
    background:#eee;
    font-family: Roboto, sans-serif;
}

.ui-tabs-header {
    text-transform: uppercase;
    font-family: 'futura-pt', sans-serif;
}

.ui-tabs-tab:hover a {
    background:#ddd;
    border:0;
}

.ui-tabs-active a {
    /* background:#eb9421; */
    background:#fff;
}

/* Helper class for mobile-only elements */

.visible-mobile {
    display:none !important;
}
.hidden-mobile {
    display:block !important;
}

@media screen and (max-width:600px) {
    .visible-mobile {
        display:block !important;
    }

    .hidden-mobile {
        display:none !important;
    }
}


.filter_button {
    border-radius: 4px;
    text-decoration: none;
    background-color: hsl(0, 0%, 95%);
    color: hsl(0, 0%, 60%);
    font-size: 16px;
    text-transform: none;
    padding: 6px 16px;
    letter-spacing: 0.03em;
    margin: 0;
    margin-right: 6px;
}

    .filter_button:hover {
        background-color: hsl(0, 0%, 90%);
        color: hsl(0, 0%, 20%);
    }


.download_button {
    padding: 8px 10px;
    font-size: 14px;
    color: hsl(0, 0%, 31%);
    background-color: hsl(0, 0%, 95%);
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
}

    .download_button i {
        padding-right: 6px;
    }

    .download_button:hover {
        background-color: hsl(0, 0%, 90%);
    }
