@media (min-width: 1500px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1500px;
  }
}

/* -------------------- Navbar and Header ---------------------- */
.navbar .container {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.header .navbar .dropdown-menu {
  min-width: 200px;
  width: auto;
  padding: 1em;
  background: var(--color-theme-background);
}

.header .navbar .dropdown-menu .dropdown-item,
.header .navbar .dropdown-menu .badge {
  color: var(--color-theme-text);
}

.header .navbar .active > .nav-link,
.header .navbar .dropdown-item.active,
.header .navbar .dropdown-item:active,
.header .navbar .show > .nav-link {
  background-color: transparent !important;
}

.header__top {
  background-color: #222;
  color: #fff;
  font-size: 12px;
  padding: 10px 0;
}

.header__top .pipe {
  padding: 0 15px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    flex-grow: initial;
  }

  .navbar .container {
    text-align: left;
  }

  .header .navbar .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    margin-right: 10px;
    margin-left: 10px;
  }

  .header .nav-link-cart,
  .header .navbar .nav-link {
    line-height: 20px;
    font-size: 14px;
  }

  /* Affixing header. Might need adjustment if the code for .affix starts working */
  section:not(.page-inventory-details) .header .header-container {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 0 10px #000;
  }

  /** Adds top margin to all pages to account for fixed header**/
  section[class*="page-"]:not(.page-inventory-details) {
    margin-top: var(--cw-headerHeight);
  }

  /* There's a script to make the variable always the size of the header container */
  :root {
    --cw-headerHeight: 121px;
  }
}

@media (min-width: 1200px) {
  .header li.nav-item {
    margin-right: 25px;
  }

  .header li.nav-item:last-of-type {
    margin-right: 0;
  }

  .header .navbar .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .header__top {
    font-size: 14px;
  }
}

/* -------------------- Hero ---------------------- */
.cw-hero {
  position: relative;
  z-index: 4;
  background: linear-gradient(
      to right,
      rgba(30, 30, 30, 0.6),
      rgba(30, 30, 30, 0)
    ),
    url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/A26509B314F4EF12698BF040333645F3.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 4rem 0 6rem;
}

.cw-hero .cw-svg {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1px;
  z-index: 1;
}

.cw-hero .cw-svg svg {
  fill: #222;
}

.cw-hero .cw-heroContent {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cw-hero .cw-heroContent .cw-heroPreline {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25em;
  font-weight: bolder;
  line-height: 1;
}

.cw-hero .cw-heroContent .cw-herolocation {
  font-size: 0.55em !important;
  display: block;
}

.cw-hero .cw-heroContent .hero__headline {
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 700;
  margin-bottom: 10px;
}

.cw-hero .cw-heroContent .hero__CTA i {
  font-size: 14px;
  margin-left: 10px;
}

/* inventory-search-module */
.page-home .inventory-search-module {
  background-color: #222;
  margin: 0 !important;
  padding: 10px 0;
}

.page-home .inventory-search-module .form__wrapper {
  background-color: transparent;
  border: none;
}

.page-home .inventory-search-module .form__wrapper .form-label {
  display: none;
}

@media (min-width: 576px) {
  .page-home .inventory-search-module {
    /* If you want to keep the Hero background over the module at this size, you can uncomment and update both images (here and in .cw-hero above)
		Otherwise removed so it's not accidentally mismatching images*/
    /* background: linear-gradient(to right,
				rgba(30, 30, 30, 0.6),
				rgba(30, 30, 30, 0)),
			url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/F0E50FB2CE087FC428AE1E3DA9187BF2.jpg);
		background-size: cover;
		background-position: top center;
		background-attachment: fixed;
		background-repeat: no-repeat; */
    padding-top: 1.5rem;
  }

  .cw-hero {
    padding: 5rem 0 6rem;
    background-attachment: fixed;
  }
}

@media (min-width: 768px) {
  .page-home .inventory-search-module {
    padding-top: 20px;
  }
}

@media (min-width: 992px) {
  .cw-hero {
    min-height: 500px;
  }

  .page-home .inventory-search-module {
    padding-top: 3.5rem;
    position: absolute;
    width: 100%;
    z-index: 5;
    background: transparent;
    pointer-events: none;
  }

  .page-home .inventory-search-module .form__wrapper {
    position: relative;
    width: clamp(300px, 50%, 650px);
    z-index: 5;
    margin-right: 1rem;
    margin-left: auto;
    pointer-events: all;
    gap: 1rem;
  }

  .page-home .inventory-search-module .container .form__wrapper label {
    display: none;
  }

  .page-home .inventory-search-module .search__input {
    min-width: calc(50% - 1rem);
    flex-basis: calc(50% - 1rem);
    flex-grow: 1;
  }
}

@media (min-width: 1200px) {
  .cw-hero {
    min-height: 500px;
  }

  .page-home .inventory-search-module .search__input.search__input-make {
    order: 1;
  }

  .page-home .inventory-search-module .search__input.search__input--model {
    order: 3;
  }

  .page-home .inventory-search-module .search__input.search__input--min-year {
    order: 5;
  }

  .page-home .inventory-search-module .search__input.search__input--max-year {
    order: 6;
  }

  .page-home .inventory-search-module .search__input.search__input--max-price {
    order: 2;
  }

  .page-home
    .inventory-search-module
    .search__input.search__input--max-mileage {
    order: 4;
  }

  .page-home .inventory-search-module .search__input:last-of-type {
    order: 7;
  }

  .page-home .inventory-search-module .search__input {
    min-width: 40%;
    flex-basis: 45%;
    flex-grow: 1;
  }

  .page-home
    .inventory-search-module
    .container
    .form__wrapper
    .search__input--min-year,
  .page-home
    .inventory-search-module
    .container
    .form__wrapper
    .search__input--max-year {
    min-width: 20%;
    flex-basis: 20%;
  }

  .page-home .inventory-search-module .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .page-home .inventory-search-module .container {
    max-width: 1320px;
  }
}

/* -------------------- Titles ---------------------- */
.title {
  background: #fff;
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.97) 60%,
      rgba(255, 255, 255, 0.7) 100%
    ),
    url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/C035FC0F43FD4D685EEFB014AF37E357.png);
  background-size: contain;
  background-position: center center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2em;
}

.title h1.title-heading {
  text-transform: uppercase;
  text-align: center;
}

.title-heading {
  font-size: 1.25em !important;
}

@media (min-width: 576px) {
  .title-heading {
    font-size: 2em !important;
  }
}

/* -------------------- Search section ---------------------- */
.cw_searchPrice {
  padding: 4em 0 3em;
  background-color: #222;
  background-image: linear-gradient(180deg, #222, #222, #201c17a8),
    url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/C035FC0F43FD4D685EEFB014AF37E357.png);
  background-size: contain;
  color: #fff;
}

.cw_searchPrice h2 {
  font-weight: 700;
  line-height: 1em;
  font-size: 2em;
  text-transform: uppercase;
}

.cw_searchPrice p {
  color: #fff;
  line-height: 1.6em;
}

.cw_searchPrice .cw_shopUnder {
  opacity: 0.9;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.cw_searchPrice .cw_priceRange {
  font-size: 2.1em;
  font-weight: 700;
  line-height: 1.2;
}

.font-header-Montserrat .cw_searchPrice .cw_priceRange {
  font-family: montserrat, sans-serif;
}

.cw_searchPrice .cw_priceRange sup {
  top: -12px;
  font-size: 0.6em;
}

@media (min-width: 1200px) {
  .cw_searchPrice .cw_priceRange {
    font-size: 3em;
  }
}

/* -------------------- SECTIONTITLE ---------------------- */
.inventoryslideshow {
  text-align: center;
  padding-top: 1em !important;
  padding-bottom: 5em;
}

.inventoryslideshow .inventoryslideshow-title-heading {
  color: var(--inventoryslideshow-header);
  display: none;
}

.featured__section__title {
  margin-top: 70px;
}

.section__title__h2 .section__title__preline {
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
  color: var(--color-theme-text);
  margin-bottom: 0;
  font-family: var(--bodyfont);
}

.section__title__h2 .section__title__headline {
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 800;
  margin-bottom: 15px;
  font-family: var(--sitefont);
  text-transform: uppercase;
}

.section__title__copy {
  font-size: 1em;
}

.cw-parallax {
  height: 300px;
  padding-top: 3em;
  background-image: linear-gradient(
      180deg,
      var(--color-theme-primary),
      rgba(0, 0, 0, 0.5)
    ),
    url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/B2118378E99A8E1C698244B632B59EC6.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

.cw-over-btns {
  margin-top: 20px;
  margin-bottom: 48px;
  color: #fff;
}

.cw-over-btns .cw-flex-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
}

.cw-over-btns .card {
  margin-bottom: 20px;
  height: calc(100% - 20px);
  border-radius: 6px;
  border: 0 transparent;
  overflow: hidden;
  padding: 15px 0;
}

.cw-over-btns .cw-card-image .cw-full-btn {
  background: var(--color-theme-primary);
  color: #fff;
  width: 100%;
  padding: 17px 16px;
  text-align: center;
  font-weight: 600;
  border-end-end-radius: 6px;
  border-end-start-radius: 6px;
}

.cw-over-btns .cw-card-image .cw-full-btn:hover {
  background: var(--color-theme-secondary);
  color: var(--color-theme-primary);
}

.cw-over-btns .cw-card-image .card-body {
  padding: 0;
}

.cw-over-btns .cw-card-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.cw-over-btns .card i {
  font-size: 2.25rem;
  margin-bottom: 10px;
}

.cw-over-btns .card h4 {
  font-size: 1.25rem;
  text-transform: uppercase;
}

.cw-over-btns .card p {
  font-size: 1rem;
  margin-bottom: 0;
}

.cw-over-btns .card .cw-btn {
  background: var(--color-theme-secondary);
  border-radius: 8px;
  padding: 10px 15px;
  color: #fff;
}

.cw-over-btns .card .cw-btn:active {
  color: var(--color-theme-text) !important;
  border: 1px solid var(--color-theme-primary);
}

.cw-over-btns .card .cw-btn i {
  font-size: 1rem;
  margin: 0;
}

.cw-over-btns .cw-card-primary {
  background: #fff;
  background-image: linear-gradient(180deg, #fff, #fff, #ffffff9c),
    url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/C035FC0F43FD4D685EEFB014AF37E357.png);
  background-size: contain;
  color: #000;
  box-shadow: 1px 7px 11px rgba(0, 0, 0, 0.2);
}

.cw-over-btns .cw-card-secondary {
  background: var(--color-theme-secondary);
  background-image: linear-gradient(180deg, #222, #222, #22222254),
    url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/C035FC0F43FD4D685EEFB014AF37E357.png);
  background-size: contain;
  box-shadow: 1px 7px 11px rgba(0, 0, 0, 0.2);
}

.cw-over-btns .cw-card-image .card-footer {
  padding: 0;
}

.cw-over-btns .card .card-footer {
  background: 0 0;
  border-top: transparent;
}

@media (min-width: 440px) {
  .cw-over-btns .card h4 {
    font-size: 1.5rem;
  }
}

@media (min-width: 576px) {
  .cw-over-btns .card h4 {
    font-size: 1.35rem;
  }
}

@media (min-width: 768px) {
  .cw-over-btns {
    margin-top: -150px;
  }

  .cw-over-btns .card h4 {
    font-size: 1.65rem;
  }
}

@media (min-width: 992px) {
  .cw-over-btns .card h4 {
    font-size: 1.1rem;
  }

  .cw-over-btns .card i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .cw-over-btns .card h4 {
    font-size: 1.35rem;
  }
}

/* -------------------- SEO links ---------------------- */
.popular-vehicle-link::first-line {
  font-weight: 700;
}

a.popular-vehicle-link:hover {
  color: var(--color-theme-primary) !important;
}

.popular-vehicles-section h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 1.5em;
}

.popular-vehicles-section h2::before {
  content: "";
  width: 100px;
  height: 10px;
  border-bottom: 5px solid var(--color-theme-primary);
  position: absolute;
  bottom: -8px;
}

/* -------------------- Footer ---------------------- */
.cw-footer {
  padding: 4rem 0;
  background: #000
    url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/FE2A0969DF5825829044ED21787C753F.jpg")
    center;
  background-size: cover;
  color: #fff;
  text-align: left;
}

.cw-footer a {
  color: inherit;
}

.cw-footer a:hover {
  color: var(--color-theme-border);
}

.footer-social a {
  color: #fff;
}

.cw-footer .business-hours li {
  border-bottom: 1px solid var(--color-theme-border);
}

.cw-footer .cw-address,
.cw-footer .cw-phone {
  position: relative;
  line-height: 1.35;
  font-size: 1.1rem;
}

.cw-footerMenu a {
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.cw-footerMenu a:hover,
.cw-footer .cw-social a:hover,
.cw-footer .cw-phone:hover {
  color: var(--color-theme-border);
}

.cw-footer h5 {
  margin-bottom: 1rem;
}

.cw-footer .cw-hours {
  font-size: 0.85rem;
  line-height: 2;
}

.cw-footer .cw-hours .business-hours .today {
  font-weight: bolder;
  color: inherit !important;
}

.footer {
  padding-top: 0;
}

footer > .container {
  display: none;
}

.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%;
}

.page-inventory-details #builderCanvas {
  margin-bottom: 1em;
}

/* .vdp-module-canvas-razor-wrapper .vdp__container .row {
	width: 100%;
	margin: auto;
} */

.vdp-module-canvas-razor-wrapper .vdp__sticky-navigation__mod {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* SRP width fix */
.inventory .inventory-container > .row {
  margin-left: 0;
  margin-right: 0;
}

/* -------------------- Sticky nav fixes/changes ---------------------- */
/* Sets sticky top offset and appropriate z-index */
.page-inventory-details .builder-canvas__sticky-container {
  z-index: 1029 !important;
}

@media (min-width: 992px) {
  /* resets z-index higher than navbar when a modal is open. */
  .page-inventory-details .builder-canvas__sticky-container:has(.modal.show) {
    z-index: 1055 !important;
  }
}

/* Hide pre-header on mobile on VDP */
@media (max-width: 991px) {
  .page-inventory-details .header__top {
    display: none;
  }
}

/* Fix Mobile More Info button BG color */
.vdp-module-canvas-razor-wrapper .btn-secondary {
  background-color: var(--inventorydetails-primary) !important;
  color: var(--inventorydetails-text-btn);
  border-color: var(--inventorydetails-primary);
}

.vdp-module-canvas-razor-wrapper .sn_business_openclose.open {
  background-color: var(--inventorydetails-primary) !important;
}

/* Fix Loan Calc VDP Colors */
.vdp-module-canvas-razor-wrapper .btn-check:checked + .btn-outline-secondary {
  background-color: var(--inventorydetails-primary) !important;
  color: var(--inventorydetails-text-btn);
  border-color: var(--inventorydetails-primary);
}

.vdp-module-canvas-razor-wrapper
  .btn-check:checked
  + .btn-outline-secondary:hover {
  background-color: var(--inventorydetails-primary) !important;
}

/* Fix Quick Connect module */
.page-inventory-details .module,
.vdp-module-canvas-razor-wrapper .module {
  margin-top: 10px !important;
}

/* !!! Fix Bottom Footer Colors !!! */

.footer-bottom-section {
  background-color: var(--color-theme-primary) !important;
}

.footer,
.footer .dropdown-item,
.footer .dropdown-item:focus,
.footer .nav-link,
.footer a {
  color: var(--color-theme-background) !important;
}


/* Service Page */
.h2__title .page__title1__preHeadline {
	font-size: 1em;
	font-weight: 400;
}

.h2__title .page__title1 {
	font-size: 1.5em;
	line-height: 1;
	display: block;
	padding-bottom: 10px;
	font-weight: 700;
}

.service__callout .callout__title {
	font-size: 2em;
}

.service__callout {
	background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/CF8E28E42CF188F1F276D86F47E9FBC1.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	padding: 3% 0;
	margin: 0 auto;
	max-width: 1500px;
}

.service__callout__wrapper {
	padding: 0 50px;
	position: relative;
	z-index: 1000;
}

.service__callout__wrapper .service__callout__item .service__callout__data {
	font-size: 4em;
	line-height: 1;
	font-weight: 700;
}

.repair__service__section {
	background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/152C9AA87AA265C396925C56AE5A1323.jpg");
	background-size: cover;
	min-height: 1200px;
	margin-top: 50px;
}

.repair__service__section .title__badge {
	margin-bottom: 5px;
}

.repair__service__section .title__badge span {
	background-color: var(--color-theme-secondary);
	color: #fff;
	padding: 5px 15px;
	border-radius: 6px;
	border: 2px solid var(--primary-dark-text);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.repair__service__section .repair__item__wrapper {
	margin-bottom: 40px;
}

.repair__service__section .repair__item__wrapper:last-of-type {
	margin-bottom: 0;
}

.repair__service__section .repair__item__wrapper .repair__item__content.txtL {
	text-align: left;
}

.repair__service__section .repair__item__wrapper .repair__item__content.txtR {
	text-align: right;
}

.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper {
	padding: 10px;
	min-width: 80px;
	min-height: 80px;
	border: 1px solid var(--border);
	border-radius: 100%;
	background-color: var(--color-theme-primary);
	outline: 2px dashed var(--color-theme-primary);
	outline-offset: 5px;
}

.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper.icon__left {
	margin-left: 10px;
}

.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper.icon__right {
	margin-right: 10px;
}

.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper img {
	max-width: 44px;
	max-height: 44px;
}

.repair__service__section .repair__item__wrapper .repair__item__headline {
	font-size: 20px;
	line-height: 1;
}

.repair__service__section .repair__item__wrapper .repair__item__subheadline {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}

.repair__service__section .shop__popular__links {
	-webkit-column-count: 3;
	column-count: 3;
	margin-bottom: 20px;
}

.repair__vehicle {
	max-height: 600px;
}

@media (max-width: 767px) {

	.repair__service__section .repair__item__wrapper .repair__item__headline,
	.repair__service__section .repair__item__wrapper .repair__item__subheadline {
		font-size: 14px;
	}

	.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper {
		min-width: 50px;
		min-height: 50px;
	}

	.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper img {
		max-width: 24px;
		max-height: 24px;
	}

	.repair__service__section {
		min-height: 1000px;
	}
}

@media (max-width: 576px) {
	.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper {
		min-width: 24px;
		min-height: 24px;
	}

	.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper img {
		max-width: 12px;
		max-height: 12px;
	}

	.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper {
		padding: 5px;
		outline-offset: 2px;
		outline: 1px dashed var(--color-theme-primary);
	}

	.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper.icon__right {
		margin-right: 0;
	}

	.repair__service__section .repair__item__wrapper .repair__item__icon__wrapper.icon__left {
		margin-left: 0;
	}

	.repair__service__section .repair__item__wrapper .repair__item__headline,
	.repair__service__section .repair__item__wrapper .repair__item__subheadline {
		font-size: 12px;
	}

	.repair__service__section .repair__item__wrapper {
		margin-bottom: 20px;
	}
}

.page-service-repair .form {
	padding-top: 0;
}

.page-service-repair .form .form-forms-header {
	display: none;
}

.page-service-repair .form .form-forms-spacer[size="small"] .spacer {
	display: none;
}

.page-service-repair .employees .card.employees-square {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 22.333333%;
	flex: 0 0 22.333333%;
	max-width: 22.333333%;
}

.service__hero {
	background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=960,w=1280/B6A4CC3EE463CE557AEB5C299991A08D.jpg");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 70% auto;
	padding: 100px 0;
	position: relative;
	margin-top: 65px;
}

.service__hero__overlay {
	height: 120%;
	width: 100%;
	top: -50px;
	left: 0;
	position: absolute;
	background-color: transparent;
	background: -webkit-linear-gradient(160deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0) 50%,
			#e0cba1 50%,
			#D2A13E 100%);
	background: -o-linear-gradient(160deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0) 50%,
			#e0cba1 50%,
			#D2A13E 100%);
	background: linear-gradient(290deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0) 50%,
			#e0cba1 50%,
			#D2A13E 100%);
	-webkit-filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.5));
	filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.5));
	opacity: 1;
}

.service__hero__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	color: var(--white-txt);
}

.service__hero__content__wrapper {
	margin-right: 56%;
}

@media (max-width: 991px) {
	.service__hero__overlay {
		background: -webkit-linear-gradient(160deg,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 20%,
				#e0cba1 20%,
				#D2A13E 100%);
		background: -o-linear-gradient(160deg,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 20%,
				#e0cba1 20%,
				#D2A13E 100%);
		background: linear-gradient(290deg,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 20%,
				#e0cba1 20%,
				#D2A13E 100%);
	}

	.service__hero__content__wrapper {
		margin-right: 25%;
		padding-right: 50px;
	}
}

@media (max-width: 567px) {
	.service__hero__overlay {
		background: -webkit-gradient(linear,
				left top,
				right top,
				from(rgba(255, 255, 255, 0)),
				color-stop(0%, rgba(255, 255, 255, 0)),
				color-stop(0%, #e0cba1),
				to(#D2A13E));
		background: -webkit-linear-gradient(left,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 0%,
				#e0cba1 0%,
				#D2A13E 100%);
		background: -o-linear-gradient(left,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 0%,
				#e0cba1 0%,
				#D2A13E 100%);
		background: linear-gradient(90deg,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 0%,
				#e0cba1 0%,
				#D2A13E 100%);
	}

	.service__hero {
		padding: 25px 0;
	}

	.service__hero__content__wrapper {
		padding-right: 0;
		margin-right: 0;
	}
}

.service__services {
	padding: 100px 0;
}

.service__services .repair__item__wrapper {
	margin-bottom: 40px;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.service__services .repair__item__wrapper:last-of-type {
	margin-bottom: 0;
}

.service__services .repair__item__wrapper .repair__item__icon__wrapper {
	padding: 10px;
	min-width: 80px;
	min-height: 80px;
	max-width: 80px;
	max-height: 80px;
	border: 1px solid var(--border);
	border-radius: 100%;
	background-color: var(--color-theme-primary);
	outline: 2px dashed var(--color-theme-primary);
	outline-offset: 5px;
}

.service__services .repair__item__wrapper .repair__item__icon__wrapper img {
	max-width: 44px;
	max-height: 44px;
}

.service__services .repair__item__wrapper .repair__item__headline {
	font-size: 20px;
	line-height: 1;
	margin-top: 20px;
}

.service__services .repair__item__wrapper .repair__item__subheadline {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}

.service__services .repair__item__wrapper .repair__desc {
	margin-top: 10px;
}

.service__roadside {
	background-image: url("../../img/service/roadside-assist.jpg");
	background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=960,w=1280/0BC5FAE47DB1A548340B3F140CB2EB10.jpg");
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 70% auto;
	padding: 100px 0;
	position: relative;
}

.service__roadside__overlay {
	height: 120%;
	width: 100%;
	top: -50px;
	left: 0;
	position: absolute;
	background-color: transparent;
	background: -webkit-linear-gradient(20deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0) 50%,
			#e0cba1 50%,
			#D2A13E 100%);
	background: -o-linear-gradient(20deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0) 50%,
			#e0cba1 50%,
			#D2A13E 100%);
	background: linear-gradient(-290deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0) 50%,
			#e0cba1 50%,
			#D2A13E 100%);
	-webkit-filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.5));
	filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.5));
	opacity: 1;
}

.service__roadside__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	color: var(--white-txt);
}

.service__roadside__content__wrapper {
	margin-left: 56%;
}

@media (max-width: 991px) {
	.service__roadside__overlay {
		background: -webkit-linear-gradient(20deg,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 20%,
				#e0cba1 20%,
				#D2A13E 100%);
		background: -o-linear-gradient(20deg,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 20%,
				#e0cba1 20%,
				#D2A13E 100%);
		background: linear-gradient(-290deg,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 20%,
				#e0cba1 20%,
				#D2A13E 100%);
	}

	.service__roadside__content__wrapper {
		margin-left: 25%;
		padding-left: 50px;
	}
}

@media (max-width: 567px) {
	.service__roadside__overlay {
		background: -webkit-gradient(linear,
				left top,
				right top,
				from(rgba(255, 255, 255, 0)),
				color-stop(0%, rgba(255, 255, 255, 0)),
				color-stop(0%, #e0cba1),
				to(#D2A13E));
		background: -webkit-linear-gradient(left,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 0%,
				#e0cba1 0%,
				#D2A13E 100%);
		background: -o-linear-gradient(left,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 0%,
				#e0cba1 0%,
				#D2A13E 100%);
		background: linear-gradient(90deg,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0) 0%,
				#e0cba1 0%,
				#D2A13E 100%);
	}

	.service__roadside {
		padding: 25px 0;
	}

	.service__roadside__content__wrapper {
		padding-left: 0;
		margin-left: 0;
	}
}

.service__callout .callout__title {
	font-size: 2em;
}

.service__callout__wrapper {
	padding: 0 50px;
	position: relative;
	z-index: 1000;
}

/* Service Grid */
.cw-homepage-service-grid {
	margin-top: 10px;
	position: relative
}

.cw-homepage-service-grid .container {
	max-width: 1500px;
	padding-left: 1rem;
	padding-right: 1rem
}

.cw-homepage-service-grid .cw-preline {
	font-size: 1rem;
	position: relative;
	color: var(--color-theme-text);
	margin-bottom: 0;
	font-weight: 400;
	margin-bottom: 5px
}

.cw-homepage-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-homepage-service-grid .cw-headline {
	font-size: 1.25rem;
	line-height: .9;
	font-weight: 800;
	margin-bottom: 15px;
	text-transform: uppercase
}

.cw-homepage-service-grid .cw-title-default .cw-preline {
	color: var(--color-theme-primary)
}

.cw-homepage-service-grid .cw-title-default .cw-headline {
	color: var(--color-theme-text)
}

.cw-homepage-service-grid .cw-title-default.text-center .cw-preline::before {
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto
}

.cw-homepage-service-grid a.btn-link {
	color: #fff
}

.cw-homepage-service-grid a.btn-link:hover {
	color: var(--color-theme-highlight)
}

.cw-homepage-service-grid .cw-shape-effect-top {
	position: absolute;
	max-width: 350px;
	top: -80px;
	left: -200px;
	z-index: 500
}

.cw-homepage-service-grid .cw-overlay {
	background: linear-gradient(0deg, #00000070 0%, #fff 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1
}

.cw-homepage-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: 105px 0 130px;
	margin-bottom: 30px;
	background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/B8BC7212D008C502BF96DC753F53E840.jpg")
}

.cw-homepage-service-grid .cw-parallax .container {
	position: relative;
	z-index: 2
}

.cw-homepage-service-grid .cw-grid-wrapper {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: repeat(6, auto);
	gap: 1rem
}

.cw-homepage-service-grid .cw-grid-wrapper .cw-grid-item {
	background: linear-gradient(0deg, #404040 0%, #2D2D2E 100%);
	padding: 20px;
	height: auto;
	min-height: 150px;
	border-radius: 10px;
	--cw-wedge-size: 40px;
	-webkit-clip-path: polygon(calc(100% - var(--cw-wedge-size)) 0, 100% var(--cw-wedge-size), 100% 100%, 0 100%, 0 0);
	clip-path: polygon(calc(100% - var(--cw-wedge-size)) 0, 100% var(--cw-wedge-size), 100% 100%, 0 100%, 0 0)
}

.cw-homepage-service-grid .cw-grid-item .cw-blurb-preline {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: var(--color-theme-secondary)
}

.cw-homepage-service-grid .cw-grid-item .cw-blurb-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #eff1f3
}

.cw-homepage-service-grid .cw-grid-item .cw-blurb-list {
	margin-bottom: 20px;
	color: #eff1f3
}

.cw-homepage-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: .9
}

.cw-homepage-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: .9
}

.cw-homepage-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: .9
}

@media(min-width:350px) {
	.cw-homepage-service-grid .cw-headline {
		font-size: 2rem
	}

	.cw-homepage-service-grid .cw-preline {
		font-size: 1.25rem
	}

	.cw-homepage-service-grid .cw-grid-item .cw-blurb-title {
		font-size: 2rem
	}
}

@media(min-width:768px) {
	.cw-homepage-service-grid .cw-headline {
		font-size: 3rem
	}

	.cw-homepage-service-grid .cw-preline {
		font-size: 1.5rem
	}

	.cw-homepage-service-grid .cw-shape-effect-top {
		top: -100px;
		max-width: 500px
	}

	.cw-homepage-service-grid .cw-grid-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(3, auto)
	}

	.cw-homepage-service-grid .cw-grid-wrapper .cw-grid-item {
		padding: 30px
	}

	.cw-homepage-service-grid .cw-grid-item .cw-blurb-title {
		font-size: 1.8rem
	}
}

@media(min-width:992px) {
	.cw-homepage-service-grid .cw-grid-wrapper {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: repeat(2, auto)
	}
}

@media(min-width:1200px) {
	.cw-homepage-service-grid .cw-grid-wrapper .cw-grid-item {
		padding: 50px
	}

	.cw-homepage-service-grid .cw-grid-item .cw-blurb-title {
		font-size: 2rem
	}
}

.sitemap-container.container {
	/* margin-top: 50px; */
}

section.termsandconditions.tcpp {
	/* margin-top: 50px; */
}