/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,17): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(28,22): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(33,21): run-time error CSS1039: Token not allowed after unary operator: '-site-max-width'
(37,21): run-time error CSS1039: Token not allowed after unary operator: '-site-max-width'
(61,21): run-time error CSS1039: Token not allowed after unary operator: '-site-max-width'
(69,23): run-time error CSS1039: Token not allowed after unary operator: '-heading-font'
(89,17): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(92,23): run-time error CSS1039: Token not allowed after unary operator: '-heading-font'
(117,22): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(121,28): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(127,23): run-time error CSS1039: Token not allowed after unary operator: '-heading-font'
(166,21): run-time error CSS1039: Token not allowed after unary operator: '-site-max-width'
(175,21): run-time error CSS1039: Token not allowed after unary operator: '-site-max-width'
(224,21): run-time error CSS1039: Token not allowed after unary operator: '-site-max-width'
(232,22): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(277,30): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(406,35): run-time error CSS1039: Token not allowed after unary operator: '-menu-font'
(475,21): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(494,26): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(507,25): run-time error CSS1039: Token not allowed after unary operator: '-site-max-width'
(672,27): run-time error CSS1039: Token not allowed after unary operator: '-heading-font'
(675,21): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(693,26): run-time error CSS1039: Token not allowed after unary operator: '-site-blue-alt'
(707,26): run-time error CSS1039: Token not allowed after unary operator: '-site-blue'
(721,31): run-time error CSS1039: Token not allowed after unary operator: '-heading-font'
(728,27): run-time error CSS1039: Token not allowed after unary operator: '-heading-font'
 */
:root {
    --site-max-width: 968px;
    --site-blue: #0057A4;
    --site-blue-alt: #80ABD2;
    --OLDheading-font: 'Libre Baskerville', serif;
    --heading-font: "eurostile", sans-serif;
    --menu-font: "eurostile", sans-serif;
}

h1 {
    color:white;
    margin-bottom:0;
    padding:4px;
    font-size:1.8rem
}

.blue-text {
    color: var(--site-blue)
}

.logo {
    transition: all 0.3s ease-in-out;
    padding-left: 1rem;
}


.page-container {
    background: var(--site-blue)
}

.page-body {
    background: white;
    max-width: var(--site-max-width);
}

#carousel {
    max-width: var(--site-max-width);
    margin: 0 auto
}

    #carousel .carousel-indicators {
        display: none
    }

@media (min-width: 577px) {

    #carousel .carousel-indicators {
        margin-bottom: 0px;
        display: flex
    }

        #carousel .carousel-indicators button {
            height: 12px;
            width: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
}

.heading .container {
    max-width: var(--site-max-width);
}


h2 {
    color: black;
    letter-spacing: 3px;
    margin-bottom: 18px;
    font-family: var(--heading-font);
    font-size: 2rem
}

@media (min-width: 577px) {

    .heading {
        padding: 1.5rem 0 1rem
    }

        .heading h2 {
            color: black;
            font-size: 2.3rem;
            margin-left: 0;
            text-align: center;
        }
}

h4 {
    text-transform: uppercase;
    color: var(--site-blue);
    margin-bottom: 0;
    padding: 0;
    font-family: var(--heading-font);
    font-size: 1rem
}

#whereToBuy h4 {
    margin-bottom: 1rem
}

#whereToBuy a {
    text-decoration: none;
    color: black
}

.sub-page {
    margin-top: -3.5rem;
    background: white;
    padding: 3.5rem 2rem
}

h3 {
    color: black;
    font-size: 1.4rem
}

.bl-btn {
    background: var(--site-blue);
    color: white;
    text-transform: uppercase;
    padding: .5rem 4rem;
    border: solid 1px var(--site-blue);
    border-radius: 0;
}

.ezi-btn-lg {
    padding: 1rem 1.5rem 0.9rem;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    box-shadow: rgba(0,0,0,0.2) 2px 2px;
    border-radius: 0;
}


.header-top {
    background: URL(/includes/img/header-bg.png) repeat-x;
    display: block;
    position: relative;
}

.header-bottom {
    background: black;
    height: 14px;
    display: block;
    position: relative;
}

    .header-bottom::before {
        content: '';
        height: 9px;
        display: block;
        background-color: #B3B3B3
    }

    .header-bottom::after {
        content: '';
        height: 8px;
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: #181816
    }

@media (min-width: 776px) {

    .logo img {
        width: var(--site-max-width);
        max-width: 80%
    }
}


@media (min-width: 992px) {

    .logo img {
        width: var(--site-max-width);
        max-width: 100%
    }


    .header-top {
        background: url(/includes/img/header-bg.png);
        height: 162px;
        display: block;
        position: relative;
    }

    /* .header-top::before {
            content: '';
            height: 20px;
            display: block;
            background-color: white
        }*/



    .header-bottom {
        height: 8px;
        display: block;
        position: relative;
    }
}

#mainNav {
    width: 100%;
    padding: 18px;
}

    #mainNav .dropdown-item {
        background: black;
        text-align: center
    }

        #mainNav .dropdown-item:hover {
            background: #202020;
            color: white !important
        }


.navbar {
    padding: 0
}

.navbar-nav {
    max-width: var(--site-max-width);
}

#mainNav li a {
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    padding: 5px 20px;
    background: var(--site-blue);
    margin-right: 5px;
}

#mainNav li:last-child a {
    margin-right: 0
}

#mainNav li {
    position: relative
}

#navWrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: white;
    min-height: 80px
}
@media (min-width: 577px) {
    #navWrapper {
        min-height: 88px
    }
}

        #navWrapper .nav-item {
            background: white;
        }

            #navWrapper .nav-item a {
                padding: 12px 20px
            }

    #navPlaceholder {
        height: 74px
    }


    @media (max-width: 577px) {
        .logo {
            max-width: 340px
        }

        #mainNav {
            background: var(--site-blue)
        }

            #mainNav li a {
                border: 0 !important;
                margin-right: 0;
                font-size: 1.3rem
            }

            #mainNav .dropdown-menu a {
                background: #00417B
            }
    }

    @media (min-width: 577px) {
        #navPlaceholder {
            height: 120px
        }

        #navWrapper .nav-item a {
            padding: 6px 22px;
            white-space: nowrap
        }

        #navWrapper .nav-item {
            background: white;
            padding: 0;
        }


        #navWrapper nav {
            background: rgba(255,255,255,0.95);
        }

        .is-scrolled #mainNav {
            padding-bottom: 10px
        }

        .is-scrolled .logo img {
            height: auto
        }

        #navWrapper {
            position: static;
            z-index: 10;
            background: white
        }

        #navPlaceholder {
            height: 0
        }
    }

    @media (min-width: 992px) {
        #mainNav li a {
            text-transform: uppercase;
            font-size: 18px;
            font-weight: 500;
            padding: 6px 22px;
        }
    }





    @media (min-width: 821px) {
        #mainNav li a {
            text-transform: uppercase;
            font-size: 20px;
            font-weight: 500;
            padding: 6px 20px;
        }

        .is-scrolled {
            position: sticky !important;
            top: -250px !important;
            z-index: 100;
            opacity: 0.95
        }

            .is-scrolled #mainNav li a {
                padding: 1px 35px;
                font-size: 1rem;
            }


        #navWrapper.is-scrolled nav, #navWrapper.is-scrolled .nav-item {
            /*    background: RGBA(225, 18, 12,0.95)*/
        }

            #navWrapper.is-scrolled nav li a {
                color: white
            }
    }


    @media (min-width: 1181px) {
        #mainNav li a {
            text-transform: uppercase;
            font-weight: 400;
            padding: 6px 22px;
        }

        .is-scrolled {
            position: sticky !important;
            top: -380px !important;
            z-index: 100;
            opacity: 0.95
        }

            .is-scrolled #mainNav li a {
                padding: 6px 30px;
                font-size: 1.4rem;
            }

        #navWrapper.is-scrolled nav, #navWrapper.is-scrolled .nav-item {
            background: RGBA(255, 255, 255,0.1)
        }

            #navWrapper.is-scrolled nav li a {
                color: white
            }

        #mainNav li {
            padding: 0
        }

            #mainNav li a {
                font-family: var(--menu-font);
                font-size: 1.55rem;
                letter-spacing: 1px;
                font-weight: 400;
            }

                #mainNav li a.dropdown-toggle.nav-link.show, #mainNav li a.dropdown-toggle.nav-link.show a {
                    color: white;
                }


        li.nav-item {
            position: relative
        }
    }

    .dropdown-toggle.nav-link.show {
        background: blue;
        color: white
    }

    .dropdown-menu[data-bs-popper] {
        margin-top: 0;
        border: 0
    }


    #mainNav .dropdown-menu {
        border-radius: 0;
        min-width: 260px;
        padding: 0;
        margin-left: -2px
    }

    #mainNav .dropdown-toggle.nav-link.show {
        background: #00315C;
    }



    #mainNav .dropdown-menu a {
        color: white;
        border-right: solid 2px white;
        border-bottom: solid 1px white;
        border-left: solid 2px white;
        padding: 4px 14px;
    }

        #mainNav .dropdown-menu a:first-of-type {
            border-top: solid 2px white;
        }
        /*           #mainNav .dropdown-menu a.last {
                border-bottom: 0;
            }
*/
        #mainNav .dropdown-menu a:hover {
            color: black
        }

    #mainNav .nav-link:hover {
        background: black;
        color: white
    }

        #mainNav .nav-link:hover::after {
            background: #181816;
        }

    #mainNav .dropdown-toggle.nav-link.show a {
        color: var(--site-blue);
    }


    #find-by-part {
        background: #C7C7C7;
        font-size: 18px
    }

        #find-by-part h4 {
            color: black;
        }

    a.lnk {
        color: #E1120C;
        text-transform: uppercase;
    }

    footer {
        background: var(--site-blue);
        color: white;
        margin: 0 auto;
        padding: 2rem 1rem
    }

    @media (min-width: 577px) {
        footer {
            padding: 1.5rem
        }
    }

    footer .container {
        max-width: var(--site-max-width);
    }

    footer ul {
        list-style: none
    }

        footer ul li a {
            color: white;
            text-transform: uppercase;
            text-decoration: none;
            font-size: 12px
        }

    footer .nav-link {
        padding: 8px 6px
    }

        footer .nav-link:after {
            content: "|";
            width: 1px;
            height: 26px;
            color: white;
            padding-left: 14px;
        }

        footer .nav-link:last-of-type::after {
            content: ""
        }

    @media (min-width: 577px) {

        .dropdown-toggle.nav-link.show {
            background: black;
            color: white
        }

        footer ul li a {
            color: white;
            text-transform: uppercase;
            text-decoration: none;
            font-size: 14px
        }

        footer .nav-link {
            padding: 10px 8px
        }
    }

    footer .nav-link:nth-child(1) {
        padding-left: 0
    }

    footer ul li a:hover {
        color: white;
        opacity: 0.9
    }


    .carousel-control-next, .carousel-control-prev {
        opacity: 0.98
    }

    .carousel-control-next-icon, .carousel-control-prev-icon {
        border: solid 3px black;
        border-radius: 50%;
        background-color: rgba(255,255,255,1);
        color: black;
        padding: 14px;
        background-size: 20px;
    }

    @media (min-width: 577px) {
        .carousel-control-next-icon, .carousel-control-prev-icon {
            padding: 18px;
            background-size: 20px;
            border: solid 4px black;
        }
    }

    .carousel-control-next-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .carousel-control-prev-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    }


    .carousel-control-next, .carousel-control-prev {
        width: 50px;
        color: #fff;
        text-align: center;
        opacity: .75;
        transition: opacity .15s ease;
    }

    @media (min-width: 577px) {

        .carousel-control-next, .carousel-control-prev {
            width: 26px;
            margin-right: -14px
        }

        .carousel-control-prev {
            margin-left: -14px
        }
    }





    #tbl-Universal.table-striped > tbody > tr:nth-of-type(odd) > * {
        background-color: white;
    }

    #tbl-Universal.table-striped > tbody > tr:nth-of-type(even) > * {
        background-color: #EFB7B8;
    }

    #tbl-Universal.table-striped td {
        border-left: 1px solid #181816;
        border-right: 1px solid #181816;
        border-bottom: 0;
        font-size: 14px;
        padding-left: 1rem;
        text-align: center
    }

    .table-striped td:nth-child(1) {
        font-weight: bold;
        text-align: left;
        max-width: 70px
    }


    .navbar-toggler {
        position: absolute;
        right: 7px;
        top: -61px;
        color: white;
        z-index: 10;
        border: solid 1px #D0D0D0;
        background: #80A6CC;
        border: 0
    }

    @media (min-width: 577px) and (max-width: 820px) {
        .navbar-toggler {
            top: -65px;
        }
    }


    .navbar-toggler:hover {
        background-color: #616161
    }


    .copyright {
        font-size: 10px
    }

    .helpline {
        font-family: var(--heading-font);
        letter-spacing: 2px;
        font-size: 1.5rem;
        color: var(--site-blue);
        margin-bottom: 2rem;
        text-align: center
    }

    @media (min-width: 756px) {

        .helpline {
            letter-spacing: 2px;
            font-size: 4rem;
        }
    }

    #js-part-finder-vehicles tr {
        cursor: pointer
    }

    tr.selected {
        background: var(--site-blue-alt)
    }

    #fb-table img {
        width: 100px;
    }

    .carousel-indicators {
        background: black;
        margin: 0;
        bottom: 42px
    }

    #gallery {
        background: var(--site-blue)
    }

    #gallery-inner {
        margin: 0 auto;
        max-width: 660px;
        border: solid 8px black;
    }

        #gallery-inner h3 {
            background: black;
            color: white;
            text-align: center;
            padding: 10px 0 16px;
            font-family: var(--heading-font);
            font-size: 1.8rem;
            margin-bottom: 0
        }


    h5 {
        font-family: var(--heading-font);
    }

    #gallery-inner h5 {
        font-size: 1.7rem;
        padding-top: 7px
    }

    #gallery-inner .card {
        min-height: 160px;
        border-bottom: solid 8px black;
        border-radius: 0
    }

        #gallery-inner .card:last-of-type {
            border-bottom: 0
        }

