section:nth-child(2n) {
	background-color: #f9f9f9;
}

.__ddp_page p {
	margin-bottom: 1rem;
}

@media (min-width: 768px) and (max-width: 1199px) {
	.__ddp_page p {
		font-size: 13px;
	}
}

.text-underline {
	text-decoration: underline;
}

/* ------------------------------------- Floating Header Start  ---------------------------------*/
.floatingHeader {
	position: relative;
	width: 100%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
	background-color: var(--white-color);
	border-top: 1px solid #ddd;
	z-index: 9;
}

.floatingHeader.floatingHeader-fixed {
	position: fixed !important;
	background-color: var(--white-color);
	width: 100%;
	top: 0;
	z-index: 99;
	animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translate3d(0, 0, 0) translateY(-35px);
	}

	100% {
		transform: translate3d(0, 0, 0) translateY(0px);
	}
}

@media (max-width: 1199px) {
	.floatingHeader .container-mid {
		padding: 0px;
	}
}

.floatingHeader .navbar {
	padding: 0px;
	display: flex;
	justify-content: center;
}

@media (max-width: 1199px) {
	.floatingHeader .navbar {
		padding: 15px;
		justify-content: space-between;
	}
}

.floatingHeader .navbar h6 {
	font-size: 15px;
	color: var(--dark-color);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 90%;
	display: block;
}

@media (min-width: 768px) and (max-width: 1199px) {
	.floatingHeader .navbar h6 {
		width: 100%;
		display: block;
	}
}

@media (min-width: 1199px) {
	.floatingHeader .floatingHeader-title {
		display: none;
	}
}

.floatingHeader .sub-navbar-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}

@media (max-width: 1199px) {
	.floatingHeader .sub-navbar-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: var(--white-color);
		display: none;
	}
}

.floatingHeader .sub-navbar-nav .nav-item button {
	background-color: transparent;
	color: var(--dark-color);
	padding: 12px 10px;
	font-size: 14px;
	line-height: 2;
	text-align: center;
	text-transform: capitalize;
	position: relative;
	transition: .3s ease-in-out;
	z-index: 1;
	position: relative;
	cursor: pointer;
}

@media (max-width: 1199px) {
	.floatingHeader .sub-navbar-nav .nav-item button {
		padding: 13px 5px;
		border-top: 1px solid #eee;
		line-height: 1.25;
		font-size: 13px;
	}
}

@media (min-width: 1199px) and (max-width: 1499px) {
	.floatingHeader .sub-navbar-nav .nav-item button {
		padding: 15px 5px;
		font-size: 13px;
	}
}

.floatingHeader .sub-navbar-nav .nav-item button::after {
	content: '';
	position: absolute;
	right: 0;
	top: 30%;
	width: 1px;
	height: 40%;
	display: block;
	background-color: var(--dark-color);
	opacity: .7;
}

@media (max-width: 1199px) {
	.floatingHeader .sub-navbar-nav .nav-item:last-child a {
		border-bottom: 1px solid #eee;
	}
}

.floatingHeader .sub-navbar-nav .nav-item:last-child a::after {
	width: 0;
}

.floatingHeader .menu-toggler {
	display: block;
	cursor: pointer;
	position: absolute;
	right: 15px;
	border-radius: 50%;
	text-align: center;
	top: 10px;
	transition: .3s ease-in-out;
}

.floatingHeader .menu-toggler.active {
	transform: rotate(180deg);
}

/* ------------------------------------- Floating Header End  ---------------------------------*/

/* ------------------------------------- Dealer Detail Banner Start  ---------------------------------*/
.dealer-details {
	padding: 3rem 0;
	position: relative;
}

.dealerDetail-banner span.dealer-banner-img img {
	max-width: 100%;
	width: 100%;
	display: block;
	cursor: pointer;
}

.dealerDetail-banner-inner {
	background-position: center 80%;
	background-repeat: no-repeat;
	height: 500px;
	width: 100%;
	position: relative;
}

@media (max-width: 767px) {
	.dealerDetail-banner-inner {
		height: 300px;
	}
}

.banner-carousel-indicators .carousel-control-prev,
.banner-carousel-indicators .carousel-control-next {
	opacity: 1;
	color: var(--white-color);
	width: 20px;
}

.banner-carousel-indicators .carousel-control-prev-icon,
.banner-carousel-indicators .carousel-control-next-icon {
	height: 20px;
	width: 20px;
	position: relative;
	left: 5px;
}

.banner-carousel-indicators .carousel-control-prev-icon::before,
.banner-carousel-indicators .carousel-control-next-icon::before {
	position: absolute;
	content: '';
	left: -5px;
	right: 0;
	z-index: -1 !important;
	display: block !important;
	height: 60px;
	border-radius: 0;
	width: 30px;
	background-color: var(--dark-color);
	opacity: .5;
	top: -20px;
}

.banner-carousel-indicators .carousel-control-next-icon {
	left: auto;
	right: 5px;
}

.__dealer-type {
	display: inline-block;
	color: var(--dark-color);
}

@media (max-width: 767px) {
	.__dealer-type {
		font-size: 13px;
	}
}

.__dealer-type.used {
	color: #f68704;
}

.__dealer-type.new {
	color: #28a745;
}

.dealer__share {
	display: inline-flex;
	color: var(--dark-color);
	list-style-type: none;
}

.dealer__share li {
	list-style: none;
	padding-left: 3px;
}

@media (max-width: 767px) {
	.dealer__share {
		padding: 4px 5px 4px 5px;
		font-size: 12px;
		list-style-type: none;
	}
}

.dealer__share:hover,
.dealer__share:focus {
	color: var(--primary-color);
}

.dealer__share svg path {
	color: var(--primary-color);
}

.dealer_inactive {
	max-width: 500px;
	width: 100%;
	border-radius: 4px;
}

.dealer_inactive .card {
	border: 1px solid #d9302566;
}

.dealer_inactive .card .card-header {
	background: transparent;
	padding: 0;
}

.dealer_inactive .card .card-header button {
	position: relative;
	background: #d9302511;
	color: var(--dark-color);
	width: 100%;
	text-align: left;
	padding: 15px 20px;
	border: 0;
	border-radius: 0;
	padding-right: 45px;
}

.dealer_inactive .card .card-header button p {
	color: var(--dark-color);
	line-height: 1;
	font-weight: 600;
}

.dealer_inactive .card .card-body ol {
	list-style: none;
}

.dealer_inactive .card .card-header button:focus {
	outline: none;
	box-shadow: none;
	text-decoration: none;
}

.dealer_inactive .card .card-header button:hover {
	text-decoration: none;
}

.dealer_inactive .card .card-header button::after {
	content: url('../../images/up.svg');
	float: right;
	position: absolute;
	top: 50%;
	right: 20px;
	font-size: 20px;
	transform: translateY(-50%);
	transition: 0.4s ease-in-out;
}

.dealer_inactive .card .card-header button.collapsed::after {
	content: url('../../images/down.svg');
}

.dealer_inactive .card .card-body {
	background: #fff;
	color: var(--dark-color);
	border-top: 1px solid #d9302566;
}

.__overview {
	color: var(--dark-color);
}

.__overview h1 {
	font-size: 24px;
	font-weight: 600;
	color: var(--dark-color);
}

@media (max-width: 767px) {
	.__overview h1 {
		font-size: 18px;
		line-height: 1.25;
		margin-top: 5px;
	}
}

.__overview svg {
	flex-shrink: 0;
}

.__overview a {
	font-size: 15px;
	line-height: 1;
	color: var(--dark-color);
}

@media (max-width: 767px) {
	.__overview a {
		font-size: 14px;
	}
}

.__overview a:hover {
	color: var(--primary-color);
}

@media (max-width: 767px) {
	.__overview .dealer__address {
		font-size: 14px;
	}
}

.__overview .dealer__address a {
	color: var(--dark-color);
}

.__overview .dealer__address svg path {
	fill: var(--primary-color);
}

.__overview .dealer__address a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.__overview .dealer__phone a {
	display: inline-block;
	color: var(--dark-color);
}

.__overview .dealer__phone svg path {
	fill: var(--primary-color);
}

.__overview .dealer__phone a::after {
	content: '';
	height: 5px;
	width: 5px;
	display: inline-block;
	border-radius: 50%;
	background-color: var(--primary-color);
	position: relative;
	top: -2px;
	margin-left: 5px;
}

.__overview .dealer__phone a:last-child::after {
	display: none;
}

.__overview .dealer__phone a:hover {
	text-decoration: underline;
	color: var(--primary-color);
}

@media (max-width: 767px) {
	.__overview .dealer__phone a {
		display: block;
	}

	.__overview .dealer__phone a::after {
		display: none;
	}
}

@media (max-width: 767px) {
	.__overview .dealer__phone {
		display: flex;
	}
}

.__overview .dealer__website a {
	color: var(--dark-color);
	text-decoration: underline;
}

.__overview .dealer__website a:hover {
	color: var(--secondary-color);
}

.__overview .dealer__website svg path {
	fill: var(--primary-color);
}

.overallSafetyRating,
.googleFontRating {
	font-size: 15px;
	line-height: 1;
}

@media (max-width: 767px) {

	.overallSafetyRating,
	.googleFontRating {
		line-height: 1.5;
	}
}

#dealerReviews .overallSafetyRating::before,
#dealerReviews .overallSafetyRating::after {
	content: '';
	height: 3px;
	width: 3px;
	border-radius: 50%;
	background-color: #444;
	position: relative;
	top: -2px;
	display: inline-block;
	margin: 0 6px;
}

.ddpThemeBtn {
	display: inline-block;
	min-width: 175px;
	padding: 10px 30px;
	border-radius: 3px;
	letter-spacing: 0;
	font-weight: 500;
	text-align: center;
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--white-color);
	text-transform: capitalize;
}

.ddpThemeBtn:hover,
.ddpThemeBtn:active,
.ddpThemeBtn:focus {
	background-color: var(--secondary-color);
	border: 1px solid var(--secondary-color);
	color: var(--white-color);
}

.ddpThemeBtn.active {
	background-color: var(--white-color);
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.ddpThemeBtn.active:hover,
.ddpThemeBtn.active:active,
.ddpThemeBtn.active:focus {
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--white-color);
}

@media (max-width: 767px) {
	.dealer_contact {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 15px;
		background-color: #fff;
		z-index: 7;
	}

	.dealer_contact .ddpThemeBtn.__websiteBtn.seo_menu_car {
		font-size: 16px;
		padding: 15px 40px;
	}

	.ddpThemeBtn.seo_menu_car {
		width: 100%;
	}
}

.__websiteBtn svg path {
	stroke: var(--white-color);
	fill: var(--white-color);
}

.__websiteBtn.active svg path {
	stroke: var(--primary-color);
}

.__websiteBtn.active:hover svg path {
	fill: var(--white-color);
}

.claim_business {
	max-width: 300px;
	margin-left: auto;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px #eee;
	border-radius: 5px;
	font-size: 14px;
}

.claim_business.__claimed {
	max-width: fit-content;
	padding: 10px 20px 10px 15px;
}

@media (max-width: 575px) {
	.claim_business {
		min-width: 100%;
	}
}

.claim_business p {
	color: var(--dark-color);
}

.claim_business h2 {
	font-size: 16px;
}

.ddp_text_color {
	color: var(--dark-color);
}

.ddp-bg-light {
	background-color: #F9F9F9;
}

.ddp__heading h2 {
	font-size: 24px;
	color: var(--dark-color);
}

@media (max-width: 767px) {
	.ddp__heading h2 {
		font-size: 20px;
	}
}

.ddp__heading p {
	font-size: 20px;
	color: var(--dark-color);
}

@media (max-width: 767px) {
	.ddp__heading p {
		font-size: 17px;
	}
}

.ddp__heading .view_all {
	color: var(--primary-color);
}

.ddp__heading .view_all:hover {
	text-decoration: underline;
}

.dealerInfo-section {
	padding: 3rem 0;
	position: relative;
}

.dealer__makes h2 {
	font-size: 16px;
	display: inline-block;
	font-weight: 400;
}

.dealer__makes h2::after {
	content: ',';
}

.dealer__makes h2:last-child::after {
	display: none;
}

.dealer__makes button {
	padding: 0;
	background: transparent;
	display: inline-block;
	color: var(--primary-color);
}

.dealer__makes button svg {
	position: relative;
}

.dealer__makes button svg path {
	fill: var(--primary-color);
}

.dealership_hours h3 {
	font-size: 16px;
	min-width: 110px;
}

.dealership_hours .card {
	border: 0;
	background-color: transparent;
}

.dealership_hours .card .card-header {
	padding: 0;
	border: 0;
	background-color: transparent;
}

.dealership_hours .card .card-header button {
	color: var(--primary-color);
	background-color: transparent;
}

.dealership_hours .card .card-header button:hover {
	text-decoration: underline;
}

.dealership_hours .card .card-header button::after {
	display: inline-block;
	content: "";
	width: 8px;
	height: 8px;
	border-left: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
	transform: rotate(135deg);
	margin-left: 10px;
	position: relative;
}

.dealership_hours .card .card-header button.collapsed::after {
	transform: rotate(-45deg);
	top: -3px;
}

.dealership_hours .card .card-body .d-flex {
	overflow-x: scroll;
}

.dealership_hours .card .card-body .__days {
	min-width: 120px;
}

.dealership_hours .card .card-body h4 {
	font-size: 16px;
}

.dealership_hours .card .card-body .__timings {
	flex-shrink: 0;
}

.dealership_hours .card .card-body .__timings:not(:last-child) {
	margin-right: 30px;
}

.dealer__availability h3 {
	font-size: 16px;
}

.dealer__availability .__block {
	background-color: var(--white-color);
	border-radius: 3px;
	padding: 10px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	font-size: 14px;
	text-align: center;
}

@media (max-width: 767px) {
	.dealer__availability .__block {
		padding: 10px 1px;
		font-size: 12px;
		line-height: 1.25;
	}
}

.dealer__availability .__block span {
	color: #28A745;
	font-size: 13px;
}

.dealer__availability .__block span.--NA {
	color: #F68704;
}

.dealer__map iframe {
	width: 100%;
}

@media (max-width: 767px) {
	.dealer__map iframe {
		height: 250px;
	}
}

.dealerShowroom-section {
	padding: 3rem 0;
	position: relative;
}

.dealer__showroom__img {
	position: relative;
	height: 400px;
}

.dealer__showroom__img>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dealer__showroom__img .__open_gallery {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px 15px;
	background-color: rgba(0, 0, 0, 0.77);
	color: var(--white-color);
	cursor: pointer;
}

@media (max-width: 767px) {
	.dealer__showroom__img {
		height: 200px;
	}
}

.showroom-img {
	border-radius: 5px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
	margin-bottom: 10px;
	overflow: hidden;
	float: left;
}

@media (max-width: 767px) {
	.showroom-img {
		margin-bottom: 5px;
	}
}

.showroom-img.img-full {
	height: 510px;
	width: 59%;
	margin-right: 10px;
}

@media (max-width: 767px) {

	.showroom-img.img-full {
		width: 100%;
		margin-right: 0px;
		height: 200px;
		position: relative;
		z-index: 1;
		margin-bottom: 0;
		margin-top: 0px;
	}

	.showroom-img.img-full::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		right: 0;
		bottom: 5px;
		background-image: linear-gradient(to top right, transparent 60%, rgba(0, 0, 0, 0.6) 90%);
		z-index: 11;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.showroom-img.img-full {
		width: 58%;
	}
}

.showroom-img.img-half {
	height: 250px;
	width: 40%;
}

@media (max-width: 767px) {
	.showroom-img.img-half {
		display: none;
	}
}

.openGalleryMobile {
	position: absolute;
	top: 5px;
	right: 20px;
	z-index: 10;
	padding: 5px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	color: var(--white-color);
	font-size: 12px;
	height: 50px;
	width: 50px;
	justify-content: flex-start;
	align-items: flex-end;
	z-index: 12;
	cursor: pointer;
}

.dealer-showroom-gallery-btn {
	color: var(--white-color);
	text-align: center;
	text-transform: capitalize;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.66);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

@media (max-width: 767px) {
	.dealer-showroom-gallery-btn {
		font-size: 14px;
	}
}

#dealerShowroomGallery .modal-dialog {
	max-width: 1100px;
	height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#dealerShowroomGallery .modal-dialog .modal-content {
	background: transparent;
	border: none;
}

#dealerShowroomGallery img {
	border-radius: 5px;
	max-width: 100%;
	height: auto;
	max-height: 90vh;
	width: 100%;
}

#dealerShowroomGallery .close {
	z-index: 9;
	background-color: var(--primary-color);
	color: var(--white-color);
	font-size: 24px;
	opacity: 1;
	position: absolute;
	right: -1px;
	top: -1px;
	border-radius: 50%;
	display: block;
	width: 30px;
	height: 30px;
	line-height: 1;
}

.custom-slim-scroll {
	scrollbar-color: rgba(0, 0, 0, 0.2) rgba(255, 255, 255, 0.1);
	scrollbar-width: thin;
}

.custom-slim-scroll::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: transparent;
}

.custom-slim-scroll::-webkit-scrollbar {
	width: 4px;
	background-color: transparent;
	height: 4px;
}

.custom-slim-scroll::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #ccc;
}

.about__dealer a {
	color: var(--primary-color);
}

.about__dealer a.ddpThemeBtn {
	color: var(--white-color);
}

.about__dealer a.ddpThemeBtn.active {
	color: var(--primary-color);
}

.about__dealer a.ddpThemeBtn.active:hover,
.about__dealer a.ddpThemeBtn.active:focus {
	color: var(--white-color);
}

.about__dealer ul {
	list-style: unset;
	padding-left: 20px;
}

.about__dealer ul li {
	list-style: unset;
	padding-left: 0;
}

.about__dealer ol {
	padding-left: 20px;
}

.about__dealer ol li {
	list-style: unset;
	padding-left: 0;
}

.about__dealer h2 {
	font-size: 24px;
}

@media (max-width: 767px) {
	.about__dealer h2 {
		font-size: 20px;
	}
}

.about__dealer .text__content {
	max-height: 250px;
	overflow-y: scroll;
}

@media (max-width: 767px) {
	.about__dealer .text__content {
		max-height: 100%;
	}
}

@media (max-width: 767px) {
	.about__dealer .ddpThemeBtn {
		width: 100%;
	}
}

.dealerServices-section {
	padding: 3rem 0;
	position: relative;
}

.dealer__services {
	border-radius: 5px;
	background-color: var(--white-color);
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.dealer__services a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.dealer__services .__img {
	height: 150px;
	border-radius: 5px;
}

.dealer__services .__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dealer__services .__content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.dealer__services .__content h3 {
	font-size: 18px;
	margin-bottom: 20px;
}

.dealer__services .__content p {
	flex: 1;
}

.dealerRecentUpdate-section {
	padding: 3rem 0;
	position: relative;
}

.dealer-update-section {
	background-color: #f9f9f9;
	padding: 3rem 0;
	position: relative;
}

.dealer__update {
	border-radius: 3px;
	box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
	color: var(--dark-color);
	cursor: pointer;
	background-color: var(--white-color);
}

#recentUpdatesModal .modal-body {
	max-height: 80vh;
	overflow-y: scroll;
}

#recentUpdatesModal .modal-body .dealer__update {
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.addReadMore.showlesscontent .SecSec,
.addReadMore.showlesscontent .readLess {
	display: none;
}

.addReadMore.showmorecontent .readMore {
	display: none;
}

.addReadMore .readMore,
.addReadMore .readLess,
.read-more {
	margin-left: 2px;
	color: var(--primary-color);
	cursor: pointer;
}

.addReadMoreWrapTxt.showmorecontent .SecSec,
.addReadMoreWrapTxt.showmorecontent .readLess {
	display: block;
}

.dealerInventory {
	background-color: #f9f9f9;
	padding: 3rem 0;
	position: relative;
}

.dealerInventory .dealerInventorySection-inner {
    padding-bottom: 30px;
}

.dealerInventory .dealerInventorySection-inner.sticky-top {
    padding: 15px 0;
    background-color: var(--white-color);
    width: 100%;
}

.dealerInventory .dealerInventorySection-inner {
    padding-bottom: 30px;
}

.dealerInventory .dealerInventorySection-inner.sticky-top {
    padding: 15px 0;
    background-color: var(--white-color);
    width: 100%;
}

.dealerInventory .dealerInventory-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.dealerInventory .dealerInventory-inner .form-control-filter {
	flex-grow: 1;
	min-width: 175px;
	width: 100%;
	margin-right: 1rem;
}

.dealerInventory .dealerInventory-inner .form-control-filter:last-child {
	margin-right: 0rem;
}


@media (max-width: 767px) {
	.dealerInventory .padding-8 {
		padding-left: 15px;
		padding-right: 15px;
	}

	.dealerInventory .dealerInventory-inner {
		display: block;
		width: 100%;
	}

	.dealerInventory .dealerInventory-inner .form-control-filter {
		max-width: 100%;
		width: 100%;
		margin-right: 0rem;
		margin-bottom: 10px;
	}

	.dealerInventory .text-md-right {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dealerInventory .text-md-right .ddpThemeBtn {
        font-size: 13px;
        padding: 10px;
        margin-top: 0;
        margin-bottom: 0;
        min-width: 125px;
        width: 48%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

	.dealerInventory .ddpThemeBtn {
		margin-top: 30px;
	}
}

.sharePage {
	width: 320px;
}

.sharePage .img-thumbnail {
	border-radius: 0;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
}

.sharePage p {
	font-size: 13px;
}

#shareModal .modal-dialog {
	width: fit-content;
	margin: 0 auto;
}

._more_text {
	display: none;
}

.dealerReviews-section {
	position: relative;
	padding: 3rem 0;
}

.dealer__review {
	border-radius: 3px;
	box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
	color: var(--dark-color);
}

.dealer__review h3 {
	font-size: 16px;
	font-weight: 500;
}

.dealerReviews-section a.view_all svg path {
	fill: var(--primary-color);
}

.nearestDealer-section {
	padding: 3rem 0;
	position: relative;
}

.nearestDealer-grid {
	position: relative;
	border: 1px solid #eee;
	box-shadow: 0 8px 20px #ebf4f9;
	background-color: var(--white-color);
	border-radius: 7px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all 0.5s;
}

.nearestDealer-grid a.nearestDealer-grid-linking {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	z-index: 1;
}

.nearestDealer-grid .nearestDealer-image {
	background-color: #f9f9f9;
	max-width: 100%;
	height: 175px;
	width: 100%;
	position: relative;
	overflow: hidden;
	transition: all 0.5s;
}

.nearestDealer-grid .nearestDealer-image img {
	max-height: 100%;
	height: 100%;
	width: 100%;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	margin: auto !important;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.nearestDealer-grid .nearestDealer-content {
	padding: 15px;
}

.nearestDealer-grid .nearestDealer-content h2 {
	color: var(--dark-color);
	text-transform: capitalize;
	font-weight: 500;
	font-size: 17px;
	display: block;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}


.nearestDealer-grid .nearestDealer-content p {
	margin-bottom: 0;
	padding-top: 3px;
}

.nearestDealer-grid .nearestDealer-content p.--used {
	color: #864604;
}

.nearestDealer-grid .nearestDealer-content p.--new {
	color: #176326;
}

.nearestDealer-grid .dealer-list-rating {
    display: flex;
    align-items: center;
    width: 100%;
	line-height: 1;
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
}

.nearestDealer-grid .dealer-list-rating p {
	margin-bottom: 0;
}

.nearestDealer-grid .dealer-list-rating p.rating-number {
    font-size: 14px;
    margin-right: 0.5rem;
}

.nearestDealer-grid .dealer-list-rating p.rating-count {
    font-size: 14px;
}

.requestForService-popup .modal-dialog {
	max-width: 600px;
	width: 100%;
	margin: 10px auto;
	border-radius: 3px;
}

.requestForService-popup .modal-dialog p {
	margin-bottom: 0px;
}

.requestForService-popup .modal-dialog .modal-content .custom-scroll {
	padding: 25px 20px 20px;
}

.requestForService-popup .modal-dialog .modal-content .close {
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	height: 22px;
	width: 22px;
	text-align: center;
	border-radius: 0;
	font-size: 18px;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	opacity: 1;
	z-index: 1;
	line-height: 1;
}

@media (max-width: 767px) {
	.requestForService-popup .modal-dialog .modal-content .close {
		top: 5px;
		right: 5px;
	}
}

.requestForService-popup .modal-dialog .modal-content .modal-header {
	padding: 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

@media (max-width: 767px) {
	.requestForService-popup .modal-dialog .modal-content .modal-header {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		display: block;
	}
}

.requestForService-popup .modal-dialog .modal-content .modal-header .text-right {
	color: var(--dark-color);
	font-size: 12px;
	line-height: 1.4;
}

@media (max-width: 767px) {
	.requestForService-popup .modal-dialog .modal-content .modal-header .text-right {
		margin-top: 15px;
	}
}

.requestForService-popup .modal-dialog .modal-content .modal-header .text-right p.dealer-name {
	color: var(--primary-color);
	font-weight: bold;
}

.requestForService-popup .modal-dialog .modal-content .modal-body {
	padding: 0;
}

.requestForService-popup .requestForService-tab {
	background-color: #f9f9f9;
	margin-bottom: 20px;
}

.requestForService-popup .requestForService-tab .nav-tabs {
	border-bottom: 1px solid #aaa;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.requestForService-popup .requestForService-tab .nav-tabs .nav-item {
	margin-bottom: 0;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.requestForService-popup .requestForService-tab .nav-tabs .nav-item .nav-link {
	border-bottom: 1px solid transparent;
	background-color: transparent;
	color: var(--dark-color);
	font-size: 13px;
	display: block;
	text-align: center;
	text-transform: capitalize;
	letter-spacing: 1px;
	padding: 13px 15px;
	line-height: 1;
	margin-bottom: -1px;
	border-radius: 4px 4px 0 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

@media (max-width: 767px) {
	.requestForService-popup .requestForService-tab .nav-tabs .nav-item .nav-link {
		padding: 13px 5px;
		font-size: 12px;
	}
}

.requestForService-popup .requestForService-tab .nav-tabs .nav-item .nav-link:hover,
.requestForService-popup .requestForService-tab .nav-tabs .nav-item .nav-link:focus {
	background-color: #f9f9f9;
	color: var(--dark-color);
	border-radius: 4px 4px 0 0;
	border-bottom-color: #aaa;
}

.requestForService-popup .requestForService-tab .nav-tabs .nav-item .nav-link.active {
	background-color: var(--white-color);
	color: var(--dark-color);
	border: 1px solid #aaa;
	border-bottom-color: var(--white-color);
}

.requestForService-popup .form-group {
	position: relative;
	margin-bottom: 25px;
}

.requestForService-popup .form-field {
	position: relative;
}

.requestForService-popup .form-field input.form-control,
.requestForService-popup .form-field select.custom-select,
.requestForService-popup .form-field textarea.form-control {
	font-size: 14px;
	display: block;
	width: 100%;
	height: 40px;
	color: var(--dark-color);
	border: 0;
	border: 1px solid var(--dark-color);
	border-radius: 4px;
	overflow: hidden;
	-webkit-filter: none;
	filter: none;
	position: relative;
	opacity: 1;
}

.requestForService-popup select {
	width: 100%;
}

.requestForService-popup .form-field textarea.form-control {
	height: 100px;
}

.requestForService-popup .form-field input:focus,
.requestForService-popup .form-field textarea:focus {
	border: 1px solid var(--dark-color);
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}

.requestForService-popup .form-field input::-webkit-input-placeholder,
.requestForService-popup .form-field textarea::-webkit-input-placeholder,
.requestForService-popup .form-field input:-ms-input-placeholder,
.requestForService-popup .form-field textarea:-ms-input-placeholder,
.requestForService-popup .form-field input::-ms-input-placeholder,
.requestForService-popup .form-field textarea::-ms-input-placeholder,
.requestForService-popup .form-field input::placeholder,
.requestForService-popup .form-field textarea::placeholder {
	font-size: 13px;
	color: var(--dark-color);
	opacity: 1;
}

@media (min-width: 1601px) {

	.requestForService-popup .form-field input::-webkit-input-placeholder,
	.requestForService-popup .form-field textarea::-webkit-input-placeholder,
	.requestForService-popup .form-field input:-ms-input-placeholder,
	.requestForService-popup .form-field textarea:-ms-input-placeholder,
	.requestForService-popup .form-field input::-ms-input-placeholder,
	.requestForService-popup .form-field textarea::-ms-input-placeholder,
	.requestForService-popup .form-field input::placeholder,
	.requestForService-popup .form-field textarea::placeholder {
		font-size: 13px;
	}
}

@media (min-width: 1921px) {

	.requestForService-popup .form-field input::-webkit-input-placeholder,
	.requestForService-popup .form-field textarea::-webkit-input-placeholder,
	.requestForService-popup .form-field input:-ms-input-placeholder,
	.requestForService-popup .form-field textarea:-ms-input-placeholder,
	.requestForService-popup .form-field input::-ms-input-placeholder,
	.requestForService-popup .form-field textarea::-ms-input-placeholder,
	.requestForService-popup .form-field input::placeholder,
	.requestForService-popup .form-field textarea::placeholder {
		font-size: 13px;
	}
}

.requestForService-popup .form-field input[type=date]:required:invalid::-webkit-datetime-edit,
.requestForService-popup .form-field input[type=date]:required:invalid:-ms-input-placeholder,
.requestForService-popup .form-field input[type=date]:required:invalid::-ms-input-placeholder {
	color: transparent;
}

.requestForService-popup .form-field input[type=date]:focus::-webkit-datetime-edit,
.requestForService-popup .form-field input[type=date]:focus:invalid:-ms-input-placeholder,
.requestForService-popup .form-field input[type=date]:focus::invalid:-ms-input-placeholder {
	color: var(--dark-color) !important;
}

.wizard-fieldset {
	display: none;
}

.wizard-fieldset.show {
	display: block !important;
}

.form-group.is-required .form-control,
.form-group.is-required .wizard-required,
.form-group.is-required .select2-container .select2-selection--single {
	border-color: red !important;
}

.requestForService-popup .form-field._date i {
	position: absolute;
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	right: 0;
	cursor: pointer;
}

/* Faq accordian style  */
.dealerFaq-section {
	padding: 3rem 0;
	position: relative;
}

.faqBlock .card {
	border-radius: 0;
	border: 0;
	margin-bottom: 20px;
	box-shadow: 0 0 10px #0000001a
}

.faqBlock .card-header {
	border-radius: 6px;
	background-color: var(--white-color);
	border: 0;
	padding: 0
}

.faqBlock .card-header .card-link {
	position: relative;
	border-radius: 6px;
	color: var(--dark-color);
	display: block;
	padding: 18px 45px 18px 18px;
	outline: none;
	text-align: left;
	width: 100%
}

.faqBlock .card-header .card-link:focus,
.faqBlock .card-header .card-link:hover {
	text-decoration: none;
	box-shadow: none;
	outline: none
}

.faqBlock .card-header .card-link.collapsed h3 {
	color: var(--dark-color)
}

.faqBlock .card-header .card-link.collapsed:hover h3 {
	color: var(--primary-color)
}

.faqBlock .card-header .card-link h3 {
	font-size: 16px;
	color: var(--primary-color);
	transition: .3s ease-in-out
}

@media (max-width: 767px) {
	.faqBlock .card-header .card-link h3 {
		font-size: 16px
	}

	.faqBlock .card-header .card-link {
		padding: 15px 45px 15px 15px
	}
}

.faqBlock .card-header .card-link:after {
	content: url('../../images/up.svg');
	position: absolute;
	right: 12px;
	top: 12px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	display: block;
}

.faqBlock .card-header .card-link.collapsed:after {
	content: url('../../images/down.svg');
}

.faqBlock .card-body {
	padding: 0 20px 30px;
	color: var(--dark-color);
	line-height: 1.5;
}

.faqBlock .card-body button {
	background: transparent;
	color: var(--primary-color);

}

@media (max-width: 767px) {
	.faqBlock .card-body {
		padding: 0 20px 20px
	}
}

.faqBlock .card-body p:last-child {
	margin-bottom: 0
}

.faqBlock.no-shadow .card {
	box-shadow: none;
	margin: 0
}

.faqBlock.black-header .card-header .card-link h3 {
	color: var(--dark-color)
}

.faqBlock.no-padding .card-header .card-link {
	padding-left: 0;
	padding-right: 0
}

.faqBlock.no-padding .card-header .card-link h2 {
	color: var(--dark-color);
	font-size: 25px;
	font-weight: 500
}

.faqBlock.no-padding .card-body {
	padding-left: 5px;
	padding-right: 0
}


/* recent post modal */

#singleRecentPost button.close {
	position: absolute;
	top: -16px;
	right: -12px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 10px;
	cursor: pointer;
	background-color: #000;
	opacity: 1;
	height: 30px;
	width: 30px;
	display: block;
	border-radius: 50%;
	line-height: 0;
}

/* inventory ajax locader  */
.__ajaxLoader {
	position: relative;
}

.__ajaxLoader::after {
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, 0.7);
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
}

/* suggested_keywords */

.suggestedKeyword-section {
	padding: 3rem 0;
	position: relative;
}

.suggestedKeyword-section h5 {
	font-size: 16px;
}

.suggestedKeyword-section button {
	background: transparent;
	color: var(--primary-color);
	text-decoration: none;
	outline: none;
	border: none;
}

.suggestedKeyword-section button:hover {
	background: transparent;
	color: var(--secondory-color);
	text-decoration: none;
	outline: none;
	border: none;
}

/*---------------------- Dealer List Page Breadcrumb Start ------------------------ */
.dealer-list-breadcrumb {
	background-color: #f8f9fa;
}

.dealer-list-breadcrumb .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: .75rem 1rem;
	margin-bottom: 1rem;
	list-style: none;
	background-color: transparent;
	border-radius: 0;
}

.dealer-list-breadcrumb .breadcrumb-item+.breadcrumb-item {
	padding-left: .5rem
}

.dealer-list-breadcrumb .breadcrumb-item+.breadcrumb-item:before {
	float: left;
	padding-right: .5rem;
	color: #6c757d;
	content: "/"
}

.dealer-list-breadcrumb .breadcrumb-item+.breadcrumb-item:hover:before {
	text-decoration: underline;
	text-decoration: none
}

.dealer-list-breadcrumb ul.breadcrumb li a {
	text-transform: capitalize;
	color: var(--primary-color);
	transition: .3s ease-in-out;
}

.dealer-list-breadcrumb ul.breadcrumb li:hover a {
	color: var(--secondary-color);
}

/* recentPost page heading */
.ddp__heading.all_post h1 {
	font-size: 24px;
}

/* dealer post tags  */
.__tags button {
	display: inline-block;
	padding: 3px 10px;
	background-color: #0d6fad0d;
	color: var(--primary-color);
	margin-right: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	font-size: 13px;
}

/* ---------------------- Fixed Section On Scrolling Start ----------------------- */
.scrolling-fixed-section {
	padding: 20px 0;
	background-color: var(--white-color);
	top: 0;
	z-index: 7;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.scrolling-fixed-section {
	display: none;
}

.scrolling-fixed-section.sticky-top {
	display: block;
	transition: .5s;
	animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}

	100% {
		transform: translateY(0px);
	}
}

.scrolling-fixed-section .__dealer-type {
	display: block;
	font-size: 14px;
}

.scrolling-fixed-section h2 {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark-color);
	display: inline;
	text-transform: capitalize;
	display: block;
}

.scrolling-fixed-section .dealer-rating {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	flex-wrap: wrap;
	font-size: 14px;
	line-height: 1;
	text-transform: capitalize;
	margin-top: 5px;
	transition: .3s ease-in-out
}

.scrolling-fixed-section .overallSafetyRating {
	padding: 0 10px;
}

.scrolling-fixed-section .btn-reviewcount {
	border: 0;
	background-color: transparent;
	padding: 0;
	color: var(--dark-color);
	transition: .3s ease-in-out;
}

.scrolling-fixed-section .dealer-rating:hover .btn-reviewcount {
	color: var(--primary-color);
	transition: .3s ease-in-out;
}

.scrolling-fixed-section .scrolling-fixed-cta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media (max-width: 767px) {
	.scrolling-fixed-section .scrolling-fixed-cta .dealer_contact {
		display: none;
	}

	.scrolling-fixed-section h2 {
		font-size: 18px;
		line-height: 1.1;
		margin-bottom: 10px;
	}

	.scrolling-fixed-section .dealer-rating {
		display: none;
	}
}

/* ---------------------- Fixed Section On Scrolling End ----------------------- */
.dealership-brands ul,.dealership-brands ul li {
	list-style: none;
}