/* ========================================
BASE
===========================================*/

body
{
    font-family: 'Bitter', sans-serif;
    box-sizing: border-box;
}

body, html
{
    height: 100%
}

a
{
    color: #000000;
}

/* Buttons */

.btn
{
    font-weight: 700;
    font-size: 1.25rem
}

.btn-blue
{
    background: #61829F;
    color: #ffffff;
    border: none;
    outline: none
}

    .btn-blue:hover, .btn-blue:focus
    {
        background: #000000;
        color: #ffffff;
        border: none;
        outline: none
    }

.btn-yellow
{
    background: #F2AB46;
    color: #000000;
    border: none;
    outline: none;
    padding: .5em .5em;
    line-height: 1.2
}

    .btn-yellow:hover, .btn-yellow:focus
    {
        background: #E59728;
        color: #000000;
        border: none;
        outline: none
    }

/* Forms */

form label
{
    font-weight: 700;
    font-size: 1.2rem !important
}

form input, form select, form textarea
{
    font-weight: 400;
    font-size: 1.2rem !important;
    border-color: #ccc !important;
    box-shadow: 3px 3px 5px -5px rgba(0, 0, 0, .3);
}

    form input:disabled, form select:disabled
    {
        background: #f6f6f6 !important;
    }

/* Modals */

.modal-header
{
    background-color: #61829F
}

    .modal-header .modal-title
    {
        color: #ffffff;
        font-weight: 700
    }

.modal-body h2
{
    font-size: 1.75rem;
}

@media screen and (max-width:576px)
{
    .modal-body h2
    {
        font-size: 1.5rem;
    }
}

/* ========================================
NAVBAR
===========================================*/

.navbar
{
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.0);
    padding: .75em .25em;
    z-index: 100;
    background: none;
    min-height: 60px;
}

  .navbar.fixed-navbar {
    position: fixed !important;
    width: 100%;
    top: 0;
    animation-name: fixedAnim;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.15);
    background: rgba(97,130,159,.95);
    transition: all .5s;
  }

    /* Logo */
    
    .navbar-brand img
    {
        position: absolute;
        max-width: 225px;
        height: auto;
        top: 10px;
        z-index: 200
    }
    .fixed-navbar div div .navbar-brand-right img
    {
        
        top: 15px;
    }
    .navbar-brand-right img
    {
        /*position: absolute;*/
        max-width: 225px;
        height: auto;
        /*top: 30px;*/
        /*right: 15px;*/
    
        z-index: 200
    }

    .navbar.fixed-navbar .navbar-brand img
    {
        position: absolute;
        max-width: 140px;
        top: 10px;
    }

@media screen and (max-width:992px)
{
     .navbar-brand img
    {
        left: 22%;
        transform: translateX(-50%);
    }

    .navbar-brand-right img
    {
        max-width: 140px;
        /*transform: translateX(-0%);*/
    }
}

/* Toggle Icon */

.navbar-toggler
{
    border-color: none !important;
    box-shadow: 0 0 0 0;
    border: none !important;
}

    .navbar-toggler:focus
    {
        box-shadow: 0 0 0 0 !important;
    }

.navbar .navbar-toggler-icon
{
    font-size: 1.2em;
    background-image: url( "data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.fixed-navbar .navbar-toggler-icon
{
    font-size: 1.2em;
    background-image: url( "data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* Off Canvas */

.offcanvas
{
    background-color: #efefef !important;
}

    .offcanvas .navbar-nav
    {
        font-size: 1.5rem
    }

    .offcanvas .dropdown-menu
    {
        font-size: 1.5rem
    }


@keyframes fixedAnim
{
    from
    {
        top: -100px;
    }

    to
    {
        top: 0;
    }
}

@media screen and (max-width:576px)
{
     .navbar-brand img
    {
        max-width: 140px;
        top: 10px;
    }

     .navbar-brand-right img
    {
        max-width: 140px;
        right:35px;
        top: 25px;
    }
}

/* ========================================
HOME > HERO
===========================================*/

#home-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 550px;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url("/img/hero_camping_toyota.jpg");
  background-position: center;
  background-size: cover;
}

    #home-hero h1
    {
        font-size: 3.5rem;
        color: #ffffff;
        font-weight: 700;
        line-height: 1;
        margin-bottom: .35em;
        text-align: center;
    }

    #home-hero h2
    {
        font-size: 2rem;
        color: #ffffff;
        text-align: center;
    }

@media screen and (max-width:576px)
{
    #home-hero
    {
        min-height: 10px;
        height: auto;
        padding: 8em 1em 2em 1em;
    }

        #home-hero h1
        {
            font-size: 2.25rem;
            text-align: center;
        }

        #home-hero h2
        {
            font-size: 1.25rem;
            color: #ffffff;
            text-align: center;
        }
}

/* ========================================
HOME > HERO > VIDEO
===========================================*/

#home-hero-video
{
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url("");
}

    #home-hero-video video
    {
        position: absolute;
        z-index: -100;
        object-fit: cover;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }

    #home-hero-video h1
    {
        font-size: 3.5rem;
        color: #ffffff;
        font-weight: 700;
        line-height: 1;
        margin-bottom: .35em;
        text-align: center;
    }

    #home-hero-video h2
    {
        font-size: 2rem;
        color: #ffffff;
        text-align: center;
    }

@media screen and (max-width: 992px)
{
    #home-hero-video
    {
        height: 450px;
        padding: 6em 1em 2em 1em;
    }

        #home-hero-video h1
        {
            text-align: center;
            font-size: 3rem;
        }

        #home-hero-video h2
        {
            text-align: center;
            font-size: 1.5rem;
        }
}

@media screen and (max-width: 768px)
{
    #home-hero-video
    {
        background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url("/img/hero-airstream-jeep.jpg");
        background-position: center;
        background-size: cover;
    }

        #home-hero-video #bgvideo
        {
            display: none;
        }
}

@media screen and (max-width:576px)
{
    #home-hero-video
    {
        height: auto;
        padding: 8em 1em 2em 1em;
    }

        #home-hero-video h1
        {
            font-size: 2.25rem;
            text-align: center;
        }

        #home-hero-video h2
        {
            font-size: 1.25rem;
            color: #ffffff;
            text-align: center;
        }
}

/* ========================================
HOME > HERO > OPTIONS CHOOSE
===========================================*/

#home-hero-options
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
    height: 100vh;
    height: 900px;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url("/img/GMC_Airstream_Highway.jpg");
    background-position: center;
    background-size: cover;
}

    #home-hero-options .option
    {
        position: relative
    }

        #home-hero-options .option img
        {
            position: absolute;
            z-index: 10;
            width: auto;
            height: 120px;
            top: -70px;
            left: 50%;
            transform: translate(-50%);
        }

        #home-hero-options .option .card
        {
            background: rgba(57,84,108,0.90);
            border: 4px solid rgba(255,255,255,.70);
            box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.8);
            border-radius: 15px
        }
            /* #home-hero-options .option .card {background: rgba(0,0,0,0.30); border: 2px solid rgba(255,255,255,.70)} */
            #home-hero-options .option .card .card-body
            {
                padding: 3em
            }

    #home-hero-options h1
    {
        font-size: 3.25rem;
        color: #ffffff;
        font-weight: 700;
        line-height: 1;
        margin-bottom: .35em;
        text-align: center
    }

    #home-hero-options h2
    {
        font-size: 2rem;
        color: #ffffff;
        text-align: center;
        margin-bottom: .7em;
    }

@media screen and (max-width:992px)
{
    #home-hero-options
    {
        height: auto;
        padding: 10em 1em 2em 1em;
    }

        #home-hero-options .option img
        {
            position: relative;
            z-index: none;
            width: auto;
            height: 120px;
            top: 0px;
            left: 50%;
            transform: translate(-50%);
        }

        #home-hero-options .option .card .card-body
        {
            padding: 2em 1em
        }

        #home-hero-options h1
        {
            font-size: 2.75rem;
            text-align: center;
        }

        #home-hero-options h2
        {
            font-size: 1.5rem;
            color: #ffffff;
            text-align: center;
        }
}

@media screen and (max-width:576px)
{
    #home-hero-options
    {
        min-height: 10px;
        height: auto;
        padding: 7em 1em 2em 1em;
    }

        #home-hero-options .option img
        {
            height: 80px
        }

        #home-hero-options h1
        {
            font-size: 2.25rem;
            text-align: center;
        }

        #home-hero-options h2
        {
            font-size: 1.25rem;
            color: #ffffff;
            text-align: center;
        }
}

/* ========================================
HOME > INTRO
===========================================*/

#home-intro
{
    padding: 3em 1em;
    background-color: #61829F;
}

    #home-intro .img
    {
        text-align: center;
    }

    #home-intro h2
    {
        font-size: 2.0rem;
        color: #ffffff;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: .75em;
    }

    #home-intro p
    {
        font-size: 1.25rem;
        color: #ffffff;
    }

.home-intro-arrow-down
{
    margin: auto;
    width: 200px;
    height: 50px;
    background-color: #61829F;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

@media screen and (max-width:768px)
{
    #home-intro
    {
        padding: 2em 1em;
    }

        #home-intro .img img
        {
            max-width: 325px;
            height: auto;
            margin: auto;
        }

        #home-intro h2
        {
            font-size: 2rem;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: .75em;
        }

        #home-intro p
        {
            font-size: 1.15rem;
            color: #ffffff;
        }
}

@media screen and (max-width:576px)
{
    #home-intro
    {
        padding: 2em 1em;
    }

        #home-intro .img img
        {
            max-width: 250px;
            height: auto;
            margin: auto;
        }

        #home-intro h2
        {
            font-size: 1.75rem;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: .75em;
        }

        #home-intro p
        {
            font-size: 1rem;
            color: #ffffff;
        }
}

/* ========================================
HOME > VEHICLE SELECT (V3)
===========================================*/

#home-vehicle-select
{
    padding: 3em 1em;
    background-color: #ffffff;
}

    #home-vehicle-select h2
    {
        font-size: 2.0rem;
        color: #61829F;
        font-weight: 700;
        line-height: 1;
        margin-bottom: .75em;
        text-align: center;
    }

    #home-vehicle-select h3
    {
        font-size: 1.5rem;
        color: #000000;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 1em;
    }

    #home-vehicle-select form
    {
        padding: 0;
    }

    #home-vehicle-select .vehicle-img
    {
        text-align: center;
        margin-bottom: .5em;
    }

    #home-vehicle-select .vehicle-name
    {
        text-align: center;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: .5em;
    }

    #home-vehicle-select .vehicle-selector
    {
        margin-bottom: .75em;
    }

        #home-vehicle-select .vehicle-selector select
        {
            font-size: 1.25rem;
        }

    #home-vehicle-select .make-selector
    {
        margin-bottom: .75em;
    }

        #home-vehicle-select .make-selector select
        {
            font-size: 1.25rem;
        }

.vehicle-select-btn .btn
{
    font-size: 1.3rem;
}

@media screen and (max-width:576px)
{
    #home-vehicle-select
    {
        padding: 2em 1em
    }

        #home-vehicle-select .vehicle-img img
        {
            max-width: 275px;
        }

        #home-vehicle-select h2
        {
            font-size: 1.75rem
        }

        #home-vehicle-select h3
        {
            font-size: 1.25rem
        }
}

/* ========================================
HOME > TRAILER CHOOSER (V3)
===========================================*/

#home-trailer-chooser
{
    padding: 3em 1em;
    background-color: #ffffff;
}

    #home-trailer-chooser h2
    {
        font-size: 2.0rem;
        color: #61829F;
        font-weight: 700;
        line-height: 1;
        margin-bottom: .75em;
        text-align: center;
    }

    #home-trailer-chooser h3
    {
        font-size: 1.5rem;
        color: #000000;
        text-align: center;
        line-height: 1.2;
    }

    #home-trailer-chooser .card
    {
        border: none;
    }

    #home-trailer-chooser .trailer-model-img
    {
        text-align: center;
        margin-bottom: .5em;
    }

    #home-trailer-chooser .trailer-model-name
    {
        text-align: center;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: .75em;
    }

    #home-trailer-chooser .trailer-model-selector
    {
        margin-bottom: 1em;
    }

@media screen and (max-width:576px)
{
    #home-trailer-chooser
    {
        padding: 2em .5em
    }

        #home-trailer-chooser h2
        {
            font-size: 1.75rem
        }

        #home-trailer-chooser h3
        {
            font-size: 1.25rem
        }
}

/* Form > Radio:Buttons Formatting */

#home-trailer-chooser .trailer-model-chooser
{
    text-align: center;
    width: 100%;
}

    #home-trailer-chooser .trailer-model-chooser input[type="radio"] + label
    {
        background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
        border: 1px solid #999999 !important;
        font-size: 1rem !important;
        font-weight: 400;
    }

    #home-trailer-chooser .trailer-model-chooser input[type="radio"]:hover + label
    {
        background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
    }

    #home-trailer-chooser .trailer-model-chooser input[type="radio"]:checked + label
    {
        background: linear-gradient(180deg, #666666 0%, #222222 100%);
        border: 1px solid #999999 !important;
        color: #ffffff !important;
        font-weight: 700;
    }

@media screen and (max-width:576px)
{
    #home-trailer-chooser .trailer-model-chooser input[type="radio"] + label
    {
        padding-left: .5em;
        padding-right: .5em
    }
}

/* ========================================
PAGE TITLE > HERO
===========================================*/

/* #page-title-hero { SAVE FOR FLEX APPLICATION
  display: flex;justify-content: center; align-items: center; min-height:350px; background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url("/img/hero-pagetitle-camping.jpg");
  background-position: center; background-size:cover;
} */

#page-title-hero
{
    min-height: 325px;
    padding: 10em 1em 2em 1em;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url("/img/hero-pagetitle-camping.jpg");
    background-position: center;
    background-size: cover;
}

    #page-title-hero h1
    {
        font-size: 2.75rem;
        color: #ffffff;
        font-weight: 700;
        line-height: 1;
        margin-bottom: .35em;
    }

    #page-title-hero .down-carat
    {
        text-align: center
    }

        #page-title-hero .down-carat img
        {
            max-width: 70px;
            height: auto;
            opacity: .25
        }

@media screen and (max-width:576px)
{
    #page-title-hero
    {
        min-height: 250px;
        padding: 7em 1em 2em 1em;
    }

        #page-title-hero h1
        {
            font-size: 2rem;
            text-align: center;
        }
}

/* ========================================
SELECTED MODEL/VEH OVERVIEW
===========================================*/

#selection-overview
{
    padding: 1em 1em;
    background-color: #61829F;
}

    #selection-overview .container
    {
        max-width: 900px;
        margin: auto;
    }

    #selection-overview h2
    {
        font-size: 2.75rem;
        color: #ffffff;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: .5em;
    }

    #selection-overview p
    {
        font-size: 1.25rem;
        color: #ffffff;
        margin-bottom: 2em;
        line-height: 1.4;
    }

    #selection-overview .model-details .length div:nth-child(1),
    #selection-overview .model-details .tow div:nth-child(1),
    #selection-overview .model-details .axle div:nth-child(1),
    #selection-overview .model-details .engine div:nth-child(1)
    {
        color: #ffffff;
        font-weight: 700;
        font-size: 1.65rem;
        line-height: 1
    }

    #selection-overview .model-details .length div:nth-child(2),
    #selection-overview .model-details .tow div:nth-child(2),
    #selection-overview .model-details .axle div:nth-child(2),
    #selection-overview .model-details .engine div:nth-child(2)
    {
        color: #B2C5D6;
        font-weight: 700;
        font-size: 1.15rem;
    }

.arrow-down
{
    margin: auto;
    margin-top: -1px;
    width: 200px;
    height: 50px;
    background-color: #61829F;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

@media screen and (max-width:768px)
{
    #selection-overview
    {
        padding: 1em 1em 2em 1em;
    }

        #selection-overview h2
        {
            font-size: 2.5rem;
            margin-bottom: .75em;
            text-align: center
        }

        #selection-overview .model-img
        {
            text-align: center
        }

            #selection-overview .model-img img
            {
                max-width: 300px;
            }

        #selection-overview .model-details .length div:nth-child(1),
        #selection-overview .model-details .tow div:nth-child(1),
        #selection-overview .model-details .axle div:nth-child(1),
        #selection-overview .model-details .engine div:nth-child(1)
        {
            font-size: 1.5rem;
            text-align: center
        }

        #selection-overview .model-details .length div:nth-child(2),
        #selection-overview .model-details .tow div:nth-child(2),
        #selection-overview .model-details .axle div:nth-child(2),
        #selection-overview .model-details .engine div:nth-child(2)
        {
            font-size: 1.25rem;
            text-align: center
        }
}

@media screen and (max-width:576px)
{
    #selection-overview
    {
        padding: 1em 1em 2em 1em;
    }

        #selection-overview h2
        {
            font-size: 2rem;
            margin-bottom: .75em;
        }

        #selection-overview .model-img
        {
            text-align: center
        }

            #selection-overview .model-img img
            {
                max-width: 200px;
            }

        #selection-overview .model-details .length div:nth-child(1),
        #selection-overview .model-details .tow div:nth-child(1),
        #selection-overview .model-details .axle div:nth-child(1),
        #selection-overview .model-details .engine div:nth-child(1)
        {
            font-size: 1.35rem;
        }

        #selection-overview .model-details .length div:nth-child(2),
        #selection-overview .model-details .tow div:nth-child(2),
        #selection-overview .model-details .axle div:nth-child(2),
        #selection-overview .model-details .engine div:nth-child(2)
        {
            font-size: 1rem;
        }
}

/* ========================================
TRAILER CHOOSER
===========================================*/

#trailer-chooser
{
    padding: 3em 1em;
    background-color: #ffffff;
}

    #trailer-chooser h2
    {
        font-size: 2.0rem;
        color: #61829F;
        font-weight: 700;
        line-height: 1;
        margin-bottom: .75em;
        text-align: center;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto
    }

    #trailer-chooser h3
    {
        font-size: 1.5rem;
        color: #000000;
        text-align: center;
        line-height: 1.2;
        max-width: 1000px;
        margin-bottom: 1em;
        margin-left: auto;
        margin-right: auto
    }

    #trailer-chooser .card
    {
        border: none;
    }

    #trailer-chooser .trailer-model-img
    {
        text-align: center;
        margin-bottom: .5em;
    }

    #trailer-chooser .trailer-model-name
    {
        text-align: center;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: .75em;
    }

    #trailer-chooser .trailer-model-selector
    {
        margin-bottom: 1em;
    }

@media screen and (max-width:576px)
{
    #trailer-chooser
    {
        padding: 2em .5em
    }

        #trailer-chooser h2
        {
            font-size: 1.75rem
        }

        #trailer-chooser h3
        {
            font-size: 1.25rem
        }
}

/* Form > Radio:Buttons Formatting */

#trailer-chooser .trailer-model-chooser
{
    text-align: center;
    width: 100%;
}

    #trailer-chooser .trailer-model-chooser input[type="radio"] + label
    {
        background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
        border: 1px solid #999999 !important;
        font-size: 1rem !important;
        font-weight: 400;
    }

    #trailer-chooser .trailer-model-chooser input[type="radio"]:hover + label
    {
        background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
    }

    #trailer-chooser .trailer-model-chooser input[type="radio"]:checked + label
    {
        background: linear-gradient(180deg, #666666 0%, #222222 100%);
        border: 1px solid #999999 !important;
        color: #ffffff !important;
        font-weight: 700;
    }

@media screen and (max-width:576px)
{
    #trailer-chooser .trailer-model-chooser input[type="radio"] + label
    {
        padding-left: .5em;
        padding-right: .5em
    }
}

/* ========================================
VEHICLE CHOOSER
===========================================*/

#vehicle-chooser
{
    padding: 3em 1em;
    background-color: #ffffff;
}

    #vehicle-chooser .container
    {
        max-width: 1100px;
        margin: auto;
    }

    #vehicle-chooser h2
    {
        font-size: 2.0rem;
        color: #61829F;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: .75em;
        text-align: center;
    }

    #vehicle-chooser p
    {
        font-size: 1.5rem;
        color: #000000;
        text-align: center;
        line-height: 1.4;
        max-width: 1000px;
        margin: 0 auto 1.25em auto
    }

    /* Vehicle Filter*/

    #vehicle-chooser #vehicle-update-filter
    {
        margin-bottom: 1.25em;
    }

        #vehicle-chooser #vehicle-update-filter .card
        {
            background: #eeeeee;
        }

    /* Card/Truck Img/Name */

    #vehicle-chooser .card
    {
        border: 1px solid #ccc;
        box-shadow: 0px 3px 10px -7px rgba(0, 0, 0, .25);
    }

    #vehicle-chooser .vehicle-model-img
    {
        text-align: center;
        margin-bottom: .75em;
    }

    #vehicle-chooser .vehicle-model-name
    {
        text-align: center;
        font-weight: 700;
        font-size: 1.75rem;
        margin-bottom: 0.75em;
        color: #61829F;
    }

    /* Pref Trim Select */

    #vehicle-chooser .vehicle-trim-selector
    {
        margin-bottom: 1em;
        text-align: center
    }

        #vehicle-chooser .vehicle-trim-selector label
        {
            font-size: 1rem !important
        }

    /* Details */

    #vehicle-chooser .vehicle-details
    {
        text-align: center;
        margin: 0 auto 0 auto;
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        padding: .25em;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

        #vehicle-chooser .vehicle-details .max-tow,
        #vehicle-chooser .vehicle-details .engine
        {
            font-size: 1.25rem
        }

            #vehicle-chooser .vehicle-details .max-tow span:nth-child(1)
            {
                font-weight: 700
            }

            #vehicle-chooser .vehicle-details .max-tow span:nth-child(2)
            {
                font-weight: 400
            }

            #vehicle-chooser .vehicle-details .engine span:nth-child(1)
            {
                font-weight: 700
            }

            #vehicle-chooser .vehicle-details .engine span:nth-child(2)
            {
                font-weight: 400
            }

    /* Desc */

    #vehicle-chooser .vehicle-desc
    {
        text-align: left;
        margin-bottom: 1em;
        padding: 1em;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        background: #fafafa;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        box-shadow: 3px 3px 5px -5px rgba(0, 0, 0, .3);
    }

        #vehicle-chooser .vehicle-desc p
        {
            font-size: 1rem;
            line-height: 1.4;
            margin-bottom: 0;
            font-weight: 300
        }


@media screen and (max-width:765px)
{
    #vehicle-chooser
    {
        padding: 2em 1em
    }

        #vehicle-chooser h2
        {
            font-size: 2rem;
        }

        #vehicle-chooser p
        {
            font-size: 1.25rem;
        }

        #vehicle-chooser .vehicle-model-name
        {
            font-size: 1.5rem;
            margin-bottom: .75em;
        }

        #vehicle-chooser .vehicle-details .max-tow,
        #vehicle-chooser .vehicle-details .engine
        {
            font-size: 1.1rem
        }

            #vehicle-chooser .vehicle-details .max-tow span,
            #vehicle-chooser .vehicle-details .engine span
            {
                display: block
            }
}

@media screen and (max-width:576px)
{
    #vehicle-chooser h2
    {
        font-size: 1.75rem;
    }

    #vehicle-chooser p
    {
        font-size: 1.15rem;
    }

    #vehicle-chooser .vehicle-model-name
    {
        font-size: 1.25rem;
        margin-bottom: .75em;
    }

    #vehicle-chooser .vehicle-details .max-tow,
    #vehicle-chooser .vehicle-details .engine
    {
        font-size: 1.1rem
    }

        #vehicle-chooser .vehicle-details .max-tow span,
        #vehicle-chooser .vehicle-details .engine span
        {
            display: block
        }

    #vehicle-chooser .vehicle-desc p
    {
        font-size: .9rem;
        line-height: 1.4;
        margin-bottom: 0;
        font-weight: 400
    }
}

/* ========================================
SPECIAL PRICING INFO REQUEST
===========================================*/

#special-pricing-info-req
{
    padding: 3em 1em;
    padding-bottom:0em;
    background-color: #ffffff;
}

    #special-pricing-info-req .container
    {
        max-width: 1100px;
        margin: auto;
    }

    #special-pricing-info-req h2
    {
        font-size: 2.0rem;
        color: #61829F;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: .75em;
        text-align: center;
    }

    #special-pricing-info-req p
    {
        font-size: 1.5rem;
        color: #000000;
        text-align: center;
        line-height: 1.4;
        max-width: 750px;
        margin: 0 auto 1.25em auto
    }

@media screen and (max-width:576px)
{
    #special-pricing-info-req
    {
        padding: 2em 1em
    }

        #special-pricing-info-req h2
        {
            font-size: 1.75rem;
        }

        #special-pricing-info-req p
        {
            font-size: 1.15rem;
        }
}

/* ========================================
FOOTER
===========================================*/

#footer
{
    background-color: #efefef;
    padding: 3em 1em;
}

    #footer a
    {
        text-decoration: none
    }

    #footer .logo img
    {
        max-width: 175px;
    }

    #footer .copyright-disclaimers
    {
        font-size: .9rem
    }

    #footer .inline-list
    {
        display: inline-block;
        padding: 0;
        line-height: 2em;
        text-align: center;
    }

        #footer .inline-list > li
        {
            display: inline;
        }

        li.add-bar-after::after
        {
            content: " ";
            letter-spacing: 10px;
            background: linear-gradient(90deg, transparent calc(50% - 0.03125em), currentColor 0, currentColor calc(50% + 0.03125em), transparent 0);
        }

@media screen and (max-width:576px)
{
    #footer
    {
        font-size: .8em
    }

        #footer .logo
        {
            text-align: center;
            margin-bottom: 1em
        }

            #footer .logo img
            {
                max-width: 125px;
            }
}
