.title+.text {
    margin-top: 0;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: var(--header-navigationbartext);
}

.header .navbar,
.header .navbar.bg-primary {
    background: rgba(255, 255, 255, .9) !important;
}

.header .navbar-nav .nav-link {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.85rem !important;
}

:root {
    /* Root variables to reference, delete, or replace */
    --cw-logo-width: 282px;
}

.header .cw-header-logo img {
    width: 240px;
    width: var(--cw-logo-width);
}

/* .cw-header-info .container {
	max-width: 1320px;
} */

.cw-header-contact {
    font-size: 0.9rem;
    /* max-width: 1200px; */
}

.cw-header-contact .fa {
    display: inline-block;
    vertical-align: middle;
    padding-right: 0.25rem;
    color: var(--color-theme-secondary);
}

.cw-header-contact .cw-socials {
    font-size: 1.3rem;
}

.cw-socials i {
    color: #fff;
    margin: 0 5px;
}

.header .navbar .active>.nav-link,
.navbar .nav-link:hover {
    color: var(--color-theme-highlight);
}

.cw-address:before {
    font-family: FontAwesome;
    vertical-align: middle;
    content: "\f3c5";
    padding-right: 0.5rem;
    color: var(--color-theme-secondary);
}

.cw-phone:before {
    font-family: FontAwesome;
    vertical-align: middle;
    content: "\f2a0";
    padding-right: 0.5rem;
    color: var(--color-theme-secondary);
}

header .navbar .dropdown-item {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 400 !important;
}

.header .navbar .dropdown-menu {
    background: #f4f7f7;
}

@media (min-width: 440px) {
    :root {
        --cw-logo-width: 350px;
    }
}

@media (min-width: 768px) {
    :root {
        --cw-logo-width: 535px;
    }
}

@media (min-width: 992px) {
    .cw-header-info .cw-header-logo {
        position: absolute;
        z-index: 1040;
        top: 55px;
        left: auto;
        /*top: unset;*/
    }

    :root {
        --cw-logo-width: 330px;
    }

    .header {
        background: transparent !important;
    }

    .page-home .cw-header-contact {
        /* minor padding for space between nav and top when hero overlaps */
        margin-bottom: 5px;
    }

    nav.navbar .container {
        min-height: 75px;
    }

    .page-home .header .navbar {
        border-radius: 0 2rem 2rem 0;
        z-index: 1;
    }

    /* keeps nav items on the right side of header */
    .header.has-cart .collapse.justify-content-center,
    .header .navbar-collapse.justify-content-center {
        -webkit-box-pack: flex-end !important;
        -ms-flex-pack: flex-end !important;
        justify-content: flex-end !important;
    }

    .header .navbar-nav:not(.navbar-cart) {
        /* set pixels to logo width (or more) */
        max-width: calc(100% - var(--cw-logo-width));
        justify-content: center;
    }

    .header .dropdown-menu[data-bs-popper] {
        /* make navbar dropdowns right aligned so they don't go off page when navbar is right aligned */
        left: unset;
        right: 0;
    }
}

@media (min-width: 1200px) {
    .page-home .header .navbar {
        max-width: 95%;
    }

    .cw-header-info .cw-header-logo {
        top: 44px;
    }

    :root {
        --cw-logo-width: 350px;
    }
}

@media (min-width: 1400px) {

    .page-home .header .navbar {
        /* calculation with bootstrap column width to be  */
        max-width: calc(50% + 1320px / 2);
    }

    .page-home .header.has-cart .collapse.justify-content-center,
    .page-home .header .navbar-collapse.justify-content-center {
        max-width: calc(100% - var(--cw-logo-width));
    }

    .page-home .header .navbar-nav:not(.navbar-cart) {
        max-width: 100%;
        /* add flex grow if you want to center the nav horizontally within its area instaed of to the right */
        /* flex-grow: 1; */
    }

    .page-home nav.navbar .container {
        margin-right: 0;
    }

    .cw-header-info .cw-header-logo {
        top: 33px;
    }

    :root {
        --cw-logo-width: 450px;
    }
}


@media (min-width: 1700px) {

    .page-home .header .navbar {
        /* calculation with bootstrap column width to be  */
        /* max-width: calc(50% + 1320px / 2); */
        max-width: calc(53% + 1320px / 2);
        padding-right: 3%;
    }

}



/* ------ hero ------- */
.cw-hero {
    background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, .6)), url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/401DCE48C794F4E1DF75A584EAA9E7FE.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 0;
    min-height: 450px;
    color: #fff;

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.cw-hero .hero-text {
    /* max-width: 700px; */
    text-align: center;
    padding: .3rem;
}

.cw-hero .hero-text h1 {
    line-height: .9em;
}

.cw-hero a {
    position: relative;
    overflow: visible;
}

.cw-hero i.fa.fa-car {
    position: absolute;
    top: -16px;
    right: -14px;
    background: var(--color-theme-primary);
    padding: 6px 3px 6px 6px;
    border-radius: 30px;
    border: 2px solid #fff;
}

.cw-hero a:hover i.fa.fa-car {
    background: var(--color-theme-highlight);
}

@media(max-width: 768px) {
    /* .cw-hero .hero-text {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 95%;
	} */

}


@media(min-width: 768px) {
    .cw-hero {
        min-height: 500px;
    }

    /* .cw-hero .hero-text {
		position: absolute;
		bottom: 15%;
		z-index: 10;
	} */
    .cw-hero .hero-text {
        max-width: 630px;
        text-align: left;
        padding: 1rem;
    }
}

@media(min-width: 992px) {
    .cw-hero {
        margin-top: -80px;
        min-height: 700px;
    }
}

@media(min-width: 1200px) {
    .cw-hero .hero-text {
        max-width: 700px;
    }
}

.page-home .inventoryslideshow {
    padding-top: 1em;
    padding-bottom: 5em;
}

section.inventory-search-module .btn-primary {
    background: var(--color-theme-secondary);
    border-color: var(--color-theme-secondary);
}

section.inventory-search-module .form__wrapper {
    border-radius: 0 !important;
    border: 0 !important;
}

@media (min-width: 992px) {

    .page-home .inventory-search-module {
        position: relative;
        margin-top: 0 !important;
        background: var(--color-theme-border);
        box-shadow: 1px 2px 10px rgba(25, 25, 25, .2);
    }

    section.inventory-search-module .form__wrapper {
        border-color: #b5b5b5 !important;
    }

    .page-home section.inventory-search-module label {
        font-weight: 700;
    }

    section.inventory-search-module>.container {
        max-width: 1320px !important;
    }
}

/* ======= Offer Section =======*/
.cw-offer {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .75 )), url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/5953ECDC2972ED44060A094F1AE60D1E.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 3rem;
    color: #fff;
    overflow: hidden;
    position: relative;
    margin-top: 5rem;
    padding-bottom: 2rem;
}

.page-service .cw-offer {
    background-image: none;
    padding-top: 1rem;
    margin-top: 3rem;
    padding-bottom: 7rem;
}

.cw-offer .container {
    position: relative;
}

.cw-offer h2 {
    font-size: 3rem;
}

.cw-offer .card {
    color: #000;
    background-image: linear-gradient(0deg, #fff, transparent), url(https://s3.amazonaws.com/fcwebmanager/Abstract/SmartSites/HeroImages/0/abstract_11.jpg);
    background-position: center;
    background-size: contain;
    min-height: 97%;
    padding: 1.5rem 0;
    border: none;
    border-radius: 1rem;
    box-shadow: 1px 2px 10px rgba(25, 25, 25, .8);
}

.cw-offer .divide-box {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    /*background: #37818cc2;*/
    opacity: .6;
}

.cw-offer .divide-box2 {
    position: absolute;
    width: 100%;
    height: 10%;
    background: var(--color-theme-background);
    left: 0;
    bottom: 0;
}

.cw-offer .cw-car-bottom {
    /* position: absolute; */
    /* width: 100%; */
    /* height: 10%; */

    /* text-align: center; */
    /* background: linear-gradient(0deg, #fff, #fff 50%, transparent 50%, transparent); */
    display: none;
}

.page-service .cw-offer .divide-box2 {
    height: 50%;
    background: #f8f8f8;
}


.cw-offer .card i {
    color: var(--color-theme-primary);
    margin-bottom: 1rem;
    width: 100%;
    position: relative;
}

.cw-offer .card i.fa::before {
    position: relative;
    z-index: 10;
    background: var(--color-theme-border);
    padding: 22px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.cw-offer .card i::after {
    /* content: ""; */
    position: absolute;
    width: 100%;
    height: 2rem;
    background: var(--color-theme-secondary);
    left: 0;
}

.cw-offer .card p {
    font-size: 14px;
    padding-bottom: 1rem;
}

.cw-offer .card a.btn.btn-primary {
    width: 80%;
    margin: auto;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .cw-offer {
        padding-bottom: 0rem;
    }

    .cw-offer .cw-car-bottom {
        position: relative;
        z-index: 1;
        display: block;
        text-align: center;
        background: linear-gradient(0deg, var(--color-theme-background), var(--color-theme-background) 50%, transparent 50%, transparent);
    }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
    .page-home .cw-offer .divide-box2 {
        height: 14%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}


/*========= List ========*/

.page-home .list {
    padding-top: 5.5rem;
    padding-bottom: 0;
}

.page-home .list .list-img-wrap {
    padding: 54% 0;
}

.page-home .list .list-wrap {
    position: relative;
    margin-bottom: 0;
}

.page-home .list .list-text-title {
    position: absolute;
    bottom: 15%;
    left: 5%;
    right: 5%;
    width: auto;
    height: auto;
    color: #fff;
    margin: auto;
    text-shadow: 0 0 4px #000;
    pointer-events: none;
}

.page-home .list .list-img-photo:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.25;
    transition: opacity 0.5s linear 0.1s;
}

.page-home .list a.list-img-link:hover .list-img-photo:after {
    opacity: 0.5;
    background: var(--color-theme-highlight);
}

.page-home .list .btn {
    display: none;
}

.page-home .inventoryslideshow {
    padding-top: 2.5rem;
    padding-bottom: 0 !important;
}

.cw-homeAbout {
    margin-bottom: 2.5rem;
    padding: 4rem 0;
    background: linear-gradient(to bottom,
            rgba(15, 59, 92, 0.72),
            rgba(15, 59, 92, 0.72)),
        url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/089624034ABDB78384DFD81D1680D2D0.jpg);
    background-size: cover;
}

.cw-homeAbout .col-12 {
    z-index: 2;
}

.textwithimage h3 span {
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 60%;
    color: var(--color-theme-secondary);
}

.cw-homeSpecial {
    margin-bottom: 6rem;
    color: #fff;
}

.cw-homeSpecial .cw-homeSpecial-wrapper {
    padding: 2em;
}

.cw-homeSpecial h4 {
    font-size: 2rem;
}

.cw-homeSpecial img {
    width: 400px;
}

.cw-homeSpecial .container {
    background: var(--color-theme-highlight);
}

@media (max-width: 576px) {
    .cw-homeSpecial .cw-homeSpecial-content {
        margin-bottom: 2em;
    }
}

@media (min-width: 768px) {
    .page-home .list .list-text-title {
        font-size: 1.75rem;
    }

    .cw-homeAbout {
        padding: 6rem 0;
    }

    .cw-homeAbout h3 {
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }

    .cw-homeSpecial h4 {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .page-home .textwithimage h2 {
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }

    .cw-homeSpecial h4 {
        font-size: 2.5rem;
    }

    .cw-homeSpecials .lead {
        font-size: 1.3rem;
    }
}

@media (min-width: 1340px) {

    .page-home .textwithimage h2,
    .cw-homeAbout h3 {
        font-size: 3rem;
    }

    .page-home .list .list-text-title {
        font-size: 2rem;
    }

    .cw-homeAbout {
        background-attachment: fixed;
    }
}

.popular-vehicles-sections {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: #f8f8f8 !important;
    margin: 0;
    max-width: 100%;
}

.popular-vehicles-section {
    max-width: 1200px;
    margin: auto;
}

.inventoryslideshow h3 {
    font-size: 1.2rem !important;
}

.inventoryslideshow .item__data__price {
    font-size: 1.25rem !important;
}

.inventoryslideshow-slick {
    padding-top: 1rem;
}

.inventoryslideshow-title-heading {
    font-size: 2.25rem;
}

.inventoryslideshow-title-heading span {
    margin-bottom: 0.25rem;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--color-theme-secondary);
}

@media (min-width: 768px) {
    .inventoryslideshow-title-heading {
        font-size: 2.75rem;
    }
}

@media (min-width: 1340px) {
    .inventoryslideshow-title-heading {
        font-size: 3rem;
    }
}

.inventory {
    padding-top: 0 !important;
}

/* .dropdown-menu .badge {
	color: var(--color-theme-primary);
} */
.header .badge {
    color: inherit;
}

.p-veh-card .card-top-img a {
    display: block;
}

.inventory .srp-sidebar .card-header::before {
    border-color: transparent !important;
}

.inventory .card {
    /* background: #f4f7f7 ; */
    /* color: #000; */
    background: rgba(190, 190, 190, 0.1);
}

.inventory .inventory-cta .btn {
    /* background: var(--color-theme-secondary) !important; */
    /* border-color: var(--color-theme-secondary) !important; */
}

.inventory .vehicle-card.layout-2 .inventory-title {
    /* font-size: 1.2rem !important; */
}

body .inventory .vehicle-card.layout-2 .price {
    background: var(--color-theme-primary);
    color: var(--color-theme-text-btn);
    font-weight: 700;
}

.inventory .srp-sidebar .btn-link.btn-clear-filter,
.inventory .srp-sidebar .card-header .card-title,
.inventory .srp-sidebar .card-header .close-filter {
    /* color: var(--color-theme-text-btn); */
}

.inventory .carousel-indicators {
    background: rgba(255, 255, 255, 0.4);
    bottom: 0;
    margin-bottom: 0;
}

.inventory .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    background: var(--color-theme-highlight);
}

.inventory .btn-primary,
.inventory .btn-primary:focus {
    /* background: var(--color-theme-highlight) !important; */
    /* border-color: var(--color-theme-highlight) !important; */
}

/* .vdp__details__mod {
	margin-bottom: 50px;
} */

.vdp__title__mod {
    background: var(--color-theme-highlight);
    color: var(--color-theme-text-btn);
    padding: 1.5rem 1rem 1rem;
}

.vdp-module-canvas-razor-wrapper .btn-secondary,
section.page-inventory-details .btn.btn-primary,
.vdp-module-canvas-razor-wrapper .btn-check:checked+.btn-outline-secondary {
    background: var(--color-theme-secondary) !important;
    border-color: var(--color-theme-secondary) !important;
}

.vdp-module-canvas-razor-wrapper .btn-secondary:hover {
    background: var(--color-theme-secondary) !important;
    border-color: var(--color-theme-secondary) !important;
}

.page-inventory-details .module,
.vdp-module-canvas-razor-wrapper .module {
    margin-top: 25px !important;
}

.page-inventory .container.mb-4 {
    max-width: none;
    margin-bottom: 0 !important;
    padding: 1rem;
    background: var(--color-theme-primary);
    color: #fff;
}

p.veh__generation,
.vdp__title__mod .veh__price[VehicleHeadingWidgetCssScope],
.vdp__title__mod .veh__mileage[VehicleHeadingWidgetCssScope] {
    color: #fff !important;
}

@media (min-width: 992px) {
    .page-inventory .container.mb-4 {
        padding: 3rem 4rem;
    }
}

/* --- Titles ---- */

section:not(.page-home) .cw-title {
    position: relative;
    margin-bottom: 2.5rem;

}

/*  */
section:not(.page-home) .cw-title:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0/38%);
}

.cw-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-theme-highlight);
    background-image: linear-gradient(180deg, var(--color-theme-primary), var(--color-theme-primary), #002a5c61);
}

section:not(.page-home) .cw-title .cw-title-heading {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    color: #fff;
    text-shadow: 0 0 4px #000;
    max-width: 88%;
    margin: auto;
    margin-left: 1rem;
}

section:not(.page-home) .cw-title h1 {
    font-size: 2rem;
    margin: 0
}


.cw-title-heading span.h5 {
    background: var(--color-theme-highlight);
    font-size: .8rem;
    font-weight: 800;
    padding: 2px 10px;
    text-shadow: none;
    position: relative;
}

.cw-title-heading p {
    font-family: "Open Sans", sans-serif;
    font-weight: 200;
    line-height: 15px;
    text-transform: math-auto;
    font-size: .8rem;
}

section:not(.page-home) .form {
    padding-top: 1rem
}

.employees-email {
    font-size: .85rem
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

    section:not(.page-home) .cw-title {
        position: relative;
        margin-bottom: 2.5rem;
        background: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/5953ECDC2972ED44060A094F1AE60D1E.jpg);
        background-size: 60%;
        background-position: right 41%;
        background-repeat: no-repeat;
    }

    .cw-title::before {
        width: 50%;
        height: 100%;
        background-size: contain;
    }

    section:not(.page-home) .cw-title .cw-title-heading {
        margin-left: 4rem;
    }

    section:not(.page-home) .cw-title .cw-title-heading {
        max-width: calc(42% - 4rem);
    }

    section.page-service .cw-title {
        background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/FBEC569014DB990BD8643565B6E11C56.jpg);
    }

    section.page-about-us .cw-title {
        background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/997A2D8A387E48A3679000F78571CBD8.jpg);
    }

    section.page-contact-us .cw-title {
        background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/ABECB158C5F18E73081DF673637E362A.jpg);
    }

    section.page-loan-application .cw-title {
        background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/55BE2038711ADAD9C52B532F13DD678F.jpg);
    }

    section.page-value-my-trade .cw-title {
        background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/A7DDA80FAC8538C973365ECFB8D40968.jpg);
    }
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {}

@media(min-width: 992px) {
    /* section:not(.page-home) .cw-title {
		padding-top: 12px;
	} */

    section:not(.page-home) .cw-title .cw-title-heading {
        padding: 3.5rem 0;
    }

    section:not(.page-home) .cw-title h1 {
        font-size: 2.8rem;
    }
}


section:not(.page-home) .form {
    padding-top: 1rem;
}

.form-forms-header {
    font-size: 1.75rem;
}

.bootstrap-select {
    padding: 0 !important;
    background: 0 0;
    border: none;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}

.form .bootstrap-select .dropdown-menu li.selected a,
.form .bootstrap-select .dropdown-menu li.selected a:hover {
    color: #000;
    background: 0 0;
}

.bootstrap-select .dropdown-menu li a span.text {
    display: inline;
    background: 0 0;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder::after {
    border-top-color: var(--color-theme-highlight);
}

.cw-footer {
    background-color: var(--color-theme-primary);
    color: var(--color-theme-text-btn);
    padding: 3rem 0rem .5rem;
}

.cw-footer p {
    font-size: 14px;
}

.cw-footer a {
    color: inherit;
}

.cw-footer a:hover {
    color: var(--color-theme-secondary);
}

.cw-footer .cw-social {
    font-size: 1.5rem;
}

.cw-footer .cw-social a {
    margin: 1px .5rem;
}

.footer {
    padding-top: 0.5em;
    padding-bottom: 0;
}

.cw-footer .cw-footerMenu {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.cw-footer .cw-foot-section {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;

}

.cw-footer .cw-foot-section .fa {
    color: var(--color-theme-secondary);
}

.cw-footer .cw-footerMenu a {
    font-weight: 800;
    padding: 6px;
}

.cw-footer .business-hours .bh-title {
    padding-left: 5px;
    border-left: 4px solid var(--color-theme-secondary);
    font-size: 1.3rem;
}

.cw-footer .business-hours .today {
    color: var(--color-theme-secondary);
}

.footer ul.footer-nav-links {
    display: none;
}

.cw-footer .cw-footerMenu h5 {
    padding-left: 5px;
    border-left: 4px solid var(--color-theme-secondary);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .cw-footer .cw-footerMenu {
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* -------------------- VDP sticky nav & accessibility fixes ---------------------- */
.vdp-module-canvas-razor-wrapper .vdp__container .row {
    margin: auto;
}

.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:767px) {
    .vdp-module-canvas-razor-wrapper .vdp__details__mod .row>* {
        padding: 0 !important;
    }
}

.sn_business_openclose.open {
    background: var(--color-theme-primary) !important;
    color: var(--color-theme-text-btn) !important;
}

.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod button.sn_more_btn {
    background: var(--color-theme-primary);
    color: var(--color-theme-text-btn);
    font-size: .7rem !important;
    padding: 7px 10px !important;
}

@media (min-width:440px) {
    .vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod button.sn_more_btn {
        font-size: .8rem !important;
        padding: 7px 12px !important;

    }
}

.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod button.sn_more_btn:hover {
    background: var(--color-theme-secondary);
    color: var(--color-theme-text-btn) !important;
}

.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod button.sn_more_btn:before {
    background: var(--color-theme-secondary);
}

.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod .sn_share_item a {
    color: var(--color-theme-text);
}

.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod .sn_share_item a:hover {
    color: var(--color-theme-primary);
}

.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod .sn_dropdown a {
    color: var(--color-theme-text);
}

.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod .sn_dropdown a:hover {
    color: var(--color-theme-primary);
}

/* Template Button text Size  */
.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod .sn_item button.button_sn_item {
    font-size: 1rem !important;
}

/* VDP Dealership info mod  */
@media (max-width:767px) {
    .vdp-module-canvas-razor-wrapper .vdp__dealerInfo__mod .row>* {
        padding: 0 !important;
    }
}

/* @media (max-width:991px) {
	.vdp-module-canvas-razor-wrapper .vdp__container .vdp__dealerInfo__mod {
		margin-bottom: 0 !important;
	}
} */

.vdp-module-canvas-razor-wrapper .vdp__dealerInfo__mod .store__hours {
    margin-bottom: 1em;
}

/* Footer and VDP spacing */
.vdp-module-canvas-razor-wrapper {
    margin-bottom: 2em;
}

/* Loan App Mobile  */
.vdp__loanCalc__mod .narrow__col-12 {
    padding: 0;
}


/* Quick Connect Module */
.vdp-module-canvas-razor-wrapper .vdp__quickconnect__mod .section__title {
    color: var(--color-theme-header);
    margin: 0 0 .5em 0;
}

.vdp-module-canvas-razor-wrapper .vdp__quickconnect__mod {
    border: 0 !important;
    margin-top: 1em !important;
    margin-bottom: 1.5em;
    border-radius: .8vw !important;
}

.section__title__headline {
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.section__title__h2 .section__title__preline {
    font-size: 1.5rem;
    font-weight: 400;
    position: relative;
    color: var(--color-theme-text);
    margin-bottom: 0;
    text-transform: uppercase;
}

/* .section__title__light .section__title__headline,
.section__title__light .section__title__copy {
	color: #fff;
} */

.section__title__h2 .section__title__headline {
    font-size: 2.5rem;
}


/* .section__title__light .section__title__preline {
	color: var(--color-theme-primary);
} */

.bodystyle__section {
    background: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/FB765D921BC02C4EA64FFC5CCDBB126F.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    text-align: center
}

.financing__section {
    position: relative;
    /* z-index: 1; */
}

.financing__section .container {
    max-width: 1320px;
}

.financing__section .financing__img__main {
    max-width: 1500px
}

.financing__section .financing__wrapper {
    width: 100%;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-theme-text);
    overflow: hidden
}

.financing__section .financing__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center
}

.financing__section .info__item__wrapper {
    margin-bottom: 40px
}

.financing__section .info__item__wrapper .info__item__icon__wrapper {
    padding: 10px;
    min-width: 70px;
    min-height: 70px;
    border-radius: 4px;
    background-color: #efefef;
}

.financing__section .info__item__wrapper .info__item__icon__wrapper i {
    font-size: 30px;
    color: var(--color-theme-primary)
}

.financing__section .info__item__wrapper .info__item__icon__wrapper img {
    max-width: 44px;
    max-height: 44px
}

.financing__section .info__item__wrapper .info__item__headline {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--color-theme-text);
}

.financing__section .info__item__wrapper .info__item__headline span {
    color: #37818c !important
}

.financing__section .info__item__wrapper .info__item__copy {
    font-size: 1em;
    margin-bottom: 0
}

.financing__section .info__item__wrapper .info__item__subheadline {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5
}

.cw-contact {
    background: var(--color-theme-secondary);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    max-width: 1300px;
    margin: auto;
    box-shadow: 1px 1px 16px rgba(25, 25, 25, .1);
    border-radius: 10px;
}

.cw-contact .cw-angle {
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(90deg, #fdfdfd, #e5e5e5);
    top: 0;
}

.cw-contact .container-fluid {
    position: relative;
}

.cw-contact a {
    position: relative;
    overflow: inherit;
}

.cw-contact i.fa.fa-phone {
    position: absolute;
    top: -16px;
    right: -14px;
    background: var(--color-theme-primary);
    padding: 6px 3px 6px 6px;
    border-radius: 30px;
    border: 2px solid #fff;
}

.cw-contact a:hover i.fa.fa-phone {
    background: var(--color-theme-highlight);
}

.cw-contact img {
    max-width: 50%
}

@media(min-width: 992px) {
    .cw-contact .cw-angle {
        width: 50%;
        height: 100%;
        left: 0rem;
    }

    .cw-contact img {
        max-width: 100%
    }
}



/*  Service Performance & Customization Section
=================================================================================================*/
.cw-service-grid {
    margin-top: 110px;
    position: relative;
}

.cw-service-grid .container {
    max-width: 1500px;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Titles and text */
.cw-service-grid .cw-preline {
    font-size: 1rem;
    position: relative;
    color: var(--color-theme-secondary);
    margin-bottom: 0;
    /* font-family: var(--bodyfont); */
    font-weight: 400;
    margin-bottom: 5px;
}

.cw-service-grid .cw-preline::before {
    content: "";
    background-repeat: no-repeat;
    width: 80px;
    height: 8px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -20px;
    z-index: 1;
    background-size: 80px 8px;
}

.cw-service-grid .cw-headline {
    font-size: 1.25rem;
    line-height: 0.9;
    font-weight: 800;
    margin-bottom: 15px;
    /* font-family: var(--sitefont); */
}

.cw-service-grid .cw-title-default .cw-preline {
    color: var(--color-theme-primary);
    margin-bottom: 0.25rem;
    font-weight: 400;
    color: var(--color-theme-secondary);
}

.cw-service-grid .cw-title-default .cw-preline::before {
    /* content: ""; */
    /* background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=240,w=320/D763D06AC42A62AB61114D7E0F99B08E.png); */
    /* background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=240,w=320/302D98B2EFAAD2B99676EE74F5E71D33.png); */
}

.cw-service-grid .cw-title-default .cw-headline {
    color: var(--color-theme-text);
}

.cw-service-grid .cw-title-default.text-center .cw-preline::before {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.cw-service-grid a.btn-link {}

.cw-service-grid a.btn-link:hover {
    color: var(--color-theme-highlight);
}

.cw-service-grid .cw-shape-effect-top {
    position: absolute;
    max-width: 350px;
    top: -80px;
    left: -200px;
    z-index: 500;
}

.cw-service-grid .cw-overlay {
    background: linear-gradient(0deg, #fff 0%, transparent, #fff 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cw-service-grid .cw-parallax {
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
    background-color: var(--color-theme-primary);
    padding: 40px 0 100px;
    /* extra padding for overlapping from bottom */
    margin-top: -6.5rem;
    background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/935E3C5972084F46B930663D2CA009C3.jpg");
}

.cw-service-grid .cw-parallax .container {
    position: relative;
    z-index: 2;
}

/* ------ Grid --------- */
.cw-service-grid .cw-grid-wrapper {
    display: grid;
    /* 1 column, 6 rows */
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, auto);
    gap: 0;
}

.cw-service-grid .cw-grid-wrapper .cw-grid-item {
    background: linear-gradient(0deg, #dddddd 0%, #ffffff 100%);
    padding: 20px;
    height: auto;
    min-height: 150px;

    /* using pixel size instead of percent so shape is the same even if the box proportions are different. And used variable for easy changing */
    border-radius: 10px;
}

.cw-service-grid .cw-grid-item .cw-blurb-preline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    /* font-family: var(--sitefont); */
    text-transform: uppercase;
}

.cw-service-grid .cw-grid-item .cw-blurb-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    /* font-family: var(--sitefont); */
}

.cw-service-grid .cw-grid-item .cw-blurb-list {
    margin-bottom: 20px;
    color: #EFF1F3;
}

.cw-service-grid .cw-grid-item.cw-grid-image-1 {
    background: url(https://cdn.powersports.com/cdn-cgi/image/h=600,w=800/01AAF7A5460CFA28814E488CDEB53044.jpg);
    background-size: cover;
    opacity: 0.9;
    transition: .5s ease-in-out;
}

.cw-service-grid .cw-grid-item.cw-grid-image-2 {
    background: url(https://cdn.powersports.com/cdn-cgi/image/h=600,w=800/2DBF5326F00B77E9FF1950E41AFE5E43.jpg);
    background-size: cover;
    opacity: 0.9;
}

.cw-service-grid .cw-grid-item.cw-grid-image-3 {
    background: url(https://cdn.powersports.com/cdn-cgi/image/h=600,w=800/9531DD7958CD935406DC962C8FE1E241.jpg);
    background-size: cover;
    opacity: 0.9;
}


@media (min-width: 350px) {
    .cw-service-grid .cw-headline {
        font-size: 2rem;
    }

    .cw-service-grid .cw-preline {
        font-size: 1.25rem;
    }

    .cw-service-grid .cw-grid-item .cw-blurb-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .cw-service-grid .cw-headline {
        font-size: 3rem;
    }

    .cw-service-grid .cw-preline {
        font-size: 1.5rem;
    }

    .cw-service-grid .cw-shape-effect-top {
        top: -100px;
        max-width: 500px;
    }

    .cw-service-grid .cw-grid-wrapper {
        /* 2 column, 3 rows */
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, auto);
    }

    .cw-service-grid .cw-grid-wrapper .cw-grid-item {
        padding: 30px;
    }

    .cw-service-grid .cw-grid-item .cw-blurb-title {
        font-size: 1.8rem;
    }

}

@media (min-width: 992px) {
    .cw-service-grid .cw-grid-wrapper {
        /* 3 column, 2 rows */
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(2, auto);
        max-width: 1300px;
        margin: auto;
    }
}


@media (min-width: 1200px) {
    .cw-service-grid .cw-grid-wrapper .cw-grid-item {
        padding: 50px;
    }

    .cw-service-grid .cw-grid-item .cw-blurb-title {
        font-size: 2rem;
    }
}

.cw-grid-item.cw-grid-image-1:hover,
.cw-grid-item.cw-grid-image-2:hover,
.cw-grid-item.cw-grid-image-3:hover {
    transition: .5s ease-in-out;
    filter: grayscale(1);
}

.cw-preline {
    margin-bottom: 0.25rem;
    font-weight: 400;
    color: var(--color-theme-secondary);
    font-size: 1.5rem;
}

/* ------ Service  Page --------*/


.cw-welcome {
    padding: 4rem 0;
    overflow: hidden;
}

.cw-welcome .container-fluid {
    max-width: 1440px;
}

.cw-welcome .cw-img-text {
    background-color: var(--color-theme-primary);
    background-image: linear-gradient(45deg, #440c6fd4, #440c6f), url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/FBEC569014DB990BD8643565B6E11C56.jpg);
    background-position: center;
    color: var(--color-theme-text-btn);
    padding: 3.5rem;
    box-shadow: 6px 7px 10px rgba(25, 25, 25, .3);
}

.cw-value {
    font-size: 3rem;
    font-weight: 800;
}

.cw-welcome img {
    box-shadow: 6px 7px 10px rgba(25, 25, 25, .3);
}

.page-service .cw-welcome hr {
    border-top-color: #fff;
    border-top-width: 5px;
    opacity: inherit;
    max-width: 80%;
}

@media(min-width: 768px) {
    .cw-welcome img {
        position: relative;
        right: 2rem;
    }
}

/* ---- Service Page Cards ------*/
.cw-service-card {
    padding: 2rem 0 5rem 0;
}

.cw-service-card .card {
    padding: 1rem;
    text-align: center;
    background: #f8f8f8;
    border: none;
    box-shadow: 2px 5px 10px rgba(25, 25, 25, .1);
}

.cw-service-card .card-head {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cw-service-card p {
    font-size: 12px;
}

.item__card__photo img {
    transition: .5s ease-in-out;
}

.item__card:hover .item__card__photo img {
    transform: scale(1.1);
    transition: .5s ease-in-out;
}

.form-grid-row>.form-forms-date {
    /* Hopefully fixes form popups being underneath other dropdowns/boxes */
    z-index: unset;
}


/*get pre-qualified text:hover*/

.btn-pre-qualified:hover {
    color: #e9e9e9 !important;
}

.page-home button.btn.btn-pre-qualified:hover[b-zeb2b4pwk5] {
    color: #e9e9e9 !important;
}


.page-cars-for-sale button.btn.btn-pre-qualified:hover[b-zeb2b4pwk5] {
    color: #e9e9e9 !important;
}