.header .navbar-nav {
	text-transform: uppercase;
}


/* inline header code	 */

.cw-header {
	padding: 2rem 0;
	text-align: center;
	color: #ffffff;
}

.cw-header .cw-head-logo img {
	width: 200px;
}

.cw-header .cw-infobox {
	padding: 0.5rem;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}

.cw-header .cw-location h2 {
	font-size: 1rem;
}

.cw-header .cw-location h2 span {
	display: block;
}

.cw-header .cw-contact a {
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	margin: 5px;
}

.cw-header a {
	color: #ff0000;
}

.cw-header .cw-contact a:hover {
	color: #ffff;
	border-color: #dd2b2c;
}

/* -------------------- other/global ---------------------- */
.cw-highlight {
	font-size: clamp(1.02rem, 1vw + 1rem, 2.3rem);
	line-height: 1;
	font-weight: 700;
	color: var(--color-theme-primary);
	text-transform: uppercase;
}

.btn-secondary,
.btn-secondary:focus {
	background-color: var(--color-theme-primary) !important;
	color: var(--color-theme-text-btn);
	border-color: var(--color-theme-secondary);
}

.btn {
	font-weight: 400 !important;
}

.title+.text {
	margin-top: 0;
}

.card-title {
	/* color: #000; */
	font-size: 1.5em;
	line-height: normal;
	/* font-weight: 700; */
	/* margin-bottom: .5em */
}

/* -------------------- custom Buttons ---------------------- */
.cw-primary-button,
.cw-secondary-button {
	/* font-family: montserrat, sans-serif; */
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05rem;
	padding: 0.8rem 2.1rem;
	background-image: linear-gradient(135deg,
			var(--color-theme-primary) 0%,
			var(--color-theme-primary) 50%,
			transparent 51%,
			transparent 100%);
	background-size: 230%;
	background-position: 130%;
	background-repeat: no-repeat;
	transition: 0.3s ease-in-out;
	transition-property: background-position, border, color;
	position: relative;
	z-index: 1;
	text-align: center;
}

.cw-primary-button {
	color: var(--color-theme-text-btn);
	border: 1px solid var(--color-theme-primary);
	background-color: var(--color-theme-primary);
}

.cw-secondary-button {
	color: var(--color-theme-primary);
	border: 1px solid var(--color-theme-text-btn);
	background-color: var(--color-theme-text-btn);
}

.cw-primary-button:hover,
.cw-secondary-button:hover {
	border: 1px solid var(--color-theme-primary);
	color: var(--color-theme-text-btn);
	background-position: 0%;
}

.cw-primary-button:hover:before {
	background-color: #fff;
}

.cw-primary-button:hover:after {
	background-color: #fff;
}

.cw-button-borders {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.cw-button-borders:before {
	content: "";
	position: absolute;
	width: calc(100% + 0.5em);
	height: 50%;
	left: -0.3em;
	top: -0.3em;
	border: 1px solid #fff;
	border-bottom: 0;
}

.cw-button-borders:after {
	content: "";
	position: absolute;
	width: calc(100% + 0.5em);
	height: 50%;
	left: -0.3em;
	bottom: -0.3em;
	border: 1px solid #fff;
	border-top: 0;
	z-index: 0;
}

.cw-button-borders.cw-invert:before {
	border-color: var(--color-theme-primary);
}

.cw-button-borders.cw-invert:after {
	border-color: var(--color-theme-primary);
}

/* -------------------- Homepage ---------------------- */
/* --------------- Title above hero --------------- */
.cw-home-title {
	background-color: var(--color-theme-primary);
	color: var(--color-theme-text-btn);
	padding: 0.5rem 0;
}

.cw-home-title h1 {
	margin-bottom: 0;
	font-size: 1.7rem;
	text-align: center;
}

@media (min-width: 992px) {
	.cw-home-title .cw-title-box {
		max-width: calc(100% - 230px);
		margin: 0;
		margin-left: auto;
	}

	.cw-home-title h1 {
		text-align: right;
	}
}

/* -------------------- Hero ---------------------- */

/* -------------------- Hero slideshow ---------------------- */
.cw-hero {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	font-size: 18px;
	overflow: hidden;
	background: #000;
	color: #fff;
}


.cw-hero-text h3 {
	position: relative;
	z-index: 1;
	max-width: 95%;
	margin: 0 auto 1.5rem;
	color: #fff;
	font-size: 1.5rem;
	text-shadow: 0 0 2px #000;
	text-transform: uppercase;
}

.cw-hero-title span {
	/* white-space: pre-wrap; */
	display: inline-block;
}

.cw-hero .cw-hero-text {
	position: relative;
	z-index: 5;
	opacity: 1;
	max-width: 100%;
	padding: 1rem .5rem;
}

.cw-hero .cw-hero-title {
	display: block;
	margin: 0 auto 1rem;
	font-size: clamp(1.02rem, 4vw + 1rem, 4.2rem);
	line-height: 1;
	white-space: normal;
	word-break: break-word;
	color: #fff;
	z-index: 100;
	/* font-family: montserrat, sans-serif; */
	text-transform: uppercase;
	font-weight: 700;
	text-shadow: 1px 1px 0 #000;
}

@media (min-width: 576px) {
	.cw-hero {
		width: 100%;
		height: 550px;

		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		text-align: center;
		font-size: 18px;
		overflow: hidden;
		background: #000;
		background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/AAA23089B24B3C60CB91FC0C2EEB6339.jpg");
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.cw-hero::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		opacity: .3;
		z-index: 0;
	}
}

@media (min-width: 768px) {}

@media (min-width: 1400px) {
	.cw-hero {
		height: 36vw;
	}

	.cw-hero .cw-hero-text h3 {
		font-size: 2rem;
	}
}


/* -------------------- text and image section ---------------------- */
.cw-textImage {
	padding: 1.5em 0;
	background: #111;
	color: #fff;
}

.cw-textImage img {
	margin-bottom: 2rem;
}

.cw-textImage h3 {
	margin-bottom: 1rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	.cw-textImage {
		padding: 3.5em 0;
		background: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/4217503CF93A0E85E82F2BB95E67B081.jpg) center;
		background-size: cover;
		color: #fff;
	}
}

@media (min-width: 768px) {}

@media (min-width: 992px) {
	.cw-textImage h3 {
		margin-bottom: 1rem;
		font-size: 2rem;
	}

	.cw-textImage img {
		margin-bottom: 0;
	}
}

@media (min-width: 1440px) {
	.cw-textImage {
		background-attachment: fixed;
	}
}


/* -------------------- Search section ---------------------- */
.cw-search-section {
	padding: 1.5rem 0;
	margin-top: 0;
	/* margin-bottom: 2rem; */
	z-index: 5;
	position: relative;
	background: var(--color-theme-text);
	color: var(--color-theme-background);
}

.cw-search-section::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 20%;
	-o-object-fit: cover;
	object-fit: cover;
	background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/6228FF8433BA1B4E5EED2F317EC5E6BC.png);
}

.page-home .inventory-search-module .container {
	position: relative;
}

.page-home .inventory-search-module .container .form__wrapper {
	padding: 0 !important;
	border: none;
}

.page-home .inventory-search-module .container .form__wrapper label {
	display: none;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	.cw-search-section {
		padding: 6rem 1rem;
		/* margin-bottom: 3rem; */
	}

	/*  making the search module containers at bootstrap sizes
	(another at 1400px) */
	.page-home .inventory-search-module .container {
		max-width: 1140px;
	}

	/* Otherwise you could make other containers on page match up with the search module instead. */
	/* .page-home .container {
		max-width: 1500px;
	} */
	.page-home .inventory-search-module .container .form__wrapper {
		position: absolute;
		z-index: 10;
		left: 0;
		top: -290px;
		width: 700px;
		max-width: 50%;
		padding: 20px;
		display: flex;
		flex-direction: column;
		align-items: unset;
		border: none;
		gap: 10px;
	}

	.page-home .inventory-search-module {
		margin: 0 !important;
		padding: 0;
		background-color: transparent;
	}

	.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: 45%;
		flex-basis: 45%;
	}

	.cw-search-hero .cw-heroContent {
		max-width: clamp(200px, 50%, 600px);
		margin-left: 5px;
		margin-right: auto;
	}

	/* order positioning of the html, before re-ordering with css
  0. .search__input--classification
  1. .search__input-make
  2. .search__input--model
  3. .search__input--min-year
  4. .search__input--max-year
  5. .search__input--max-price
  6. .search__input--max-mileage
  7. (button. no specific class) :last-of-type
*/
	.page-home .inventory-search-module .search__input.search__input--classification {
		order: 0;
	}

	.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%;
	}
}

@media (min-width: 1400px) {
	.page-home .inventory-search-module .container {
		max-width: 1320px;
	}
}

/* Inventory slideshow/featured vehicles */
.page-home .inventoryslideshow {
	/* margin-top: -4rem; */
	padding-top: 2rem;
	padding-bottom: 0;
}

/* -------------------- Contact page and About page info ---------------------- */

.cw-business h4 {
	color: var(--color-theme-text);
	border-bottom-width: 0.1em;
	border-color: var(--color-theme-text);
	border-bottom-style: solid;
	margin-bottom: 0.8em;
	/* font-family: "Poppins", sans-serif; */
	font-weight: 700;
}

.cw-business h5 {
	/* font-family: "Poppins", sans-serif; */
	font-weight: 400;
	position: relative;
	white-space: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
	font-weight: 400;
	line-height: 0.8em;
	margin-bottom: 1.2em;
}

.cw-business h5 a {
	margin-left: 38px;
}

.cw-business a:hover {
	color: var(--color-theme-highlight);
}

.cw-business a:hover i {
	background: var(--color-theme-highlight);
}

.cw-business a:hover i::after {
	border: 2px solid var(--color-theme-highlight);
}

.cw-business i {
	position: absolute;
	top: -4px;
	left: 1px;
	text-align: center;
	background: var(--color-theme-primary);
	color: var(--color-theme-background);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: block;
	line-height: 26px;
	font-size: 15px;
	padding-left: 1px;
}

.cw-business i::before {
	box-sizing: border-box;
}

.cw-business i::after {
	content: "";
	display: block;
	position: absolute;
	top: -4px;
	left: -4px;
	border: 2px solid var(--color-theme-primary);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	transition: border 0.2s ease;
}



/* -------------------- Footer ---------------------- */
.cw-footer {
	padding: 4rem 0;
	background-color: #000;
	background-size: cover;
	color: #fff;
}

.cw-footer iframe {
	width: 100%;
}

.cw-footer a {
	color: #fff;
}

.cw-footer .cw-address,
.cw-header-contact .cw-phone,
.cw-footer .cw-phone {
	position: relative;
	line-height: 1.35;
	padding-left: 1.5rem;
	font-size: 1rem;
	color: var(--color-theme-text-btn);
}

.cw-footer .cw-address:before {
	font-family: FontAwesome;
	content: "\f3c5";
	position: absolute;
	left: 0;
	padding-right: 0.5rem;
	color: #fff;
}

.cw-header-contact .cw-phone:before,
.cw-footer .cw-phone:before {
	font-family: FontAwesome;
	content: "\f2a0";
	position: absolute;
	left: 0;
	top: 2px;
	padding-right: 0.5rem;
	color: inherit;
}

.cw-footerMenu a {
	display: block;
	margin-bottom: 0.65rem;
	font-weight: 700;
}

.cw-footerMenu a:hover,
.cw-footer .cw-social a:hover,
.cw-header-contact .cw-phone:hover,
.cw-footer .cw-phone:hover {
	color: #dddddd;
}

.cw-footer h5,
.cw-footer .business-hours .bh-title {
	margin-bottom: 1rem;
	color: var(--color-theme-primary);
	padding-left: 0;
	border: none;
	font-size: 1.25rem;
	text-transform: uppercase;
}

.business-hours li {
	font-size: 0.85rem;
}

.cw-social a {
	display: inline-block;
	margin: 0 0.5rem 0 0;
}

.cw-social i {
	font-size: 25px;
}

.footer {
	padding-top: 0;
}

footer>.container {
	display: none;
}

/* -------------------- internal titles ---------------------- */
section:not(.page-home) .title {
	position: relative;
	margin-bottom: 1.5rem;
	background: #333;
	color: #fff;
	text-align: center;
}

section:not(.page-home) .title .title-heading {
	position: relative;
	z-index: 1;
	margin: auto;
	padding: 0rem 0;
	color: #fff;
	text-shadow: 0 0 4px #000;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	section:not(.page-home) .title {
		position: relative;
		margin-bottom: 2rem;
		background: linear-gradient(to bottom,
				rgba(0, 0, 0, 0.58),
				rgba(0, 0, 0, 0.58)),
			url(https://cdn.powersports.com/cdn-cgi/image/h=960,w=1280/2D8C1330EED2D8013C4403B59D5BD0F2.jpg) no-repeat center;
		background-size: cover;
		text-align: center;
	}

	section:not(.page-home) .title .title-heading {
		position: relative;
		z-index: 1;
		margin: auto;
		padding: 3rem 0;
		color: #fff;
		text-shadow: 0 0 4px #000;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
	section:not(.page-home) .title {
		background: linear-gradient(to bottom,
				rgba(0, 0, 0, 0.58),
				rgba(0, 0, 0, 0.58)),
			url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/2D8C1330EED2D8013C4403B59D5BD0F2.jpg) no-repeat center;
		background-size: cover;
	}

	section:not(.page-home) .title .title-heading {
		padding: 4rem 0;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* -------------------- the best button section ---------------------- */

.cw-section-weAreTheBest {
	background: #444;
	color: #fff;
	padding: 3rem 0 2rem;
}

.cw-section-weAreTheBest a {
	color: inherit;
	display: block;
	height: 100%;
	width: 100%;
}

.cw-section-weAreTheBest h3 {
	font-size: clamp(1.02rem, 1vw + 1rem, 2.3rem);
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase
}

.cw-section-weAreTheBest h3 span {
	font-size: clamp(1.02rem, 1vw + 1rem, 2.3rem);
	line-height: 1;
	font-weight: 700;
	color: var(--color-theme-primary);
	text-transform: uppercase
}

.cw-section-weAreTheBest .cw-icon-info {
	position: relative;
	z-index: 2
}

.cw-section-weAreTheBest .cw-copy {
	position: relative;
	z-index: 2
}

.cw-section-weAreTheBest .cw-copy p {
	font-size: 14px
}

.cw-section-weAreTheBest .cw-quality-icon {
	width: 70px;
	height: 70px;
	display: flex;
	border-radius: 50%;
	color: #fff;
	margin-bottom: 20px;
	background-color: var(--color-theme-primary);
	align-items: center;
	justify-content: center
}

.cw-section-weAreTheBest .cw-quality-icon i {
	font-size: 1.5em
}

.cw-section-weAreTheBest .cw-icon {
	height: 25px;
	width: 100%
}

.cw-section-weAreTheBest .card-title {
	color: var(--black);
	font-size: 1.5em;
	line-height: normal;
	font-weight: 700;
	margin-bottom: .5em
}

.cw-section-weAreTheBest .cw-card {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	background-color: #fff;
	padding: 2em 1.2em;
	text-decoration: none;
	z-index: 0;
	overflow: hidden;
	background-color: rgba(0, 0, 0, .5);
	border: 1px solid #fff
}

.cw-section-weAreTheBest .cw-card {
	transition: all .5s;
}

.cw-section-weAreTheBest .cw-card:hover {
	background-color: rgb(0, 0, 0);
	transition: all .5s;
	transform: translateY(-10px);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

	.cw-section-weAreTheBest {
		background-image: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/5DFFA1BCFEF4DA3E69B154CF7E7CC977.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: fixed;
		color: #fff;
		padding: 6rem 0 3rem;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* -------------------- SECTIONTITLE ---------------------- */

/* Fix Quick Connect module */
.page-inventory-details .module,
.vdp-module-canvas-razor-wrapper .module {
	margin-top: 10px !important;
}

/* 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 Slider Colors */
.inventoryslideshow .card__multi__style4 .item__flex .item__data .item__data__price {
	color: var(--color-theme-text);
}

/* Fix VDP Colors */
.page-inventory-details .inventorydetails {
	color: #111 !important;
}

/* Fix VDP Colors */
.page-loan-application .loan-app-module {
	color: #111 !important;
}

.cw-search-filters {
	background-color: #e5e5e5;
	padding: 3rem 0;
	margin-bottom: 2rem;
}

.cw-search-filters .container {
	max-width: 1400px;
}

.cw-search-filters .cw-style-side,
.cw-search-filters .cw-price-side {
	background-color: #fff;
	color: #333;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: center;
	padding: 1rem 0;
	margin-bottom: 1rem;
}

.cw-search-filters .cw-search-row {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	align-items: center;
	flex-grow: 1;
}

.cw-search-filters .cw-search-row .cw-search-box {
	flex-grow: 1;
	flex-basis: 99%;
	padding: 15px;
	text-align: center;
}

.cw-search-filters .cw-search-row a {
	min-height: 4rem;
	flex-grow: 1;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	transform: scale(0.94);
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

.cw-search-filters .cw-search-row a:hover {
	transform: scale(1);
}

/* style side modifications */
.cw-search-filters .cw-style-side .cw-search-row a {
	color: inherit;
	font-weight: 700;
	font-size: 1.3rem;
}

.cw-search-filters .cw-style-side .cw-search-row a p {
	margin: 0;
}

.cw-search-filters .cw-style-side .cw-search-row a:hover {
	color: var(--color-theme-highlight);
}

.cw-search-filters .cw-style-side img {
	width: 180px;
}

/* Price side modifications */
.cw-search-filters .cw-price-side .cw-search-row a {}

.cw-search-filters .cw-price-side .cw-search-row a:hover {}

@media (min-width: 440px) {
	.cw-search-filters .cw-search-row .cw-search-box {
		flex-basis: 49%;
	}
}

@media (min-width: 576px) {
	.cw-search-filters .cw-search-row .cw-search-box {
		flex-basis: 32%;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {

	.cw-search-filters .cw-style-side,
	.cw-search-filters .cw-price-side {
		height: 100%;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	.cw-search-filters .cw-search-row .cw-search-box {
		flex-basis: 32%;
	}
}


/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	.cw-header .cw-infobox {
		display: none;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and ) */
@media (min-width: 1400px) {}