﻿html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul,
li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th,
td, input, textarea, select {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    /*-webkit-appearance: none;*/
}
html body {
    background-color: #949494;
    font-family: 'PT Sans', sans-serif;
    margin: 0 auto;
    -webkit-text-size-adjust: 100%;
}

.button-refresh {
    float: left;
    cursor: pointer;
    width: auto;
}

.refresh-text {
    /*color: #ACACAC;*/
    color: #FFFFFF;
    float: right;
    margin-top: 7px;
    font-size: 12px;
}

.refresh-icon {
    margin: 7px 5px 0 10px;
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
}

/*.recount-disclaimer {
    padding: 5px;
}

    .recount-disclaimer p {
        text-transform: none;
        margin: 5px;
        padding: 5px;
        font-size: 1em;
    }*/

a:link {
    color: #000000;
    text-decoration: none;
}

a:visited {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #666666;
    text-decoration: none;
}

a:active {
    color: #000000;
    text-decoration: none;
}

.secondary_hyperlinks a:link {
    color: #000000;
    text-decoration: none;
}

.secondary_hyperlinks a:visited {
    color: #000000;
    text-decoration: none;
}

.secondary_hyperlinks a:hover {
    color: #000000;
    text-decoration: none;
    border-bottom: 5px solid #FFFFFF;
}

.secondary_hyperlinks a:active {
    color: #000000;
    text-decoration: none;
}

.dropbtn {
    background-color: transparent;
    color: #A9A9A9;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
}

    .dropdown-content a {
        color: black;
        /*padding: 12px 16px;*/
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: transparent;
}

.export-button {
    width: 100%;
    border: 1px solid transparent;
    background: white;
    padding: 0 3px;
}

    .export-button:hover {
        border: 1px solid #A9A9A9;
    }

.site-message {
    text-align: center;
    background: #FFFFFF;
    color: #D40B27;
    padding: 8px 16px;
}

.share-container {
    right: -2px;
    min-width: 100px;
    top: 50px;
    height: 61px;
    z-index: 1;
    border: 2px solid #C5C5C5;
    padding-bottom: 1px;
    visibility: hidden;
    position: absolute;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.share-container-inline {
    right: -2px;
    min-width: 100px;
    height: 61px;
    z-index: 1005;
    border: 2px solid #C5C5C5;
    padding-bottom: 1px;
}
.share-header {
    font-size: 13px;
    font-weight: bold;
    width: auto;
    text-align: center;
    background-color: #FFFFFF;
    color: #174072;
}
.share-icon-wrapper {
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: space-around;
}
.share-buttons {
    display: inline-flex;
}
.share-buttons img {
    width: 30px;
    padding: 6px;
}
    .share-buttons a:hover {
        background-color: #f1f1f1;
        height: 42px;
    }
.search-icon-wrapper {
    float: right;
    margin: 0 15px 0 0;
    height: 50px;
    width: 40px;
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.search-icon-wrapper:hover .search-icon {
    background-image: url("/Images/magnifying-glass.png");
}
.search-icon-wrapper:hover {
    background-color: #FFFFFF;
}
.search-icon-wrapper-hover {
    background-color: #FFFFFF;
}
.search-icon {
     background-image: url("/Images/magnifying-glass_03.png");
     height: 40px;
     width: 40px;
}
.search-icon-hover {    
    background-image: url("/Images/magnifying-glass.png");
}
.search-container {
    right: -15px;
    top: 50px;    
    width: 396px;
    height: 61px;
    background-color: #FFFFFF;
    border: 2px solid lightgray;
    z-index: 100;
    visibility: hidden;
    position: absolute;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);

}
#chartjs-tooltip {
    opacity: 0;
    position: absolute;
    background: rgba(0, 0, 0, .7);
    color: white;
    padding: 3px;
    border-radius: 3px;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    pointer-events: none;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 2000;
}

    #chartjs-tooltip.below {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

        #chartjs-tooltip.below:before {
            border: solid;
            border-color: #111 transparent;
            border-color: rgba(0, 0, 0, .8) transparent;
            border-width: 0 8px 8px 8px;
            /*bottom: 1em;*/
            content: "";
            display: block;
            left: 37%;
            position: absolute;
            z-index: 99;
            -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
        }

    #chartjs-tooltip.above {
        -webkit-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%);
    }

        #chartjs-tooltip.above:before {
            border: solid;
            border-color: #111 transparent;
            border-color: rgba(0, 0, 0, .8) transparent;
            border-width: 8px 8px 0 8px;
            bottom: 1em;
            content: "";
            display: block;
            left: 40%;
            top: 100%;
            position: absolute;
            z-index: 99;
            -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
        }

.contact-info {
    text-align: center;
    color: #333333;
    padding-left: 34%;
    padding-right: 34%;
    border-top: 2px solid white;
    padding-top: 5px;
}

.export-header {
    font-size: .8em;
    width: auto;
    text-align: center;
    background-color: #A9A9A9;
    color: #FFFFFF;
}

    .export-header:before {
        border: solid;
        border-color: #A9A9A9 transparent;
        /*border-color: rgba(141, 76, 158) transparent;*/
        border-width: 0 4px 4px 4px;
        /*bottom: 1em;*/
        content: "";
        display: block;
        left: 87%;
        position: absolute;
        z-index: 99;
        -webkit-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%);
    }

.export-container, .prov-export-container {
    right: 0px;
    top: 20px;
    min-width: 75px;
}

.export {
    font-size: 16px;
}

.export-links-centered {
    text-align: center;
    padding: 20px 36px 0 36px;
    margin: 8px 0 10px 0;
}

.mt-map {
    /*padding-top: 31px;*/
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100% - 35px);
}
.grid-box-wrapper {
    display: flex;
}
.wrapper-inside {
    /*width: 98.2%;*/
    margin: 5px 0px 5px 0px;
    text-transform: uppercase;
    background: #FFFFFF;
}

    .wrapper-inside h1 {
        font-size: 1.4em;
        color: #333333;
        padding: 8px 0 0 10px;
        margin: 0 auto;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 100%;
        text-align: left;
    }

    .wrapper-inside h3 {
        font-size: .875em;
        color: #333333;
        padding: 3px 0 0 10px;
        margin: 0 auto;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 100%;
        text-align: left;
    }

.legislative-wrapper {
    background-color: rgba(245, 245, 245, 0.7);
    margin: 0 0 -5px 0;
    padding: 5px 0 5px 0;
}
.legislative-header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
}
/*Start Popup Box for Statewide Voter Turnout */
.textboxSmall {
    font-size: 1em;
    width: 250px;
    padding: 2px 2px 2px 2px;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: gray;
}

.textboxSmallTransparent {
    font-size: 14px;
    width: 298px;
    height: 30px;
    background-color: transparent;
    border: 2px solid lightgray;
    border-right: 1px solid lightgray;
    margin: 15px 0 15px 15px;
    padding-left: 5px;
    display: inline-block;
    float: left;
}
.textboxSmallSearch {
    font-size: 14px;
    width: 286px;
    height: 30px;
    background-color: transparent;
    border: none;
    /*border-right: 1px solid lightgray;
    margin: 15px 0 15px 15px;*/
    padding-left: 5px;
    display: inline-block;
    float: left;
}

.textboxSmallGray {
    font-size: 16px;
    width: 90%;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 0 0 0 10px;
    border: none;
}
.textboxSmallGray.list {
    height: 28px;
    width: 175px;
    font-weight: normal;
    border-radius: 7px;
    border: 1px solid #737272;
    vertical-align: middle;
}
.search-button {
    display: inline-block;
    background-color: transparent;
    border: 2px solid lightgray;
    border-left: 1px solid lightgray;
    margin: 15px 15px 15px 0;
    height: 34px;
    width: 60px;
    float: left;
    font-size: 14px;
    font-weight: bold;
}
.ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    background-color: white;
    z-index: 1000;
}

.button {
    font-size: 1em;
    /*padding: 10px;*/
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

a.button {
    color: #FFFFFF;
}
a.button:hover {
    text-decoration: underline;
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

    .overlay:target {
        visibility: visible;
        opacity: 1;
    }

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    max-width: 300px;
    position: relative;
    transition: all 5s ease-in-out;
}

    .popup h1 {
        margin-top: 0;
        color: #333;
        font-size: 1.2em;
    }

    .popup h2 {
        margin: 0 0 0 0;
        color: #333;
        font-size: 1em;
    }

    .popup p {
        font-size: .900em;
        margin: 0 0 0 0;
    }

    .popup .close {
        position: absolute;
        top: 10px;
        right: 30px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #333;
    }

        .popup .close:hover {
            color: orange;
        }

    .popup .content {
        max-height: 30%;
        overflow: auto;
    }

.popup-leftcol {
    width: 70%;
}

.popup-rightcol {
    width: 20%;
}

.popup-table {
    border-collapse: collapse;
    width: 100%;
}

.outside-wrapper {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    /*background-color: #FFFFFF;*/
}

.outside-wrapper-body {    
    /*background-color: rgba(245, 245, 245, 0.7);*/
    background-color: #FFFFFF;
}

.top-bluebar {
    background-color: #194573;
    height: 52px;
}
.top-bluebar a:hover {
    text-decoration: underline;
}
.top-bluebar.stick {
    margin-top: 0 !important;
    position: fixed;
    top: 0;
    z-index: 2000;
    width: 100%;
    max-width: 1024px;
}

.top-header {
    height: 85px;
    background-color: #FFFFFF;
}

.top-header-box1 {
    width: 59%;
}

.top-header-box2 {
    /*width: 30%;*/
    height: 100%;
    float: right;
    display: flex;
    flex-direction: row-reverse;
}

    .top-header-box2 h2 {
        font-size: 1em;
        color: #0F2C52;
        font-weight: bold;
        text-transform: uppercase;
        width: auto;
        padding: 0;
        float: right;
        margin: 0 5px;
        display: inherit;
        align-items: center;
    }

        .top-header-box2 h2 a {
            color: #EFEFEF;
        }

    .top-header-box2 h3 {
        font-size: 1em;
        color: #0F2C52;
        font-weight: bold;
        text-transform: uppercase;
        width: auto;
        padding: 0;
        float: right;
        margin: 0 5px;
        display: inherit;
        align-items: center;
    }

        .top-header-box2 h3 a {
            color: #EFEFEF;
        }

    /*.top-header-box2 h4 {
        font-size: 1em;
        color: #0F2C52;
        font-weight: bold;
        text-transform: uppercase;
        width: auto;
        padding: 0;
        float: right;
        margin: 0 5px;
        display: inherit;
        align-items: center
    }

        .top-header-box2 h4 a {
            color: #EFEFEF;
        }*/

    .top-header-box2 h5 {
        font-size: 1em;
        color: #0F2C52;
        font-weight: bold;
        text-transform: uppercase;
        width: 80px;
        padding: 0;
        float: right;
        margin: 0 5px 0 0;
        display: inherit;
        align-items: center;
        justify-content: center;
    }

        .top-header-box2 h5 a {
            color: #EFEFEF;
        }

.mtc-icon-position {
    float: right;
    height: 50px;
    width: 40px;
    padding-right: 8px;
    position: relative;
    display: inline-block;
}
.mtc-icon-position:hover {
    background-color: #FFFFFF;
}
.mtc-icon-position:hover .share-icon {
    background: url("/Images/share-icon-blk.png") no-repeat;
}
.mtc-icon-position-hover {
    background-color: #FFFFFF;
}
.mtc-icon-inline-position {
    margin-left: 13px;
}
.share-icon {
    width: 30px;
    height: 25px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 10px;
    background: url("/Images/share-icon-wht.png") no-repeat;
    cursor: pointer;
}
.share-icon-hover {
    background: url("/Images/share-icon-blk.png") no-repeat;
}

.top-header-box1 h1 {
    font-size: 1.8em;
    letter-spacing: 2px;
    color: #333333;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 0 0 15px;
    margin: 0 auto;
}

.top-header-box1 h2 {
    font-size: .945em;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #333333;
    padding: 20px 0 0 15px;
    margin: 0 auto;
    font-weight: 600;
}

.header-box-wrapper {
    width: 100%;
    /*margin: 0px 10px 0px 10px;*/
    background: #FFFFFF;
}

.header-box1 {
    width: 25%;
    background-color: #C52026;
    height: 150px;
    outline: 1px solid #C52026;
    margin-right: 1px;
}

    .header-box1 h1 {
        font-size: 1.2em;
        color: #FFFFFF;
        margin: 13px 0 0 15px;
        padding: 0;
        line-height: 100%;
        letter-spacing: 2px;
        width: 185px;
    }

    .header-box1 h2 {
        font-size: 1.4em;
        color: #FFFFFF;
        padding: 15px 0 15px 15px;
        margin: 0 auto;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 100%;
    }
.header-box1-alt:hover h1 {
    border-bottom: 1px solid currentColor;
    text-shadow: 2px 2px #C52026, 2px -2px #C52026, -2px 2px #C52026, -2px -2px #C52026;
}
    .header-box1-alt:hover h2 {
        text-decoration: underline;
    }
.header-box2 {
    width: calc(37.5% - 4px);
    background-color: #0F2C52;
    height: 150px;
    outline: 1px solid #0F2C52;
    margin-right: 3px !important;
}

.header-box-content-top {
    height: auto;
    margin: 0 auto;
    float: left;
    width: 60%;
}

    .header-box-content-top h1 {
        font-size: 1.2em;
        color: #333333;
        padding: 15px 0 0 15px;
        margin: 0 auto;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 100%;
        text-align: left;
    }

.header-box-content-reg {
    height: 45px;
    margin: 8px auto;
    float: left;
    /*width: 55%;*/
    width: calc(100% - 150px);
}

.header-box-content-prec {
    width: 40%;
}

    .header-box-content-reg h2 {
        font-size: 1em;
        color: #FFFFFF;
        padding: 0 0 0 15px;
        font-weight: normal;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    .header-box-content-reg h2 span {
        display: inline-block;
    }
.header-ballot-text {
    width: 130px;
}
.header-ballot-number {
    color: #FF9900;
    font-weight: bold;
    float: right;
}
.header-voter-text {
    width: 130px;
}
.header-voter-number {
     color: #FFFFFF;
     font-weight: bold;
     float: right;
}
.header-partial-text {
    width: 90px;
}
.header-partial-number {
     color: #FFFF00;
     font-weight: bold;
     float: right;
}
.header-total-text {
    width: 50px;
}
.header-total-number {
    color: #FF9900;
    font-weight: bold;
    float: right;
}
.header-totalprecincts-text {
    color: white;
    font-weight: bold;
    float: right;
}

.header-box-content-bottom h2 {
    font-size: 0.825em;
    color: #666666;
    padding: 10px 0 0 0px;
    margin: 15px 20px 0 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    float: right;
    width: 45%;
}

.header-box-content-bottom {
    text-align: center;
    float: right;
    /*margin-top: 23px;*/
    margin-right: 25px;
}

.header-box3 {
    width: calc(37.5% - 4px);
    background-color: #0F2C52;
    height: 150px;
    outline: 1px solid #0F2C52;
    margin-left: 3px;
}

.col-elec-search-box {
    display: block;
    float: left;
    margin: 10px;
    width: 50%;
    border: 2px solid #194573;
    min-height: 410px;
}

.election-results-box {
    margin-right: 5px;
}

.elec-results-header {
    background-color: #ACACAC;
    height: 35px;
    /*border-bottom: 2px solid transparent;*/
}

    .elec-results-header h1 {
        font-size: 1.2em;
        color: #333333;
        padding: 8px;
        margin: 0 auto;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 100%;
        text-align: center;
        font-weight: bold;
    }

.elec-results-grid {
    width: 21%;
    height: 95px;
}

.elec-results-grid-blue {
    width: 21%;
    height: 95px;
    background-color: #ACACAC;
}

.elec-results-grid h1 {
    font-size: 14px;
    color: #FFFFFF;
    padding: 0 2px;
    margin: 0 auto;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    line-height: 16px;
    text-align: center;
}

.elec-results-grid h2 {
    font-size: .745em;
    color: #FFFFFF;
    padding: 0px 0 0 0px;
    margin: 0 auto;
    text-transform: none;
    letter-spacing: 1px;
    line-height: 120%;
    text-align: center;
    font-weight: normal;
}

.elec-results-grid-wrapper {
    padding: 15px;
}

.search-results-box {
    margin-left: 5px;
}

.quick-search-box-wrapper {
    background-color: #FFFFFF;
    height: 35px;
    border-bottom: 2px solid #194573;
}

.quick-search-box1 {
    height: 35px;
    width: 165px;
    background-color: #C52026;
}

    .quick-search-box1 h1 {
        font-size: 1.2em;
        color: #FFFFFF;
        padding: 8px 0 0 0px;
        margin: 0 auto;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 100%;
        text-align: center;
    }

.quick-search-box2 {
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #C52026;
}

.quick-search-box3 {
    width: 300px;
    color: #C0C0C0;
    padding: 2px 0 0 4px;
}

.quick-search-side {
    margin: 0 0 5px 10px;
    display: inline-block;
    width: 210px;
}
.results-county-header {
    background-color: #ACACAC;
    height: 35px;
}

    .results-county-header h1 {
        font-size: 1.2em;
        color: #333333;
        padding: 8px;
        margin: 0 auto;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height: 100%;
        text-align: center;
        font-weight: bold;
    }

.last-updated {
    color: #FFFFFF;
    font-weight: bold;
    margin: 5px 0 0 15px;
    font-size: 12px;
}
.last-updated span {
    display: block;
}
/*  START of Expand Down Menu Election Resources  */

.slidingDiv {
    height: auto;
    background-color: #C6C6C6;
    padding: 5px 0px 10px 0px;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: left;
}

    .slidingDiv ul li {
        color: #FFFFFF;
        display: inline;
        margin: 0 2px 0 2px;
        padding: 0;
        line-height: normal;
        border: 1px solid white;
        padding: 5px 8px 5px 8px;
    }

        .slidingDiv ul li:hover {
            background-color: #194573;
        }

        .slidingDiv ul li a {
            color: #000000;
        }

input.button {
    background-image: url('/Images/downarrow.png');
    background-repeat: no-repeat;
    background-position: 255px 10px;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    width: 100%;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 100%;
    text-align: left;
    background-color: #C6C6C6;
    height: 35px;
    border: 0px solid white;
    padding: 8px 0 8px 10px;
    margin: 0 auto;
    -webkit-appearance: none;
}

    input.button:hover {
        background-color: #ACACAC;
        color: #333333;
        cursor: pointer;
    }

/*  END of Expand Down Menu Election Resources  */


/*  START of Expand Down Menu Maps/Results  */

.slidingDiv-maps {
    height: auto;
    background-color: #FFFFFF;
    padding: 0px 0px 0px 0px;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: left;
}

input.button-maps {
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    font-weight: bold;
    width: 200px;
    color: #FEFEFE;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 100%;
    text-align: center;
    background-color: #194573;
    height: 35px;
    border: 0px solid white;
    padding: 8px 0 8px 0px;
    margin: 0 auto;
    -webkit-appearance: none;
    display: inline-block;
}

    input.button-maps:hover {
        background-color: #FFFFFF;
        color: #000000;
        cursor: pointer;
    }

input.button-county {
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    font-weight: bold;
    width: 200px;
    color: #FEFEFE;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 100%;
    text-align: center;
    background-color: #194573;
    height: 35px;
    border: 0px solid white;
    padding: 8px 0 8px 0px;
    margin: 0 auto;
    -webkit-appearance: none;
    display: inline-block;
}

    input.button-county:hover {
        background-color: #FFFFFF;
        color: #000000;
        cursor: pointer;
    }

.wrapper-button-sw-maps {
    /*margin: 5px 0px 5px 0px;*/
    /*background: #FFFFFF;*/
    display: flex;
    flex-wrap: wrap;
}

.wrapper-voter-turnout {
    display: flex;
    /*display: -webkit-box;*/
    /*-webkit-flex-wrap: wrap;*/
    flex-wrap: wrap;
}

.leg-label {
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    font-weight: bold;
    color: #FEFEFE;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 100%;
    text-align: center;
    background-color: gray;
    height: 15px;
    width: 100px;
    border-top: 2px solid #194573;
    border-left: 0px solid #194573;
    border-bottom: 2px solid #194573;
    border-right: 2px solid #194573;
    padding: 8px 0 8px 0px;
    margin: 0 auto;
    -webkit-appearance: none;
    display: inline-block;
    /*flex-grow: 1;*/
    min-width: 20%;
}

input.button-sw-maps {
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    font-weight: bold;
    color: #FEFEFE;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 100%;
    text-align: center;
    background-color: #194573;
    height: 35px;
    /*width: 49.9%;*/
    border-top: 2px solid #194573;
    border-left: 0px solid #194573;
    border-bottom: 2px solid #194573;
    border-right: 2px solid #194573;
    padding: 8px 0 8px 0px;
    margin: 0 auto;
    -webkit-appearance: none;
    display: inline-block;
    flex-grow: 1;
    min-width: 25%;
    max-width: 50%;
}

input.primary-dem {
    background-color: #006699;
}

input.primary-rep {
    background-color: #9C4A3D;
}

/*input.voter-turnout {
}*/

input.precincts-reporting {
    background-color: #194573;
}

input.general {
    max-width: 50%;
    width: 50%;
    border-left: 2px solid #194573;
}

.wrapper-button-leg {
    margin: 5px 0px 0px 0px;
    /*text-transform: uppercase;
    background: #FFFFFF;*/
    display: flex;
    flex-wrap: wrap;
}
input.left {
    border-left: 0px solid #194573;
}

input.right {
    border-right: 0px solid #194573;
}

div.left {
    border-left: 0px solid #194573;
}

div.right {
    border-right: 0px solid #194573;
}

.active-tab {
    background-color: #FFFFFF !important;
    color: #000000 !important;
}

.active-button {
    background-color: #FFFFFF !important;
    color: #000000 !important;
}
.active-button-precinct {
    background-color: #FFFFFF !important;
    color: #000000 !important;
}

.button-leg {
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    font-weight: bold;
    color: #FEFEFE;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 100%;
    text-align: center;
    background-color: #194573;
    /*height: 35px;*/
    /*width: 15px;*/
    border-top: 2px solid #194573;
    border-left: 0px solid #194573;
    border-bottom: 2px solid #194573;
    border-right: 2px solid #194573;
    padding: 8px 0 8px 0px;
    margin: 0 auto;
    -webkit-appearance: none;
    display: inline-block;
    flex-grow: 1;
    min-width: 19%;
}

input.button-leg:hover {
    background-color: #FFFFFF;
    color: #000000;
    cursor: pointer;
}

input.button-sw-maps:hover {
    background-color: #FFFFFF;
    color: #000000;
    cursor: pointer;
}

.map-col1 {
    width: 50%;
    margin: 0 auto;
    color: #333333;
    float: left;
}

.map-col2 {
    width: 50%;
    margin: 0 auto;
    color: #333333;
    float: right !important;
}

    .map-col2 h1 {
        font-size: 1em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 10px 0 10px 0;
        letter-spacing: 2px;
        text-align: center;
    }

    .map-col2 img {
        margin: 0 auto;
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }

.map-col3 {
    width: 50%;
    float: left;
}

.turnout-map1 {
    width: 100%;
    margin: 0 auto;
    color: #333333;
}

.turnout-map2 {
    width: 100%;
}

.turnout-map3 {
    width: 100%;
    margin: 0 auto;
    color: #333333;
}

    .turnout-map3 h1 {
        font-size: 1em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 10px 0 10px 0;
        letter-spacing: 2px;
        text-align: center;
    }

    .turnout-map3 img {
        margin: 0 auto;
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }

.county-header {
    background-color: #EFEFEF;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    text-transform: uppercase;
}

    .county-header h1 {
        float: left;
        font-size: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 7px 0px 5px 10px;
        letter-spacing: 2px;
    }

    .county-header h2 {
        float: right;
        font-size: .825em;
        text-transform: uppercase;
        margin: 17px 15px 5px 0px;
    }

    .county-header h3 {
        font-size: 1em;
        margin: 10px 0px 5px 10px;
        letter-spacing: 1px;
    }

.turnout-county-header {
    background-color: #EFEFEF;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    text-transform: uppercase;
}

    .turnout-county-header h1 {
        font-size: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 7px 0px 5px 5px;
        letter-spacing: 2px;
        display: inline-block;
        width: 28%;
    }

    .turnout-county-header h2 {
        font-size: .825em;
        text-transform: uppercase;
        margin: 17px 10px 5px 0px;
        color: #333333;
        display: inline-block;
        text-align: right;
        width: 30%;
    }

    .turnout-county-header h3 {
        font-size: .825em;
        margin: 10px 0px 5px 10px;
        letter-spacing: 1px;
        display: inline-block;
        width: 37%;
        text-align: center;
    }

.turnout-no-selection {
    text-align: right;
    /*padding: 3px 5px 0 0;*/
    color: #333333;
    display: inline-block;
    /*margin: 7px 10px 5px 10px;*/
    font-weight: bold;
    width: 69%;
}
.turnout-reporting-col1 {
    width: auto;
    text-align: center;
}

.turnout-reporting-col2 {
    width: auto;
    text-align: center;
}

.turnout-reporting-col3 {
    width: auto;
    text-align: center;
}

.turnout-reporting-col4 {
    width: auto;
    text-align: center;
}

.turnout-reporting {
    width: 100%;
    margin-bottom: 3px;
}

    .turnout-reporting h4 {
        display: block;
        font-size: 1em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 0px 0px 0px 10px;
        letter-spacing: 1px;
        padding: 0 0 0 0;
        text-align: center;
    }

    .turnout-reporting h5 {
        display: block;
        font-weight: normal;
        font-size: 1em;
        margin: 0px 0px 0px 10px;
        letter-spacing: 1px;
    }

input.button-precinct-results {
    background-image: url('/Images/downarrow.png');
    background-repeat: no-repeat;
    background-position: 335px 10px;
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    font-weight: bold;
    width: 100%;
    color: #333333;
    background-color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 100%;
    text-align: right;
    height: 35px;
    border: 0px solid white;
    padding: 8px 0 8px 0px;
    margin: 0 auto;
    -webkit-appearance: none;
    display: block;
}

    input.button-precinct-results:hover {
        color: #25D1C8;
        cursor: pointer;
    }

.precinct-results-header {
    background-color: #25D1C8;
    margin: 0 auto;
}

    .precinct-results-header h1 {
        display: block;
        font-size: 1em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 0px 0px 0px 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        letter-spacing: 1px;
        text-align: left;
        color: #333333;
    }

.precinct-down-arrow {
    background-image: url('/Images/downarrow-precinct.png');
    background-repeat: no-repeat;
    background-position: 6px top;
    height: 9px;
    margin: 0 auto;
}

.precinct-results-countyname {
    padding: 0px 10px 0px 0px;
    margin: 0 0 -5px 0;
    min-height: 55px;
    background-color: #EFEFEF;
}

    .precinct-results-countyname h1 {
        display: block;
        font-size: 1.2em;
        /*text-transform:uppercase;*/
        font-weight: bold;
        margin: 0px 0px 0px 10px;
        padding: 20px 0 10px 0;
        letter-spacing: 1px;
        text-align: left;
        color: #333333;
    }

.precinct-results-orangebox {
    /*border-top: 1px solid #EF7842;
    border-bottom: 1px solid #EF7842;*/
    height: auto;
    margin: 5px 0 5px 0;
}

.precinct-results-orangebox-title {
    background-color: #EF7842;
    width: 100%;
}

    .precinct-results-orangebox-title h1 {
        font-size: 1em;
        color: white;
        padding: 5px 0px 5px 10px;
        text-align: left;
        margin: 0 auto;
    }

.precinct-results-databox1 {
    width: 32%;
    color: #333333;
}

    .precinct-results-databox1 h1 {
        display: block;
        font-size: 1em;
        /*text-transform:uppercase;*/
        /*font-weight: bold;*/
        margin: 5px 0px 0px 10px;
        letter-spacing: 1px;
        text-align: left;
        padding: 0 0 0 0;
    }

    .precinct-results-databox1 h2 {
        display: block;
        font-size: .925em;
        text-transform: none;
        /*font-weight: bold;*/
        margin: 2px 0px 0px 10px;
        letter-spacing: 1px;
        text-align: left;
    }

.precinct-results-databox2 {
    width: 56.8%;
    color: #333333;
}

    .precinct-results-databox2 h1 {
        display: block;
        font-size: 1em;
        text-transform: uppercase;
        font-weight: bold;
        /*margin:5px 5px 5px 5px;*/
        letter-spacing: 1px;
        text-align: center;
        color: #333333;
    }

.precinct-results-databox3 {
    width: 11.2%;
    color: #333333;
}

    .precinct-results-databox3 h1 {
        display: block;
        font-size: .825em;
        /*text-transform: uppercase;*/
        /*font-weight: bold;*/
        margin: 10px 5px 0px 10px;
        letter-spacing: 1px;
        text-align: center;
        color: #333333;
    }

.precinct-results-databox4 {
    width: 32%;
    color: #333333;
    min-height: 10px;
    border-bottom: 0px solid #CCCCCC;
}

.precinct-results-databox5 {
    width: 57.5%;
    color: #333333;
    /*min-height:58px;*/
    border-bottom: 0px solid #CCCCCC;
}

    .precinct-results-databox5 h2 {
        display: block;
        font-size: .825em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 7px 5px 10px 10px;
        letter-spacing: 1px;
        text-align: right;
        color: #333333;
    }

.precinct-results-databox6 {
    width: 10%;
    color: #333333;
    min-height: 30px;
    margin-right: 10px;
    outline: 1px solid #159ED4;
}

    .precinct-results-databox6 h1 {
        display: block;
        font-size: 0.875em;
        /*text-transform: uppercase;*/
        font-weight: bold;
        margin: 8px 0 0 0;
        letter-spacing: 1px;
        text-align: center;
        color: #333333;
        padding-top: 0;
    }

.precinct-results-databox7 {
    width: 11.2%;
    color: #333333;
}

    .precinct-results-databox7 h1 {
        display: block;
        font-size: .825em;
        /*text-transform: uppercase;*/
        /*font-weight: bold;*/
        margin: 5px 5px 0px 10px;
        letter-spacing: 1px;
        text-align: center;
        color: #333333;
    }

.county-results-odd {
    padding: 0;
    margin: 4px auto;
    min-height: 40px;
    background-color: #EFEFEF;
    display: flex;
    align-items: center;
}

    .county-results-odd h1 {
        display: block;
        font-size: 1.2em;
        /*text-transform:uppercase;*/
        font-weight: bold;
        margin: 0px 0px 0px 10px;
        letter-spacing: 1px;
        text-align: left;
        color: #333333;
        padding: 0;
        width: 100%;
    }

.county-results {
    padding: 0;
    margin: 4px auto;
    min-height: 40px;
    height: 40px;
    background-color: #969696;
    display: flex;
    align-items: center;
    border: 1px solid #000000;
}

    .county-results h1 {
        display: block;
        font-size: 1.2em;
        /*text-transform:uppercase;*/
        font-weight: bold;
        margin: 0px 0px 0px 10px;
        letter-spacing: 1px;
        text-align: left;
        color: #333333;
        padding: 0;
        width: 100%;
    }

.county-results-followbox {
    width: 49%;
    color: #333333;
    margin: 0 auto;
}

.county-results-reporting {
    color: #333333;
    /*margin:0 auto;
	padding-top:4px;*/
    text-transform: uppercase;
    text-align: right;
    font-weight: 700;
    width: 56.8%;
    margin: 0 !important;
}

.county-name {
    float: left;
    width: 32%;
}

.precinct-county-header {
    background-color: #EFEFEF;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    text-transform: uppercase;
    display: inline-block;
}

    .precinct-county-header h1 {
        font-size: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 7px 0px 5px 10px;
        letter-spacing: 2px;
        display: inline-block;
        width: 28%;
    }

    .precinct-county-header h2 {
        font-size: .825em;
        text-transform: uppercase;
        margin: 17px 10px 5px 0px;
        color: #333333;
        display: inline-block;
        text-align: right;
        width: 27%;
    }

    .precinct-county-header h3 {
        font-size: .825em;
        margin: 10px 0px 5px 10px;
        letter-spacing: 1px;
        display: inline-block;
        width: 40%;
    }

.precinct-map3 {
    /*background: #FFFFFF;
    float: left;
    width: 100%;
    font-size: 14px;*/
    width: 100%;
    margin: 0 auto;
    color: #333333;
}

.precinct-map2 {
    width: 100%;
}

.precinct-legend-info {
    text-align: center;
}

.precinct-legend-header {
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 3px;
    padding-bottom: 3px;
    margin-left: 5px;
}

.precinct-map1 {
    color: #333333;
    min-height: 38px;
    width: 100%;
}

.precinct-county-info {
    margin-bottom: 5px;
}

    .precinct-county-info a:link {
        color: blue;
        text-decoration: underline;
    }

    .precinct-county-info a:visited {
        color: blue;
        text-decoration: underline;
    }

.precinct-no-selection {
    text-align: right;
    /*padding: 3px 5px 0 0;*/
    color: #333333;
    display: inline-block;
    /*margin: 7px 10px 5px 10px;*/
    font-weight: bold;
    width: 67%;
}

input.button-precinct-results-countyresults {
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    font-weight: bold;
    width: 200px;
    color: #FEFEFE;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 100%;
    text-align: center;
    background-color: #194573;
    height: 35px;
    border: 0px solid white;
    padding: 8px 0 8px 0px;
    margin: 0 auto;
    -webkit-appearance: none;
    display: inline-block;
}

    input.button-precinct-results-countyresults:hover {
        color: #000000;
        background-color: #FFFFFF;
        cursor: pointer;
    }

/*  END of Expand Down Menu Maps/Results  */

.no-tracked h1 {
    text-align: center;
    padding: 8px 0;
}


.bottom-bluebar {
    background-color: #25D1C8;
    height: auto;
    min-height: 20px;
}

.bottom-graybar {
    background-color: #C3232D;
    height: auto;
    min-height: 35px;
}


/*  START of Inside Page CSS  */

.county-identifier {
    background-color: #2E4D8A;
    width: 100%;
    margin: 5px 0 0 0;
    text-align: center;
    font-size: 1.4em;
    color: white;
    overflow: auto;
}

.county-identifier-name {
    text-transform: uppercase;
    /*padding-left: 10px;*/
    margin: 0 0.16% 0 0.16%;
    font-weight: bold;
    letter-spacing: 2px;
    width: 33%;
    float: left;
    display: flex;
    height: 80px;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
}

.display-results-box-wrapper {
    background-color: #EFEFEF;
    height: auto;
    width: 100%;
    margin-top: 1px;
}

.recount-wrapper {
    border: 3px solid #A9372C;
    background-color: #FFFD38;
    width: calc(100% - 6px);
}
.recount-text {
    color: #D40B27;
    padding-left: 4px;
    letter-spacing: 1px;
    font-size: 20px;
}
.recount {
    font-size: .8em;
    color: #D40B27;
    text-transform: none;
    position: absolute;
    bottom: 0;
    width: 200px;
    text-align: center;
}

.recount-flag {
    padding-left: 3px;
    height: 15px;
    width: 15px;
}

.display-results-box-a {
    margin-bottom: 10px;
}

.display-results-box-b {
    width: 32%;
    height: 45px;
    padding: 0px 0 0 10px;
    position: relative;
}

.follow-checkbox {
    width: auto;
    position: absolute;
    top: 0;
}

.display-results-box-c {
    width: 54%;
    text-transform: uppercase;
    text-align: right;
    font-weight: 700;
}

.display-results-box-d {
    width: 32%;
    padding: 0px 0 0 10px;
}

    .display-results-box-d h1 {
        text-transform: uppercase;
        font-size: 1em;
        /*font-weight: 700;*/
        margin: 4px 0 0 0;
        padding: 0;
        letter-spacing: 1px;
    }

    .display-results-box-d h2 {
        text-transform: none;
        font-size: .875em;
        /*font-weight: 700;*/
        margin: 4px 0 0 0;
        padding: 0;
        letter-spacing: 1px;
    }

.display-results-box-e {
    width: 56.8%;
}

    .display-results-box-e h1 {
        text-transform: none;
        font-size: .875em;
        font-weight: 700;
        margin: 4px 0 4px 0;
        padding: 0;
        letter-spacing: 1px;
        text-align: center;
    }

.display-results-box-f {
    width: 10%;
}

    .display-results-box-f h1 {
        text-transform: none;
        font-size: .875em;
        margin: 0 auto;
        letter-spacing: 1px;
        text-align: center;
        /*font-weight: 700;*/
        padding: 23px 0 0 0px;
        color: #808080;
    }

.display-results-box-totalvotes {
    width: 89.8%;
}

    .display-results-box-totalvotes h2 {
        text-transform: uppercase;
        font-size: .875em;
        font-weight: 700;
        margin: 8px 10px 0px 0;
        padding: 0;
        letter-spacing: 1px;
        text-align: right;
    }

.display-results-box-total {
    width: 10%;
    outline: 1px solid #159ED4;
}

    .display-results-box-total h2 {
        text-transform: none;
        font-size: .875em;
        margin: 0 auto;
        letter-spacing: 1px;
        text-align: center;
        font-weight: 700;
        margin: 8px 0px 5px 0px;
    }

.display-results-box-g {
    width: 10%;
    float: right;
    margin-right: 15px;
}
.winner-icon {
    position: relative;
    top: 5px;
    margin: -5px 3px 0 -2px;
}

.export-box {
    float: left;
}

.share-box {
    float: left;
}

.display-results-box-h {
    width: auto;
}

hr {
    border-top: 1px solid #CCCCCC;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
    width: 100%;
    text-align: left;
    margin: 5px 0px 5px 0px;
    padding: 0;
}

input[type=checkbox].css-checkbox {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

    input[type=checkbox].css-checkbox + label.css-label {
        padding-left: 32px;
        height: 26px;
        display: inline-block;
        line-height: 26px;
        background-repeat: no-repeat;
        background-position: 0 0;
        font-size: 1em;
        font-weight: 700;
        text-transform: uppercase;
        vertical-align: middle;
        cursor: pointer;
    }

    input[type=checkbox].css-checkbox:checked + label.css-label {
        background-position: 0 -26px;
    }

label.css-label {
    background-image: url(/Images/checkbox.png);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    /*-khtml-user-select: none;*/
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.doughnut-legend {
    display: flex;
    height: 98px;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
}

    .doughnut-legend h1 {
        font-size: 0.825em;
        text-transform: none;
        padding: 0;
        margin: 0 0 5px 20px;
    }

.dough-inner {
    margin: -42px 0 0 0;
    width: 68px;
    position: relative;
}

    .dough-inner h1 {
        font-size: 12px;
        text-align: center;
        color: #FFFFFF;
        padding: 0;
    }

.turnout-results-box-b {
    /*width: 20%;*/
    width: 68px;
    height: 68px;
    margin: 15px 5px;
}

.turnout-precinct-legend {
    width: 177px;
    padding: 0;
    margin: 0;
}

.turnout-results-box-c {
    /*width: 20%;*/
    width: 68px;
    height: 68px;
    margin: 15px 5px;
}

.turnout-turnout-legend {
    width: 230px;
    /*padding-top: 6px;*/
    margin: 0;
}

.turnout-results-box-d {
    width: 15%;
}

.turnout-ballot-legend {
    width: 20%;
}

.county-precinct-results {
    width: 33%;
    float: left;
    margin: 0 0.16% 0 0.16%;
}

.county-precinct-canvas {
    float: left;
}

.county-precinct-legend {
    width: 75%;
    height: 80px;
    float: left;
    font-size: .875em;
}

    .county-precinct-legend h1 {
        color: white;
        font-size: .75em;
        font-weight: normal;
        text-transform: none;
        padding: 0 10px 0 30px;
    }

.county-turnout-results {
    width: 33%;
    float: left;
    margin: 0 0.16% 0 0.16%;
}

.county-turnout-canvas {
    /*width: 160px;
    height: 80px;*/
    float: left;
}

.county-turnout-legend {
    width: 75%;
    height: 80px;
    float: left;
    font-size: .875em;
    color: white !important;
}

    .county-turnout-legend h1 {
        color: white;
        font-size: .75em;
        font-weight: normal;
        text-transform: none;
        margin: 0;
        padding: 3px 10px 2px 30px;
    }

.county-doughnut-legend {
    display: flex;
    height: 80px;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
}

.county-dough-inner {
    margin: -57px 5px 0px 0px;
    width: 100px;
    float: right;
}

    .county-dough-inner .int {
        font-size: 0.8em;
        letter-spacing: -1px;
    }

    .county-dough-inner .dec {
        font-size: 0.5em;
    }    
#pnlResultsHeader, #pnlRecount {
    margin: 10px 0 0;
    padding: 10px 0;
    clear: both;
}
.wrapper-results-header {
    margin: 15px 15px 0;
    color: #FFFFFF;
    background-color: #2E4D8A;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.3);
}
.county-head {
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.3);
}
/*  END of Inside Page CSS  */

/*  START of Political Party Colors  */
.Independent {
    color: #424B5B;
}
.Republican {
    color: #9C4A3D;
}

.Democrat {
    color: #006699;
}

.Democratic {
    color: #006699;
}

.Non-Partisan {
    color: #3A8F6B;
}

.Constitution {
    color: #737373;
}

.Libertarian {
    color: #A16915;
}

.disclaimer {
    width: 952px;
    display: inline-block;
    text-align: center;
    text-transform: none;
    padding: 8px 36px;
    font-size: 17px;
}
.turnout-disclaimer {
    width: 952px;
    display: inline-block;
    /*text-align: center;*/
    text-transform: none;
    padding: 8px 36px;
    font-size: 17px;
}

.resource-links {
    text-align: center;
}

.results-gridbox-links a:link {
    /*width: 100%;
    height: 100%;*/
    background-color: #194573;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-gridbox-links a:visited {
    /*width: 100%;
    height: 100%;*/
    text-decoration: none;
    background-color: #194573;
}

.results-gridbox-links a:hover {
    /*width: 100%;
    height: 100%;*/
    background-color: #FFFFFF;
    text-decoration: none;
}
.results-gridbox-links a:hover h1, .results-gridbox-links a:hover h2 {
    color: #000000;
}

.results-gridbox-links a:active {
    /*width: 100%;
    height: 100%;*/
    text-decoration: none;
}
.results-gridbox-links a:hover:active h1 {
    width: 93.77px;
    height: 95px;
    color: #FFFFFF;
    background-color: #194573;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*  SECTIONS  */
.section {
    clear: both;
    padding: 0px;
    margin: 0px;
}
/*  COLUMN SETUP  */
.col {
    display: block;
    float: left;
    /*margin: 0% 0 0% 0%;*/
}

.col-precinct-results {
    display: block;
    float: left;
    margin: 0px auto;
}

.col-county-results {
    display: block;
    float: left;
    margin: 10px 0 0 10px;
}


.county-reporting {
    width: 100%;
}

.county-reporting-leftcol {
    width: 432px;
}

.county-reporting-rightcol {
    width: 70px;
}

.county-reporting-col1 {
    width: 225px;
    margin: 10px 0 0;
}

/*.county-reporting-col2 {
    width: 0;
}*/

.county-reporting-col3 {
    width: 140px;
    float: right;
}

.county-reporting-col4 {
    width: 70px;
}

    .county-reporting-col4 img {
        margin-top: 100%;
    }

.county-chart {
    width: 66px;
    height: 66px;
    margin-top: 20%;
}

.county-reporting h1 {
    display: block;
    font-size: 1em;
    text-transform: uppercase;
    margin: 0px 0px 0px 10px;
    letter-spacing: 1px;
    text-align: left;
    padding: 0 0 0 0;
}

.county-reporting h2 {
    display: block;
    font-size: .925em;
    text-transform: none;
    margin: 0px 0px 0px 10px;
    letter-spacing: 1px;
    text-align: left;
}

.county-reporting h3 {
    display: block;
    font-size: .925em;
    text-transform: none;
    font-weight: bold;
    margin: 0px 0px 0px 10px;
    letter-spacing: 1px;
    text-align: left;
    color: #808080;
}

.county-reporting h4 {
    display: block;
    font-size: .925em;
    text-transform: uppercase;
    font-weight: bold;
    margin: 7px 0px 5px 10px;
    letter-spacing: 1px;
    text-align: right;
}

.county-reporting h5 {
    display: inline-flex;
    font-size: 1em;
    margin: 7px 0px 5px 0px;
    letter-spacing: 1px;
    text-align: right;
}

    .county-reporting h5 strong {
        min-width: 60px;
        padding-right: 7px;
    }

    .county-reporting h5 span {
        min-width: 60px;
        padding-right: 7px;
    }

.county-legend {
    background-color: #EFEFEF;
    width: 100%;
    height: 40px;
    margin: 0 auto;
}

    .county-legend h1 {
        display: inline-block;
        font-size: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 7px 0px 5px 10px;
        letter-spacing: 2px;
    }

.county-legend-info {
    margin-bottom: 15px;
}

    .county-legend-info h1 {
        display: block;
        font-size: 1em;
        text-transform: uppercase;
        margin: 0px 0px 0px 0px;
        letter-spacing: 1px;
        text-align: left;
        max-width: 175px;
    }

    .county-legend-info h2 {
        display: block;
        font-size: .925em;
        text-transform: none;
        margin: 0px 0px 0px 10px;
        letter-spacing: 1px;
        text-align: left;
    }

    .county-legend-info h3 {
        display: block;
        font-size: .925em;
        text-transform: none;
        margin: 0px 0px 0px 0px;
        letter-spacing: 1px;
        text-align: left;
        padding: 0 0 0 10px;
    }

.legend-col1 {
    width: 20px;
    padding-top: 10px;
    margin-left: 20px !important;
    margin-right: -10px !important;
}

/*.legend-col2 {
    width: 216px;
}*/

.legend-col3 {
    width: 20px;
    padding-top: 10px;
    margin-right: -10px !important;
}

/*.legend-col4 {
    width: 216px;
}*/

.col-turnout-results {
    display: block;
    /*float: left;*/
    margin: 10px 0px 0 5px;
}
.turnout-results-box-a {
    width: 247px;
    height: 98px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
    .turnout-results-box-a h1 {
        margin: 0;
        padding: 0 0 0 30px;
        font-size: 24px;
        font-weight: bold;
    }

.turnout-center {
    display: flex;
}

.turnout-value-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.col-elec-results-grid {
    display: block;
    float: left;
    margin: 2% 2% 2% 2%;
}

/*.col:first-child {
    margin-left: 0;
}*/
/*  GROUPING  */
.group:before, .group:after {
    content: "";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1; /* For IE 6/7 */
}
/*  GRID OF THREE  */
.span_3_of_3 {
    width: 100%;
}

.span_2_of_3 {
    width: 66.66%;
}

.span_1_of_3 {
    width: 33.33%;
}

.precinct-fully {
    padding-right: 5px;
    /*border-right: 1px solid #159ED4;*/
    float: left;
    margin-left: 15%;
}

.precinct-separator {
    color: #159ED4;
    float: left;
}

.precinct-partial {
    padding-left: 5px;
    /*border-left: 1px solid #159ED4;*/
    float: left;
    margin-right: 15%;
}

.animate-position {
    /*padding: 2px;*/
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.desktop {
    display: inherit;
}

.mobile {
    display: none;
}

.animate-position .circle {
    position: relative;
    width: 105px;
    height: 104px;
}

.animate-position .percent {
    font-size: 25px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 35px;
    width: 100%;
    color: #FFFFFF;
}

.dough-percent {
    font-size: 25px;
    left: 0;
    position: relative;
    text-align: center;
    bottom: 95px;
    width: 100%;
    color: #FFFFFF;
}

.animate-position .dec {
    font-size: 15px;
}

.footer {
    text-align: right;
    text-transform: uppercase;
    margin-top: 10px;
}

    .footer a {
        color: gray;
    }

.map {
    height: 412px;
    width: 100%;
}

.turnout-legend {
    display: block;
    float: left;
    margin: 10px 1%;
    /*padding-top: 10px;*/
    /*width: 13%;*/
    width: 115px;
}
.turnout-legend-icons {
    display: flex;
    justify-content: center;
}

.close-icon {
    border: 1px solid transparent;
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
    outline: 0;
    cursor: pointer;
    position: relative;
    padding: 0px;
}

    .close-icon:after {
        content: "x";
        display: block;
        width: 15px;
        height: 15px;
        position: absolute;
        z-index: 1;
        top: 8px;
        bottom: 4px;
        margin: auto;
        color: gray;
        font-weight: normal;
        font-size: 12px;
        cursor: pointer;
    }
    .close-icon-side {
    border: 1px solid transparent;
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
    outline: 0;
    cursor: pointer;
    position: relative;
    padding: 0px;
}

    .close-icon-side:after {
        content: "x";
        display: block;
        width: 15px;
        height: 15px;
        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 4px;
        margin: auto;
        color: gray;
        font-weight: normal;
        font-size: 12px;
        cursor: pointer;
        right: 5px;
    }
/*.textboxSmallTransparent:not(:valid) ~ .close-icon {
	display: none;
}*/
.county-export-list {
    background: #FFFFFF;
    /*width: 99%;*/
    /*height: 410px;*/
    border: 1px solid #C6C6C6;
    box-shadow: 0px 0px 2px 2px rgba(128, 128, 128, .6);
    margin: 10px 10% 0 10%;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: auto;
    display:flex;
    flex-direction: row;
    justify-content: space-around;
}

.county-export-listitem {
    /*width: 15%;*/
    /*float: left;
    margin: 0 8% 0 9%;*/
}
.county-export-listitem a:hover {
    text-decoration: underline;
}
.statewide-export-listitem a:hover {
    text-decoration: underline;
}
.county-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    list-style-type: none;
    /*width: calc(33.33% - 10px);*/
    /*float: left;*/
}
.media-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    list-style-type: none;
    float: left;
}
#fader {
    opacity: 0.8;
    background: black;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    display: none;
    z-index: 10000;
}
#fader h1 {
    color: white;
    line-height: 200px;
    margin-top: -100px;
    position: absolute;
    top: 41%;
    width: 100%;
    text-align: center;
}
.winner {
    font-weight: bold;
}
.provisional-results-wrapper {
    background-color: #FFFFFF;
    height: auto;
    width: 100%;
    margin-top: 1px;
}
.provisional-results-box-header {    
    width: 540px;
    padding-left: 20px;
}
.provisional-results-box-header h1 {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 114px;
    font-size: 24px;
    font-weight: bold;
}

.sw-dough-inner {
    margin: -45px 0 0 0;
    width: 68px;
    position: relative;
}

    .sw-dough-inner h1 {
        font-size: 16px;
        text-align: center;
        color: #FFFFFF;
        letter-spacing: 1px;
        padding: 0;
    }
    .sw-dough-inner .dec {
        font-size: 12px;
    }
.provisional-chart-wrapper {
    width: 68px;
    height: 68px;
    margin: 15px 0;
}
.provisional-results-a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 98px;
    width: 185px;
}
.provisional-ballots {
    font-size: 16px;
    font-weight: bold;
    text-transform: none;
}
.provisional-results-b {
    width: 150px;
    padding: 0 0 0 27px;
    height: 98px;
    display: flex;
    align-items: center;
}
.provisional-precinct-header {
    background-color: #000000;
    height: 27px;
    font-size: 17px;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.provisional-precinct-header span {
    /*height: 27px;*/
}
.odd, .even {
    min-height: 27px;
    text-transform: none;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
}
.odd {
    background-color: #FFFFFF;
}
.even {
    background-color: #ECECEC;
}
.county-precinct {
    width: 510px;
    min-height: 5px;
    display: inline-block;
    padding: 0 0 0 30px;
}
.county-cast {
    width: 140px;
    display: inline-block;
    text-align: right;
}
.county-counted {
    width: 170px;
    display: inline-block;
    text-align: right;
    padding: 0 0 0 105px;
}
.provisional-party-header {
    width: 510px;
    padding: 0 0 0 30px;
    display: inline-block;
}
.provisional-button-wrapper {
    float: right;
    padding: 0 7px 7px 0;
    height: 91px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-end;
}
input.provisional-precinct {
    position: relative;
    top: 35px;
    letter-spacing: 1px;
}
.prov-export {
    top: 7px;
}
.provisional-results-county {
    height: 98px;
    width: 375px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.provisional-results-county h1 {
    padding: 0 0 0 30px;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}
a.provisional-countylink {
    font-size: 14px;
    color: #A90D11;
    text-transform: none;
    padding: 0 0 0 30px;
    width: 90px;
}
a.provisional-countylink:hover {
    font-weight: bold;
    text-decoration: underline;
}
.provisional-totals-wrapper {
    border-top: 2px solid #ECECEC;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: bold;
    height: 27px;
}
.provisional-totals {
    width: 200px;
    padding: 0 0 0 340px;
}

.vt-ul > li{
    padding:5px;
}
.vt-ul > li >ul{
    padding-left:40px;
}
.vt-ul > li > ul > li{
    padding:5px 5px 0px 5px;
}