/* -------------------- Header ---------------------- */
.cw-custom-header {
	padding: 1.1rem 0;
}

.cw-custom-header .cw-logo img {
	width: 450px;
	margin-right: auto;
	margin-left: auto;
}

.cw-custom-header .cw-header-text a {
	color: inherit;
}
.cw-custom-header .cw-header-text a:hover {
	color: var(--color-theme-highlight);
}

.cw-custom-header .cw-header-text .cw-location {
	font-size: 1.2em;
	margin-bottom: 10px;
}

.cw-custom-header .cw-header-text .cw-address {
	font-size: 1em;
	margin-bottom: 10px;
}

.cw-custom-header .cw-header-text .cw-phone {
	font-size: 1.4em;
	font-weight: 400;
	margin: 0;
}

.cw-custom-header .cw-header-text .cw-fax {
	font-size: 1.4em;
	font-weight: 400;
	margin: 0;
}

.cw-custom-header .cw-header-text .cw-fax .fa {
	font-size: 1.0em;
}

.cw-custom-header .cw-header-text .cw-email {
	font-size: 1.1em;
	font-weight: normal;
}

/* -------------------- Navbar ---------------------- */

.header .navbar .active>.nav-link,
.header .navbar .dropdown-item.active,
.header .navbar .dropdown-item:active,
.header .navbar .show>.nav-link {
	color: var(--color-theme-text-btn);
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
	color: var(--header-navigationbartext);
}

.header .navbar-nav {
	text-transform: uppercase
}


/* -------------------- other/global ---------------------- */

/* -------------------- Hero ---------------------- */

.cw-hero-slideshow {
	position: relative;
	overflow: hidden;
	--cw-slide-height: 400px;
	height: var(--cw-slide-height);
	min-height: var(--cw-slide-height);
	background-color: #666;
}

.cw-hero-slideshow .cw-image-slider {
	position: absolute;
	inset: 0;
}

.cw-hero-slideshow .cw-image-slider img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: all 4s ease-in-out;
	opacity: 0;
	transform: scale(1.1);
	height: var(--cw-slide-height);
}

.cw-hero-slideshow .cw-image-slider .active img {
	opacity: 1;
	transform: scale(1);
	object-fit: cover;
	object-position: center;
}

.cw-hero-slideshow .cw-image-slider .carousel-item-start:not(.active) {
	/* opacity: 1; */
	/* transition-delay: 1s; */
	/* background-color: #CF0000; */
}

.cw-hero-slideshow .cw-image-slider .cw-first-slide img {
	animation: 3s cw-first-anim forwards;
}

@keyframes cw-first-anim {
	0% {
		/* Start */
		opacity: 0;
		transform: scale(1.1);
	}

	100% {
		/* End */
		opacity: 1;
		transform: scale(1);
	}
}

.cw-hero-slideshow .cw-image-slider .carousel-item-start:not(.active) img {
	opacity: 1;
	transition-duration: .5s;
}

.cw-hero-slideshow .cw-hero-overlay {
	height: 100%;
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	z-index: 2;
	padding-top: 1rem;
}

.cw-hero-slideshow .cw-slideshow-buttons {
	padding-top: 30%;
	padding-bottom: 2rem;
	width: 100%;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
	background-position: center;
	background-size: cover;
	/*background-attachment: fixed;*/
	background-repeat: no-repeat;
}

.cw-hero-slideshow .cw-slideshow-buttons .cw-SS-row {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;

	padding: 1px .5rem;
	max-width: 1340px;
	margin-left: auto;
	margin-right: auto;
	gap: 1rem;
}

.cw-hero-slideshow .cw-slideshow-buttons .cw-SS-btn {
	display: block;
	margin: .5em auto;
	/* width: 75%; */
	width: 90%;
	max-width: 300px;
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: .5em 1em;
	border-radius: 2px 20px 2px 20px;
	border: 3px solid #CF0000;
	color: #FFFFFF;
	transition: .4s;
	text-align: center;
}

.cw-hero-slideshow .cw-slideshow-buttons .cw-SS-btn:hover {
	background-color: #CF0000;
	color: #FFFFFF;
	border-radius: 15px 2px 15px 2px;
	transform: scale(1.07);
}

@keyframes cw-kenburns {
	0% {
		opacity: 0;
		transform: scale(1.2);
	}

	8% {
		opacity: 1;
	}

	38% {
		opacity: 1;
	}

	50% {
		opacity: 0;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.2);
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

	.cw-hero-slideshow .cw-slideshow-buttons {
		padding-top: 15%;
		padding-bottom: 2rem;
	}

	.cw-hero-slideshow .cw-slideshow-buttons .cw-SS-row {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-around;
		align-items: center;

		max-width: 1500px;
		margin-left: auto;
		margin-right: auto;
	}

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

	.cw-hero-slideshow {
		--cw-slide-height: 600px;
	}

	.cw-hero-slideshow .cw-slideshow-buttons .cw-SS-btn {
		max-width: 360px;
		font-size: 1.4rem;
	}
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {

	.cw-hero-slideshow .cw-slideshow-buttons .cw-SS-btn {
		font-size: 1.8rem;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}


/* -------------------- Homepage title/modules ---------------------- */
.page-home .title {
	text-transform: uppercase;
	padding: 1.5rem 0;
}

.page-home .title h1 {
	margin: 0;
}

section:not(.page-home) .title h1 {
	padding-bottom: .5rem;
	border-bottom: 1px solid var(--color-theme-highlight);
	margin-bottom: 0;
}

/* credit qualify */
.page-home section.creditQualifyBanner {
	background: #666666;
	padding: 2rem 0;
	margin: 0 !important;
}

/* Advanced search */
.page-home section.inventory-search-module .form__wrapper {
	background-color: #ccc;
}

/* Single card FV */
.page-home .inventoryslideshow-m1:has(.card__single__horizontal__style1) {

	background: linear-gradient(120deg, #333333 0%, #333333 60%, #999999 60%, #999999 100%);
}

.page-home .inventoryslideshow-m1:has(.card__single__horizontal__style1) .inventoryslideshow-container {
	background-color: #fff;
	color: #000;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

/* -------------------- Finance and car finder banners ---------------------- */

/* Finance Section */
.cw-finance-section {
	padding: 3rem 0;
	background-color: #666666;
}

.cw-finance-button {
	/* margin-top: 1em; */
}

.cw-finance-section .cw-finance-btn {
	color: #FFFFFF;
	text-shadow: 2px 2px 2px #00227D;
	border-radius: 2px 20px 2px 20px;
	font-size: 2em;
	padding: .5em 1.5em;
	transition: .2s;
	animation: glowing 1500ms infinite;
}

.cw-finance-section .cw-finance-btn:hover {
	background: #1084AF;
	color: #FFFFFF;
	border-radius: 15px 2px 15px 2px;
	transform: scale(1.1);
	animation: none;
}

.cw-finance-section .cw-finance-btn i {
	color: #CF0000;
}

.cw-finance-text p {
	color: #FFFFFF;
	font-size: 1.5em;
	font-weight: 800;
	text-shadow: 2px 2px 2px #00227D;
	margin: 0;
}

/* Glowing Keyframes */
@keyframes glowing {
	0% {
		border-color: #1084AF;
		box-shadow: 0 0 6px #1084AF;
	}

	50% {
		border-color: #1084AF;
		box-shadow: 0 0 13px #1084AF;
	}

	100% {
		border-color: #1084AF;
		box-shadow: 0 0 6px #1084AF;
	}
}

/* Car Finder Section */
.cw-car-finder {
	text-align: center;
	background-color: #00227D;
	padding: 1.5em 0 3em 0;
	color: #FFFFFF;
}

.cw-car-finder span {
	font-size: 1.5em;
}

.cw-car-finder i {
	color: #CF0000;
}

.cw-car-finder-text {
	font-size: 1.25em;
}

.cw-car-finder .cw-car-finder-btn {
	border: 2px solid #CF0000;
	border-radius: 2px 15px 1px 15px;
	color: #FFFFFF;
	padding: .5em;
	font-size: 1.5em;
	vertical-align: bottom;
	transition: .2s;
}

.cw-car-finder .cw-car-finder-btn:hover {
	border-radius: 15px 2px 15px 2px;
	background-color: #CF0000;
	color: #FFFFFF;
	font-weight: 600;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* 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) {}

/* -------------------- Homepage search with background ---------------------- */

/* Search Buttons */
.cw-search-buttons {
	background: #000;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.4) 100%), url('https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/DD04BE194EA447106A8D75ED1207BDF1.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 1em 0;
}

.cw-search-buttons .cw-buttons {
	padding: 1rem;
}

.cw-search-buttons .cw-buttons h5 {
	color: #FFFFFF;
	font-weight: 800;
	font-size: 1.25em;
	text-shadow: 2px 2px 2px #333;
}

.cw-search-buttons .cw-buttons a {
	display: block;
	padding: .5em;
	margin-top: .25em;
	font-size: 1.15em;
	font-weight: 600;
	color: var(--color-theme-text-btn);
	background-color: var(--color-theme-highlight);
	border: transparent;
	border-radius: 3px;
}

.cw-search-buttons .cw-buttons a:hover {
	color: var(--color-theme-text-btn);
	background: var(--color-theme-secondary);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	.cw-main-slideshow .cw-slideshow-btn {
		font-size: 1.5em;
		padding: 1.25em 10%;
	}

	.cw-finance-text p {
		font-size: 2.25em;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.cw-main-slideshow {
		height: 600px;
	}

	.cw-finance-text p {
		font-size: 2.75em;
	}
}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
	.cw-car-finder {
		padding: 2.5em 0 1.5em 0;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* -------------------- Homepage about -------------------- */
.cw-textImage {
	padding: 3rem 1rem;
	background: linear-gradient(120deg, #333333 0%, #333333 60%, #999999 60%, #999999 100%);
	overflow: hidden;
}

.cw-textImage .container {
	background-color: #fff;
	color: #222;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.cw-textImage {
		padding: 5rem 1rem;
	}
}

/* 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) {}

/* -------------------- Homepage Parallax -------------------- */

.cw-parallax-window {
	min-height: 300px;
	padding-top: 2rem;
	padding-bottom: 2rem;
	margin-bottom: 3rem;
	background: #333;
	background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/A5CFFE04725A1812D86047490F3C37A3.jpg");
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.cw-parallax-text {
	position: relative;
	width: 100%;
	height: auto;
	background: rgba(0, 0, 0, 0.7);
	color: #FFFFFF;
	padding: 2rem;
}

.cw-parallax-text h5 {
	text-transform: uppercase;
	color: #eee;
	font-size: 1.5rem;
}

.cw-parallax-text h5 span {
	display: block;
	font-size: 2rem;
	font-weight: 700;
}

.cw-parallax-text h5 p {
	font-size: 1.25em;
}

@media (min-width: 768px) {
	.cw-parallax-window {
		min-height: 400px;
		padding-top: 5em;
	}
}

@media (min-width: 992px) {
	.cw-parallax-window {
		min-height: 500px;
	}
}




/* -------------------- SRP inventory page ---------------------- */
.inventory-cta .btn:not(.btn-pre-qualified):hover {
	color: var(--color-theme-text-btn) !important;
}

/* -------------------- VDP inventory details page ---------------------- */
/* 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;
}