/************* GENERAL STYLES ***/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	vertical-align: baseline; }

:focus { outline: 0; }

* { box-sizing: border-box; }

body {
    background: #f5f5f5;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	line-height: normal;
	color: #222; }

ul { list-style: none; }

main ul {
	list-style: disc;
	padding-left: 15px;
    margin: 1em 0; }
	
	main ul li { margin: 0 0 5px; }

/* tables still need 'cellspacing="0"' in the markup */
table {
    width: 100%;
    float: left;
    margin-bottom: 2em;
	border-collapse: separate;
	border-spacing: 0;
    font-size: 12px; }

    th, td { padding: 4px; }

    th {
        background: #333;
        color: #fff; }

    tr:nth-child(odd) { background: #f3f3f3; }

caption, th, td {
	text-align: left;
	font-weight: normal; }

blockquote:before, blockquote:after,
q:before, q:after {
	content: ""; }

blockquote, q { quotes: "" ""; }

strong { font-weight: bold; }

img {
    max-width: 100%;
    height: auto; }

sup { 
    position: relative;
    top: -5px; }

hr {
    margin: 2em 0;
    background: none;
    border: none;
    border-bottom: 2px solid #dadada;
    clear: both; }

.inner_content ol, .inner_content ul {
	margin-left: 30px !important;
}

.clearfix { clear: both; }

.category_stats {
	position: absolute;
	max-width: 450px;
}

/*** FONT STYLES ***/
h1, h2, h3, h4, h5, h6 { font-family: 'Archivo Narrow', sans-serif; }

h1 { 
	font-size: 30px; 
	font-weight: 700;
	margin: 0 0 0.6em; }

h2 { 
	font-size: 25px; 
	font-weight: 700;
	margin: 1.25em 0 0.75em; }

h3 { 
	font-size: 20px; 
	font-weight: 700;
	margin: 1.25em 0 0.75em; }

h4 { 
	font-size: 18px; 
	font-weight: 700;
	margin: 1.25em 0 0.75em; }

a { 
	color: #b50937;
	text-decoration: none; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #222; }
	
a:hover { text-decoration: underline; }

p { margin: 1em 0; }

.txt_center { text-align: center; }

.clearBoth { clear:both; }

.error_div {
	padding: 20px;
	background-color: #ffedb3 !important;
    border: 1px solid #e8a611; }

/************* STRUCTURE STYLES ***/
.wrapper {
    width: 100%;
	max-width: 1040px;
	margin: 0 auto; }

.wrapper_home {
    width: 100%;
	max-width: 1380px;
	margin: 0 auto; }


/*** COLUMNS ***/
.col_row {
    margin-left: -10px;
    margin-right: -10px;
    clear: both; }

.col {
    float: left;
    padding: 10px; }

.col_12 { width: 100%; }
.col_9 { width: 75%; }
.col_6 { width: 50%; }
.col_4 { width: 33.3334%; }
.col_3 { width: 25%; }

.floatRight {
	float:right; } 

.marginLeft {
	margin-left: 10px; }

#news_main img {
	margin-right: 15px;
}

/*** STYLED SELECT ***/
.styled-select {
    width: 55px;
    height: 26px;
    float: left;
    margin: -4px 0 0 8px;
    background: url(../images/icon_drop.png) center right 5px no-repeat;
    border: 1px solid #d4d4d4;
    overflow: hidden; }

    .styled-select select {
        width: 70px;
        height: 24px;
        padding: 0 5px;
        background: transparent;
        border: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none; }


/*** NAV MOBILE ***/
#navOverlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1000;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: all 0.2s linear; }

    #navOverlay.open {
        z-index: 998;
        opacity: 1; }

nav.mobile {
    width: 320px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -320px;
    bottom: 0;
    z-index: 999;
    background: #333E3C;
    overflow: auto;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 14px;
    transition: left 0.5s ease; }

    nav.mobile.open { left: 0; }

    nav.mobile a.close {
        width: 54px;
        height: 64px;
        float: right;
        position: relative;
        text-align: center;
        color: #9BA3A1;
        line-height: 64px; }

        nav.mobile a.close:hover {
            color: #fff;
            text-decoration: none; }

        nav.mobile a.close span {
            width: 24px;
            height: 2px;
            display: block;
            position: absolute;
            top: 50%;
            margin-top: -1px;
            left: 50%;
            margin-left: -12px;
            background: #9BA3A1; }

            nav.mobile a.close span:first-child { transform: rotate(-45deg); }
            nav.mobile a.close span:last-child { transform: rotate(45deg); }

    nav.mobile > ul > li {
        width: 100%;
        float: left; }

        nav.mobile > ul > li > a {
            height: 50px;
            display: block;
            padding: 15px 20px;
            background: #202625;
            border-bottom: 1px solid #333E3C;
            color: #fff;
            font-size: 16px; }

            nav.mobile > ul > li > a:hover { background: #171919; }

            nav.mobile li a:hover { 
                color: #fff;
                text-decoration: none; }

            nav.mobile li a.drop {
                width: 50px;
                height: 50px;
                float: right;
                padding: 0;
                font-family: 'Roboto', sans-serif;
                font-size: 25px;
                line-height: 50px;
                text-align: center;
                color: #FFD000;
                border-left: 1px solid #333E3C; }

    nav.mobile ul ul { 
        width: 100%;
        float: left;
        display: none;
        padding: 10px 0; }

        nav.mobile ul ul li { 
            width: 50%;
            float: left; }

            nav.mobile ul ul li a {
                display: block;
                padding: 10px 0 10px 20px;
                color: #9BA3A1; }


/*** HEADER ***/
#headerWrap {
    width: 100%;
    float: left;
    height: 109px; }

header#header {
    width: 100%;
    float: left;
    position: relative;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-family: 'Archivo Narrow', sans-serif;
    transition: all 0.5s ease; }

    header#header.sticky { position: fixed; }

    header#header.sticky nav#sub { height: 5px; }

        header#header.sticky nav ul { display: none; }

        header#header.sticky .top nav#nav a.mobile { display: block; }

    header#header .top {
        width: 100%;
        height: 64px;
        float: left;
        position: relative;
        background: #fff;
        font-size: 16px;
        line-height: 64px; }

        header#header .top .logo { float: left; }

        header#header .top a { 
            display: block;
            color: #222; }

        header#header .top nav#nav { 
            height: 100%;
            float: left;
            border-left: 1px solid #d4d4d4; }

            header#header .top nav#nav ul { height: 64px;  }
			
			header#header .top nav#nav li { 
                height: 100%;
                float: left;
                margin: 0 0 0 20px; }

                header#header .top nav#nav li a {
                    height: 100%;
                    float: left; }

				header#header .top nav#nav li a:hover { 
                    text-decoration: underline; }

                header#header .top nav#nav li a.active { 
                    border-bottom: 4px solid #b50937;
                    text-decoration: none; }
            
            header#header .top nav#nav a.mobile { 
                width: 30px;
                float: left;
                margin: 16px 0 0 20px;
                display: none;
                opacity: 0.5; }

                header#header .top nav#nav a.mobile span {
                    height: 4px;
                    display: block;
                    margin: 5px 0;
                    background: #222; }

                header#header .top nav#nav a.mobile:hover { 
                    text-decoration: none;
                    opacity: 1; }

        header#header .top .right { float: right; }

            header#header .top .right .guide {
                float: left;
                padding: 0 20px 0 35px;
                background: url(../images/icon_guide2.png) left no-repeat;
                border-right: 1px solid #d4d4d4; }
                
             header#header .top .right .mem_card {
                float: left;
                padding: 0 20px 0 35px;
                background: url(../images/mem_card.png) left no-repeat; }

            header#header .top .right .lang {
                float: left;
                padding: 0 20px;
                border-right: 1px solid #d4d4d4; }

            header#header .top .right .social {
                float: left;
                padding: 0 18px;
                border-right: 1px solid #d4d4d4; }

                header#header .top .right .social a {
                    width: 24px;
                    height: 24px;
                    display: inline-block;
                    margin: 0 1px;
                    vertical-align: middle; }

                header#header .top .right .social a.facebook { background: url(../images/icon_facebook.png); }
                header#header .top .right .social a.twitter { background: url(../images/icon_twitter.png); }

            header#header .top .right .search {
                width: 60px;
                height: 64px;
                float: left; }

                header#header .top .right .search a { 
                    height: 100%;
                    display: block;
                    background: url(../images/icon_search.png) center no-repeat; }

        header#header .top .searchForm {
            width: 100%;
            height: 64px;
            position: absolute;
            top: -100%;
            background: #fff;
            transition: top 0.5s ease; }

            header#header .top .searchForm.open { top: 0; }

            header#header .top .searchForm > form { 
                height: 100%;
                display: block;
                padding: 12px 20px;
                margin-right: 60px; }

                header#header .top .searchForm input.text {
                    width: 100%;
                    height: 100%;
                    float: left;
                    padding: 0 10px 0 40px;
                    background: url(../images/icon_search.png) center left 10px no-repeat #F5F5F5;
                    border: 1px solid #ddd;
                    font-family: 'Roboto', sans-serif;
                    font-size: 15px; }

                header#header .top .searchForm input.submit { display: none; }

            header#header .top .searchForm a.close {
                width: 61px;
                height: 64px;
                float: right;
                position: relative;
                border-left: 1px solid #d4d4d4; }

                header#header .top .searchForm a.close span {
                    width: 24px;
                    height: 2px;
                    display: block;
                    position: absolute;
                    top: 50%;
                    margin-top: -1px;
                    left: 50%;
                    margin-left: -12px;
                    background: #222; }

                    header#header .top .searchForm span:first-child { transform: rotate(-45deg); }
                    header#header .top .searchForm span:last-child { transform: rotate(45deg); }

    header#header nav#sub {
        width: 100%;
        height: 45px;
        float: left;
        background: #b50937;
        font-size: 14px;
        line-height: 45px; }

        header#header nav#sub li { 
            height: 45px;
            float: left;
            margin: 0 0 0 20px; }

        header#header nav#sub a { 
            height: 100%;
            float: left;
            color: #ebc5c5; }

            header#header nav#sub a:hover { 
                color: #fff;
                text-decoration: underline;
                border-bottom: none; }
                
            header#header nav#sub a.active { 
                color: #fff;
                text-decoration: none;
                border-bottom: 4px solid #fff; }


/*** HEADER TITLES ***/
header.title {
    width: 100%;
    float: left;
    padding-bottom: 13px;
    margin: 10px 0 10px;
    border-bottom: 2px solid #dadada; }

    header.title h3 {
        float: left;
        margin: 0;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase; }

    header.title .btns { 
        float: right;
        font-size: 13px;
        color: #aaa; }

    header.title .btns span.divider { margin: 0 6px; }


/*** SECTION ***/
section {
    width: 100%;
    float: left; }

section.inner { 
    padding: 30px 20px 40px;
    background: #fff; }

section.col2 { 
    padding: 0 0 0 260px;
    background: none; }

    section.col2 aside {
        width: 260px;
        float: left;
        padding: 10px 20px 20px;
        margin-left: -260px; }

    section.col2 main {
        width: 100%;
        min-height: 650px;
        float: right;
        padding: 30px 20px 40px;
        background: #fff; }

        main .banner {
            width: 100%;
            float: left;
            margin-bottom: 20px; }

.wrapper_home section { padding: 0 290px; }

.wrapper_home aside {
    width: 290px;
    float: left;
    padding: 20px; }

    .wrapper_home aside.left { margin-left: -290px; }
    
    .wrapper_home aside.right { 
        float: right;
        padding-top: 0px;
        margin-right: -290px; }

    .wrapper_home aside.left .logo { margin: 0 auto 5px; }

    aside ul.events { 
        width: 100%;
        float: left;
        margin-top: 10px; }

        aside ul.events li { 
            width: 100%;
            float: left;
            margin-bottom: 15px;
            color: #888;
            font-size: 12px; }

            aside ul.events li:last-child { margin-bottom: 0; }

            aside ul.events li .date {
                width: 35px;
                height: 35px;
                float: left;
                margin-right: 7px;
                border: 1px solid #b50937;
                text-align: center;
                color: #b50937;
                font-family: 'Archivo Narrow', sans-serif;
                font-size: 10px;
                font-weight: 700;
                line-height: 14px; }

                aside ul.events li .date strong {
                    display: block;
                    margin-top: 3px;
                    font-size: 16px; }

            aside ul.events li div { 
                margin-top: -3px;
                overflow: hidden; }

            aside ul.events li h4 {
                margin: 0;
                font-size: 15px;
                font-weight: 700; }

    .wrapper_home aside.left .addEvent {
        width: 100%;
        float: left;
        padding: 7px 0;
        margin-top: 30px;
        background: #b50937;
        color: #fff;
        font-family: 'Archivo Narrow', sans-serif;
        font-size: 15px;
        text-align: center; }

        .wrapper_home aside.left .addEvent:hover {
            background: #9e062e;
            text-decoration: none; }

.wrapper_home aside.right ul.programs { 
    width: 100%;
    float: left;
    margin-top: 10px; }

    .wrapper_home aside.right ul.programs li {
        width: 100%;
        float: left;
        margin: 0 0 15px; }

        .wrapper_home aside.right ul.programs li:last-child { margin-bottom: 0; }

        .wrapper_home aside.right ul.programs li img {
            width: 100%;
            float: left;
            margin-bottom: 7px; }

        .wrapper_home aside.right ul.programs li h4 {
            float: left;
            margin: 0;
            font-size: 14px;
            font-weight: 700; }

        .wrapper_home aside.right ul.programs li a.more {
            float: right;
            margin-top: 1px;
            font-size: 12px; }

.wrapper_home aside.right ul.sponsors {
    width: 100%;
    float: left;
    margin-top: 10px; }

    .wrapper_home aside.right ul.sponsors li {
        width: 100%;
        float: left;
        margin: 0 0 15px; }

        .wrapper_home aside.right ul.sponsors li:last-child { margin-bottom: 0; }

        .wrapper_home aside.right ul.sponsors li img {
            width: 100%;
            float: left; }

.wrapper_home aside.right .links ul {
    width: 100%;
    float: left;
    margin-top: 10px;
    font-size: 12px; }

.wrapper_home aside.right .links a { color: #222; }

    .wrapper_home aside.right .links ul li {
        width: 43%;
        float: left;
        padding: 0 10px 0 22px;
        margin-bottom: 10px; }

        .wrapper_home aside.right .links ul li:nth-child(2n+1) { clear: both; width: 57% }

        .wrapper_home aside.right .links ul li.trophy { background: url(../images/icon_awards.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.guide { background: url(../images/icon_guide.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.programs { background: url(../images/icon_programs.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.calendar { background: url(../images/icon_calendar.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.faqs { background: url(../images/icon_faqs.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.results { background: url(../images/icon_results.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.records { background: url(../images/icon_records.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.times { background: url(../images/icon_times.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.rankings { background: url(../images/icon_rankings.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.awards { background: url(../images/icon_awards.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.clubs { background: url(../images/icon_clubs.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.hof { background: url(../images/icon_hof.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.education { background: url(../images/icon_education.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.results_gen { background: url(../images/icon_results_gen.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.webinars { background: url(../images/icon_webinars.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.photos { background: url(../images/icon_photos.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.contact { background: url(../images/icon_contact.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.facebook { background: url(../images/icon_facebook2.png) top left no-repeat; }
        .wrapper_home aside.right .links ul li.twitter { background: url(../images/icon_twitter2.png) top left no-repeat; }

    .wrapper_home aside.right .links ul.social { 
        padding-top: 20px;
        border-top: 2px solid #d4d4d4; }

.wrapper_home main {
    width: 100%;
    float: left;
    padding: 20px 20px 40px;
    background: #fff; }

    .wrapper_home main .banner {
        width: 100%;
        float: left;
        margin-bottom: 0; }

    .wrapper_home .bannerSmall { 
        display: none;
        margin-top: 10px; }

        .wrapper_home main .banner, .wrapper_home .bannerSmall img { 
            width: 100%;
            float: left; }

.photoPageThumb { 
        width: 150px;
        height: 100px;
        background-size: cover; 
		background-position: center center; 
		background-repeat:no-repeat; }

/*** HOME NEWS ***/
#homeNews { 
    width: 100%;
    float: left;
    margin-top: 20px; }

    #homeNews .col h3 {
        margin: 0 0 10px;
        font-size: 15px;
        font-weight: 700; }

    #homeNews .latestPic { 
        width: 100%;
        float: left;
        height: 200px;
        background-size: cover; 
		background-position: center center; 
		background-repeat:no-repeat; 
        margin-bottom: 10px; }

    #homeNews .meta { color: #aaa; }

    #homeNews ul {
        padding: 0;
        margin: 0;
        list-style: none; }

    #homeNews ul li {
        width: 100%;
        float: left;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #dadada; }

        #homeNews ul li:last-child { 
            padding: 0;
            margin: 0;
            border-bottom: 0; }


/*** HOME STANDINGS ***/
#homeStandings .ageFilter { 
    width: 100%;
    float: left;
    margin: 10px 0 0; }

    #homeStandings .ageFilter a {
        min-width: 40px;
        font-size: 12px;
        float: left;
        padding: 3px 7px;
        margin: 0 3px 3px 0;
        background: #e2e2e2;
        border-radius: 3px;
        color: #999;
        text-align: center; }

        #homeStandings .ageFilter a:last-child { margin-right: 0; }

        #homeStandings .ageFilter a:hover { 
            background: #ccc;
            color: #666;
            text-decoration: none; }

        #homeStandings .ageFilter a.active { 
            background: #b50937;
            color: #fff; }

#homeStandings table { margin: 10px 0 0; }

    #homeStandings table th, #homeStandings table td { padding: 4px; }

    #homeStandings table th { 
        font-weight: 700;
        color: #222;
        background: none; }

    #homeStandings table th.cat {
        background: #333;
        color: #fff;
        text-align: center; }

    #homeStandings table tr td:nth-child(1), #homeStandings table tr td:nth-child(3) { width: 50px; }


/*** FOOTER ***/
footer {
    width: 100%;
    float: left;
    padding: 30px 0;
    background: #333e3c;
    color: #bbc1c0; }

footer .wrapper_home, footer .wrapper { padding: 0 20px; }

    footer .logo { 
        float: left;
        margin-right: 20px; }

    footer div > div { 
        float: left;
        margin-top: 5px; }

    footer a { color: #fff; }

    footer .trackie { 
        float: right;
        margin-top: 7px; }


/*** NEWS ***/
aside ul li { margin-bottom: 5px; }

aside ul.archive li { 
    width: 50%;
    float: left;
    margin-bottom: 5px; }

aside .newsSlider { 
    width: 100%;
    float: left;
    margin-top: 10px; }

    aside .newsSlider .item { 
        width: 100%;
        float: left;
        margin-bottom: 15px;
        color: #888;
        font-size: 12px;
        opacity: 0.4; }

        aside .newsSlider .item:last-child { margin-bottom: 0; }

        aside .newsSlider .item:hover, aside .newsSlider .item.active { opacity: 1; }

        aside .newsSlider .item .date {
            width: 35px;
            height: 35px;
            float: left;
            margin-right: 7px;
            border: 1px solid #b50937;
            text-align: center;
            color: #b50937;
            font-family: 'Archivo Narrow', sans-serif;
            font-size: 10px;
            font-weight: 700;
            line-height: 14px; }

            aside .newsSlider .item .date strong {
                display: block;
                margin-top: 3px;
                font-size: 16px; }

        aside .newsSlider .item div { 
            margin-top: -3px;
            overflow: hidden; }

        aside .newsSlider .item h4 { 
            margin: 0;
            font-size: 15px;
            font-weight: 700; }

aside .sliderCtrl a {
    width: 20px;
    height: 20px;
    float: left;
    margin-left: 5px; }

    aside .sliderCtrl a.next { background: url(../images/icon_next.png) center no-repeat #e5e5e5; }
    aside .sliderCtrl a.prev { background: url(../images/icon_prev.png) center no-repeat #e5e5e5; }

    aside .sliderCtrl a:hover { background-color: #ddd; }

    aside .sliderCtrl a.slick-disabled, aside .sliderCtrl a.slick-disabled:hover { 
        background-color: #e5e5e5;
        opacity: 0.3;
        cursor: default; }


/*** PROGRAMS ***/
aside ul.programs2 { 
    width: 100%;
    float: left;
    margin-top: 10px; }

    aside ul.programs2 li {
        width: 100%;
        float: left;
        margin: 0 0 15px;
        opacity: 0.4; }

        aside ul.programs2 li:last-child { margin-bottom: 0; }

        aside ul.programs2 li:hover, aside ul.programs2 li.active { opacity: 1; }

        aside ul.programs2 li img {
            width: 100%;
            float: left;
            margin-bottom: 7px; }

        aside ul.programs2 li h4 {
            float: left;
            margin: 0;
            font-size: 14px;
            font-weight: 700; }

p.pointage span {
    width: 95px;
    display: inline-block; }


/*** HALL OF FAME ***/
#hof_photos {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0 1.5em;
    list-style: none; }

    #hof_photos li { 
        float: left;
        margin: 0 10px 10px 0; }

        #hof_photos li a {
            width: 90px;
            height: 90px;
            display: block;
            overflow: hidden; }

            #hof_photos li a:hover { opacity: 0.75; }


/*** LINKS ***/
#links {
    margin: 0 -10px;
    padding: 0;
    list-style: none; }

    #links li {
        width: 50%;
        float: left;
        padding: 10px; }

        #links li:nth-child(2n+1) { clear: both; }

        #links li .img { 
            float: left;
            margin-right: 15px;
            border: 1px solid #eee; }

            #links li .img img { float: left; }

        #links li div { overflow: hidden; }

        #links li h4 { margin-top: 0; }

        #links li p { margin-bottom: 0; }


/*** RACE DIRECTOR GUIDE ***/
#raceDirectorGuide aside form div { 
    width: 100%;
    min-height: 30px;
    float: left;
    margin-top: 5px;
    line-height: 30px; }

#raceDirectorGuide aside form input.text, #raceDirectorGuide aside form textarea {
    width: 100%;
    float: left;
    padding: 7px;
    background: #fff;
    border: 1px solid #ddd;
    font: inherit;
    line-height: normal; }

    #raceDirectorGuide aside form textarea { height: 100px; }

    #raceDirectorGuide aside form input.text:focus, #raceDirectorGuide aside form textarea:focus { border-color: #aaa; }

#raceDirectorGuide aside form input.submit {
    width: 100%;
    float: left;
    padding: 7px;
    background: #B50937;
    border: none;
    font: inherit;
    line-height: normal;
    color: #fff;
    cursor: pointer; }

    #raceDirectorGuide aside form input.submit:hover { background: #9E062E; }

#raceDirectorGuide main header.title {
    margin: 20px 0 40px;
    padding: 0;
    text-align: center; }

    #raceDirectorGuide main header.title h1, #raceDirectorGuide main header.title h2 {
        display: inline-block;
        padding: 0 15px;
        margin: 0;
        position: relative;
        bottom: -17px;
        background: #fff;
        font-size: 30px;
        text-transform: uppercase; }

    #raceDirectorGuide main header.title span {
        display: inline-block;
        padding: 5px 10px;
        margin: -4px 10px 0 0;
        background: #1B5E51;
        color: #fff;
        font-size: 14px;
        vertical-align: middle; }

#raceDirectorGuide .gift {
    width: 100%;
    min-height: 100px;
    float: left;
    display: flex;
    align-content: center;
    padding-left: 120px;
    margin: 10px 0;
    background: url(../images/icon_gift.png) left center no-repeat;
    font-size: 16px; }

.raceDirectorGuide_icons { 
    padding: 0;
    margin: 0 -10px;
    list-style: none;
    text-align: center; }

    .raceDirectorGuide_icons li {
        width: 33.3334%;
        float: left;
        padding: 10px; }

        .raceDirectorGuide_icons li:nth-child(3n+1) { clear: both; }

    .raceDirectorGuide_icons h3 { 
        margin-top: 10px;
        font-weight: 400; }


/*** STATS ***/
#stats aside {
    width: 100%;
    float: left;
    display: none;
    padding: 15px;
    margin-bottom: 30px;
    background: #f5f5f5;
    border: 1px solid #dadada; }

    #stats aside ul {
        width: 25%;
        float: left;
        padding-left: 10px;
        margin: 0;
        border-left: 4px solid #dadada;
        list-style: none; }

#stats .info {
    width: 100%;
    float: left;
    padding: 15px 0;
    margin-bottom: 20px;
    border-top: 2px solid #dadada;
    border-bottom: 2px solid #dadada; }

    #stats .info .select {
        float: right;
        padding-right: 15px;
        margin: 0 15px 0 0;
        border-right: 1px solid #dadada;
        line-height: 26px; }

        #stats .info .select.noBorder { 
            padding-right: 0;
            margin-right: 0;
            border: none; }

        #stats .info .select span { float: left; }

    #stats .info .styled-select { 
        float: right;
        margin: 0 0 0 5px;
        line-height: normal; }

    #stats .info .left { 
        float: left;
        margin-top: 4px; }

    #stats .info .right { 
        float: right;
        margin-top: 4px; }

    #stats .info .btns {
        width: 100%;
        float: left; }

        #stats .info .btns .tabs { 
            float: left;
            margin: 10px 0 0; }

            #stats .info .btns .tabs.right { 
                float: right;
                margin: 10px 0 0; }

            #stats .info .btns .tabs a {
                float: left;
                padding: 5px 10px;
                background: #e2e2e2;
                color: #999; }

                #stats .info .btns .tabs a:first-child {
                    border-top-left-radius: 3px;
                    border-bottom-left-radius: 3px; }

                #stats .info .btns .tabs a:last-child {
                    border-top-right-radius: 3px;
                    border-bottom-right-radius: 3px; }
    
                #stats .info .btns .tabs a:hover {
                    background: #ccc;
                    color: #666;
                    text-decoration: none; }

                #stats .info .btns .tabs a.active { 
                    background: #B50937;
                    color: #fff; }

#stats h2 { margin-top: 0; }

#stats .ageFilter { 
    width: 100%;
    float: left;
    margin: 0 0 10px; }

    #stats .ageFilter a {
        min-width: 50px;
        float: left;
        padding: 3px 7px;
        margin: 0 3px 3px 0;
        background: #e2e2e2;
        border-radius: 3px;
        color: #999;
        text-align: center; }

        #stats .ageFilter a:last-child { margin-right: 0; }

        #stats .ageFilter a:hover { 
            background: #ccc;
            color: #666;
            text-decoration: none; }

        #stats .ageFilter a.active { 
            background: #b50937;
            color: #fff; }

table#runForCycle thead th {
	font-weight: 700;
    color: white;
    background: none;
    background: #333;
}

#stats table th { 
        font-weight: 700;
        color: #222;
        background: none; }

    #stats table th.cat {
        background: #333;
        color: #fff;
        text-align: center; }

    #stats table tr td:nth-child(1), #homeStandings table tr td:nth-child(3) { width: 50px; }

    #stats table tr.gold th.cat { background: #DAB626; }
    #stats table tr.gold:nth-child(odd) { background: #FFF1B9; }
    #stats table tr.gold:nth-child(even) { background: #F2E09F; }

    #stats table tr.silver th.cat { background: #A2A2A2; }
    #stats table tr.silver:nth-child(odd) { background: #DDDDDD; }
    #stats table tr.silver:nth-child(even) { background: #d0d0d0; }

    #stats table tr.bronze th.cat { background: #E57F42; }
    #stats table tr.bronze:nth-child(odd) { background: #FFD79E; }
    #stats table tr.bronze:nth-child(even) { background: #F4C789; }

    #stats table tr.red th.cat { background: #B50937; }
    #stats table tr.red:nth-child(odd) { background: #FFB9B9; }
    #stats table tr.red:nth-child(even) { background: #ED9393; }

    #stats table tr.white th.cat { background: #A2A2A2; }
    #stats table tr.white:nth-child(odd) { background: #DDDDDD; }
    #stats table tr.white:nth-child(even) { background: #d0d0d0; }

    #stats table tr.blue th.cat { background: #424EE5; }
    #stats table tr.blue:nth-child(odd) { background: #9EC7FF; }
    #stats table tr.blue:nth-child(even) { background: #89B7F4; }


/*** CONTACT ***/
#contact {
    padding: 0;
    margin: 0 -10px;
    list-style: none; }

    #contact li {
        width: 25%;
        float: left;
        padding: 10px;
        text-align: center;
        font-size: 12px; }

        #contact li:nth-child(4n+1) { clear: both; }

        #contact li figure {
            width: 100%;
            height: 0;
            float: left;
            padding: 100% 0 0;
            margin: 0;
            position: relative;
            overflow: hidden; }

            #contact li figure img {
                width: 100%;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1; }

        #contact li > div { 
            width: 100%;
            float: left;
            box-shadow: 0 0 5px rgba(0,0,0,0.2); }

        #contact li > div > div {
            width: 100%;
            min-height: 170px;
            float: left;
            position: relative;
            padding-top: 45px;
            background: #f0f0f0; }

            #contact li > div p { margin: 0 0 10px; }

            #contact li .name {
                height: 60px;
                padding: 0 5px;
                display: flex;
                position: absolute;
                top: -25px;
                left: 15px;
                right: 15px;
                z-index: 10;
                background: #fff;
                box-shadow: 0 0 5px rgba(0,0,0,0.2);
                color: #999; }

                #contact li .name div { 
                    align-self: center;
                    margin: 0 auto; }

                #contact li .name span {
                    display: block;
                    color: #222;
                    font-size: 15px;
                    font-weight: bold; }

	
	/*** VIRTUAL TROPHY - PROVINCIAL CHAMPIONS ***/
#vt_provincialChampions {}

    #vt_provincialChampions .distance {
        width: 100%;
        float: left;
        position: relative; }

    #vt_provincialChampions .distance_heading {
        width: 100%;
        float: left;
        padding: 30px 20px;
        background: #fadb85;
        background: -moz-linear-gradient(-45deg, #fadb85 0%, #5dc39c 100%);
        background: -webkit-linear-gradient(-45deg, #fadb85 0%,#5dc39c 100%);
        background: linear-gradient(135deg, #fadb85 0%,#5dc39c 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fadb85', endColorstr='#5dc39c',GradientType=1 );
        font-size: 14px; }

        #vt_provincialChampions .distance_heading h2 { margin-bottom: 15px; }

        #vt_provincialChampions .distance_heading .year { 
            float: left;
            margin: 3px 0px 0 0;
            font-weight: bold; }

        #vt_provincialChampions .distance_heading .styled-select { 
            width: auto;
            height: auto;
            background-color: #fff; }

            #vt_provincialChampions .distance_heading .styled-select select { 
                width: auto;
                height: auto;
                padding: 8px 20px 8px 5px;
                font-size: 13px; }

    #vt_provincialChampions .distance_main {
        width: 100%;
        float: left;
        padding: 0 20px 30px;
        margin-bottom: 40px;
        border: 1px solid #e2e2e2;
        border-top: 0; }

        #vt_provincialChampions .distance_main .left { 
            width: 23%;
            float: left;
            margin-top: 30px;
            font-size: 15px; }

            #vt_provincialChampions .distance_main .left .details { 
                color: #999;
                font-size: 12px; }

        #vt_provincialChampions .distance_main .right { 
            float: right;
            margin-top: -42px; }

        #vt_provincialChampions .distance_main .boardContent { display: none; }
        #vt_provincialChampions .distance_main .boardContent.active { display: block; }

        #vt_provincialChampions .distance_main .board {
            width: 300px;
            float: left;
            margin-left: 10px;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 6px 10px rgba(0,0,0,0.1); }

            #vt_provincialChampions .distance_main .board .head {
                width: 100%;
                height: 42px;
                float: left;
                background: #B50937;
                color: #fff;
                text-align: center;
                line-height: 42px; }

            #vt_provincialChampions .distance_main .board .body {
                width: 100%;
                float: left;
                border-bottom: 1px solid #E2E2E2; }

                #vt_provincialChampions .distance_main .board .body .group {
                    width: 100%;
                    float: left;
                    padding: 15px;
                    border-bottom: 1px solid #E2E2E2; }

                #vt_provincialChampions .distance_main .board .body .group:last-child { border: none; }

                    #vt_provincialChampions .distance_main .board .body .group .position {
                        width: 36px;
                        height: 36px;
                        float: left;
                        margin-right: 15px;
                        background: #ddd;
                        border-radius: 50%;
                        text-align: center;
                        font-style: normal;
                        font-weight: bold;
                        line-height: 36px; }

                    #vt_provincialChampions .distance_main .board .body .group:first-child .position { background: #F2E09F; }
                    #vt_provincialChampions .distance_main .board .body .group:last-child .position { background: #F4C789; }

                    #vt_provincialChampions .distance_main .board .body .group .overflow { overflow: hidden; }

                        #vt_provincialChampions .distance_main .board .body .group .overflow .name { 
                            float: left;
                            font-size: 12px; }

                            #vt_provincialChampions .distance_main .board .body .group .overflow .name strong { font-size: 14px; }

                        #vt_provincialChampions .distance_main .board .body .group .overflow .time { 
                            float: right;
                            font-size: 17px;
                            line-height: 36px; }
	
/*** MEDIA QUERIES ***/
@-ms-viewport { width: device-width; }
@viewport { width: device-width; }


/*** RETINA ***/
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
	header#header .top .right .social a.facebook { background: url(../images/icon_facebook@2x.png); background-size: 24px; }
    header#header .top .right .social a.twitter { background: url(../images/icon_twitter@2x.png); background-size: 24px; }    
    header#header .top .right .guide { background: url(../images/icon_guide2@2x.png) left no-repeat; background-size: 29px; }
    header#header .top .right .mem_card { background: url(../images/mem_card@2x.png) left no-repeat; background-size: 29px; }
    header#header .top .right .search a { background: url(../images/icon_search@2x.png) center no-repeat; background-size: 24px; }
    
    .wrapper_home aside.right .links ul li.trophy { background: url(../images/icon_awards@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.guide { background: url(../images/icon_guide@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.programs { background: url(../images/icon_programs@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.calendar { background: url(../images/icon_calendar@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.faqs { background: url(../images/icon_faqs@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.results { background: url(../images/icon_results@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.records { background: url(../images/icon_records@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.times { background: url(../images/icon_times@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.rankings { background: url(../images/icon_rankings@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.awards { background: url(../images/icon_awards@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.clubs { background: url(../images/icon_clubs@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.hof { background: url(../images/icon_hof@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.education { background: url(../images/icon_education@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.results_gen { background: url(../images/icon_results_gen@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.webinars { background: url(../images/icon_webinars@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.photos { background: url(../images/icon_photos@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.contact { background: url(../images/icon_contact@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.facebook { background: url(../images/icon_facebook2@2x.png) top left no-repeat; background-size: 16px; }
	.wrapper_home aside.right .links ul li.twitter { background: url(../images/icon_twitter2@2x.png) top left no-repeat; background-size: 16px; }
}


/*** 1280px ***/
@media all and (max-width: 1280px) {

    .wrapper_home section { padding: 0 260px; }
    
    .wrapper_home aside { width: 260px; }
    
        .wrapper_home aside.left { margin-left: -260px; }
        .wrapper_home aside.right { margin-right: -260px; }
    
    #homeNews .col, #homeStandings .col { width: 100%; }
    
    #homeNews ul li:first-child {
        padding-top: 15px;
        border-top: 1px solid #dadada; }
        
    #homeNews .latestPic { 
        width: 40%;
        float: left;
        margin-bottom: 10px;
        margin-right: 10px; }   
    
}


/*** 1024px ***/
@media all and (max-width: 1090px) {
    
    body { background: #fff; }
    
    header#header .top nav ul, header#header .top .guide, header#header nav#sub ul { display: none; }
    
    header#header nav#sub { height: 5px; }
    
    header#header .top nav#nav a.mobile { display: block; }
    
    .wrapper_home { padding: 0 20px; }
    
    .wrapper_home main .banner { display: none; }

    .wrapper_home .bannerSmall { display: block; }
    
    .wrapper_home section { padding: 0; }
    
    .wrapper_home aside { 
        width: 100%;
        padding: 0; }
    
        .wrapper_home aside.left, .wrapper_home aside.right { margin: 0; }
    
        .wrapper_home aside.left .logo { display: none; }
    
        .wrapper_home aside .col:not(.links) { width: 50%; }
    
        .wrapper_home aside.right .links ul li { width: 49%; }
    
        .wrapper_home aside.right .links ul li:nth-child(2n+1) { clear: none; }
        .wrapper_home aside.right .links ul li:nth-child(3n+1) { clear: both; }
    
    .wrapper_home main { 
        padding: 0;
        background: none; }
    
    #homeNews .col, #homeStandings .col { width: 50%; }
    
    #homeNews ul li:first-child {
        padding-top: 0;
        border-top: none; }
    
    section.col2 { padding-left: 0; }
    
    section.col2 aside { 
        width: 100%;
        margin: 0; }
    
    section.col2 aside .col_12 { width: 50%; }

    section.col2 aside .col_12.full { 
        width: 100%;
        clear: both; }
    
    #stats aside { display: block; }
    
    #contact li { width: 33.3334%; }
    
        #contact li:nth-child(4n+1) { clear: none; }
        #contact li:nth-child(3n+1) { clear: both; }
        
    #homeNews .latestPic { 
        width: 100%; }   
    
}

/*** 900px ***/
@media all and (max-width: 900px) {
    
    #vt_provincialChampions .distance_heading { padding-bottom: 55px; }
    
        #vt_provincialChampions .distance_heading h2 { float: left; }

        #vt_provincialChampions .distance_heading > div { 
            float: right;
            margin-top: 3px; }
    
    #vt_provincialChampions .distance_main .left { display: none; }

    #vt_provincialChampions .distance_main .right { 
        width: 100%;
        float: none;
        margin: -42px -5px 0; }

        #vt_provincialChampions .distance_main .right .board { 
            width: calc(50% - 10px);
            margin: 0 5px; }
    
}

/*** 700px ***/
@media all and (max-width: 700px) {
    
    #homeNews .col, #homeStandings .col { width: 100%; }
    
    #homeNews ul li:first-child {
        padding-top: 15px;
        border-top: 1px solid #dadada; }
    
    #links li { width: 100%; }

        #links li:nth-child(2n+1) { clear: none; }
    
    .raceDirectorGuide_icons li { width: 33.3334%; }

        .raceDirectorGuide_icons li:nth-child(3n+1) { clear: both; }
    
    #stats .col_6 { width: 100%; }
   	
   	.category_stats { clear:both; position: static; }
   	 
    #stats .info .right { 
	    clear: both;
        width: 100%;
        float: left; }
    
    #stats .info .select { 
        width: 100%;
        float: left;
        padding: 0;
        margin: 10px 0 0;
        border: none; }
    
        #stats .info .select .styled-select { float: left; }
    
    #contact li { width: 50%; }
        
        #contact li:nth-child(3n+1) { clear: none; }
        #contact li:nth-child(2n+1) { clear: both; }
		
	 #vt_provincialChampions .distance_main .right .board { width: 100%; }
    
    #vt_provincialChampions .distance_main .right .board:first-child { margin-bottom: 20px; }

}


/*** 600px ***/
@media all and (max-width: 600px) {
    
    .wrapper_home aside .col { width: 100% !important; }
    
    section.col2 aside .col_12 { width: 100%; }
    
    #stats aside ul { 
        width: 100%;
        padding: 0;
        border: none; }
    
       
    #vt_provincialChampions .distance_heading h2 { float: none; }
    
    #vt_provincialChampions .distance_heading > div { 
        float: left;
        margin-bottom: 10px; }
}


/*** 480px ***/
@media all and (max-width: 480px) {
    
    header#header .top .right .social { display: none; }
    
    .wrapper_home aside.right .links ul li { width: 50%; }
    
    .wrapper_home aside.right .links ul li:nth-child(2n+1) { clear: both; }
    .wrapper_home aside.right .links ul li:nth-child(3n+1) { clear: none; }
    
    .raceDirectorGuide_icons li { width: 50%; }

        .raceDirectorGuide_icons li:nth-child(3n+1) { clear: none; }
        .raceDirectorGuide_icons li:nth-child(2n+1) { clear: both; }
    
    #contact li { width: 100%; }
        
        #contact li:nth-child(2n+1) { clear: none; }
    
}


/*** 414px ***/
@media all and (max-width: 414px) {
    
    header#header .top .right .lang { display: none; }
    
    #links li .img { 
        display: block;
        float: none;
        margin: 0 0 10px;
        border: none;
        text-align: center;}
    
        #links li .img img { float: none; }
    
    #vt_provincialChampions .distance_main .board .body .group .overflow .time {
        width: 100%;
        margin-top: 10px;
        line-height: normal; }
}






/*** Stats - Records ***/
#stats {
	--color-1: #1b5e51;
	--color-2: #b50937;
	--color-3: #0975b5;
}

#stats .tooltip {
	width: 16px;
	height: 16px;
	display: inline-flex;
	place-content: center;
	vertical-align: middle;
	position: relative;
	background-color: #dbdede;
	border: 1px solid #979c9c;
	border-radius: 50%;
	text-align: center;
	font-size: .9em;
	font-weight: bold;
	cursor: help;
}

	#stats .tooltip div {
		width: 200px;
		position: absolute;
		left: 50%;
		bottom: calc(100% + .75em);
		z-index: 1000;
		padding: 1em;
		background-color: #202625;
		border-radius: .3em;
		visibility: hidden;
		opacity: 0;
		font-weight: normal;
		text-align: left;
		color: #fff;
		pointer-events: none;
		transition: .3s ease all;
		transform: translateX(-50%);
	}

	#stats .tooltip:hover div {
		visibility: visible;
		opacity: 1;
	}

/* Tabs */
.stats-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-bottom: 1px solid #222;
}

	.stats-tabs > div {
		margin-bottom: -1px;
	}

	.stats-tabs a {
		display: block;
		padding: 1rem;
		color: #aaa;
	}

	.stats-tabs .is-active {
		border: 1px solid #222;
		border-bottom-color: #fff;
		color: #222;
	}

	.stats-tabs a:hover {
		text-decoration: none;
		color: #222;
	}

	.stats-tabs .title {
		margin: 0 0 .5rem;
		font-family: 'Archivo Narrow', sans-serif;
		font-size: 24px;
		font-weight: 700;
		line-height: 1;
	}

	.stats-tabs h1 {
		margin: 0;
		font-size: 24px;
	}

/* Legend / Filter */
.stats-legend-filter {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 1rem 0;
}

.stats-legend > div + div {
	margin-top: 4px;
}

.stats-legend [class^='color'] {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin-right: 6px;
	background-color: #aaa;
}

.stats-legend .color-1 {
	background-color: var(--color-1);
}

.stats-legend .color-2 {
	background-color: var(--color-2);
}

.stats-legend .color-3 {
	background-color: var(--color-3);
}

.stats-filter .fields {
	display: flex;
	padding-top: 8px;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.stats-filter .styled-select {
	width: auto;
	float: none;
	display: inline-block;
	padding-right: 16px;
	margin: 0;
}

.stats-filter select {
	width: auto;
}

.stats-filter [type='submit'] {
	height: 24px;
	padding: 0 8px;
	background-color: var(--color-1);
	border: 0;
	color: #fff;
	cursor: pointer;
}

/* Table */
#stats .stats-table table th {
	background-color: #222;
	color: #fff;
}

#stats .stats-table .event-title {
	background-color: #f0f0f0;
	font-size: 1rem;
	color: #222;
}

#stats .stats-table tr {
	background-color: #fff;
}
#stats .stats-table tr:hover {
	background-color: rgb(196, 196, 196);    
}

#stats .stats-table td:hover {
    cursor: pointer;
}

#stats .stats-table table th,
#stats .stats-table table td {
	padding: 6px;
	border-bottom: 1px solid #ccc;
}

#stats .stats-table table th.type,
#stats .stats-table table [class^='type'] {
	width: 16px;
	padding: 0;
}

#stats .stats-table table [class^='type-1'] {
	background-color: var(--color-1);
}

#stats .stats-table table [class^='type-2'] {
	background-color: var(--color-2);
}

#stats .stats-table table [class^='type-3'] {
	background-color: var(--color-3);
}

#stats .stats-table table .type-1-2 {
	background: linear-gradient(135deg, var(--color-1) 0%, var(--color-1) 50%, var(--color-2) 50%, var(--color-2) 100%);
}

#stats .stats-table table .type-1-3 {
	background: linear-gradient(135deg, var(--color-1) 0%, var(--color-1) 50%, var(--color-3) 50%, var(--color-3) 100%);
}

#stats .stats-table table .type-1-2-3 {
	background: linear-gradient(135deg, var(--color-1) 0%, var(--color-1) 33%, var(--color-2) 33%, var(--color-2) 66%, var(--color-3) 66%, var(--color-3) 100%);
}

#stats .stats-table table .type-2-3 {
	background: linear-gradient(135deg, var(--color-2) 0%, var(--color-2) 50%, var(--color-3) 50%, var(--color-3) 100%);
}

@media screen and (max-width: 600px) {

	.stats-tabs .title,
	.stats-tabs .title h1 {
		font-size: 18px;
	}

	.stats-legend-filter {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

}

/* History Rows */
.history {
    background-color: #d3d3d3 !important;
    cursor: default !important;
}