/* ========================================
BASE
===========================================*/

html
{
    scroll-behavior: smooth;
    height: 100vh
}

body
{
    font-family: 'Raleway', sans-serif;
    height: 100vh
}

a
{
    color: #000000
}

    a:hover
    {
        color: #BE1522
    }

/* Forms */
.form-control, .form-select
{
    border-color: #bbb
}

.form-check
{
    position: relative;
}

input[type=checkbox]
{
    background-color: #fff;
    border: 1px solid #bbb;
}

    input[type=checkbox]:checked
    {
        background-color: #000000;
        border: 1px solid #000;
    }

@media screen and (max-width: 576px)
{
    .ssl img
    {
        max-width: 70px;
        height: auto
    }
}

/* Fix for jump in scroll/JS */
.add-scroll-top-margin
{
    margin-top: 80px;
}

/* Buttons */
.btn
{
    transition: background .5s ease-out;
}

    .btn:focus, .btn.focus
    {
        outline: 0;
        box-shadow: none;
    }

    .btn.btn-black
    {
        background-color: rgba(30,30,30,1);
        color: #ffffff;
        border: none;
        font-weight: 700
    }

        .btn.btn-black:hover
        {
            background-color: rgba(0,0,0,1);
            color: #ffffff;
            border: none
        }

        .btn.btn-black:focus, .btn.btn-black.focus
        {
            background-color: rgba(0,0,0,1);
            color: #ffffff;
            border: none;
        }

    .btn.btn-red
    {
        background-color: rgba(190,21,34,1);
        color: #ffffff;
        border: none;
        font-weight: 700;
    }

        .btn.btn-red:hover
        {
            background-color: rgba(173,20,31,1);
            color: #ffffff;
            border: none
        }

        .btn.btn-red:focus, .btn.btn-red.focus
        {
            background-color: rgba(173,20,31,1);
            color: #ffffff;
            border: none;
        }

    .btn.btn-green
    {
        background-color: rgb(29, 157, 29);
        color: #ffffff;
        border: none;
        font-weight: 700;
    }

        .btn.btn-green:hover
        {
            background-color: rgb(36, 208, 36);
            color: #ffffff;
            border: none
        }

        .btn.btn-green:focus, .btn.btn-green.focus
        {
            background-color: rgb(36, 208, 36);
            color: #ffffff;
            border: none;
        }

/* ========================================
NAVBAR > MAIN
===========================================*/

#navbar-main
{
    box-shadow: 0px -4px 16px -1px rgba(0,0,0,0.25);
    background-color: #ffffff;
}

    #navbar-main .navbar-brand img.navbar-logo
    {
        max-width: 250px;
    }

    #navbar-main .navbar-toggler, #navbar-main .navbar-toggler-icon,
    #navbar-main .navbar-toggler:focus,
    #navbar-main .navbar-toggler:active,
    #navbar-main .navbar-toggler-icon:focus
    {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
    }

@media screen and (max-width: 576px)
{
    #navbar-main .navbar-brand img.navbar-logo
    {
        max-width: 175px;
    }
}

/* Fixed Nav on Scroll */

.navbar.fixed-navbar
{
    position: fixed !important;
    z-index: 99;
    width: 100%;
    transition: all .5s;
    top: 0px;
    animation-name: fixedAnim;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

    .navbar.fixed-navbar .navbar-brand img
    {
        width: 125px;
    }

@keyframes fixedAnim
{
    from
    {
        top: -200px;
    }

    to
    {
        top: 0;
    }
}

/* ========================================
NAVBAR > OFF CANVAS
===========================================*/

#offcanvasNavbar
{
    background-color: #ffffff
}

    #offcanvasNavbar .offcanvas-header .offcanvas-title img.offcanvas-logo
    {
        max-width: 150px
    }

    #offcanvasNavbar .offcanvas-body .navbar-nav .nav-item
    {
        font-size: 1.35rem;
        font-weight: 700;
        border-bottom: 1px solid #ddd
    }

        #offcanvasNavbar .offcanvas-body .navbar-nav .nav-item:last-child
        {
            font-size: 1.35rem;
            font-weight: 700;
            border-bottom: none
        }

        #offcanvasNavbar .offcanvas-body .navbar-nav .nav-item .nav-link
        {
            padding-left: .5em
        }

        #offcanvasNavbar .offcanvas-body .navbar-nav .nav-item:hover .nav-link
        {
            padding-left: .5em;
            background: #ffffff;
            color: #BE1522;
        }

        #offcanvasNavbar .offcanvas-body .navbar-nav .nav-item.dropdown .dropdown-menu
        {
            background-color: #ffffff;
            border: none
        }

            #offcanvasNavbar .offcanvas-body .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item
            {
                font-size: 1.15rem
            }

/* ========================================
HOME > HERO
===========================================*/

/* Container */
#home-hero
{
    position: relative;
    width: 100%;
    margin: auto;
    height: 500px;
    background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 59%, rgba(0, 0, 0, 0.75) 100%),url('../img/bg-home-hero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

    /* Hero */
    #home-hero #hero
    {
        width: 100%;
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

        #home-hero #hero h2
        {
            font-size: 3.5rem;
            color: #fff;
            font-weight: 900;
            text-shadow: 0px 5px 10px rgba(0,0,0,0.5);
            line-height: 1;
            margin-bottom: .25em
        }

        #home-hero #hero h3
        {
            font-size: 2.5rem;
            color: #fff;
            font-weight: 300;
            text-shadow: 0px 5px 10px rgba(0,0,0,0.5);
        }

    /* Search */
    #home-hero #hero-veh-search
    {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 450px;
        width: 80%;
        height: auto;
        background: #BE1522;
        padding: 1em;
        box-shadow: -3px 9px 34px 5px rgba(0,0,0,0.75);
        z-index: 9;
        border-radius: 10px
    }

        #home-hero #hero-veh-search select,
        #home-hero #hero-veh-search input
        {
            font-size: 1.25rem
        }

        #home-hero #hero-veh-search button.btn
        {
            border: none;
            font-size: 1.25rem
        }

        #home-hero #hero-veh-search .arrow
        {
            position: absolute;
            right: 20px;
            top: -150px;
            width: 100px;
            height: auto;
            z-index: 9
        }

@media (max-width: 992px)
{
    #home-hero #hero-veh-search
    {
        width: 100%;
        border-radius: 0px
    }

        #home-hero #hero-veh-search .arrow
        {
            display: none
        }
}

@media (max-width: 768px)
{
    #home-hero
    {
        width: 100%;
        height: auto;
        background: #000000
    }

        #home-hero #hero
        {
            height: auto;
            padding: 1em;
            background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 59%, rgba(0, 0, 0, 0.75) 100%),url('../img/bg-home-hero.jpg');
            background-position: bottom;
            background-size: cover;
            background-repeat: no-repeat;
        }

            #home-hero #hero h2
            {
                font-size: 3rem;
                color: white;
                text-align: center
            }

            #home-hero #hero h3
            {
                font-size: 2rem;
                color: white;
                text-align: center
            }

            #home-hero #hero .veh-img img
            {
                max-width: 350px;
                height: auto
            }

        #home-hero #hero-veh-search
        {
            position: relative;
            top: auto;
            height: auto;
            left: auto;
            width: 100%;
            transform: translateX(0%);
            border-radius: 0px
        }
}

@media (max-width: 576px)
{
    #home-hero #hero h2
    {
        font-size: 2rem;
        color: white;
        text-align: center
    }

    #home-hero #hero h3
    {
        font-size: 1.25rem;
        color: white;
        text-align: center
    }

    #home-hero #hero .veh-img img
    {
        max-width: 200px;
        height: auto
    }

    #home-hero #hero-veh-search select,
    #home-hero #hero-veh-search input
    {
        font-size: 1rem
    }

    #home-hero #hero-veh-search
    {
        position: relative;
        top: auto;
        height: auto;
        left: auto;
        width: 100%;
        transform: translateX(0%)
    }
}

/* ========================================
HOME > HERO (ALT VERSION)
===========================================*/

/* Container */
#home-hero__veh-search
{
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 59%, rgba(0, 0, 0, 0.75) 100%),url('../img/bg-home-hero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

    #home-hero__veh-search h2
    {
        font-size: 3rem;
        color: #fff;
        font-weight: 900;
        text-shadow: 0px 5px 10px rgba(0,0,0,0.5);
        line-height: 1;
        margin-bottom: .75em;
        text-align: center
    }

    /* Img */
    #home-hero__veh-search #hero-veh-img
    {
        height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    /* Search */

    #home-hero__veh-search #hero-search #hero-veh-search-form
    {
        position: relative;
        background: #BE1522;
        padding: 1em;
        box-shadow: -3px 9px 34px 5px rgba(0,0,0,0.75);
        border-radius: 10px
    }

        #home-hero__veh-search #hero-search #hero-veh-search-form select,
        #home-hero__veh-search #hero-search #hero-veh-search-form input
        {
            font-size: 1rem
        }

        #home-hero__veh-search #hero-search #hero-veh-search-form .form-label
        {
            color: #ffffff;
            font-weight: 700;
            font-size: 1rem
        }

        #home-hero__veh-search #hero-search #hero-veh-search-form button.btn
        {
            border: none;
            font-size: 1.25rem
        }

        #home-hero__veh-search #hero-search #hero-veh-search-form .arrow
        {
            position: absolute;
            right: -110px;
            top: 100px;
            width: 120px;
            height: auto;
            z-index: 9
        }

@media (max-width: 1200px)
{
    #home-hero__veh-search #hero-search #hero-veh-search-form .arrow
    {
        display: none
    }
}

@media (max-width: 992px)
{
    #home-hero__veh-search #hero-search #hero-veh-search-form
    {
        width: 100%;
        border-radius: 0px
    }
}

@media (max-width: 768px)
{
    #home-hero__veh-search
    {
        width: 100%;
        height: auto;
        padding: 2em .5em
    }

        #home-hero__veh-search h2
        {
            font-size: 2rem;
            margin-bottom: .75em
        }

        #home-hero__veh-search #hero-veh-img
        {
            height: auto
        }

            #home-hero__veh-search #hero-veh-img img
            {
                max-width: 350px
            }

        #home-hero__veh-search #hero-search
        {
            margin-bottom: 1em
        }

            #home-hero__veh-search #hero-search #hero-veh-search-form
            {
                position: relative;
                top: auto;
                height: auto;
                left: auto;
                width: 100%;
                transform: translateX(0%);
                border-radius: 0px
            }
}

@media (max-width: 576px)
{
    #home-hero__veh-search #hero-veh-img img
    {
        max-width: 250px
    }

    #home-hero__veh-search #hero-search #hero-veh-search-form
    {
        position: relative;
        top: auto;
        height: auto;
        left: auto;
        width: 100%;
        transform: translateX(0%)
    }

        #home-hero__veh-search #hero-search #hero-veh-search-form select,
        #home-hero__veh-search #hero-search #hero-veh-search-form input
        {
            font-size: 1rem
        }
}

/* ========================================
SHARED > SEARCH BOX
===========================================*/

/* Container */
#veh-search-container
{
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

    #veh-search-container h2
    {
        margin-top:50px;
        font-size: 2.5rem;
        color: black;
        font-weight: 900;
        font-family: Raleway;
        line-height: 1;
        margin-bottom: .75em;
        text-align: center
    }

    /* Search */

    #veh-search-container #hero-search #hero-veh-search-form
    {
        position: relative;
        background: #BE1522;
        padding: 1em;
        box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.3), 0px 12px 24px rgba(0, 0, 0, 0.2);
        border-radius: 25px
    }

        #veh-search-container #hero-search #hero-veh-search-form select,
        #veh-search-container #hero-search #hero-veh-search-form input
        {
            font-size: 1rem
        }

        #veh-search-container #hero-search #hero-veh-search-form .form-label
        {
            color: #ffffff;
            font-weight: 700;
            font-size: 1rem
        }

        #veh-search-container #hero-search #hero-veh-search-form button.btn
        {
            border: none;
            font-size: 1.25rem
        }

        #veh-search-container #hero-search #hero-veh-search-form .arrow
        {
            position: absolute;
            right: -110px;
            top: 100px;
            width: 120px;
            height: auto;
            z-index: 9
        }

@media (max-width: 1200px)
{
    #veh-search-container #hero-search #hero-veh-search-form .arrow
    {
        display: none
    }
}

@media (max-width: 992px)
{
    #veh-search-container #hero-search #hero-veh-search-form
    {
        width: 100%;
        border-radius: 0px
    }
}

@media (max-width: 768px)
{
    #veh-search-container
    {
        width: 100%;
        height: auto;
        padding: 2em .5em
    }

        #veh-search-container h2
        {
            font-size: 2rem;
            margin-bottom: .75em
        }

        #veh-search-container #hero-veh-img
        {
            height: auto
        }

            #veh-search-container #hero-veh-img img
            {
                max-width: 350px
            }

        #veh-search-container #hero-search
        {
            margin-bottom: 1em
        }

            #veh-search-container #hero-search #hero-veh-search-form
            {
                position: relative;
                top: auto;
                height: auto;
                left: auto;
                width: 100%;
                transform: translateX(0%);
                border-radius: 0px
            }
}

@media (max-width: 576px)
{
    #veh-search-container #hero-veh-img img
    {
        max-width: 250px
    }

    #veh-search-container #hero-search #hero-veh-search-form
    {
        position: relative;
        top: auto;
        height: auto;
        left: auto;
        width: 100%;
        transform: translateX(0%)
    }

        #veh-search-container #hero-search #hero-veh-search-form select,
        #veh-search-container #hero-search #hero-veh-search-form input
        {
            font-size: 1rem
        }
}

/* ========================================
BLOG PAGES
===========================================*/
.blog-content-header h1
{
    font-size: 2.5rem;
    font-weight: 900;
}

.blog-content-header p
{
    font-size: 1.15rem;
    color: #333;
}

.blog-content-section h3
{
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-top: 1.5rem;
}
.blog-content-section ul
{
    list-style-type: disc;
}
.blog-content-section ul, .blog-content-section ol
{

    padding-left: 1.5rem;
}

    .blog-content-section ul li, .blog-content-section ol li
    {
        font-size: 1rem;
        /*margin-bottom: 0.5rem;*/
        color: #333;
    }

.blog-last-updated
{
    font-size: 0.875rem;
    color: #666;
    text-align: right;
    margin-top: 2rem;
}

/* ========================================
HOME > SEARCH MAKES
===========================================*/

#search-veh-brands
{
    background: linear-gradient(180deg, rgba(255,255,255,1) 50%, rgba(232,232,232,1) 100%);
    padding-top: 5em;
    padding-bottom: 3em
}

    #search-veh-brands h2
    {
        color: #000000;
        font-weight: 300;
        margin-bottom: .5em;
        font-size: 2.25rem
    }

        #search-veh-brands h2 span
        {
            color: #000000;
            font-weight: 700;
        }

    #search-veh-brands .logo img
    {
        filter: opacity(30%);
        transition: all .25s ease-in;
    }

        #search-veh-brands .logo img:hover
        {
            filter: opacity(100%);
            transform: translate(0px, -10px)
        }

@media (max-width: 768px)
{
    #search-veh-brands
    {
        padding-top: 2em;
        padding-bottom: 2em
    }

        #search-veh-brands .logo img
        {
            max-width: 125px;
        }

        #search-veh-brands h2 span
        {
            display: block
        }
}

@media (max-width: 576px)
{
    #search-veh-brands h2
    {
        font-size: 1.75rem;
        margin-bottom: 1em;
    }

    #search-veh-brands .logo img
    {
        max-width: 70px;
        filter: opacity(100%);
    }

        #search-veh-brands .logo img:hover
        {
            filter: opacity(100%);
            transform: none
        }
}

/* ========================================
HOME > ABOUT UC
===========================================*/

#about-uc
{
    padding: 5em 1em 5em 1em;
    color: #ffffff;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.75) 55%, rgba(0, 0, 0, 0.5) 100%),url('../img/bg-about-uc.jpg');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

    #about-uc p
    {
        font-size: 1.25rem
    }

    #about-uc img.couple-img
    {
        border: 10px solid #BE1522;
        box-shadow: -3px 9px 34px 5px rgba(0,0,0,0.75);
        border-radius: 50%;
    }

    #about-uc img.icon-img
    {
        position: absolute;
        width: 140px;
        height: 140px;
        top: -30px;
        right: 0px
    }

    #about-uc a.btn-red
    {
        font-size: 1.25rem
    }

@media (max-width: 992px)
{
    #about-uc img.icon-img
    {
        position: absolute;
        width: 80px;
        height: 80px;
        top: 0px;
        right: 0%
    }
}

@media (max-width: 768px)
{
    #about-uc img.couple-img
    {
        max-width: 250px;
    }

    #about-uc img.icon-img
    {
        position: absolute;
        width: 90px;
        height: 90px;
        top: 0px;
        right: 20%
    }
}

@media (max-width: 576px)
{
    #about-uc
    {
        padding: 3em 1em 3em 1em
    }

        #about-uc p
        {
            font-size: 1rem
        }

        #about-uc img.couple-img
        {
            max-width: 250px;
        }

        #about-uc img.icon-img
        {
            position: absolute;
            width: 90px;
            height: 90px;
            top: 0px;
            right: 10%
        }
}

/* ========================================
PAGE > HERO (FOR ALL INTERIOR PAGES)
===========================================*/

/* Container */
#page-hero
{
    position: relative;
    width: 100%;
    margin: auto;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.40) 59%, rgba(0, 0, 0, 0.75) 100%),url('../img/bg-page-hero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

    /* Hero */
    #page-hero #hero
    {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

        #page-hero #hero h2
        {
            font-size: 2.75rem;
            color: white;
            font-weight: 900;
            text-shadow: 0px 5px 10px rgba(0,0,0,0.5);
            line-height: 1;
            margin-bottom: .25em
        }

        #page-hero #hero h3
        {
            font-size: 1.75rem;
            color: white;
            font-weight: 300;
            text-shadow: 0px 5px 10px rgba(0,0,0,0.5);
        }

        #page-hero #hero .veh-img img
        {
            max-width: 275px;
            height: auto
        }

    /* Search */
    #page-hero #hero-veh-search
    {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 180px;
        width: 80%;
        height: auto;
        background: #BE1522;
        padding: 1em;
        box-shadow: -3px 9px 34px 5px rgba(0,0,0,0.75);
        z-index: 9;
        border-radius: 5px
    }

        #page-hero #hero-veh-search select, #hero-veh-search input
        {
            font-size: 1.25rem
        }

        #page-hero #hero-veh-search button.btn
        {
            background-color: #000000;
            font-weight: 700;
            border: none;
            font-size: 1.25rem
        }

@media (max-width: 992px)
{
    #page-hero #hero-veh-search
    {
        width: 100%;
        border-radius: 0px
    }

    #page-hero #hero h2
    {
        font-size: 2.5rem
    }

    #page-hero #hero h3
    {
        font-size: 1.75rem
    }
}

@media (max-width: 768px)
{
    #page-hero
    {
        width: 100%;
        height: auto;
        background: #000000
    }

        #page-hero #hero
        {
            height: auto;
            padding: 1em;
            background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 59%, rgba(0, 0, 0, 0.75) 100%),url('../img/bg-page-hero.jpg');
            background-position: top;
            background-size: cover;
            background-repeat: no-repeat;
        }

            #page-hero #hero h2
            {
                text-align: center
            }

            #page-hero #hero h3
            {
                text-align: center
            }

        #page-hero #hero-veh-search
        {
            display: none
        }
    /* #page-hero #hero-veh-search {position: relative; top: auto; height: auto; left: auto; width: 100%;transform: translateX(0%)}*/
}

@media (max-width: 576px)
{
    #page-hero #hero h2
    {
        font-size: 1.5rem
    }

    #page-hero #hero h3
    {
        font-size: 1rem
    }

    #page-hero #hero .veh-img img
    {
        max-width: 200px;
        height: auto
    }
    /* #page-hero #hero-veh-search select, #page-hero #hero-veh-search input {font-size: 1rem} */
    /* #page-hero #hero-veh-search {position: relative; top: auto; height: auto; left: auto; width: 100%;transform: translateX(0%)} */
}

/* ========================================
SIDEBAR > VEH SEARCH > ACCORDION
===========================================*/

.left-side-accordion
{
    box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.05)
}

.left-side-accordion .accordion-body
{
    border: 1px solid #cccccc;
    border-top: none;
    background: linear-gradient(180deg, rgba(252,252,252,1) 0%, rgba(245,245,245,1) 100%) !important;
}

    .left-side-accordion .accordion-item .accordion-header
    {
        border-radius: 5px
    }

    .left-side-accordion .accordion-button
    {
        background-color: #BE1522;
        color: #ffffff;
        font-weight: 700;
        font-size: 1.25rem;
    }

        .left-side-accordion .accordion-button:not(.collapsed)
        {
            background-color: #BE1522;
            color: #ffffff;
        }

        .left-side-accordion .accordion-button:focus
        {
            box-shadow: none
        }

        .left-side-accordion .accordion-button:after
        {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .left-side-accordion .accordion-button:not(.collapsed):after
        {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

@media (max-width: 576px)
{
    .left-side-accordion
    {
        margin-bottom: 1.25em
    }
}

/* ========================================
SIDEBAR > VEH SEARCH > FORM
===========================================*/

.left-side-accordion label
{
    color: #ffffff;
    color: #000;
    font-size: 1rem;
    font-weight: 700
}

.left-side-accordion select, #sidebar-veh-search input
{
    font-size: 1rem;
    border-radius: 0px
}

.left-side-accordion button.btn
{
    background-color: #000000;
    font-weight: 700;
    border: none;
    font-size: 1.25rem
}

/* ========================================
VEH SEARCH > INVENTORY DISPLAY
===========================================*/

#veh-inventory-display
{
    padding: 2em 1em
}

    #veh-inventory-display.veh-inventory-display__hero-veh-search
    {
        padding: 5.5em 1em 2em 1em
    }
    /* add xtra padd for page layout with search in hero */

    #veh-inventory-display .card
    {
        border: 1px solid #bbb;
        box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.05);
        transition: all .25s ease-in;
    }

        #veh-inventory-display .card:hover
        {
            border: 1px solid #bbb;
            box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.15)
        }

    #veh-inventory-display .card-body
    {
        background: #fff
    }

    /* Header */
    #veh-inventory-display .card-header
    {
        background: #efefef;
        text-align: center
    }

        #veh-inventory-display .card-header h4
        {
            font-weight: 700;
            color: #000;
            margin-bottom: 0;
            font-size: 1.25rem
        }

    /* Footer */
    #veh-inventory-display .card-footer
    {
        padding: 1.25em 1.25em
    }

    /* Veh Img */
    #veh-inventory-display .vehicle .card-img-top
    {
        width: 100%;
        height: 25vh;
        object-fit: cover;
    }

    /* Veh Specs */
    #veh-inventory-display .list-group-item.price
    {
        background: linear-gradient(180deg, rgba(78,78,78,1) 0%, rgba(0,0,0,1) 100%);
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700
    }

        #veh-inventory-display .list-group-item.price img
        {
            display: inline;
            width: 25px;
            height: 25px;
            margin-right: .5em
        }

    /* Paging */
    #veh-inventory-display #veh-inventory-results-paging
    {
        margin-bottom: 1em
    }

        #veh-inventory-display #veh-inventory-results-paging h4
        {
            font-weight: 700
        }

        #veh-inventory-display #veh-inventory-results-paging .pagination .page-item .page-link
        {
            color: #000;
        }

            #veh-inventory-display #veh-inventory-results-paging .pagination .page-item .page-link:hover
            {
                color: #BE1522;
            }

@media (max-width: 768px)
{
    #veh-inventory-display.veh-inventory-display__hero-veh-search
    {
        padding: 2em 1em 2em 1em
    }
    /* page layout with search in hero */
    #veh-inventory-display #veh-inventory-results-paging h4
    {
        text-align: center
    }

    #veh-inventory-display #veh-search-accordion
    {
        display: block
    }
}

@media (max-width: 768px)
{
    #page-hero #hero-veh-search
    {
        display: none
    }
}

@media (max-width: 576px)
{
    #veh-inventory-display .list-group-item.price
    {
        font-size: 1rem
    }

    #veh-inventory-display .list-group-item
    {
        font-size: .9rem
    }
}

/* ========================================
HOME > CAROUSEL > INVENTORY DISPLAY
===========================================*/

/* Carousel and Controls postion */
#veh-inventory-featured .owl-carousel
{
    position: relative;
    padding-left: 3em;
    padding-right: 3em
}

    #veh-inventory-featured .owl-carousel .owl-nav .owl-next,
    #veh-inventory-featured .owl-carousel .owl-nav .owl-prev
    {
        position: absolute;
        top: 50%;
        transform: TranslateY(-50%)
    }

        #veh-inventory-featured .owl-carousel .owl-nav .owl-next i,
        #veh-inventory-featured .owl-carousel .owl-nav .owl-prev i
        {
            font-size: 3rem
        }

    #veh-inventory-featured .owl-carousel .owl-nav .owl-prev
    {
        right: auto;
        left: 0px;
        color: #BE1522;
        opacity: .75
    }

    #veh-inventory-featured .owl-carousel .owl-nav .owl-next
    {
        left: auto;
        right: 0px;
        color: #BE1522;
        opacity: .75
    }

        #veh-inventory-featured .owl-carousel .owl-nav .owl-next:hover,
        #veh-inventory-featured .owl-carousel .owl-nav .owl-prev:hover
        {
            background: none !important;
            opacity: 1
        }

    #veh-inventory-featured .owl-carousel .owl-dots .owl-dot span
    {
        width: 15px !important;
        height: 15px !important;
        margin: 5px 10px;
        background: #656565 !important;
        border-radius: 30px;
    }

    #veh-inventory-featured .owl-carousel .owl-dots .owl-dot.active span,
    #veh-inventory-featured .owl-carousel .owl-dots .owl-dot:hover span
    {
        background: #BE1522 !important
    }

/* Inventory */
#veh-inventory-featured
{
    padding: 4em 1em 4em 1em
}

    #veh-inventory-featured h2
    {
        color: #000000;
        font-weight: 300;
        margin-bottom: 1em;
        font-size: 2.25rem
    }

        #veh-inventory-featured h2 span
        {
            color: #000000;
            font-weight: 700;
        }

    #veh-inventory-featured .card
    {
        border: 1px solid #bbb;
        box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.0);
        transition: all .25s ease-in;
    }

        #veh-inventory-featured .card:hover
        {
            border: 1px solid #bbb;
            box-shadow: 0px 5px 10px 2px rgba(0,0,0,0)
        }

    #veh-inventory-featured .card-body
    {
        background: #fff
    }

    /* Header */
    #veh-inventory-featured .card-header
    {
        background: #efefef;
        text-align: center
    }

        #veh-inventory-featured .card-header h4
        {
            font-weight: 700;
            color: #000;
            margin-bottom: 0;
            font-size: 1.25rem
        }

    /* Footer */
    #veh-inventory-featured .card-footer
    {
        padding: 1.25em 1.25em
    }

    /* Veh Img */
    #veh-inventory-featured .vehicle .card-img-top
    {
        width: 100%;
        height: 25vh;
        object-fit: cover;
    }

    /* Veh Specs */
    #veh-inventory-featured .list-group-item.price
    {
        background: linear-gradient(180deg, rgba(78,78,78,1) 0%, rgba(0,0,0,1) 100%);
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700
    }

        #veh-inventory-featured .list-group-item.price img
        {
            display: inline;
            width: 25px;
            height: 25px;
            margin-right: .5em
        }

@media (max-width: 992px)
{
    #veh-inventory-featured .owl-carousel
    {
        padding-left: 2em;
        padding-right: 2em
    }

        #veh-inventory-featured .owl-carousel .owl-nav .owl-prev
        {
            right: auto;
            left: 0px
        }

        #veh-inventory-featured .owl-carousel .owl-nav .owl-next
        {
            left: auto;
            right: 0px
        }
}

@media (max-width: 576px)
{
    #veh-inventory-featured
    {
        padding: 2em 0em 2em 0em
    }

        #veh-inventory-featured .list-group-item.price
        {
            font-size: 1rem
        }

        #veh-inventory-featured .list-group-item
        {
            font-size: .9rem
        }

        #veh-inventory-featured h2
        {
            font-size: 1.75rem;
            margin-bottom: 1em;
        }
}

/* ========================================
HOME > CAROUSEL > TESTIMONIALS
===========================================*/

#testimonials-carousel
{
    background: linear-gradient(180deg, rgba(255,255,255,1) 50%, rgba(232,232,232,1) 100%);
    padding: 4em 1em;
}

    /* Carousel and Controls postion */
    #testimonials-carousel .owl-carousel
    {
        position: relative;
        padding-left: 2em;
        padding-right: 2em
    }

        #testimonials-carousel .owl-carousel .owl-nav .owl-next,
        #testimonials-carousel .owl-carousel .owl-nav .owl-prev
        {
            position: absolute;
            top: 50%;
            transform: TranslateY(-50%)
        }

            #testimonials-carousel .owl-carousel .owl-nav .owl-next i,
            #testimonials-carousel .owl-carousel .owl-nav .owl-prev i
            {
                font-size: 3rem
            }

        #testimonials-carousel .owl-carousel .owl-nav .owl-prev
        {
            right: auto;
            left: 0px;
            color: #BE1522;
            opacity: .75
        }

        #testimonials-carousel .owl-carousel .owl-nav .owl-next
        {
            left: auto;
            right: 0px;
            color: #BE1522;
            opacity: .75
        }

            #testimonials-carousel .owl-carousel .owl-nav .owl-next:hover,
            #testimonials-carousel .owl-carousel .owl-nav .owl-prev:hover
            {
                background: none !important;
                opacity: 1
            }

        #testimonials-carousel .owl-carousel .owl-dots .owl-dot span
        {
            width: 15px !important;
            height: 15px !important;
            margin: 5px 10px;
            background: #656565 !important;
            border-radius: 30px;
        }

        #testimonials-carousel .owl-carousel .owl-dots .owl-dot.active span,
        #testimonials-carousel .owl-carousel .owl-dots .owl-dot:hover span
        {
            background: #BE1522 !important
        }

    /* Header */
    #testimonials-carousel h2
    {
        color: #000000;
        font-weight: 300;
        margin-bottom: 1em;
        font-size: 2rem
    }

        #testimonials-carousel h2 span
        {
            color: #000000;
            font-weight: 700;
        }

    /* Testimonials */
    #testimonials-carousel .testimonial
    {
        width: 90%;
        margin: auto
    }

        #testimonials-carousel .testimonial p
        {
            color: #000000;
            font-weight: 400;
            text-align: center;
            font-size: 1rem
        }

            #testimonials-carousel .testimonial p.quote
            {
                font-weight: 400;
                font-size: 1.25rem
            }

        /* Photo */
        #testimonials-carousel .testimonial .photo
        {
            text-align: center;
            margin: auto auto 1em auto
        }

            #testimonials-carousel .testimonial .photo img
            {
                width: 100px;
                height: 100px;
                border-radius: 50%;
                border: 6px solid #BE1522
            }

            #testimonials-carousel .testimonial .photo img
            {
                display: block;
                width: 100px;
                height: auto;
                margin: auto;
            }

@media screen and (max-width:992px)
{
    #testimonials-carousel .owl-carousel .owl-nav .owl-prev
    {
        right: auto;
        left: 0px
    }

    #testimonials-carousel .owl-carousel .owl-nav .owl-next
    {
        left: auto;
        right: 0px
    }
}

@media screen and (max-width:576px)
{
    #testimonials-carousel
    {
        padding: 2.5em 0 3em 0;
    }

        #testimonials-carousel h2
        {
            font-size: 1.75em
        }

            #testimonials-carousel h2 span
            {
                display: block
            }

        #testimonials-carousel .testimonial
        {
            width: 80%;
            margin: auto
        }

            #testimonials-carousel .testimonial .photo
            {
                margin: .5em auto 1.25em auto
            }

            #testimonials-carousel .testimonial p.quote
            {
                font-size: 1rem
            }
}

/* ========================================
VEH DETAILS
===========================================*/

#veh-details-display
{
    padding: 2em 1em 3em 1em
}

    #veh-details-display h2
    {
        margin-bottom: 1em;
        font-weight: 700;
        font-size: 2rem
    }

@media (max-width: 576px)
{
    #veh-details-display h2
    {
        font-size: 1.75rem;
        margin-bottom: 1em;
    }
}

/* ========================================
VEH DETAILS > DISPLAY
===========================================*/

#veh-details-display .vehicle
{
    border: 1px solid #bbb;
    box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.05);
    transition: all .25s ease-in
}

    #veh-details-display .vehicle:hover
    {
        border: 1px solid #bbb;
        box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.15)
    }

    #veh-details-display .vehicle.card-body
    {
        background: #fff
    }

    /* Header */
    #veh-details-display .vehicle .card-header
    {
        background: #efefef;
        text-align: center
    }

        #veh-details-display .vehicle .card-header h4
        {
            font-weight: 700;
            color: #000;
            margin-bottom: 0;
            font-size: 1.25rem
        }

    /* Footer */
    #veh-details-display .vehicle .card-footer
    {
        padding: 1.25em 1.25em
    }

    /* Veh Img */
    #veh-details-display .vehicle .card-img-top
    {
        width: 100%;
        height: 25vh;
        object-fit: cover;
    }

    /* Veh Specs */
    #veh-details-display .vehicle .list-group-item.price
    {
        background: linear-gradient(180deg, rgba(78,78,78,1) 0%, rgba(0,0,0,1) 100%);
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700
    }

        #veh-details-display .vehicle .list-group-item.price img
        {
            display: inline;
            width: 25px;
            height: 25px;
            margin-right: .5em
        }

@media (max-width: 576px)
{
    #veh-details-display .vehicle .list-group-item.price
    {
        font-size: 1rem
    }

    #veh-details-display .vehicle .list-group-item
    {
        font-size: .9rem
    }
}

/* ========================================
VEH DETAILS > FORM
===========================================*/

#veh-details-display .user-info-form
{
    border: 1px solid #bbb;
    box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.05);
    transition: all .25s ease-in;
    border-radius: 5px;
}

    #veh-details-display .user-info-form:hover
    {
        border: 1px solid #bbb;
        box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.15)
    }

    #veh-details-display .user-info-form .card-header
    {
        background: linear-gradient(180deg, rgba(78,78,78,1) 0%, rgba(0,0,0,1) 100%);
        background: #BE1522;
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700
    }

    #veh-details-display .user-info-form .card-body
    {
        background: linear-gradient(180deg, rgba(252,252,252,1) 0%, rgba(245,245,245,1) 100%) !important;
        padding: 2em;
        border-radius: 5px;
    }

    #veh-details-display .user-info-form .form-label
    {
        font-weight: 700
    }

/* ========================================
FOOTER
===========================================*/

#footer
{
    padding: 3em 1em;
    background-color: #F8F9FA;
    background-color: #ffffff;
    color: #000;
    box-shadow: 0px -3px 15px -7px rgba(0,0,0,0.15);
}

    /* Logo */
    #footer .footer-logo
    {
        text-align: left;
        margin-bottom: 1.25em
    }

    /* Nav */
    #footer .footer-nav
    {
        text-align: left;
        font-size: .9rem
    }

        #footer .footer-nav ul
        {
            padding: 0;
            list-style: none;
        }

            #footer .footer-nav ul li
            {
                display: inline;
                margin-right: .7em;
            }

                #footer .footer-nav ul li:last-child
                {
                    margin-right: 0;
                }

                #footer .footer-nav ul li a
                {
                    color: inherit;
                    font-size: 1em;
                    text-decoration: none
                }

                    #footer .footer-nav ul li a:hover
                    {
                        text-decoration: underline
                    }

    /* Disclaimer - Copyright */
    #footer .footer-copyright
    {
        color: inherit;
        text-align: right;
        font-size: .9rem
    }

    #footer .footer-disclaimer
    {
        color: inherit;
        text-align: left;
        font-size: .9rem
    }

@media screen and (max-width: 576px)
{
    #footer .footer-logo img
    {
        max-width: 150px;
    }

    #footer .footer-logo
    {
        text-align: center
    }

    #footer .footer-nav
    {
        text-align: center
    }

    #footer .footer-copyright
    {
        text-align: center
    }

    #footer .footer-disclaimer
    {
        text-align: center
    }

    #footer .footer-nav ul
    {
        margin: 0 0 1.2em 0;
    }

        #footer .footer-nav ul li
        {
            display: block;
            margin-right: 0;
            text-align: center;
            line-height: 2.25
        }

            #footer .footer-nav ul li a
            {
                display: block;
                padding: .25em
            }
}

/* Custom Class NotFrom Designer */
.input-validation-error
{
    color: rgba(220,53,69,1) !important;
    font-weight: bold;
}

.field-validation-error
{
}


.ellipsis
{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.page-title
{
    background: linear-gradient(to bottom, #333333 0%, #000000 100%);
    padding: 1em 1em;
    border-bottom: 0px;
    color:white;
    text-align:center;
}