html {
	height: 100%;
	box-sizing: border-box
}

body,
html {
	overflow-x: hidden;
	overflow-y: auto
}

body {
	font-family: Montserrat-Regular;
	background: #fff;
	min-height: 100%
}

@font-face {
	font-family: Montserrat-Regular;
	src: url(../fonts/Montserrat-Regular.eot?#iefix) format('embedded-opentype'), url(../fonts/Montserrat-Regular.ttf) format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: Montserrat-Light;
	src: url(../fonts/Montserrat-Light.eot?#iefix) format('embedded-opentype'), url(../fonts/Montserrat-Light.ttf) format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap
}

#wrapper {
	position: relative
}

/* fireworks */
.firework {
	position: absolute;
}
.explosion {
	position: absolute;
	left: -2px;
	bottom: 0;
	width: 4px;
	height: 80px;
	transform-origin: 50% 100%;
	/* background-color: rgba(0,0,0,.2); */
	overflow: hidden;
}
.explosion:nth-child(1) {
	transform: rotate(0deg) translateY(-15px);
}
.explosion:nth-child(2) {
	transform: rotate(30deg) translateY(-15px);
}
.explosion:nth-child(3) {
	transform: rotate(60deg) translateY(-15px);
}
.explosion:nth-child(4) {
	transform: rotate(90deg) translateY(-15px);
}
.explosion:nth-child(5) {
	transform: rotate(120deg) translateY(-15px);
}
.explosion:nth-child(6) {
	transform: rotate(150deg) translateY(-15px);
}
.explosion:nth-child(7) {
	transform: rotate(180deg) translateY(-15px);
}
.explosion:nth-child(8) {
	transform: rotate(210deg) translateY(-15px);
}
.explosion:nth-child(9) {
	transform: rotate(240deg) translateY(-15px);
}
.explosion:nth-child(10) {
	transform: rotate(270deg) translateY(-15px);
}
.explosion:nth-child(11) {
	transform: rotate(300deg) translateY(-15px);
}
.explosion:nth-child(12) {
	transform: rotate(330deg) translateY(-15px);
}

.explosion::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 40px;
	background-color: #f5cf52;
}
@keyframes explosion {
	0% {
		top: 100%;
	}
	33%, 100% {
		top: -50%;
	}
}

#firework1 {
	left: 50%;
	top: 13%;
	transform: scale(1);
}
#firework1 .explosion::before {
	animation: explosion 2s ease-in-out infinite;
}

#firework2 {
	left: 40%;
	top: 17%;
	transform: scale(.7);
}
#firework2 .explosion::before {
	animation: explosion 2s .6s ease-in-out infinite;
}

#firework3 {
	left: 60%;
	top: 65%;
	transform: scale(.4);
}
#firework3 .explosion::before {
	animation: explosion 2s .4s ease-in-out infinite;
}

#firework4 {
	left: 62%;
	top: 21%;
	transform: scale(1.2);
}
#firework4 .explosion::before {
	animation: explosion 2s .4s ease-in-out infinite;
}
/* end of fieworks */

.navbar-default {
	background-color: #ff3448;
	border: 0;
	margin-bottom: 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.navbar-brand {
	width: 200px;
	height: 52px;
	background: url(../images/alba_logo_new.png) no-repeat center center;
	background-size: 100% 100%;
	display: block;
	text-indent: -9999px;
	margin: 15px 0;
	margin-left: 0;
	padding: 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

body.smaller .navbar-brand {
	width: 140px;
	height: 36px;
	margin: 10px 0
}

.navbar>.container .navbar-brand,
.navbar>.container-fluid .navbar-brand {
	margin-left: 0
}

.navbar-default .navbar-nav {
	margin-left: 50px;
	margin-top: 20px;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

body.smaller .navbar-default .navbar-nav {
	margin-left: 40px;
	margin-top: 8px
}

.navbar-default .navbar-nav>li>a {
	font-family: Montserrat-Regular;
	padding: 12px 24px;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	overflow: hidden;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

body.smaller .navbar-default .navbar-nav>li>a {
	padding: 10px 20px
}

.navbar-default .navbar-nav>li:hover>a {
	color: #ffd000!important
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
	background-color: transparent;
	color: #ffd000!important
}

.navbar-default .navbar-nav>li>a:before {
	box-sizing: border-box;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 99.5%;
	height: 2px;
	border-bottom: 2px solid transparent;
	border-left: 2px solid transparent
}

.navbar-default .navbar-nav>li>a:after {
	box-sizing: border-box;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 99.5%;
	height: 2px;
	border-top: 2px solid transparent;
	border-right: 2px solid transparent
}

.navbar-default .navbar-nav>li>a:hover {
	color: inherit;
	text-decoration: none
}

.navbar-default .navbar-nav>li>a:hover:before {
	-webkit-transition: .1s transform linear, .1s height linear .1s;
	transition: .1s transform linear, .1s height linear .1s;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	height: 100%;
	border-color: #ffd000
}

.navbar-default .navbar-nav>li>a:hover:after {
	-webkit-transition: .1s transform linear .2s, .1s height linear .3s;
	transition: .1s transform linear .2s, .1s height linear .3s;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	height: 100%;
	border-color: #ffd000
}

.navbar-default .addressrow {
	position: relative;
	background-color: #1f2734;
	text-align: right;
	padding: 1px 50px 5px 0
}

.navbar-default .addressrow .profilehview {
	float: right;
	display: inline-block;
	cursor: pointer;
	padding-top: 5px;
	margin-right: 10px
}

.navbar-default .addressrow .profilehview .loginusrsnm {
	font-size: 13px;
	color: #fff;
	line-height: 26px;
	margin-left: 10px;
	display: inline-block;
	max-width: 120px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.navbar-default .addressrow .profilehview .profileviewimgbx {
	position: relative;
	float: left;
	width: 26px;
	height: 26px;
	border: 1px solid #fff;
	border-radius: 100%;
	overflow: hidden;
	display: inline-block
}

.navbar-default .addressrow .profilehview .profileviewimgbx img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-transform: scale(1.4);
	transform: scale(1.4)
}

.navbar-default .addressrow .profilehview .profileviewimgbx img.imgh {
	left: 0;
	top: 0;
	right: 0;
	bottom: -7px;
	max-width: 100%;
	max-height: 100%;
	transform: none
}

.navbar-default .addressrow .profilehview .dropdown-menu {
	top: 40px;
	left: auto;
	right: 0;
	padding: 0;
	margin: 0;
	border-radius: 0
}

.navbar-default .addressrow .profilehview .dropdown-menu>li>a {
	padding: 10px;
	font-size: 14px
}

.navbar-default .addressrow .profilehview .dropdown-menu>li>a:focus,
.navbar-default .addressrow .profilehview .dropdown-menu>li>a:hover {
	color: #fff;
	text-decoration: none;
	background-color: #ff3448
}

.navbar-default .addressrow .login_signuplink {
	font-size: 14px;
	color: #fff;
	padding-top: 8px;
	display: inline-block
}

.navbar-default .addressrow .login_signuplink a {
	padding: 0 5px;
	color: #fff;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.navbar-default .addressrow .login_signuplink a:hover {
	color: #ff3448
}

.navbar-default .addressrow .emailphoneinfo {
	float: left;
	padding: 8px 0 0 75px
}

.navbar-default .addressrow .emailbx {
	font-size: 12px;
	color: #fff;
	display: inline-block;
	margin-right: 10px
}

.navbar-default .addressrow .emailbx a {
	color: #fff;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.navbar-default .addressrow .phonenumbx {
	font-size: 12px;
	color: #fff;
	border-left: 1px solid #fff;
	display: inline-block;
	padding: 0 10px
}

.navbar-default .addressrow .selectlanguagebx {
	float: right;
	padding-top: 4px;
	display: inline-block
}

.navbar-default .addressrow .selectlanguagebx .caret {
	color: #fff
}

.navbar-default .addressrow .selectlanguagebx .flag-icon {
	position: relative;
	display: inline-block;
	width: 1.33333333em;
	line-height: 1em
}

.navbar-default .addressrow .selectlanguagebx .flag-icon,
.navbar-default .addressrow .selectlanguagebx .flag-icon-background {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%
}

.navbar-default .addressrow .selectlanguagebx .flag-icon:before {
	content: "\00a0"
}

.navbar-default .addressrow .selectlanguagebx .flag-icon-mx {
	background-image: url(../images/mx.svg)
}

.navbar-default .addressrow .selectlanguagebx .flag-icon-gb {
	background-image: url(../images/gb.svg)
}

.btn-primary.registerDealerbutton {
    border-radius: 17px;
    color: #fff;
    background-color: #FF3448;
    border-color: #fff;
    border: 1px solid;
    font-size: 16px;
    box-shadow: 2px 2px;
	font-family: 'Montserrat-Regular';
}

.btn-primary.registerDealerbutton:hover {
	color: #FF3448;
    background-color: #fff;
    border-color: #FF3448;
	box-shadow: 2px 2px white;
}

.selectlanguagebx .btn-default {
	background-color: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none
}

.selectlanguagebx .bootstrap-select>.btn {
	padding-right: 0
}

.selectlanguagebx .btn-group.open .dropdown-toggle {
	box-shadow: none
}

.selectlanguagebx .btn-default.active,
.selectlanguagebx .btn-default:active,
.selectlanguagebx .open>.dropdown-toggle.btn-default {
	background-color: transparent;
	border: 0
}

.selectlanguagebx .dropdown-menu {
	padding: 0;
	margin: 0;
	top: 33px;
	border: 0;
	border-radius: 0
}

.navbar-default .container {
	position: relative;
	width: auto;
	margin: 0 10px
}

.socialmediaiconsrow {
	position: absolute;
	right: 0;
	top: 23px;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

body.smaller .socialmediaiconsrow {
	top: 13px
}

ul.social-network {
	list-style: none;
	display: inline;
	margin-left: 0;
	padding: 0
}

ul.social-network li {
	display: inline;
	margin: 0 5px
}

ul.social-network li.fa:active {
	background-color: transparent;
	border-color: transparent
}

a#mobile-only {
	display: none
}

.social-network a.icoFacebook:hover,
.social-network a.icoGoogle:hover,
.social-network a.icoTwitter:hover,
.social-network a.icoinstagram:hover,
.social-network a.iconlinkedin:hover,
.social-network a.icontiktok:hover {
	background-color: #fff
}

.social-network a.icoTwitter:hover {
	background-color: #fff
}

.social-circle li a {
	display: inline-block;
	position: relative;
	margin: 0 auto 0 auto;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	font-size: 16px;
	border: 2px solid #fff;
	color: #fff;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

body.smaller .social-circle li a {
	width: 30px;
	height: 30px;
	font-size: 14px
}

body.smaller .social-circle li i {
	line-height: 28px
}

.social-circle li:hover a {
	border: 2px solid #ff3448
}

.social-circle li i {
	margin: 0;
	line-height: 32px;
	text-align: center
}

.social-circle li a:hover i,
.triggeredHover {
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-ms--transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transition: all .2s;
	transition: all .2s
}

.social-circle i {
	color: #fff;
	-webkit-transition: all .8s;
	transition: all .8s
}

.social-circle li:hover i {
	color: #ff3448
}

.navbar-toggle {
	margin-top: 10px;
	margin-right: 5px;
	border: 0
}

.navbar-default .navbar-toggle {
	border-color: transparent
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
	background-color: transparent
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #fff
}

.navbar-toggle .icon-bar {
	width: 26px;
	height: 3px;
	border-radius: 0
}

.navbar-collapse {
	padding: 0
}

.bannerwrap {
	position: relative;
	background-color: #e2e3e5
}

.bannerconmainbx {
	position: absolute;
	width: 1300px;
	left: 50%;
	top: 50%;
	height: 620px;
	margin-left: -650px;
	margin-top: -325px
}

#carmove {
	position: absolute;
	width: 1300px;
	height: 388px;
	left: 50%;
	margin-left: -650px;
	bottom: -45px;
	background-image: url(../images/banner_car.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: block
}

.banner_clouds {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/banner_clouds.png);
	background-size: 100% 95%;
	z-index: 1;
	overflow: hidden
}

/* Test banner */

.banner_clouds1 {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url(https://www.albacars.ae/resources/views/img/ZOH_0043.jpg);
	background-size: 100% 100%;
	z-index: 1;
	overflow: hidden
}

.bannerconmainbx1 {
	position: absolute;
	width: 1300px;
	left: 50%;
	top: 50%;
	height: 620px;
	margin-left: -650px;
	margin-top: -325px;
	z-index: 99;
}

/* Slider */
@keyframes tonext {
	75% {
	  left: 0;
	}
	95% {
	  left: 100%;
	}
	98% {
	  left: 100%;
	}
	99% {
	  left: 0;
	}
  }
  
  @keyframes tostart {
	75% {
	  left: 0;
	}
	95% {
	  left: -300%;
	}
	98% {
	  left: -300%;
	}
	99% {
	  left: 0;
	}
  }
  
  @keyframes snap {
	96% {
	  scroll-snap-align: center;
	}
	97% {
	  scroll-snap-align: none;
	}
	99% {
	  scroll-snap-align: none;
	}
	100% {
	  scroll-snap-align: center;
	}
  }
  
  
  *::-webkit-scrollbar {
	width: 0;
  }
  
  *::-webkit-scrollbar-track {
	background: transparent;
  }
  
  *::-webkit-scrollbar-thumb {
	background: transparent;
	border: none;
  }
  
  * {
	-ms-overflow-style: none;
  }
  
  ol, li {
	list-style: none;
	margin: 0;
	padding: 0;
  }
  
  .carousel {
	position: relative;
	filter: drop-shadow(0 0 10px #0003);
	perspective: 100px;
	height: 973px;
	background-color: #e2e3e5;
  }
  
  .carousel__viewport {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	overflow-x: scroll;
	counter-reset: item;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
  }
  
  .carousel__slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	/* background: url(https://www.albacars.ae/resources/views/img/ZOH_0037.jpg); */
	background-size: 100% 100%;
	counter-increment: item;
  }
  
  .carousel__slide:nth-child(1) {
	background: url(https://www.albacars.ae/resources/views/img/ZOH_0043.jpg);
	background-size: 100% 100%;
  }

  .carousel__slide:nth-child(2) {
	background: url(https://www.albacars.ae/public/images/LOGO.png);
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .carousel__slide:nth-child(3) {
	background: url(https://www.albacars.ae/resources/views/img/ZOH_0037.jpg);
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .carousel__slide:nth-child(4) {
	background: url(https://www.albacars.ae/resources/views/img/sales1.jpg);
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .carousel__slide:before {
	content: counter(item);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%,-40%,70px);
	color: #fff;
	font-size: 2em;
  }
  
  .carousel__snapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	scroll-snap-align: center;
  }
  
  @media (hover: hover) {
	.carousel__snapper {
	  animation-name: tonext, snap;
	  animation-timing-function: ease;
	  animation-duration: 4s;
	  animation-iteration-count: infinite;
	}
  
	.carousel__slide:last-child .carousel__snapper {
	  animation-name: tostart, snap;
	}
  }
  
  @media (prefers-reduced-motion: reduce) {
	.carousel__snapper {
	  animation-name: none;
	}
  }
  
  .carousel:hover .carousel__snapper,
  .carousel:focus-within .carousel__snapper {
	animation-name: none;
  }
  
  .carousel__navigation {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
  }
  
  .carousel__navigation-list,
  .carousel__navigation-item {
	display: inline-block;
  }
  
  .carousel__navigation-button {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	background-color: #333;
	background-clip: content-box;
	border: 0.25rem solid transparent;
	border-radius: 50%;
	font-size: 0;
	transition: transform 0.1s;
  }
  
  .carousel::before,
  .carousel::after,
  .carousel__prev,
  .carousel__next {
	position: absolute;
	top: 0;
	margin-top: 37.5%;
	width: 4rem;
	height: 4rem;
	transform: translateY(-50%);
	border-radius: 50%;
	font-size: 0;
	outline: 0;
	display: none;
  }
  
  .carousel::before,
  .carousel__prev {
	left: -1rem;
  }
  
  .carousel::after,
  .carousel__next {
	right: -1rem;
  }
  
  .carousel::before,
  .carousel::after {
	content: '';
	z-index: 1;
	background-color: #333;
	background-size: 1.5rem 1.5rem;
	background-repeat: no-repeat;
	background-position: center center;
	color: #fff;
	font-size: 2.5rem;
	line-height: 4rem;
	text-align: center;
	pointer-events: none;
  }
  
  .carousel::before {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
  }
  
  .carousel::after {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
  }
  


@-webkit-keyframes movingclouds {
	0% {
		margin-left: 0
	}
	100% {
		margin-left: -100%
	}
}

@keyframes movingclouds {
	0% {
		margin-left: 0
	}
	100% {
		margin-left: -100%
	}
}

.bannerContentbx {
	position: absolute;
	width: 1000px;
	height: 500px;
	left: 50%;
	bottom: 90px;
	margin-left: -500px;
	border: 15px solid #f8f8f8;
	border-bottom: 0
}

.banreacttextCon {
	position: relative;
	padding: 20px;
	z-index: 99
}

.banreacttextCon h3 {
	font-size: 70px;
	color: #ff3448;
	text-align: center;
	margin: 0
}

.banreacttextCon h1 {
	font-size: 100px;
	color: #1f2734;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
	text-shadow: -3px 3px #c0c1c3
}

.viewallcarsbtnrw {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -140px;
	text-align: center;
	z-index: 9
}

.viewallcarsbtnrw .btn-primary {
	font-family: Montserrat-Light;
	background-color: #ff3448;
	padding: 14px 80px;
	color: #f8f8f8;
	border: 2px solid #ff3448;
	border-radius: 40px;
	font-size: 20px;
	box-shadow: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	outline: 0
}

.viewallcarsbtnrw .btn-primary:focus,
.viewallcarsbtnrw .btn-primary:hover {
	background-color: transparent;
	border: 2px solid #807f7f;
	color: #807f7f
}

.selectcarwrap {
	position: relative;
	padding: 50px 0
}

.curvelinebtm {
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	z-index: -1
}

.curvelinebtm img {
	width: 100%;
	height: auto
}

.selectcarwrap .searchcarsmeterbx {
	padding-bottom: 50px
}

.searchcarsmeterbx .searchcartoolbx.odometer {
	border-left: 2px solid #e2e3e5;
	border-right: 2px solid #e2e3e5
}

.searchcarsmeterbx .searchcartoolbx .tooliconrw {
	text-align: center
}

.searchcarsmeterbx .searchcartoolbx .toolicon {
	position: relative;
	width: 110px;
	height: 110px;
	border: 2px solid #004de6;
	border-radius: 50%;
	display: inline-block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.searchcarsmeterbx .searchcartoolbx:hover .toolicon {
	background-color: #004de6
}

.searchcarsmeterbx .searchcartoolbx.odometer:hover .toolicon {
	background-color: #00e66c
}

.searchcarsmeterbx .searchcartoolbx.certified:hover .toolicon {
	background-color: #ffd000
}

.searchcarsmeterbx .searchcartoolbx.odometer .toolicon {
	border-color: #00e66c
}

.searchcarsmeterbx .searchcartoolbx.certified .toolicon {
	border-color: #ffd000
}

.searchcarsmeterbx .searchcartoolbx .toolicon span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 120px;
	height: 120px;
	margin-left: -60px;
	margin-top: -60px;
	background: url(../images/search_cars_icon.png) no-repeat;
	background-size: 240px 360px;
	display: block
}

.searchcarsmeterbx .searchcartoolbx .toolicon span.usedwith {
	background-position: 0 0
}

.searchcarsmeterbx .searchcartoolbx:hover .toolicon span.usedwith {
	background-position: -120px 0
}

.searchcarsmeterbx .searchcartoolbx .toolicon span.odometer {
	background-position: 0 -120px
}

.searchcarsmeterbx .searchcartoolbx:hover .toolicon span.odometer {
	background-position: -120px -120px
}

.searchcarsmeterbx .searchcartoolbx .toolicon span.certified {
	background-position: 0 -240px
}

.searchcarsmeterbx .searchcartoolbx:hover .toolicon span.certified {
	background-position: -120px -240px
}

.searchcarsmeterbx .searchcartoolbx h4 {
	font-family: Montserrat-Light;
	font-size: 18px;
	color: #ff3448;
	margin: 10px 0;
	text-transform: uppercase;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.searchcarsmeterbx .searchcartoolbx h3 {
	font-size: 24px;
	color: #1f2734;
	margin: 0;
	padding-bottom: 20px;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	margin-top: 20px;
}

.searchcarsmeterbx .searchcartoolbx:hover h3,
.searchcarsmeterbx .searchcartoolbx:hover h4 {
	color: #004de6
}

.searchcarsmeterbx .searchcartoolbx.odometer:hover h3,
.searchcarsmeterbx .searchcartoolbx.odometer:hover h4 {
	color: #00e66c
}

.searchcarsmeterbx .searchcartoolbx.certified:hover h3,
.searchcarsmeterbx .searchcartoolbx.certified:hover h4 {
	color: #ffd000
}

.selectcarwrap .selectoptionbox {
	position: relative
}

.selectoptionrow {
	position: relative;
	width: 100%;
	display: block;
	margin-bottom: 30px
}

.selectoptionrow .orbx {
	position: absolute;
	right: -20px;
	top: 20px
}

.selectoptionrow .btn-default.active,
.selectoptionrow .btn-default:active,
.selectoptionrow .open>.dropdown-toggle.btn-default {
	background-color: transparent;
	box-shadow: none
}

.selectoptionrow .btn-group.open .dropdown-toggle {
	box-shadow: none
}

.selectoptionrow .btn-default.focus,
.selectoptionrow .btn-default:focus,
.selectoptionrow .btn-default:hover {
	background-color: transparent
}

.selectoptionrow.rent .btn-default.focus,
.selectoptionrow.rent .btn-default:focus,
.selectoptionrow.rent .btn-default:hover {
	background-color: #fff
}

.selectoptionrow .bootstrap-select:not([class*=span]):not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	width: 100%
}

.selectoptionrow .bootstrap-select>.btn,
.selectoptionrow .form-control {
	font-family: Montserrat-Light;
	padding: 12px 25px 12px 10px;
	font-size: 16px;
	color: #1f2734;
	border: 1px solid #1f2734;
	background-color: #fff;
	-webkit-appearance: none
}

.selectoptionrow .form-control {
	height: auto;
	box-shadow: none;
	-webkit-appearance: none
}

.selectoptionrow .dropdown-menu {
	font-family: Montserrat-Light;
	padding: 0;
	max-height: 200px!important;
	z-index: 1000!important
}

.selectoptionrow .form-control.removeBorder .dropdown-menu {
	border: 0!important
}

.selectoptionrow .dropdown-menu>li>a {
	outline: 0
}

.selectoptionrow .bootstrap-select.btn-group .btn .caret {
	width: 14px;
	height: 8px;
	margin-top: -4px;
	background: url(../images/arrow_icons_drop.png) no-repeat;
	background-size: 14px 16px;
	display: block;
	border: 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	background-position: 0 0
}

.selectoptionrow .bootstrap-select.btn-group.open .btn .caret {
	background-position: 0 -8px
}

.searchbtnrow {
	margin-top: 30px;
	text-align: center
}

.btn-primary.searchcars {
	font-family: Montserrat-Light;
	background-color: #ff3448;
	padding: 14px 80px;
	border-radius: 40px;
	font-size: 20px;
	border: 2px solid #ff3448;
	box-shadow: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	outline: 0
}

.btn-primary.searchcars:hover {
	background-color: #fff;
	color: #ff3448
}

.btn-primary.searchcars:focus {
	border: 2px solid #ff3448
}

.contactHpgw {
	padding-top: 0
}

.contactHpgw .mapaddressbx {
	position: relative;
	height: 550px
}

.contactHpgw .mapaddressbx iframe {
	width: 100%;
	height: 100%;
	border: 0
}

.loginscreensrap.contactusban .contactHpgw .mapaddressbx {
	overflow: hidden
}

.contactHpgw .mapaddressbx img {
	width: 100%;
	height: auto
}

.addressConbx {
	background-color: #ff3448;
	padding: 40px;
	height: 550px
}

.addressConbx .wd20w {
	width: 20%
}

.addressConbx .wd47w {
	width: 47%;
	padding: 0
}

.addressConbx .wd33w {
	width: 33%
}

.addressConRow {
	margin: 0 0 30px 0
}

.addressConRow .addicons {
	float: left;
	width: 40px;
	height: 40px;
	background: url(../images/contact-us_icons.png) no-repeat;
	background-size: 40px 120px;
	display: block
}

.addressConRow .addicons.callus {
	background-position: 0 0
}

.addressConRow .addicons.ourAdd {
	background-position: 0 -40px
}

.addressConRow .addicons.workingHours {
	background-position: 0 -80px
}

.addressConRow .addtext {
	margin-left: 56px
}

.addressConRow .addtext h3 {
	font-size: 28px;
	color: #1f2734;
	text-transform: uppercase
}

.addressConRow .addtext h4 {
	font-family: Montserrat-Light;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	margin: 5px 0
}

.addressConRow .addtext h4.numH {
	line-height: 40px
}

.addressConRow .addtext h4 span {
	display: block
}

.visitshowroom {
	background-color: #e2e3e5;
	padding: 50px 0
}

.taxiviewbox {
	position: relative;
	width: 525px;
	margin: auto;
	margin-top: 120px
}

.taxiviewbox .buildingview img {
	width: 524px;
	height: auto
}

.taxiviewbox .taxibase {
	position: absolute;
	left: -50px;
	bottom: -55px
}

.taxiviewbox .taxibase img {
	width: 660px;
	height: auto
}

.taxiviewbox .taxiviews {
	position: absolute;
	left: -30px;
	bottom: -50px
}

.taxiviewbox .taxiviews img {
	width: 560px;
	height: auto
}

.visitshowroom h4 {
	font-size: 18px;
	color: #ff3448;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0
}

.visitshowroom h3 {
	font-size: 32px;
	color: #1f2734;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-top: 10px
}

.visitshowroom .visitcarroom {
	padding-top: 40px;
	min-height: 600px
}

.carbox {
	position: absolute;
	width: 320px;
	height: 200px;
	left: 0;
	top: 40px;
	background-color: #fff;
	color: #0b7;
	display: inline-block;
	text-align: center;
	-webkit-transition: .5s;
	transition: .5s;
	cursor: pointer;
	vertical-align: middle;
	border: 5px solid #fff;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, .1)
}

.carbox.next01 {
	left: auto;
	top: 40px;
	right: 0;
	z-index: 3
}

.carbox.next02 {
	left: 50%;
	top: 50%;
	margin-left: -160px;
	margin-top: -100px;
	z-index: 2
}

.carbox.next03 {
	left: 0;
	top: auto;
	bottom: 40px
}

.carbox.next04 {
	left: auto;
	right: 0;
	top: auto;
	bottom: 40px
}

.carbox img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%)
}

.carbox:hover {
	border: 5px solid #fff
}

.carbox::after,
.carbox::before {
	width: 100%;
	height: 100%;
	z-index: 1;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	-webkit-transform: scale(0);
	-webkit-transition: .5s;
	transition: .5s
}

.foo::before {
	border-bottom: 5px solid #ff3448;
	border-left: 5px solid #ff3448;
	-webkit-transform-origin: 0 100%
}

.foo::after {
	border-top: 5px solid #ff3448;
	border-right: 5px solid #ff3448;
	-webkit-transform-origin: 100% 0
}

.carbox:hover::after,
.carbox:hover::before {
	-webkit-transform: scale(1)
}

.getintouchbx {
	padding: 10px 10px 10px 10px
}

.getintouchbx h2,
.getintouchbx h4 {
	font-size: 30px;
	color: #1f2734;
	text-align: center;
	margin-top: 0;
	margin-bottom: 11px
}

.getintouchbx h4 {
	font-size: 26px
}

.getintouchbx .form-control {
	font-family: Montserrat-Light;
	padding: 12px;
	height: auto;
	font-size: 16px;
	color: #1f2734;
	border: 1px solid #1f2734;
	box-shadow: none;
	-webkit-appearance: none;
	outline: 0;
	overflow: hidden
}

#testDriveForm .form-control {
	position: relative;
	z-index: 9999
}

.getintouchbx .form-control:focus {
	outline: 0
}

.getintouchbx .form-control.datepickers {
	background-color: transparent
}

.getintouchbx .form-control::-webkit-input-placeholder {
	color: #1f2734
}

.getintouchbx .form-control::-moz-placeholder {
	color: #1f2734
}

.getintouchbx .form-control:-ms-input-placeholder {
	color: #1f2734
}

.getintouchbx .form-control:-moz-placeholder {
	color: #1f2734
}

.getintouchbx .form-group {
	position: relative;
	min-height: 64px;
	margin-bottom: 17px
}

.getintouchbx .form-group span.dateicon {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 10px;
	right: 10px;
	background: url(../images/date_icons.png) no-repeat;
	display: block;
	background-size: 30px 60px;
	z-index: -1
}

#testDriveForm .form-group span.dateicon {
	z-index: 1
}

.getintouchbx .form-group span.dateicon.timepickers {
	background-position: 0 -30px
}

.getintouchbx .btn-primary.searchcars {
	width: 100%;
	padding: 14px 0
}

.bestofferwrap {
	background-color: #ffd000;
	padding: 50px 0 50px 0
}

.bestofferwrap .container {
	position: relative
}

.bestofferCars {
	width: 640px;
	float: right;
	padding-top: 30px;
	padding-right: 50px
}

.bestofferCars img {
	width: 640px;
	height: auto
}

.bestofferbox {
	position: relative;
	width: 340px;
	float: left
}

.bestofferConbx {
	width: 340px;
	height: 233px;
	background-image: url(../images/best_offers.png);
	background-size: 100% 100%
}

.bestofferbox .upto_off {
	position: absolute;
	right: -16px;
	bottom: 39px;
	width: 210px;
	height: 92px;
	background-image: url(../images/upto_off.png);
	background-size: 100% 100%
}

span.line_01 {
	position: absolute;
	left: -20px;
	top: 0;
	width: 130px;
	height: 1px;
	background-color: #000;
	-webkit-transform: rotate(-10deg);
	transform: rotate(-10deg)
}

span.line_02 {
	position: absolute;
	left: 56px;
	top: 21px;
	width: 190px;
	height: 1px;
	background-color: #000;
	-webkit-transform: rotate(-9deg);
	transform: rotate(-9deg)
}

span.line_03 {
	position: absolute;
	left: 110px;
	top: 8px;
	width: 150px;
	height: 1px;
	background-color: #000;
	-webkit-transform: rotate(-9deg);
	transform: rotate(-9deg)
}

span.line_04 {
	position: absolute;
	left: 190px;
	bottom: 43px;
	width: 120px;
	height: 1px;
	background-color: #fff;
	-webkit-transform: rotate(-9deg);
	transform: rotate(-9deg)
}

span.line_05 {
	position: absolute;
	left: 164px;
	bottom: 28px;
	width: 100px;
	height: 1px;
	background-color: #fff;
	-webkit-transform: rotate(-8deg);
	transform: rotate(-8deg)
}

span.line_06 {
	position: absolute;
	left: 50px;
	bottom: -10px;
	width: 160px;
	height: 1px;
	background-color: #000;
	-webkit-transform: rotate(-8deg);
	transform: rotate(-8deg)
}

span.line_07 {
	position: absolute;
	right: -30px;
	bottom: 40px;
	width: 80px;
	height: 1px;
	background-color: #000;
	-webkit-transform: rotate(-8deg);
	transform: rotate(-8deg)
}

.bestofferwrap .readmorebtnrw {
	margin-top: 10px
}

.bestofferwrap .readmorebtnrw .btn-primary {
	font-family: Montserrat-Light;
	background-color: #fff;
	padding: 8px 32px;
	border-radius: 40px;
	font-size: 20px;
	color: #0a0a0a;
	font-weight: 500;
	border: 0;
	box-shadow: none;
	outline: 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.bestofferwrap .readmorebtnrw .btn-primary:hover {
	background-color: #0a0a0a;
	color: #fff
}

.pricedropbox {
	background-color: #fff;
	padding: 50px 0
}

.pricedropbox h3 {
	font-size: 32px;
	color: #1f2734;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-top: 10px
}

.pricedropbox h4 {
	font-size: 18px;
	color: #ff3448;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0
}

.reserve_car {
	padding: 40px 0
}

.reservecardetailsbx {
	padding: 30px 20px 25px 20px;
	border: 1px solid #e9e9e9;
	border-radius: 5px;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.reservecardetailsbx:hover {
	border: 1px solid #fff;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1)
}

.reservecardetailsbx .wd64 {
	width: 58%
}

.reservecardetailsbx .wd36 {
	width: 42%
}

.reservecardetailsbx .carreserveimgbx {
	margin: 0
}

.reservecardetailsbx .carmodeldetails {
	position: relative
}

.reservecardetailsbx .carmodeldetails .modelname {
	font-size: 14px;
	color: #1f2734;
	margin-bottom: 10px
}

.reservecardetailsbx .carmodeldetails .modelyear,
.reservecardetailsbx .carmodeldetails .odomeater {
	font-size: 14px;
	color: #1f2734;
	margin-bottom: 10px
}

.reservecardetailsbx .carmodeldetails .modelyear span,
.reservecardetailsbx .carmodeldetails .odomeater span {
	color: #ff3448
}

.reservecardetailsbx .carmodeldetails .aedprice {
	font-size: 18px;
	color: #ff3448;
	text-align: left;
	margin-bottom: 15px
}

.reservecardetailsbx .carmodeldetails .reservebtnrw {
	text-align: left
}

.reservecardetailsbx .carmodeldetails .reservebtnrw .btn-primary {
	font-family: Montserrat-Light;
	background-color: #fff;
	padding: 5px 24px;
	font-size: 16px;
	color: #ff3448;
	font-weight: 500;
	border: 0;
	box-shadow: none;
	outline: 0;
	border-radius: 24px;
	border: 1px solid #ff3448;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.reservecardetailsbx .carmodeldetails .reservebtnrw .btn-primary:hover {
	background-color: #ff3448;
	color: #fff
}

.browseallCar {
	text-align: center
}

.browseallCar .btn-primary {
	background-color: #fff;
	padding: 14px 80px;
	font-size: 20px;
	color: #ff3448;
	font-weight: 500;
	border: 0;
	box-shadow: none;
	outline: 0;
	border-radius: 32px;
	border: 2px solid #ff3448;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	margin-top: 50px
}

.browseallCar .btn-primary:hover {
	background-color: #ff3448;
	color: #fff
}

.downloadAppbx {
	display: none;
	background-color: #4d4d4d
}

.downloadAppbx .appbgbx {
	position: relative
}

.downloadAppbx .appbgbx img {
	width: 100%;
	height: auto
}

.downloadAppbx .appbgbx .transpbg {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(237, 237, 237, .85)
}

.downloadAppbx .appbgbx .appConbx {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1
}

.downloadAppbx .appbgbx .appConbx .appContextbx {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	margin-top: -110px
}

.downloadAppbx .appbgbx .appConbx .appContextbx h1,
.downloadAppbx .appbgbx .appConbx .appContextbx h2 {
	font-size: 36px;
	color: #2c2c2c;
	text-align: center
}

.downloadAppbx .appbgbx .appConbx .appContextbx h1 span,
.downloadAppbx .appbgbx .appConbx .appContextbx h2 span {
	color: #ff3448
}

.downloadAppbx .appbgbx .appConbx .appContextbx .sminfo {
	font-size: 18px;
	color: #2c2c2c;
	text-align: center;
	margin-top: 15px
}

.playstorebtnrow {
	max-width: 600px;
	padding-top: 40px;
	margin: auto
}

.playstorebtnrow .googleplaybtn {
	position: relative;
	background-color: #ff3448;
	padding: 16px 40px 16px 70px;
	font-size: 24px;
	color: #fff;
	border-radius: 32px;
	display: inline-block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.playstorebtnrow .googleplaybtn:hover {
	background-color: #fff;
	color: #ff3448
}

.playstorebtnrow span {
	position: absolute;
	width: 32px;
	height: 32px;
	left: 32px;
	top: 50%;
	margin-top: -16px;
	background: url(../images/app_store_icon.png) no-repeat;
	background-size: 64px 64px;
	display: block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.playstorebtnrow span.playstore {
	background-position: 0 0
}

.playstorebtnrow .googleplaybtn:hover span.playstore {
	background-position: -32px 0
}

.playstorebtnrow .appstorebtn {
	position: relative;
	background-color: #ffd000;
	padding: 16px 40px 16px 70px;
	font-size: 24px;
	color: #010101;
	border-radius: 32px;
	display: inline-block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.playstorebtnrow span.appstore {
	background-position: 0 -32px
}

.playstorebtnrow .appstorebtn:hover {
	background-color: #000;
	color: #ffd000
}

.playstorebtnrow .appstorebtn:hover span.appstore {
	background-position: -32px -32px
}

.sellmycarwrap {
	padding: 80px 0 130px 0
}

.sellmycarwrap .sellConbx {
	padding-top: 80px;
	text-align: center
}

.sellmycarwrap .sellConbx .sellheading {
	font-size: 30px;
	color: #1f2734;
	text-transform: uppercase
}

.sellmycarwrap .sellConbx .sellinfo {
	font-family: Montserrat-Light;
	font-size: 21px;
	color: #1f2734;
	line-height: 32px;
	margin: 24px 0 40px 0
}

.sellmycarwrap1 .sellConbx1 .sellinfo1 {
	font-family: Montserrat-Light;
	font-size: 18px;
	color: #1f2734;
	line-height: 32px;
	margin: 0 40px 40px 40px;
	text-align: justify
}

.sellmycarwrap .sellConbx .sellbtnrw {
	text-align: center
}

.sellbtnrw .btn-primary {
	font-family: Montserrat-Light;
	background-color: #ff3448;
	padding: 14px 60px;
	border-radius: 40px;
	font-size: 20px;
	border: 2px solid #ff3448;
	box-shadow: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.sellbtnrw .btn-primary:focus,
.sellbtnrw .btn-primary:hover {
	background-color: #fff;
	color: #ff3448
}

.sellCarContent {
	position: relative;
	padding-left: 30px
}

.sellCarContent .plash_parts {
	padding-left: 20px
}

.sellCarContent .plash_parts img {
	width: auto;
	height: 100px
}

.sellCarContent .settings_parts img {
	width: auto;
	height: 100px
}

.sellCarContent .carObj {
	position: relative;
	padding-top: 40px;
	padding-left: 80px
}

.sellCarContent .carObj img {
	width: auto;
	height: 160px;
	display: inline-block
}

.sellCarContent .carObj .sellman1 {
	position: absolute;
	left: 0;
	bottom: -50px
}

.sellCarContent .carObj .sellman1 img {
	width: auto;
	height: 210px
}

.sellCarContent .carObj .sellman2 {
	position: absolute;
	right: 78px;
	bottom: -55px;
	z-index: 2
}

.sellCarContent .carObj .sellman2 img {
	width: auto;
	height: 210px
}

.sellCarContent .carObj .sellman3 {
	position: absolute;
	right: 130px;
	bottom: 21px;
	z-index: -1
}

.sellCarContent .carObj .sellman3 img {
	width: auto;
	height: 150px
}

.sellCarimageviewbox {
	position: relative;
	width: 420px;
	margin: auto;
	margin-top: 30px
}

.sellCarimageviewbox .sellcarcirclebx {
	width: 420px;
	height: 420px;
	border-radius: 100%;
	background: #f1f1f1;
	display: block
}

.sellCarimageviewbox .runingcarani {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 300px;
	height: 238px;
	margin-left: -150px;
	margin-top: -119px;
	background: url(../images/sellcarimgbg.png) no-repeat center center #f1f1f1;
	background-size: 300px 238px
}

.sellCarimageviewbox .sellcarclouds {
	position: absolute;
	right: -220px;
	top: -50px;
	width: 200px;
	height: 217px;
	background: url(../images/sellcar_clouds.png) no-repeat;
	background-size: 100% 100%
}

.sellcarOptionsection {
	margin-top: 150px;
	padding-left: 50px
}

.sellcarOptionrow {
	position: relative
}

.sellcarOptionrow .bulletsCon {
	width: 40px;
	float: left
}

.sellcarOptionrow .bulletsbox {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 2px solid #ff3448;
	display: inline-block
}

.sellcarOptionrow .bulletsCon .dotlines {
	width: 2px;
	height: 80px;
	border-left: 2px dashed #ff3448;
	margin-left: 20px;
	display: block
}

.sellcarOptionrow .bulliconbx {
	float: left;
	width: 60px;
	height: 64px;
	background: url(../images/sell_car_icon.png) no-repeat;
	background-size: 60px 192px;
	display: inline-block;
	margin: 0 15px;
	margin-top: -15px
}

.sellcarOptionrow .bulliconbx.filldetails {
	background-position: 0 0
}

.sellcarOptionrow .bulliconbx.quickrespond {
	background-position: 0 -64px
}

.sellcarOptionrow .bulliconbx.soldcar {
	background-position: 0 -128px
}

.sellcarOptionrow .bulletsbox .redbul {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 26px;
	height: 26px;
	border-radius: 100%;
	margin: -13px 0 0 -13px;
	background-color: #ff3448
}

.sellcarOptionrow .optionvaltext {
	font-family: Montserrat-Light;
	font-size: 24px;
	color: #1f2734;
	line-height: 80px;
	display: inline-block;
	margin-top: -20px
}

.features_policies {
	background-color: #fff;
	padding: 70px 0 80px
}

.features_policies h4 {
	font-size: 18px;
	color: #ff3448;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0
}

.features_policies h3 {
	font-size: 32px;
	color: #1f2734;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-top: 10px
}

.featuresbox {
	padding-top: 80px
}

.featuresbox .featuresbxCon {
	text-align: center
}

.featuresbox .featuresbxCon .featuresiconbx {
	position: relative;
	width: 170px;
	height: 170px;
	border: 4px solid #5a5a5a;
	border-radius: 50%;
	display: inline-block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.featuresbox .featuresbxCon:hover .featuresiconbx {
	border: 4px solid #ffd000;
	background-color: #ffd000
}

.featuresbox .featuresbxCon .featuresiconbx span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 90px;
	height: 90px;
	margin: -45px 0 0 -45px;
	background: url(../images/features_policies_icons.png) no-repeat;
	background-size: 180px 270px;
	display: block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.featuresbox .featuresbxCon .featuresiconbx span.easyfinancing {
	background-position: 0 -180px
}

.featuresbox .featuresbxCon:hover .featuresiconbx span.easyfinancing {
	background-position: -90px -180px
}

.featuresbox .featuresbxCon .featuresiconbx span.manybrands {
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
	background-size: 200px 300px;
	background-position: 0 -100px
}

.featuresbox .featuresbxCon:hover .featuresiconbx span.manybrands {
	background-position: -100px -100px
}

.featuresbox .featuresbxCon .featuresiconbx span.certified_clients {
	background-position: 0 0
}

.featuresbox .featuresbxCon:hover .featuresiconbx span.certified_clients {
	background-position: -90px 0
}

.featuresbox .featuresbxCon h4 {
	font-size: 22px;
	color: #5a5a5a;
	text-align: center;
	text-transform: uppercase;
	margin-top: 40px
}

.finance_eligiblity {
	background-color: #ededed
}

.finance_eligiblity .financebg {
	position: relative
}

.finance_eligiblity .financebg img {
	width: 100%;
	height: auto
}

.finance_eligiblity .financebg .financeConbx {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1
}

.finance_eligiblity1 {
	background-color: #ededed
}

.finance_eligiblity1 .financebg1 {
	position: relative;
	/* height: 100vh; */
}

.finance_eligiblity1 .financebg1 img {
	width: 100%;
	height: auto
}

.finance_eligiblity1 .financebg1 .financeConbx {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1
}

.finance_eligiblity .financebg .financeConbx .financedetailsCon {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	margin-top: -200px
}

.financedetailsCon .check_eligibility {
	padding-top: 60px
}

.check_eligibility .heading_title {
	font-size: 30px;
	color: #fff;
	text-transform: uppercase
}

.check_eligibility .eligibilityinfo {
	font-family: Montserrat-Light;
	font-size: 21px;
	color: #fff;
	line-height: 32px;
	margin: 24px 0 40px 0
}

.check_eligibility .eligibilitybtnrw {
	margin: 0
}

.check_eligibility .eligibilitybtnrw .btn-primary {
	font-family: Montserrat-Light;
	background-color: #fff;
	padding: 14px 60px;
	border-radius: 40px;
	font-size: 20px;
	color: #ff3448;
	border: 2px solid #fff;
	box-shadow: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.check_eligibility .eligibilitybtnrw .btn-primary:focus,
.check_eligibility .eligibilitybtnrw .btn-primary:hover {
	background-color: transparent;
	color: #fff
}

.eligibility_rightConbx {
	position: relative;
	width: 500px;
	min-height: 400px
}

.eligibility_rightConbx .dollorbx {
	position: absolute;
	width: 210px;
	height: 210px;
	right: 0;
	bottom: 80px;
	border-radius: 50%;
	border: 2px solid #fff;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.eligibility_rightConbx:hover .dollorbx {
	background-color: #fff
}

.eligibility_rightConbx .dollorbx span.dollorsign {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -65px;
	margin-top: -66px;
	width: 130px;
	height: 131px;
	background: url(../images/dollor_icon.png) no-repeat;
	background-size: 130px 262px;
	display: block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	background-position: 0 0
}

.eligibility_rightConbx:hover .dollorbx span.dollorsign {
	background-position: 0 -131px
}

.eligibility_rightConbx .eligibilitysmbx {
	position: absolute;
	left: 96px;
	top: 0;
	width: 100px;
	height: 100px;
	border: 2px solid #fff;
	border-radius: 50%;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.eligibility_rightConbx:hover .eligibilitysmbx {
	background-color: #fff
}

.eligibility_rightConbx .eligibilitysmbx.middle {
	left: 60px;
	top: 140px
}

.eligibility_rightConbx .eligibilitysmbx.last {
	left: 63px;
	top: auto;
	bottom: 10px
}

.eligibility_rightConbx .eligibilitysmbx span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	background: url(../images/finance_elgiblity.png) no-repeat;
	background-size: 120px 180px;
	display: block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.eligibility_rightConbx .eligibilitysmbx span.upicon {
	background-position: -60px 0
}

.eligibility_rightConbx:hover .eligibilitysmbx span.upicon {
	background-position: 0 0
}

.eligibility_rightConbx .eligibilitysmbx span.middleicon {
	background-position: -60px -60px
}

.eligibility_rightConbx:hover .eligibilitysmbx span.middleicon {
	background-position: 0 -60px
}

.eligibility_rightConbx .eligibilitysmbx span.lasticon {
	background-position: -60px -120px
}

.eligibility_rightConbx:hover .eligibilitysmbx span.lasticon {
	background-position: 0 -120px
}

.eligibility_rightConbx .curveline01 {
	position: absolute;
	left: 201px;
	top: 70px;
	width: 100px;
	height: 92px;
	background: url(../images/curve_line_01.png) no-repeat;
	background-size: 100% 100%;
	display: block
}

.eligibility_rightConbx .curveline02 {
	position: absolute;
	left: 165px;
	top: 170px;
	width: 118px;
	height: 45px;
	background: url(../images/curve_line_02.png) no-repeat;
	background-size: 100% 100%;
	display: block
}

.eligibility_rightConbx .curveline03 {
	position: absolute;
	left: 168px;
	top: auto;
	bottom: 75px;
	width: 147px;
	height: 39px;
	background: url(../images/curve_line_03.png) no-repeat;
	background-size: 100% 100%;
	display: block
}

.finance_eligiblity .financebg .overbg {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(226, 227, 229, .8);
	display: none
}

.footerwrap {
	position: relative;
	padding-top: 60px;
	display: block
}

.footerwrap .bgroadmap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(31, 39, 52, .98)
}

.footerwrap .albacarsfooterlogo {
	width: 200px;
	height: 52px;
	background: url(../images/alba_logo_new.png) no-repeat center center;
	background-size: 100% 100%;
	display: block;
	margin: auto
}

.footerwrap .container {
	position: relative;
	z-index: 1
}

.footermenu {
	margin: 50px 0 40px 0
}

.footermenu .navbar-nav {
	float: none;
	padding-left: 60px
}

.footermenu .navbar-nav>li {
	float: left;
	width: 50%;
	text-align: left
}

.footermenu .navbar-nav>li>a {
	padding: 15px 10px;
	font-size: 15px;
	color: #dfdfdf;
	text-transform: uppercase;
	display: inline-block;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.footermenu .nav>li>a:focus,
.footermenu .nav>li>a:hover {
	background-color: transparent;
	color: #f8e211
}

.copyrtrow {
	position: relative;
	background-color: rgba(22, 28, 37, .5);
	padding: 40px 0;
	font-size: 17px;
	color: #fff;
	text-align: center;
	z-index: 1
}

.carlistingwrap {
	margin-top: 100px
}

.carlistingheaderbx {
	position: relative;
	background-color: #fafafa;
	padding: 60px 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
	z-index: 1
}

.carlistingwrap.carlistdetails .carlistingheaderbx {
	background-color: #fff
}

.carlistingheaderbx h1,
.carlistingheaderbx h3 {
	font-size: 32px;
	color: #1f2734;
	text-align: center;
	letter-spacing: 3px;
	margin: 15px 0;
	text-transform: uppercase
}

.carlistingheaderbx h1 {
	font-size: 36px
}

.carlistingheaderbx h4 {
	font-family: Montserrat-Light;
	font-size: 24px;
	color: #1f2734;
	text-align: center;
	text-transform: uppercase
}

.carlistingheaderbx h4 a {
	position: relative;
	color: #1f2734;
	text-decoration: none
}

.carlistingheaderbx h4 a:hover {
	color: #ff3448
}

.carlistingheaderbx h4 a:after,
.carlistingheaderbx h4 a:before {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #ff3448
}

.carlistingheaderbx h4 a:before {
	opacity: 0;
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
	transition: opacity 0s, -webkit-transform 0s cubic-bezier(.175, .885, .32, 1.275);
	transition: transform 0s cubic-bezier(.175, .885, .32, 1.275), opacity 0s;
	transition: transform 0s cubic-bezier(.175, .885, .32, 1.275), opacity 0s, -webkit-transform 0s cubic-bezier(.175, .885, .32, 1.275)
}

.carlistingheaderbx h4 a:after {
	opacity: 0;
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
	transition: opacity .2s, -webkit-transform .2s cubic-bezier(.175, .885, .32, 1.275);
	transition: transform .2s cubic-bezier(.175, .885, .32, 1.275), opacity .2s;
	transition: transform .2s cubic-bezier(.175, .885, .32, 1.275), opacity .2s, -webkit-transform .2s cubic-bezier(.175, .885, .32, 1.275)
}

.carlistingheaderbx h4 a:focus:after,
.carlistingheaderbx h4 a:focus:before,
.carlistingheaderbx h4 a:hover:after,
.carlistingheaderbx h4 a:hover:before {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0)
}

.carlistingheaderbx h4 a:focus:before,
.carlistingheaderbx h4 a:hover:before {
	transition: opacity .2s, -webkit-transform .2s cubic-bezier(.175, .885, .32, 1.275);
	transition: transform .2s cubic-bezier(.175, .885, .32, 1.275), opacity .2s;
	transition: transform .2s cubic-bezier(.175, .885, .32, 1.275), opacity .2s, -webkit-transform .2s cubic-bezier(.175, .885, .32, 1.275)
}

.carlistingheaderbx h4 a:focus:after,
.carlistingheaderbx h4 a:hover:after {
	transition: opacity 0s .2s, -webkit-transform 0s .2s cubic-bezier(.175, .885, .32, 1.275);
	transition: transform 0s .2s cubic-bezier(.175, .885, .32, 1.275), opacity 0s .2s;
	transition: transform 0s .2s cubic-bezier(.175, .885, .32, 1.275), opacity 0s .2s, -webkit-transform 0s .2s cubic-bezier(.175, .885, .32, 1.275)
}

.carlistingSelectOptionbox {
	padding: 30px 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1)
}

.carlistingSelectOptionbox h4 {
	font-size: 21px;
	color: #626262
}

.carlistingSelectOptionbox .btn-primary.searchcars {
	width: 100%;
	padding: 10px 0
}

.carlistingSelectOptionbox .btn-primary.searchcars.resetbtn {
	background-color: transparent;
	color: #626262;
	border: 0;
	border-radius: 0;
	text-decoration: underline
}

.selectoptionrow.pdrt {
	position: relative;
	width: auto;
	padding-right: 10px
}

.selectoptionrow.pdlt {
	width: auto;
	padding-left: 10px
}

.selectoptionrow.pdrt span.selectto {
	position: absolute;
	top: 12px;
	right: -24px;
	font-size: 16px
}

.explorecarlistingSection {
	padding: 40px 0
}

.explorecarlistingSection.promotionslist {
	padding: 80px 0
}

.explorecarlistingSection.promotionslist .row.lrmar {
	margin: 0 -40px
}

.lrpdw {
	padding: 0 40px
}

.explorecarlistingSection .headertitlerow {
	padding-bottom: 40px
}

.explorecarlistingSection .headertitlerow h3,
.headertitlerow h2 {
	font-size: 26px;
	color: #1f2734;
	margin-top: 20px;
}

.headertitlerow h2 {
	font-size: 32px
}

.explorecarlistingSection .headertitlerow h4 {
	font-family: Montserrat-Light;
	font-size: 18px;
	color: #1f2734
}

.headertitlerow .sortingbx {
	text-align: right
}

.headertitlerow .sortingbx .comparebtnbx {
	display: inline-block;
	margin-right: 15px
}

.btn-primary.comparebtn {
	background-color: #ff3448;
	padding: 10px 30px;
	border-radius: 4px;
	font-size: 16px;
	border: 2px solid #ff3448;
	box-shadow: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	outline: 0
}

.btn-primary.comparebtn:focus,
.btn-primary.comparebtn:hover,
.btn-primary.comparebtn[disabled]:hover {
	background-color: #fff;
	color: #ff3448
}

.btn-primary.comparebtn.btn.disabled {
	color: #656565;
	border: 2px solid #e3e3e3;
	background-color: #e3e3e3;
	opacity: .5;
	cursor: pointer
}

.headertitlerow .sortingbx .sortby {
	font-size: 16px;
	color: #626262;
	margin-right: 10px;
	display: inline-block
}

.headertitlerow .sortingbx .selectoptionrow {
	width: 190px;
	display: inline-block
}

.headertitlerow .sortingbx .gridview {
	width: 25px;
	height: 30px;
	background: url(../images/listing_icon.png) no-repeat center center;
	background-size: 50px 60px;
	background-position: 0 0;
	display: inline-block;
	margin-left: 10px;
	cursor: pointer;
	vertical-align: middle
}

.explorecarlistingSection.gridview .headertitlerow .sortingbx .gridview {
	background-position: -25px 0
}

.headertitlerow .sortingbx .listview {
	width: 25px;
	height: 30px;
	background: url(../images/listing_icon.png) no-repeat center center;
	background-size: 50px 60px;
	background-position: 0 -30px;
	display: inline-block;
	margin-left: 10px;
	cursor: pointer;
	vertical-align: middle
}

.explorecarlistingSection.listview .headertitlerow .sortingbx .listview {
	background-position: -25px -30px
}

.explorecarlistingSection.promotionslist .carlistingview {
	max-width: 900px;
	margin: 0 auto
}

.carlistingbox {
	position: relative;
	background-color: #fff;
	border: 1px solid #e2e3e5;
	margin-bottom: 30px;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	overflow: hidden
}

.carlistingbox:hover {
	border: 1px solid #b3b3b3;
	box-shadow: 0 2px 24px 0 rgba(0, 0, 0, .05)
}

.explorecarlistingSection.promotionslist .carlistingbox {
	position: relative
}

.explorecarlistingSection.promotionslist .carlistingbox span.offValue {
	position: absolute;
	left: -50px;
	top: 30px;
	width: 110px;
	height: 38px;
	font-size: 20px;
	text-align: center;
	line-height: 38px;
	color: #000;
	background: url(../images/off_bg.png) no-repeat;
	background-size: 100% 100%;
	z-index: 1
}

.carlistingbox .imgviewbx {
	position: relative;
	height: 230px;
	overflow: hidden
}

.carlistingbox .imgviewbx .title {
	position: absolute;
	right: -10px;
	top: 0;
	width: 180px;
	height: 40px;
	border: none;
	display: block;
	background: #ff3448;
	-webkit-transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-20deg);
	transform: scaleX(1) scaleY(1) scaleZ(1) skewX(-20deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	padding: 0;
	margin: 0 1px;
	z-index: 9
}

.carlistingbox .imgviewbx .titlenm {
	position: absolute;
	right: 0;
	top: 0;
	width: 180px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	height: 40px;
	line-height: 40px;
	-webkit-transform: none;
	transform: none;
	z-index: 10
}

.titlenm1 {
	position: absolute;
    right: -6px;
    top: 25px;
    width: 180px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    height: 40px;
    line-height: 40px;
    /* -webkit-transform: none; */
    transform: none;
    z-index: 10;
    font-size: 14px;
}

.carlistingbox .imgviewbx.pricedrop del {
	position: absolute;
	top: 0;
	right: 190px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #1f2734;
	z-index: 9
}

.carlistingbox .imgviewbx span.timer {
	position: absolute;
	right: 15px;
	bottom: 15px;
	font-size: 20px;
	color: #ff3448;
	z-index: 11
}

.carlistingbox .imgviewbx i {
	font-style: normal
}

.carlistingbox .imgviewbx img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto
}

.carlistingbox .cardetailsbx {
	position: relative;
	padding: 15px
}

.carlistingbox .carnm {
	position: relative;
	font-size: 16px;
	color: #1f2734;
	line-height: 24px;
	padding-right: 105px;
	height: 44px;
	overflow: hidden
}

.carlistingbox .carnm.onerow {
	padding-right: 0;
	height: auto;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.month_offersimg {
	width: 75px;
	height: 40px;
	background: url(../images/april_offers.png) no-repeat;
	background-size: 100% 100%;
	display: block
}

.carlistingbox .carnm .modelyearrw {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0
}

.carlistingbox .carsminfo,
.carlistingbox .carsminfo p {
	font-family: Montserrat-Light;
	font-size: 14px;
	color: #1f2734;
	line-height: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 20px
}

.carlistingbox .modelyearrw {
	padding: 8px 0
}

.carlistingbox .odometerrw {
	margin: 0
}

.explorecarlistingSection.promotionslist .carlistingbox .odometerrw {
	margin-top: 15px
}

.carlistingbox .modelyearrw .modelnm,
.carlistingbox .odometerrw .odometernm {
	font-size: 13px;
	color: #1f2734;
	line-height: 20px
}

.carlistingbox .modelyearrw .modelyr,
.carlistingbox .odometerrw .kms {
	font-size: 14px;
	color: #ff3448;
	line-height: 20px
}

.carlistingbox .modelyearrw .downpayment {
	font-size: 10px;
	color: #1f2734;
	line-height: 20px;
	display: inline-block
}

.carlistingbox .modelyearrw .downpayment span {
	display: block
}

.carlistingbox .pdz0 {
	padding-left: 0
}

.carlistingbox .wd35 {
	width: 35%;
	padding-right: 0
}

.carlistingbox .wd65 {
	width: 65%
}

.carlistingbox .modelyearrw .aedprice {
	font-size: 18px;
	color: #ff3448;
	line-height: 22px;
	text-align: right;
	display: inline-block;
	margin-left: 8px
}

.carlistingbox .modelyearrw .aedprice span {
	font-size: 16px;
	display: block
}

.bestoffersbox .offerdetailsbox .btn-primary.viewdetails,
.carlistingbox .odometerrw .btn-primary.viewdetails {
	background-color: transparent;
	padding: 6px 16px;
	color: #ff3448;
	font-size: 14px;
	border: 2px solid #ff3448;
	border-radius: 24px;
	box-shadow: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	outline: 0;
	margin-top: 5px
}

.bestoffersbox .offerdetailsbox .offerbtsnrw {
	margin-top: 10px;
	text-align: center
}

.bestoffersbox .offerdetailsbox .btn-primary.viewdetails {
	padding: 10px 30px;
	font-size: 18px
}

.bestoffersbox .offerdetailsbox .btn-primary.viewdetails:focus,
.bestoffersbox .offerdetailsbox .btn-primary.viewdetails:hover,
.carlistingbox .odometerrw .btn-primary.viewdetails:focus,
.carlistingbox .odometerrw .btn-primary.viewdetails:hover {
	background-color: #ff3448;
	color: #fff
}

.showmorelisting {
	margin-top: 10px;
	text-align: center
}

.explorecarlistingSection.listview .listviews {
	float: none;
	width: auto
}

.explorecarlistingSection.listview .carlistingbox {
	padding: 15px
}

.explorecarlistingSection.listview .carlistingbox .imgviewbx {
	float: left;
	width: 360px;
	height: auto
}

.explorecarlistingSection.listview .carlistingbox .imgviewbx img {
	position: static;
	left: auto;
	top: auto;
	-webkit-transform: none;
	transform: none;
	max-width: inherit;
	max-height: inherit;
	width: 100%;
	height: auto
}

.explorecarlistingSection.listview .carlistingbox .cardetailsbx {
	margin-left: 400px;
	padding: 0
}

.explorecarlistingSection.listview .carlistingbox .imgviewbx .title {
	bottom: 0
}

.explorecarlistingSection.listview .carlistingbox .imgviewbx .titlenm {
	bottom: 0
}

.explorecarlistingSection.listview .carlistingbox .modelyearrw {
	overflow: hidden;
	height: auto;
	padding: 15px 0;
	padding-top: 0
}

.explorecarlistingSection.listview .carlistingbox .carnm .modelyearrw {
	padding: 0
}

.explorecarlistingSection.listview .carlistingbox .carnm {
	margin: 8px 0
}

.explorecarlistingSection.listview .carlistingbox .carnm.onerow {
	min-height: inherit;
	margin-top: 0
}

.carlistingdetailswrap {
	margin-top: 80px
}

.carlistdetailsbox {
	position: relative
}

.carlistdetailsbox .carmodelrow {
	position: relative;
	padding: 20px;
	border: 1px solid #e2e3e5;
	box-shadow: -1.618px -1.176px 15px 0 rgba(0, 0, 0, .15);
	margin-bottom: 20px
}

.carlistdetailsbox .carmodelrow.modelnm {
	margin-top: 10px
}

.carlistdetailsbox .carmodelrow .aedbgrw {
	position: relative;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	margin-top: 8px;
	background-color: #ff3448;
    width: 105%;
}

.aedbgrw1 {
	position: absolute;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-top: 8px;
    background-color: #ff3448;
    width: 30%;
    bottom: 0;
	z-index: 100;
}

.carlistdetailsbox .carmodelrow .aedbgrw span.leftdesign {
	position: absolute;
	left: -11px;
	top: 0;
	width: 11px;
	height: 40px;
	background: url(../images/rotate_design.png) repeat-x;
	background-size: 11px 40px
}

.carlistdetailsbox .carmodelrow .lftbdr {
	position: absolute;
	left: 0;
	top: 50%;
	width: 2px;
	height: 30px;
	margin-top: -15px;
	background-color: #ff3448
}

.carlistdetailsbox .carmodelrow h2,
.carlistdetailsbox .carmodelrow h3 {
	font-size: 24px;
	color: #1f2734;
	margin: 0 0 10px 0
}

.carlistdetailsbox .carmodelrow h2 {
	font-size: 32px
}

.carlistdetailsbox .carmodelrow h4 {
	font-size: 18px;
	color: #1f2734;
	margin: 0
}

.carlistdetailsbox .carmodelrow h4 span {
	color: #ff3448
}

.carlistdetailsbox .carmodelrow h4 span.smz {
	color: #1f2734;
	font-size: 15px
}

.optionkeywordbx {
	padding: 30px 30px 20px 30px;
	margin-top: 10px;
	margin-bottom: 15px;
	border: 1px solid #e2e3e5;
	box-shadow: -1.618px -1.176px 5px 0 rgba(0, 0, 0, .15)
}

.optionkeywordbx h2,
specificationdetailsbx h2 {
	position: relative;
	font-size: 26px;
	color: #1f2734;
	margin: 0 0 20px 0
}

.optionkeywordbx h3 {
	font-size: 18px;
	color: #1f2734;
	text-transform: uppercase;
	margin: 0 0 30px 0
}

#explrbtn {
	margin-top: 30px
}

.optionkeywordbx h2:after,
.specificationdetailsbx h2:after {
	position: absolute;
	content: '';
	left: -30px;
	top: 0;
	width: 2px;
	height: 30px;
	background-color: #ff3448
}

.optionkeywordbx ul {
	width: 100%;
	margin: 0;
	padding: 0
}

.optionkeywordbx ul li {
	width: 33.33%;
	float: left;
	list-style: none;
	padding: 12px 0;
	font-size: 15px;
	color: #6b6b6b
}

.optionkeywordbx .descriptioninfo {
	font-family: Montserrat-Light;
	position: relative;
	font-size: 18px;
	color: #6b6b6b;
	max-height: 710px;
	overflow: hidden;
	overflow-y: auto;
	z-index: 1
}

.optionkeywordbx .descriptioninfo h3 {
	font-family: Montserrat-Regular;
	font-size: 18px;
	color: #1f2734;
	text-transform: uppercase;
	margin: 0 0 30px 0
}

.optionkeywordbx .descriptioninfo p {
	margin-bottom: 20px;
	word-wrap: break-word
}

.specificationbox {
	position: relative
}

.specificationbox .specibtnrw {
	margin-bottom: 20px
}

.specificationbox .specibtnrw .btn-primary.searchcars {
	font-family: Montserrat-Regular;
	background-color: transparent;
	width: 100%;
	color: #ff3448;
	padding: 14px 0;
	border-radius: 30px
}

.specificationbox .specibtnrw .btn-primary.searchcars:focus,
.specificationbox .specibtnrw .btn-primary.searchcars:hover {
	color: #fff;
	border: 2px solid #ff3448;
	background-color: #ff3448
}

.specificationbox .specibtnrw .btn-primary.searchcars:active,
.specificationbox .specibtnrw .btn-primary.searchcars:focus {
	color: #ff3448;
	border: 2px solid #ff3448;
	background-color: transparent
}

.specificationbox .downpaymentbox {
	padding: 10px 20px
}

.specificationbox .downpaymentbox .percentage {
	font-size: 16px;
	color: #1f2734;
	line-height: 24px;
	text-align: right
}

.specificationbox .downpaymentbox .percentage span {
	display: block
}

.specificationbox .pricebxes {
	font-size: 21px;
	color: #ff3448;
	line-height: 30px;
	text-align: right
}

.specificationdetailsbx {
	padding: 30px;
	margin-top: 20px;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15)
}

.specificationdetailsbx h2 {
	position: relative;
	font-size: 26px;
	color: #1f2734;
	margin: 0 0 20px 0
}

.specificationOptionbx {
	margin: 0
}

.specificationOptionsrow {
	position: relative;
	padding-bottom: 40px
}

.specificationOptionbx.desktop_version .specificationOptionsrow,
.specificationbox.mobile_version .specificationOptionsrow {
	float: left;
	width: 50%;
	padding-bottom: 30px
}

.specificationOptionbx .specificationOptionsrow.wd100 {
	width: 100%
}

.specificationOptionbx.desktop_version .specificationOptionsrow:last-child {
	width: 100%;
	padding-bottom: 0
}

.specificationOptionsrow span {
	position: absolute;
	width: 45px;
	height: 45px;
	border-radius: 50%
}

.specificationOptionbx.desktop_version .specificationOptionsrow span {
	position: relative;
	display: block;
	margin: auto
}

.specificationOptionsrow span.odometer {
	background-color: #ff3448
}

.specificationOptionsrow span.cylinders {
	background-color: #60b6ff
}

.specificationOptionsrow span.wheel {
	background-color: #51d136
}

.specificationOptionsrow span.optionfull {
	background-color: #7f57f6
}

.specificationOptionsrow span.servicehistory {
	background-color: #60b6ff
}

.specificationOptionsrow span.warranty {
	background-color: #51d136
}

.specificationOptionsrow span.servicecontract {
	background-color: #ff3448
}

.specificationOptionsrow span i {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 26px;
	height: 26px;
	margin: -13px 0 0 -13px;
	background: url(../images/specification_icon.png) no-repeat;
	background-size: 26px 182px
}

.specificationOptionsrow span.odometer i {
	background-position: 0 0
}

.specificationOptionsrow span.cylinders i {
	background-position: 0 -26px
}

.specificationOptionsrow span.wheel i {
	background-position: 0 -52px
}

.specificationOptionsrow span.optionfull i {
	background-position: 0 -78px
}

.specificationOptionsrow span.servicehistory i {
	background-position: 0 -104px
}

.specificationOptionsrow span.warranty i {
	background-position: 0 -130px
}

.specificationOptionsrow span.servicecontract i {
	background-position: 0 -156px
}

.specificationOptionsrow .optionnm {
	margin-left: 60px;
	padding-top: 10px;
	font-size: 14px;
	color: #6b6b6b
}

.specificationOptionbx.desktop_version .specificationOptionsrow .optionnm {
	margin-left: 0;
	text-align: center;
	display: block
}

.specificationOptionsrow .optionnm .lftt {
	float: left;
	width: 125px
}

.specificationOptionbx.desktop_version .specificationOptionsrow .optionnm .lftt {
	float: none;
	color: #333;
	width: auto;
	margin-bottom: 5px
}

.specificationOptionsrow .optionnm .rttt {
	margin-left: 130px
}

.specificationOptionbx.desktop_version .specificationOptionsrow .optionnm .rttt {
	margin-left: 0;
	text-align: center;
	margin-bottom: 8px;
	display: block
}

.specificationOptionbx.desktop_version .specificationOptionsrow .optionnm .rttt.minheight {
	min-height: 40px
}

.specificationdividebx {
	position: relative
}

.specificationdividebx .btmbdr {
	position: absolute;
	left: 0;
	right: 5%;
	bottom: -10px;
	height: 1px;
	background-color: #eeebeb
}

.specificationdividebx .rtbdr {
	position: absolute;
	top: 5%;
	right: 0;
	bottom: 5%;
	width: 1px;
	background-color: #eeebeb
}

.specificationOptionbx.desktop_version .specificationOptionsrow .specificationdividebx .btmbdr {
	right: 0
}

.specificationOptionsrow.wd100 .specificationdividebx .btmbdr {
	right: 0
}

.specificationvideo {
	margin: 0
}

.getintouchrtbx {
	margin-top: 30px
}

.callnow {
	font-size: 18px;
	color: #6b6b6b
}

.testdrivewrap {
	position: relative
}

.modal {
	text-align: center;
	padding: 0!important
}

.modal:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -4px
}

.modal-dialog {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
	border-radius: 0
}

.modal-dialog.testdrive {
	width: 1000px
}

.modal-dialog.testdrive.alertsbox {
	width: 500px
}

.modal-dialog.testdrive.alertsbox.comparelist {
	width: 400px
}

.modal-dialog.testdrive .getintouchbx {
	padding: 40px
}

.modal-dialog.testdrive.alertsbox.comparelist .getintouchbx {
	padding: 30px 20px 20px 20px
}

.modal-dialog.testdrive .modal-body {
	padding: 0
}

.modal-dialog.testdrive .modal-content {
	border-radius: 0
}

.modal-dialog.callUsModal {
	width: 1000px
}

.modal-dialog.callUsModal.alertsbox {
	width: 500px
}

.modal-dialog.callUsModal.alertsbox.comparelist {
	width: 400px
}

.modal-dialog.callUsModal .getintouchbx {
	padding: 40px
}

.modal-dialog.callUsModal.alertsbox.comparelist .getintouchbx {
	padding: 30px 20px 20px 20px
}

.modal-dialog.callUsModal .modal-body {
	padding: 0
}

.modal-dialog.callUsModal .modal-content {
	border-radius: 0
}

.testdrivebxes {
	background-color: #fc0
}

.modal-dialog.testdrive .getintouchbx .form-group,
.modal-dialog.testdrive .selectoptionrow {
	margin-bottom: 16px
}

.modal-dialog.testdrive .getintouchbx .btn-primary.searchcars {
	width: 100%;
	padding: 10px 0
}

.modal-dialog.testdrive .close {
	position: absolute;
	font-size: 32px;
	top: 10px;
	right: 10px;
	opacity: 1;
	z-index: 9;
	outline: 0
}

.modal-dialog.testdrive.compare .close {
	width: 40px;
	height: 40px;
	right: -20px;
	top: -20px;
	color: #fff;
	border-radius: 100%;
	box-shadow: none;
	background-color: #ff3448
}

.modal-dialog.callUsModal .getintouchbx .form-group,
.modal-dialog.callUsModal .selectoptionrow {
	margin-bottom: 16px
}

.modal-dialog.callUsModal .getintouchbx .btn-primary.searchcars {
	width: 100%;
	padding: 10px 0
}

.modal-dialog.callUsModal .close {
	position: absolute;
	font-size: 32px;
	top: 10px;
	right: 10px;
	opacity: 1;
	z-index: 9;
	outline: 0
}

.modal-dialog.callUsModal.compare .close {
	width: 40px;
	height: 40px;
	right: -20px;
	top: -20px;
	color: #fff;
	border-radius: 100%;
	box-shadow: none;
	background-color: #ff3448
}

.eqWrap {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.equalHMWrap {
	justify-content: space-between
}

.testdrivebxes .testdriveConl {
	padding: 30px
}

.testdrivebxes h3 {
	font-size: 20px;
	color: #000;
	text-align: center;
	line-height: 28px
}

.testdrivebxes .carmovebx {
	position: relative;
	padding-top: 150px;
	margin-right: -80px
}

.testdrivebxes .carmovebx .carimgbox {
	position: relative;
	z-index: 2
}

.testdrivebxes .writetestdrive {
	position: absolute;
	width: 400px;
	height: 220px;
	left: 50%;
	bottom: 60px;
	margin-left: -200px;
	border: 10px solid #ececec;
	border-bottom: 0;
	z-index: 1
}

.testdrivebxes .writetestdrive h4 {
	font-size: 30px;
	color: #fff;
	padding-top: 10px;
	padding-left: 20px;
	text-transform: uppercase
}

.testdrivebxes .writetestdrive h3 {
	font-size: 50px;
	color: #1f2734;
	text-align: left;
	padding-left: 20px;
	text-shadow: -3px 3px #d9ae00;
	text-transform: uppercase
}

.sellcarwarp {
	position: relative
}

.sellcarbanner {
	position: relative;
	padding: 100px 0;
	background: url(../images/sellcarbg.jpg) no-repeat;
	background-size: cover;
	margin-bottom: 10px
}

.sellcarbanner.promotions {
	padding: 180px 0;
	background: url(../images/promotions_ban.jpg) no-repeat;
	background-size: cover
}

.sellcarbanner.promotions.offers {
	background: url(../images/offers_and_deal.jpg) no-repeat;
	background-size: cover
}

.sellcarbanner .shadowbg {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, .2)
}

.sellcarbanner .sellcardesbx {
	margin: 0;
	text-align: center
}

.sellcarbanner .sellcardesbx h3 {
	font-size: 28px;
	color: #ffe700;
	line-height: 36px
}

.sellcarbanner .sellcardesbx .desinfo {
	font-size: 18px;
	color: #fff
}

.sellcarbanner .sellcardesbx .desinfo p {
	margin-bottom: 12px
}

.filldetailsaboutcar {
	padding: 50px 0
}

.filldetailsaboutcar .fillconformbx {
	position: relative
}

.fillconformbx .form-control {
	background-color: #f5f8f9;
	padding: 14px;
	height: auto;
	font-size: 16px;
	color: #1f2734;
	border: 1px solid #e0e0e0;
	box-shadow: none;
	-webkit-appearance: none
}

.fillconformbx .form-group {
	margin-bottom: 30px
}

.filldetailsaboutcar h1,
.filldetailsaboutcar h2 {
	font-size: 32px;
	color: #1f2734;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 40px;
	margin-bottom: 0
}

.filldetailsaboutcar h2 {
	font-size: 24px;
	color: #1f2734;
	margin-bottom: 30px
}

.filldetailsaboutcar h2 span {
	font-size: 18px;
	color: #ff3448;
	font-style: italic
}

.filldetailsaboutcar .question_heading {
	font-size: 24px;
	color: #000;
	padding-bottom: 40px
}

.filldetailsaboutcar .question_heading.pad20 {
	padding-bottom: 20px
}

.filldetailsaboutcar .choosenOption {
	font-family: Montserrat-Light;
	font-size: 20px;
	color: #000
}

.fillconformbx label {
	font-size: 16px;
	display: block;
	font-weight: 400;
	padding: 8px 0
}

.fillconformbx label span {
	color: #ff4343
}

.fillconformbx textarea {
	resize: none
}

.fillconformbx .personaldetbx {
	margin-top: 30px
}

.fillconformbx .btn-primary.searchcars {
	margin-top: 50px
}

.imageuploadrow {
	margin-bottom: 50px
}

.imageuploadrow .uploadimgbx {
	position: relative;
	width: 160px;
	height: 130px;
	display: inline-block;
	margin-right: 10px
}

.uploadimgbx .fileinput {
	margin-bottom: 0;
	vertical-align: top
}

.uploadimgbx .fileinput .thumbnail {
	position: relative;
	width: 160px;
	height: 130px;
	background: url(../images/plus_icon.png) center center no-repeat #f5f8f9;
	background-size: 35px 34px;
	padding: 0;
	border: 0;
	margin-bottom: 0;
	border-radius: 0;
	-webkit-transition: all .8s linear;
	transition: all .8s linear;
	cursor: pointer
}

.uploadimgbx .fileinput.fileinput-exists .thumbnail {
	background-image: none
}

.uploadimgbx .fileinput .thumbnail img {
	position: absolute;
	max-width: 96%;
	max-height: 96%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.uploadimgbx .fileinput .btn-default {
	width: 100%;
	padding: 8px 0;
	display: block;
	margin-top: 15px;
	border-radius: 28px;
	font-size: 16px;
	color: #ff3448;
	border: 2px solid #ff3448;
	outline: 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.uploadimgbx .fileinput .btn-default:focus,
.uploadimgbx .fileinput .btn-default:hover {
	color: #fff;
	background-color: #ff3448
}

.uploadimgbx .fileinput .removesrc {
	position: absolute;
	top: -10px;
	right: -5px;
	opacity: 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.uploadimgbx .fileinput.fileinput-exists .removesrc {
	opacity: 1
}

.uploadimgbx .fileinput .removesrc .fa {
	font-size: 20px;
	color: #ff2c2c;
	cursor: pointer
}

.loginscreensrap {
	margin-top: 100px
}

.loginscreensrap .loginban {
	position: relative;
	padding: 150px 0;
	text-align: center;
	background: url(../images/login_ban.jpg) no-repeat;
	background-size: cover;
	display: block
}

.loginscreensrap .loginban.register {
	background: url(../images/register_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap.profilewrap .loginban {
	background: url(../images/profile_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap.contactusban .loginban {
	background: url(../images/contacts_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap.changepassword .loginban {
	background: url(../images/change_password_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap.forgotpassword .loginban {
	background: url(../images/forgot_password_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap .loginban.faq {
	background: url(../images/faq_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap .loginban.terms {
	background: url(../images/terms_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap .loginban.abouts {
	background: url(../images/abouts_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap .loginban.suggestions_ban {
	background: url(../images/suggestions_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap .loginban.refund_policy {
	background: url(../images/refunnd_policy_ban.jpg) no-repeat;
	background-size: cover
}

.loginscreensrap .loginban h1,
.sellcarbanner.promotions h1 {
	font-size: 180px;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	color: transparent
}

.loginscreensrap .loginban h3,
.sellcarbanner.promotions h3 {
	font-size: 24px;
	color: #fff;
	text-align: center;
	vertical-align: middle
}

.loginformConbox {
	padding: 80px 0
}

.loginformConbox .container {
	width: 960px
}

.loginformConbox .logininputbox {
	padding-right: 90px;
	border-right: 2px solid #c2c2c2
}

.loginformConbox .logininputbox.forgotpassword {
	padding-right: 0;
	border: 0
}

.loginformConbox.register .logininputbox {
	padding-right: 0;
	border: 0
}

.loginformConbox.register .row.mar {
	margin: 0 -40px
}

.loginformConbox.register .pad40 {
	padding: 0 40px
}

.logininputbox h2 {
	font-size: 28px;
	color: #1f2734;
	margin-bottom: 30px
}

.loginformConbox .logininputbox.forgotpassword h4 {
	font-size: 20px;
	color: #868686;
	line-height: 24px;
	margin-top: 0;
	margin-bottom: 30px
}

.loginformConbox.register .logininputbox h2 {
	margin-top: 0
}

.logininputbox .form-group {
	margin-bottom: 30px
}

.logininputbox label {
	font-size: 16px;
	display: block;
	font-weight: 400;
	padding: 8px 0
}

.logininputbox label span {
	color: #ff4343
}

.logininputbox .form-control {
	background-color: #f5f8f9;
	padding: 16px;
	height: auto;
	font-size: 16px;
	color: #1f2734;
	border: 1px solid #e0e0e0;
	box-shadow: none;
	-webkit-appearance: none
}

.logininputbox .btn-primary.searchcars {
	font-family: Montserrat-Regular;
	width: 100%;
	padding: 14px 0;
	font-size: 22px;
	text-transform: uppercase;
	margin-top: 20px
}

.newhere {
	text-align: center;
	padding-top: 192px
}

.newhere h3 {
	position: relative;
	font-size: 28px;
	color: #ff3448;
	padding: 10px 15px;
	margin: 10px 0 0 0;
	display: inline-block;
	overflow: hidden
}

.newhere h3 a {
	color: #ff3448;
	text-decoration: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.newhere h3 a:before {
	box-sizing: border-box;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 99.5%;
	height: 2px;
	border-bottom: 2px solid transparent;
	border-left: 2px solid transparent
}

.newhere h3 a:after {
	box-sizing: border-box;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 99.5%;
	height: 2px;
	border-top: 2px solid transparent;
	border-right: 2px solid transparent
}

.newhere h3 a:hover:before {
	-webkit-transition: .1s transform linear, .1s height linear .1s;
	transition: .1s transform linear, .1s height linear .1s;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	height: 100%;
	border-color: #ff3448
}

.newhere h3 a:hover:after {
	-webkit-transition: .1s transform linear .2s, .1s height linear .3s;
	transition: .1s transform linear .2s, .1s height linear .3s;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	height: 100%;
	border-color: #ff3448
}

.newhere h4 {
	font-size: 20px;
	color: #1f2734;
	margin: 0
}

.forgot_passwordrw {
	text-align: center
}

.forgot_passwordrw a {
	position: relative;
	font-size: 22px;
	color: #1f2734;
	padding: 10px 20px;
	text-align: center;
	margin-top: 6px;
	text-decoration: none;
	display: inline-block;
	overflow: hidden
}

.forgot_passwordrw a:before {
	box-sizing: border-box;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 99.5%;
	height: 2px;
	border-bottom: 2px solid transparent;
	border-left: 2px solid transparent
}

.forgot_passwordrw a:after {
	box-sizing: border-box;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 99.5%;
	height: 2px;
	border-top: 2px solid transparent;
	border-right: 2px solid transparent
}

.forgot_passwordrw a:hover:before {
	-webkit-transition: .1s transform linear, .1s height linear .1s;
	transition: .1s transform linear, .1s height linear .1s;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	height: 100%;
	border-color: #1f2734
}

.forgot_passwordrw a:hover:after {
	-webkit-transition: .1s transform linear .2s, .1s height linear .3s;
	transition: .1s transform linear .2s, .1s height linear .3s;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	height: 100%;
	border-color: #1f2734
}

.loginformConbox.register .selectoptionrow .bootstrap-select>.btn,
.selectoptionrow.selectCity .bootstrap-select>.btn {
	padding: 16px;
	border: 1px solid #e0e0e0;
	background-color: #f5f8f9
}

.selectoptionrow.selectCity {
	margin-bottom: 0
}

.loginformConbox.register .selectoptionrow .bootstrap-select>.btn,
.selectoptionrow.selectCity .bootstrap-select>.btn {
	font-family: Montserrat-Regular;
	color: #999
}

.loginformConbox.register .dropdown-menu {
	font-size: 16px
}

.rtbdrreg {
	border-right: 2px solid #c2c2c2
}

.rtpadrreg {
	padding-right: 80px
}

.loginformConbox.register .newhere {
	padding-top: 20px
}

.checkboxbx {
	padding: 30px 0;
	display: block
}

.checkboxbx [type=checkbox]:checked,
.checkboxbx [type=checkbox]:not(:checked) {
	position: absolute;
	left: -9999px
}

.checkboxbx [type=checkbox]:checked+label,
.checkboxbx [type=checkbox]:not(:checked)+label {
	position: relative;
	padding: 0;
	color: #868686;
	padding-left: 45px;
	line-height: 30px;
	cursor: pointer;
	display: block!important
}

.checkboxbx [type=checkbox]:checked+label:before,
.checkboxbx [type=checkbox]:not(:checked)+label:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	border: 1px solid #c4cdd5;
	background: #fff;
	border-radius: 4px
}

.checkboxbx [type=checkbox]:checked+label:after,
.checkboxbx [type=checkbox]:not(:checked)+label:after {
	content: '\2713\0020';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	transition: all .2s;
	width: 30px;
	height: 30px;
	border-radius: 4px;
	background-color: #ff3448
}

.checkboxbx [type=checkbox]:not(:checked)+label:after {
	opacity: 0;
	transform: scale(0)
}

.checkboxbx [type=checkbox]:checked+label:after {
	opacity: 1;
	transform: scale(1)
}

.profileConwrap {
	padding: 50px 0
}

.profileConwrap.contactus {
	padding-top: 20px
}

.pgtitlerw {
	padding-bottom: 25px;
	border-bottom: 1px solid #e1e2e8
}

.pgtitlerw.faqpg {
	border-bottom: 0 solid #e1e2e8
}

.pgtitlerw .titleiconbox {
	position: relative;
	float: left;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background-color: #ff3448
}

.pgtitlerw .titleiconbox span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 25px;
	height: 24px;
	margin-left: -13px;
	margin-top: -12px;
	background: url(../images/profile_icon.png) no-repeat;
	background-size: 25px 144px;
	background-position: 0 0
}

.pgtitlerw .titleiconbox span.requestcar {
	width: 28px;
	height: 28px;
	margin-left: -14px;
	margin-top: -14px;
	background: url(../images/request_car_icon.png) no-repeat;
	background-size: 100% 100%;
	background-position: 0 0
}

.pgtitlerw .titleiconbox span.profile {
	background-position: 0 0
}

.pgtitlerw .titleiconbox span.faq {
	background-position: 0 -24px
}

.pgtitlerw .titleiconbox span.terms {
	background-position: 0 -48px
}

.pgtitlerw .titleiconbox span.suggestions {
	background-position: 0 -72px
}

.pgtitlerw .titleiconbox span.abouts {
	background-position: 0 -96px
}

.pgtitlerw .titleiconbox span.refunds {
	background-position: 0 -120px
}

.pgtitlerw .pgtitlenm {
	margin-left: 90px;
	font-size: 43px;
	color: #1f2734;
	line-height: 60px
}

.profileConwrap .profileConboxes {
	padding: 0
}

.profileConwrap .profileConboxes.changepassword {
	padding-top: 40px
}

.profileConboxes .profilenav {
	padding: 0 30px;
	padding-bottom: 80px
}

.profileConboxes .profilenav span.rtbdr {
	position: absolute;
	top: 25px;
	right: 0;
	width: 1px;
	height: 90%;
	background-color: #e2e1e7
}

.profileConboxes .profilenav .navbar-nav,
.profileConboxes .profilenav .navbar-nav>li {
	float: none
}

.profileConboxes .profilenav .navbar-nav>li>a {
	font-size: 20px;
	color: #737373;
	padding: 25px 10px;
	border-bottom: 1px solid #e1e2e8;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.profileConboxes .profilenav .navbar-nav>li>a span {
	position: absolute;
	width: 8px;
	height: 13px;
	top: 50%;
	right: 15px;
	margin-top: -4px;
	background: url(../images/nav_arrow_icon.png) no-repeat;
	background-size: 8px 26px;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.profileConboxes .profilenav .navbar-nav>li:hover>a span {
	right: 20px
}

.profileConboxes .profilenav .navbar-nav>li>a span.arrow {
	background-position: 0 0
}

.profileConboxes .profilenav .navbar-nav>li.active>a span.arrow {
	background-position: 0 -13px
}

.profileConboxes .profilenav .navbar-nav>li.active>a {
	color: #1f2734;
	font-weight: 700
}

.profileConboxes .profilenav .navbar-nav>li:hover>a {
	letter-spacing: .5px
}

.profileConboxes .profilenav .nav>li>a:focus,
.profileConboxes .profilenav .nav>li>a:hover {
	color: #1f2734;
	background-color: transparent
}

.profileviewCondetailsbox {
	position: relative;
	padding: 0 30px
}

.profileviewCondetailsbox .proimgboxrow {
	text-align: center
}

.profileviewCondetailsbox .proimgbox {
	position: relative;
	width: 120px;
	height: 120px;
	border-radius: 100%;
	background-color: #fff;
	display: inline-block;
	box-shadow: -1.816px 3.564px 9px 0 rgba(0, 0, 0, .15)
}

.profileviewCondetailsbox .proimgbox .overlaybg {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, .2)
}

.profileviewCondetailsbox .proimgbox>div#imagePreview {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center
}

.profileviewCondetailsbox .usrnmbox {
	padding: 20px 0
}

.profileviewCondetailsbox .usrnmbox h2 {
	font-size: 28px;
	color: #1f2734;
	text-align: center;
	margin: 0 0 10px 0
}

.profileviewCondetailsbox .usrnmbox h3 {
	font-size: 21px;
	color: #737373;
	text-align: center;
	margin: 0
}

.profileviewCondetailsbox .usramailrow {
	text-align: center
}

.profileviewCondetailsbox .usramailrow .usremail,
.profileviewCondetailsbox .usramailrow .usrphone {
	font-size: 18px;
	color: #1f2734;
	padding: 0 30px;
	display: inline-block
}

.profileviewCondetailsbox .usramailrow .usremail {
	border-right: 1px solid #e1e2e8
}

.profileviewCondetailsbox .usramailrow .usremail a {
	color: #1f2734;
	text-decoration: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.profileviewCondetailsbox .usramailrow .usremail a:hover {
	color: #ff3448;
	text-decoration: underline
}

.profileviewCondetailsbox .usramailrow .fa {
	font-size: 21px;
	display: inline-block;
	margin-right: 15px
}

.profileviewCondetailsbox .sminfo {
	font-size: 18px;
	color: #1f2734;
	line-height: 28px;
	text-align: center;
	padding: 0 50px;
	padding-top: 20px
}

.profileviewCondetailsbox .hrline {
	height: 1px;
	margin: 0 150px 25px 150px;
	background-color: #e1e2e8
}

.profileviewCondetailsbox .editbtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;
	height: 45px;
	border-radius: 100%;
	background-color: #ff3448;
	display: block;
	cursor: pointer;
	text-align: center;
	box-shadow: -2.847px 6.395px 12px 0 rgba(0, 0, 0, .25);
	z-index: 1
}

.profileviewCondetailsbox .editbtn .glyphicon {
	float: none;
	font-size: 18px;
	color: #fff;
	line-height: 45px;
	display: inline-block
}

.profileviewCondetailsbox.editprofile .proimgboxrow {
	position: absolute;
	left: 15px;
	top: 0;
	width: 120px
}

.profileviewCondetailsbox.editprofile .editprofileformbox {
	margin-left: 160px
}

.editprofileformbox .form-group {
	margin-bottom: 20px
}

.editprofileformbox label {
	font-size: 16px;
	display: block;
	font-weight: 400;
	padding: 8px 0
}

.editprofileformbox label span {
	color: #ff4343
}

.editprofileformbox .form-control {
	background-color: #f5f8f9;
	padding: 16px;
	height: auto;
	font-size: 15px;
	color: #1f2734;
	border: 1px solid #e0e0e0;
	box-shadow: none;
	-webkit-appearance: none
}

.editprofileformbox textarea {
	resize: none
}

.loginscreensrap.changepassword .editprofileformbox .saveprofilebtnrw {
	text-align: left
}

.saveprofilebtnrw .btn-primary.searchcars {
	font-family: Montserrat-Regular;
	padding: 10px 30px;
	margin-top: 30px;
	box-shadow: -2.847px 5px 10px 0 rgba(0, 0, 0, .25)
}

.saveprofilebtnrw .btn-primary.searchcars.conbtn {
	box-shadow: none
}

.profileviewCondetailsbox .proimgboxrow .fileinput {
	position: relative;
	display: block
}

.profileviewCondetailsbox .proimgboxrow .fileinput .thumbnail {
	position: relative;
	width: 120px;
	height: 120px;
	border-radius: 100%;
	box-shadow: -1.816px 3.564px 9px 0 rgba(0, 0, 0, .15)
}

.profileviewCondetailsbox .proimgboxrow .fileinput .thumbnail img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: -20px;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
	-webkit-transform: scale(1.3);
	transform: scale(1.3)
}

.profileviewCondetailsbox .proimgboxrow .btn-file {
	position: absolute;
	top: 10px;
	right: -15px;
	width: 44px;
	height: 44px;
	margin-bottom: 0;
	border-radius: 100%;
	background: #ff3448;
	cursor: pointer;
	font-weight: 400;
	border: 0;
	transition: all .2s ease-in-out;
	box-shadow: -1.816px 3.564px 9px 0 rgba(0, 0, 0, .15)
}

.profileviewCondetailsbox .proimgboxrow .btn-file .fa-2x {
	position: absolute;
	left: 13px;
	top: 12px;
	font-size: 16px;
	color: #fff
}

#regForm {
	position: relative
}

.filldetailsaboutcar .fillconformbx input.invalid,
.filldetailsaboutcar .fillconformbx textarea.invalid {
	background-color: #fdd;
	border: 1px solid #ff3448;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.filldetailsaboutcar .fillconformbx input.hastext,
.filldetailsaboutcar .fillconformbx textarea.hastext {
	border: 1px solid #e0e0e0;
	background-color: #f5f8f9
}

.filldetailsaboutcar .fillconformbx .tab {
	display: none
}

#prevBtn {
	background-color: transparent;
	color: #1f2734;
	border: 0
}

.filldetailsaboutcar .stepsboxrw {
	text-align: center;
	display: table;
	margin: auto;
	padding-bottom: 24px
}

#expo_bannersection {
	position: relative;
	display: table;
	width: 100%;
	background: url("https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg");
	/* ms ( IE 10.0+ ) */
	background: -ms-radial-gradient(ellipse closest-side at 50% 50%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 0.14%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 99.61% );
	/* WebKit (Chrome 10.0+, safari 5.1+ )*/
	background: -webkit-radial-gradient(ellipse closest-side at 50% 50%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 0.14%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 99.61% );
	/* Moz ( Moz 3.6+ )*/
	background: -moz-radial-gradient(ellipse closest-side at 50% 50%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 0.14%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 99.61% );
	/* Opera ( opera 11.6+ )*/
	background: -o-radial-gradient(ellipse closest-side at 50% 50%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 0.14%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 99.61% );
	/* W3C Markup */
	background: radial-gradient(ellipse closest-side at 50% 50%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 0.14%, "https://www.expo2020dubai.com/-/media/expo2020/discover/expo2020-nightaerial1-3200-x-1800.jpg" 99.61% );
	height: 100vh;
	background-attachment: fixed;
	background-position: inherit;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 2%;
}

#expo_bannersection2 {
	position: relative;
	display: table;
	width: 100%;
	background: url("https://www.albacars.ae/resources/views/img/ZOH_0043.jpg");
	height: 50vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 2%;
	margin-top: 2%;
}



.hero-wrapper video {
	width: 100%;
	max-width: 100%;
}

.expo_bannercontent {
	display: table-cell;
    vertical-align: middle;
    color: #FFF;
    text-align: left;
    font-size: 18px;
    font-weight: normal;
    padding: 0 3%;
}

.expo_bannercontent h2 {
	text-align: left;
	padding: 30px 0;
	font-size: 40px;
	font-weight: normal;
	font-weight: bolder;
	text-shadow: 1px 3px 2px #ff3448;
}

.expo_bannercontent h3 {
	font-size: 20px;
	text-shadow: 1px 3px 2px #ff3448;
}

.expo_bannercontent a {
	color: white;
	text-decoration: none;
}

.first_logos {
    width: 100%;
}



.first_logos .inline-images {
	background-color: cornsilk;
	width: 42%;
    display: block;
    text-align: center;
}

.first_logos img {
	margin: 10px 0;
	display: inline;
	width: 37%;
    height: auto;
}


.headertitlerow .first_paragraph {
	font-size: 18px;
}

.row .second_title {
	margin-bottom: 30px;
	margin-right: 0px;
	margin-left: 0px;

}

.second_title h1 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 4.5rem;
}

.expo_subtitle {
	text-align: center;
}

.headertitlerow .header_title {
	padding-top: 40px;
}

.expopage_banner {
	margin-bottom: 40px;
}

.expopage_banner img {
	width: 100%;
	height: auto;
}

.square {
	margin-top: 5%;
}

.square_two .first_photo_expo img {
	float: left;
	height: auto;
	width: 50%;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 25px;
}

.square_two {
	margin-top: 5%;
}

.square_two p {
	font-size: 18px;
    line-height: 35px;
}

.big_photo_expo {
	margin-bottom: 40px;
}

.big_photo_expo img {
	width: 100%; 
	height: auto;
}

.big_photo_expo1 img {
	width: 100%; 
	height: auto;
}

.big_photo_expo1 {
	display: none;
}

.headertitlerow .second_paragraph {
	margin-top: 20px;
}

.square p {
	font-size: 18px;
	line-height: 35px;
}

.last_paragraph {
	margin-bottom: 30px;
	margin-right: 0px;
	margin-left: 0px;
}

.filldetailsaboutcar .step {
	position: relative;
	height: 70px;
	width: 70px;
	border: 4px solid #f1f1f1;
	border-radius: 100%;
	display: inline-block
}

.filldetailsaboutcar .step:nth-child(2) {
	margin-left: 150px
}

.filldetailsaboutcar .step:nth-child(3) {
	margin-left: 150px
}

.filldetailsaboutcar .stepsboxrw.fianance .step:nth-child(4),
.filldetailsaboutcar .stepsboxrw.fianance .step:nth-child(5) {
	position: relative;
	top: -33px;
	margin-left: 5px;
	width: 70px;
	height: 4px;
	border: 0;
	border-radius: 0;
	background-color: #f1f1f1
}

.filldetailsaboutcar .stepsboxrw.fianance .step.active:nth-child(3),
.filldetailsaboutcar .stepsboxrw.fianance .step.active:nth-child(4),
.filldetailsaboutcar .stepsboxrw.fianance .step.active:nth-child(5) {
	background-color: #ff3448
}

.filldetailsaboutcar .stepsboxrw.fianance .step.finish:nth-child(3),
.filldetailsaboutcar .stepsboxrw.fianance .step.finish:nth-child(4),
.filldetailsaboutcar .stepsboxrw.fianance .step.finish:nth-child(5) {
	background-color: #ff3448
}

.filldetailsaboutcar .step.active,
.filldetailsaboutcar .step.finish {
	border: 4px solid #ff3448
}

.filldetailsaboutcar .stepsboxrw.fianance .step:nth-child(5) {
	margin-left: -5px
}

.filldetailsaboutcar .step .lineforward {
	position: absolute;
	top: 50%;
	right: -150px;
	margin-top: -2px;
	width: 140px;
	height: 4px;
	background-color: #f1f1f1
}

.filldetailsaboutcar .step .lineforward1 {
	position: absolute;
	top: 50%;
	right: -210px;
	margin-top: -2px;
	width: 200px;
	height: 4px;
	background-color: #f1f1f1
}

.filldetailsaboutcar .step.active .lineforward,
.filldetailsaboutcar .step.finish .lineforward {
	background-color: #ff3448
}

.filldetailsaboutcar .step .innergreybx {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px;
	border-radius: 100%;
	background-color: #f1f1f1
}

.filldetailsaboutcar .step.active .innergreybx,
.filldetailsaboutcar .step.finish .innergreybx {
	background-color: #ff3448
}

.filldetailsaboutcar .step .innergreybx i {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 36px;
	height: 36px;
	margin: -18px 0 0 -18px;
	background: url(../images/sellcarstep_icon.png) no-repeat;
	background-size: 72px 144px
}

.filldetailsaboutcar .step .innergreybx i.car {
	background-position: 0 0
}

.filldetailsaboutcar .step.active .innergreybx i.car,
.filldetailsaboutcar .step.finish .innergreybx i.car {
	background-position: -36px 0
}

.filldetailsaboutcar .step .innergreybx i.tick {
	background-position: 0 -36px
}

.filldetailsaboutcar .step.active .innergreybx i.tick,
.filldetailsaboutcar .step.finish .innergreybx i.tick {
	background-position: -36px -36px
}

.filldetailsaboutcar .step .innergreybx i.uploadimg {
	background-position: 0 -36px
}

.filldetailsaboutcar .step.active .innergreybx i.uploadimg,
.filldetailsaboutcar .step.finish .innergreybx i.uploadimg {
	background-position: -36px -36px
}

.filldetailsaboutcar .step .innergreybx i.personaldetails {
	background-position: 0 -72px
}

.filldetailsaboutcar .step.active .innergreybx i.personaldetails,
.filldetailsaboutcar .step.finish .innergreybx i.personaldetails {
	background-position: -36px -72px
}

.filldetailsaboutcar .step .innergreybx i.documents {
	background-position: 0 -105px
}

.filldetailsaboutcar .step.active .innergreybx i.documents,
.filldetailsaboutcar .step.finish .innergreybx i.documents {
	background-position: -36px -108px
}

.financecheckboxbx {
	padding: 30px 0;
	display: block
}

.financecheckboxbx.padzero {
	padding: 0
}

.financecheckboxbx [type=radio]:checked,
.financecheckboxbx [type=radio]:not(:checked) {
	position: absolute;
	left: -9999px
}

.financecheckboxbx [type=radio]:checked+label,
.financecheckboxbx [type=radio]:not(:checked)+label {
	position: relative;
	padding: 60px 0;
	font-size: 24px;
	text-align: center;
	border: 1px solid #1f2734;
	border-radius: 4px;
	color: #868686;
	cursor: pointer
}

.financecheckboxbx [type=radio]:checked+label {
	color: #ff3448;
	border: 1px solid #ff3448
}

.financecheckboxbx.yesIhave [type=radio]:checked+label {
	color: #41de03;
	border: 1px solid #41de03
}

.financecheckboxbx [type=radio]:checked+label:before,
.financecheckboxbx [type=radio]:not(:checked)+label:before {
	content: '';
	position: absolute;
	left: 20px;
	top: 20px;
	width: 36px;
	height: 36px;
	border: 1px solid #c4cdd5;
	background: #fff;
	border-radius: 100%
}

.financecheckboxbx [type=radio]:checked+label:after,
.financecheckboxbx [type=radio]:not(:checked)+label:after {
	content: '\2713\0020';
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: 26px;
	line-height: 36px;
	color: #fff;
	text-align: center;
	transition: all .2s;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	border: 1px solid #ff3448;
	background-color: #ff3448
}

.financecheckboxbx [type=radio]:not(:checked)+label:after,
.financecheckboxbx.yesIhave [type=radio]:checked+label:after {
	border: 1px solid #41de03;
	background-color: #41de03
}

.financecheckboxbx [type=radio]:not(:checked)+label:after {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0)
}

.financecheckboxbx [type=radio]:checked+label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1)
}

.creditcardlimitwrap,
.emiloanwrap {
	display: none
}

.salary_recieve {
	padding-bottom: 50px;
	display: block
}

.salary_recieve [type=radio]:checked,
.salary_recieve [type=radio]:not(:checked) {
	position: absolute;
	left: -9999px
}

.salary_recieve [type=radio]:checked+label,
.salary_recieve [type=radio]:not(:checked)+label {
	font-family: Montserrat-Light;
	position: relative;
	padding: 0;
	padding-left: 50px;
	font-size: 21px;
	color: #868686;
	cursor: pointer
}

.salary_recieve [type=radio]:checked+label {
	color: #ff3448
}

.salary_recieve [type=radio]:checked+label:before,
.salary_recieve [type=radio]:not(:checked)+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 36px;
	height: 36px;
	border: 1px solid #c4cdd5;
	background: #fff;
	border-radius: 100%
}

.salary_recieve [type=radio]:checked+label:after,
.salary_recieve [type=radio]:not(:checked)+label:after {
	content: '\2713\0020';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 26px;
	line-height: 36px;
	color: #fff;
	text-align: center;
	transition: all .2s;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	border: 1px solid #ff3448;
	background-color: #ff3448
}

.salary_recieve [type=radio]:not(:checked)+label:after {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0)
}

.salary_recieve [type=radio]:checked+label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1)
}

::-webkit-input-placeholder {
	color: #868686;
	opacity: 1;
	-webkit-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out
}

:-moz-placeholder {
	color: #868686;
	opacity: 1;
	-moz-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out
}

::-moz-placeholder {
	color: #868686;
	opacity: 1;
	-moz-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out
}

:-ms-input-placeholder {
	color: #868686;
	opacity: 1;
	-ms-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out
}

:focus::-webkit-input-placeholder {
	opacity: 0;
	-webkit-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out
}

:focus:-moz-placeholder {
	opacity: 0;
	-moz-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out
}

:focus::-moz-placeholder {
	opacity: 0;
	-moz-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out
}

:focus:-ms-input-placeholder {
	opacity: 0;
	-ms-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out
}

.sellcarboxMwarp {
	padding: 70px 30px 100px 30px
}

.sellcarboxMwarp.financemod {
	padding: 40px 30px 60px 30px
}

.sellcarboxMwarp.financemod h1 {
	font-size: 24px
}

.congratulationsrw {
	text-align: center
}

.congratulationsIconbx {
	position: relative;
	background-color: #e9f4ff;
	width: 180px;
	height: 180px;
	border-radius: 100%;
	display: inline-block
}

.congratulationsIconbx span.sellcaricon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 90px;
	height: 90px;
	margin: -45px 0 0 -45px;
	background: url(../images/sellcar_done.png) no-repeat center center;
	background-size: 100% 100%
}

.modal-dialog.testdrive.sellcar {
	width: 800px
}

.modal-dialog.callUsModal.sellcar {
	width: 800px
}

.sellcarboxMwarp h2 {
	font-size: 28px;
	color: #1f2734;
	text-align: center;
	line-height: 36px
}

.sellcarboxMwarp h3 {
	font-size: 28px;
	color: #1f2734;
	text-align: center;
	line-height: 24px
}

.sellcarboxMwarp h4 {
	font-family: Montserrat-Light;
	font-size: 20px;
	color: #1f2734;
	text-align: center;
	line-height: 24px;
	padding: 15px 0
}

.frequently-asked {
	position: relative;
	margin-bottom: 30px
}

.panel-default {
	background-color: transparent;
	border-color: transparent
}

.panel-default>.panel-heading {
	position: relative;
	background-color: transparent;
	padding: 0;
	color: #282828;
	border-color: transparent;
	border-radius: 0
}

.panel-title {
	/* font-size: 32px; */
	font-size: 22px;
}

.panel-title:hover {
	text-decoration: none
}

.panel-title>.small,
.panel-title>.small>a,
.panel-title>a,
.panel-title>small,
.panel-title>small>a {
	padding: 35px 50px 35px 0;
	display: block;
	text-decoration: none
}

.panel {
	box-shadow: none;
	border: 0
}

.panel-group h1 {
	font-size: 28px;
}

.panel-group .panel:last-child {
	border-bottom: 0 solid #cfcfcf
}

.panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group .panel-heading+.panel-collapse>.panel-body {
	font-family: Montserrat-Regular;
	padding: 0;
	border-top: 0;
	font-size: 18px;
	line-height: 32px
}

.panel-group .panel-heading+.panel-collapse>.panel-body {
	padding: 15px;
	margin-left: 20px;
	border-radius: 20px;
	border: 3px solid #e7e6e6;
	background-color: #f9f9f9
}

.panel-default>.panel-heading span {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 50%;
	right: 10px;
	margin-top: -15px;
	background: url(../images/question_icon.png) no-repeat;
	background-size: 30px 60px;
	display: block
}

.panel-default>.panel-heading span.icon {
	background-position: 0 -30px
}

.panel-default>.panel-heading.collapsed span.icon {
	background-position: 0 0
}

.filterrow {
	padding: 20px 0 30px 0;
	border-bottom: 1px solid #e1e2e8
}

.filterrow .searchbox {
	position: relative;
	padding-right: 110px;
	margin-left: 20px
}

.filterrow .searchbox .form-control {
	padding: 16px;
	font-size: 16px;
	height: auto;
	border-radius: 6px;
	border: 2px solid #eaeaea;
	outline: 0;
	box-shadow: none
}

.btn-primary.searchbtn {
	font-family: AirbnbCerealApp-Bold;
	position: absolute;
	width: 80px;
	height: 100%;
	top: 0;
	right: 0;
	font-size: 18px;
	color: #fff;
	border: 2px solid #ff3448;
	border-radius: 6px;
	padding: 0;
	background-color: #ff3448;
	outline: 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.btn-primary.searchbtn span.icon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 28px;
	height: 31px;
	margin-top: -16px;
	margin-left: -14px;
	background: url(../images/search_icon.png) no-repeat;
	background-size: 28px 62px;
	background-position: 0 0
}

.btn-primary.searchbtn:hover span.icon {
	background-position: 0 -31px
}

.btn-primary.searchbtn:focus,
.btn-primary.searchbtn:hover {
	border: 2px solid #ff3448;
	background-color: #fff
}

.termsContent {
	padding-top: 20px
}

.termsContent .termsinfo {
	font-size: 18px;
	color: #1f2734;
	line-height: 28px;
	text-align: justify
}

.termsContent .termsinfo h3 {
	font-size: 28px;
	color: #1f2734;
	margin: 30px 0
}

.termsContent .termsinfo p {
	margin-bottom: 30px
}

.suggestionwarp {
	padding-left: 90px
}

.suggestionwarp .suggestionformbox {
	margin-top: 50px
}

.suggestionformbox .form-control {
	padding: 12px;
	height: auto;
	font-size: 16px;
	color: #1f2734;
	border: 1px solid #1f2734;
	box-shadow: none
}

.suggestionformbox .form-group {
	margin-bottom: 40px
}

.suggestionformbox textarea.form-control {
	resize: none
}

.suggestionwarp h3 {
	font-size: 24px;
	color: #343434;
	line-height: 24px;
	margin-top: 0
}

.collapse_gallery {
	position: relative;
	min-height: 500px;
	margin: 30px 0
}

.collapse_gallery .gal_img01 {
	position: absolute;
	left: 0;
	top: 50px
}

.collapse_gallery .gal_img01 img {
	width: 320px;
	height: auto
}

.collapse_gallery .gal_img02 {
	position: absolute;
	left: 365px;
	top: 10px
}

.collapse_gallery .gal_img02 img {
	width: 280px;
	height: auto
}

.collapse_gallery .gal_img03 {
	position: absolute;
	right: 0;
	top: 50px
}

.collapse_gallery .gal_img03 img {
	width: 240px;
	height: auto
}

.collapse_gallery .gal_img04 {
	position: absolute;
	left: 260px;
	bottom: 20px
}

.collapse_gallery .gal_img04 img {
	width: 120px;
	height: auto
}

.collapse_gallery .gal_img05 {
	position: absolute;
	left: 470px;
	bottom: 40px
}

.collapse_gallery .gal_img05 img {
	width: 220px;
	height: auto
}

.collapse_gallery .gal_img06 {
	position: absolute;
	right: 0;
	bottom: 70px
}

.collapse_gallery .gal_img06 img {
	width: 110px;
	height: auto
}

.speedometerbox {
	position: relative;
	width: 270px;
	height: 144px;
	background: url(../images/speedometer_bg.png) no-repeat;
	background-size: 100% 100%;
	margin: 30px auto;
	margin-bottom: 20px
}

.speedometermove {
	position: absolute;
	left: 50%;
	bottom: -30px;
	width: 90px;
	height: 92px;
	margin-left: -45px;
	background: url(../images/speedometer_move.png) no-repeat;
	background-size: 100% 100%;
	transform-origin: 100% 30px;
	animation: speed 5s forwards
}

.speedometerbox .needle {
	width: 100px;
	height: 10px;
	background: #15222e;
	border-bottom-left-radius: 100%;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 100%;
	border-top-right-radius: 5px;
	position: absolute;
	bottom: 5px;
	left: 50%;
	margin-left: -100px;
	transform-origin: 100% 5px;
	animation: speed 5s forwards;
	box-shadow: 0 2px 2px 1px rgba(0, 0, 0, .38)
}

.speedometerbox .needle.not_eligible {
	animation: speeds1 5s forwards
}

.gauge-center {
	content: '';
	color: #fff;
	width: 45%;
	height: 45%;
	background: #15222e;
	border-radius: 100px 100px 0 0;
	position: absolute;
	box-shadow: 0 -13px 15px -10px rgba(0, 0, 0, .28);
	left: 50%;
	margin-left: -23%;
	bottom: 0;
	color: #fff
}

.gauge-center::after {
	content: 'Credit Score';
	width: 100%;
	float: left;
	opacitY: .6;
	text-align: center;
	margin-top: 30px
}

@-webkit-keyframes speed {
	0% {
		transform: rotate(0)
	}
	40% {
		transform: rotate(180deg)
	}
	55% {
		transform: rotate(170deg)
	}
	75% {
		transform: rotate(180deg)
	}
	100% {
		transform: rotate(120deg)
	}
}

@-webkit-keyframes speeds1 {
	0% {
		transform: rotate(0)
	}
	40% {
		transform: rotate(180deg)
	}
	55% {
		transform: rotate(170deg)
	}
	75% {
		transform: rotate(180deg)
	}
	100% {
		transform: rotate(40deg)
	}
}

.refund_policy_contentbx {
	position: relative
}

.refund_policy_contentbx .refundtextrow {
	position: relative;
	padding-bottom: 60px
}

.refund_policy_contentbx .refundtextrow .liconbox {
	position: relative;
	float: left;
	width: 90px;
	height: 90px;
	border-radius: 100%;
	background-color: #e0e0e0;
	-webkit-transition: all .8s linear;
	transition: all .8s linear
}

.refund_policy_contentbx .refundtextrow.aos-animate .liconbox {
	background-color: #ff3448
}

.refund_policy_contentbx .refundtextrow:after {
	position: absolute;
	content: '';
	top: 2px;
	left: 43px;
	width: 2px;
	height: 100%;
	border-right: 2px dashed #4c535c;
	display: block;
	z-index: -1
}

.refund_policy_contentbx .refundtextrow.aos-animate:after {
	border-right: 2px dashed #ff3448
}

.refund_policy_contentbx .refundtextrow:last-child:after {
	display: none
}

.refund_policy_contentbx .refundtextrow .liconbox span {
	position: absolute;
	width: 60px;
	height: 60px;
	left: 50%;
	top: 50%;
	margin: -30px 0 0 -30px;
	background: url(../images/refund_policy_icon.png) no-repeat;
	background-size: 120px 180px;
	-webkit-transition: all .8s linear;
	transition: all .8s linear
}

.refund_policy_contentbx .refundtextrow .liconbox span.dollorbx {
	background-position: 0 0
}

.refund_policy_contentbx .refundtextrow.aos-animate .liconbox span.dollorbx {
	background-position: -60px 0
}

.refund_policy_contentbx .refundtextrow .liconbox span.currency {
	background-position: 0 -60px
}

.refund_policy_contentbx .refundtextrow.aos-animate .liconbox span.currency {
	background-position: -60px -60px
}

.refund_policy_contentbx .refundtextrow .liconbox span.documents {
	background-position: 0 -120px
}

.refund_policy_contentbx .refundtextrow.aos-animate span.documents {
	background-position: -60px -120px
}

.refund_policy_contentbx .refundtextrow .refundCon {
	margin-left: 120px;
	padding-top: 10px;
	font-size: 18px;
	color: #1f2734;
	line-height: 28px;
	text-align: justify
}

.bestoffersbox {
	background-color: #fff;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15)
}

.bestoffersbox h3 {
	font-size: 24px;
	color: #000;
	margin-top: 5px
}

.bestoffersbox h4 {
	font-size: 18px;
	line-height: 32px;
	color: #707070
}

.bestoffersbox .offerviewimg {
	position: relative;
	float: left;
	width: 300px;
	padding: 10px;
	border: 1px solid #e2e3e5
}

.bestoffersbox .offerviewimg img {
	width: 100%;
	height: auto
}

.bestoffersbox .offerdetailsbox {
	position: relative;
	margin-left: 340px;
	padding-right: 300px
}

.offertimes {
	font-size: 28px;
	color: #ff3448
}

#getting-started {
	text-transform: uppercase
}

.divideredline {
	width: 120px;
	height: 3px;
	background-color: #ff3448;
	margin-bottom: 10px
}

.nextpricedrop {
	font-size: 20px;
	color: #4e4e4e;
	font-style: italic
}

.bestoffersbox .offerdetailsbox .aedprbx {
	position: absolute;
	top: 0;
	right: 0
}

.bestoffersbox .offerdetailsbox .aedprbx .aedbgrw2 {
	position: relative;
	height: 40px;
	line-height: 40px;
	font-size: 21px;
	color: #fff;
	text-align: center;
	padding: 0 30px;
	margin-top: 8px;
	background-color: #ff3448;
	display: inline-block
}

.bestoffersbox .offerdetailsbox .aedprbx .aedbgrw2 span.leftdesign {
	position: absolute;
	left: -11px;
	top: 0;
	width: 11px;
	height: 40px;
	background: url(../images/rotate_design.png) repeat-x;
	background-size: 11px 40px
}

.carlistingdetailswrap.bookyoucar {
	margin-bottom: 80px
}

.carlistingdetailswrap.bookyoucar .carlistdetailsbox .carmodelrow {
	padding: 0;
	border: 0;
	background: 0 0;
	box-shadow: none
}

.carlistingdetailswrap.bookyoucar .specificationdetailsbx {
	padding: 0;
	margin-top: 0;
	box-shadow: none
}

.carlistingdetailswrap.bookyoucar .specificationdetailsbx h2:after {
	display: none
}

.bookcarviewmodel {
	position: relative;
	padding: 3px;
	border: 1px solid #f2f2f2
}

.specificationOptionbx .bookcarpricerw {
	margin-bottom: 20px;
	text-align: right
}

.specificationOptionbx .aedbgrw1 {
	position: relative;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	padding: 0 30px;
	margin-top: 8px;
	background-color: #ff3448;
	display: inline-block
}

.aedbgrw5{
	position: absolute;
    height: 88px;
    line-height: 88px;
    font-size: 43px;
    color: #fff;
    text-align: center;
    background-color: red;
    z-index: 1;
    top: 0;
    letter-spacing: 4px;
    width: 300px;
}

.promovid{
	width: 100% !important; 
	height: auto !important;
}

.promovid1{
	background: white; 
	max-width: 100vw; 
	margin: 0 auto;
	width: 100vw;
}

.promovid2{
	background: white;
    max-width: 100vw;
    margin: 0 auto;
    height: auto;
    width: 100%;
	margin-top: 2%;
}

.aedbgrw6{
	position: absolute;
    /* line-height: 88px; */
    font-size: 43px;
    color: #fff;
    text-align: center;
    z-index: 1;
    top: 30px;
    right: 30px;
    letter-spacing: 4px;
    background: rgb(255,52,72, 0.7);
    width: auto !important;
    height: auto !important;
}

.promocontent{
	margin: 30px;
}

.headerpromo {
	font-size: 30px; 
	letter-spacing: 0;
}

.subheaderpromo{
	font-size: 14px; 
	letter-spacing: 0;
}

.bulletpromo{
	font-weight: 100;
    line-height: 2;
    letter-spacing: 0px;
    font-family: Montserrat-Light;
    font-size: 21px;
    color: #fff;
    text-align: left;
    margin-top: 20px;
}

.buttompromo{
	font-family: Montserrat-Light;
    background-color: #fff;
    padding: 14px 60px;
    border-radius: 40px;
    font-size: 20px;
    color: #ff3448;
    border: 2px solid #fff;
    box-shadow: none;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
    margin-top: 20px;
}

.specificationOptionbx .aedbgrw1 span.leftdesign {
	position: absolute;
	left: -11px;
	top: 0;
	width: 11px;
	height: 40px;
	background: url(../images/rotate_design.png) repeat-x;
	background-size: 11px 40px
}

.bookcartypewrap {
	padding: 30px 0;
	margin-top: 60px;
	border-top: 1px solid #f2f2f2
}

.bookcartypewrap h3 {
	font-size: 32px;
	color: #1f2734;
	text-align: center;
	letter-spacing: 1px;
	margin: 15px 0
}

.bookcartypewrap .bookcartypepaymentCon {
	padding: 0 20px
}

.bookcartypepaymentCon .tabsbtnbx {
	width: 300px;
	margin: 0 auto;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.bookcartypepaymentCon .tabsContype {
	margin-left: 450px;
	display: none
}

.tabsContype.tabsdisplay {
	display: block
}

.tabsbtnbx.tableft {
	float: left;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.tabsbtnbx .nav-tabs {
	border: 0
}

.tabsbtnbx .nav-tabs>li {
	float: none;
	margin-bottom: 40px
}

.tabsbtnbx .nav-tabs>li>a {
	position: relative;
	padding: 24px 0;
	font-size: 24px;
	text-align: center;
	color: #1f2734;
	margin-right: 0;
	border: 0;
	border-radius: 40px;
	background-color: #f3f3f3
}

.tabsbtnbx .nav-tabs>li>a span {
	position: absolute;
	right: -10px;
	top: -10px;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: #ff3448;
	-webkit-transition: .5s;
	transition: .5s;
	opacity: 0
}

.tabsbtnbx .nav-tabs>li.active>a span {
	opacity: 1
}

.tabsbtnbx .nav-tabs>li>a span i {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 30px;
	height: 30px;
	margin: -15px 0 0 -15px;
	background: url(../images/sellcarstep_icon.png) no-repeat;
	background-size: 60px 120px;
	background-position: -30px 0
}

.tabsbtnbx .nav-tabs>li.active>a,
.tabsbtnbx .nav-tabs>li.active>a:focus,
.tabsbtnbx .nav-tabs>li.active>a:hover {
	background-color: #f3f3f3;
	border: 0
}

.tabsContype h4 {
	font-size: 22px;
	color: #1f2734;
	margin-bottom: 20px
}

.tabsContype .typedeatails {
	font-family: Montserrat-Light;
	font-size: 16px;
	color: #6b6b6b;
	line-height: 24px
}

.tabsContype p {
	margin-bottom: 30px
}

.showmorelisting.bookcars .btn-primary.searchcars {
	font-family: Montserrat-Regular;
	padding: 14px 50px
}

.blinking {
	font-size: 20px;
	min-height: 40px;
	text-align: center;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	animation: blinkingText .8s infinite;
	margin-top: 15px
}

@keyframes blinkingText {
	0% {
		color: #000
	}
	49% {
		color: #ff3448;
		font-size: 18px
	}
	50% {
		color: #ff3448
	}
	99% {
		color: #ff3448
	}
	100% {
		color: #000
	}
}

.navbar-nav.selectpayment {
	padding-top: 16px;
	float: none;
	overflow: hidden;
	height: auto
}

.navbar-nav.selectpayment>li>a {
	font-size: 16px;
	color: #1f2734;
	padding: 14px 36px;
	border-radius: 32px;
	background-color: #f7f7f7;
	margin-right: 20px;
	margin-bottom: 20px
}

.navbar-nav.selectpayment>li>a span {
	position: absolute;
	right: -10px;
	top: -10px;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	background-color: #ff3448;
	-webkit-transition: .5s;
	transition: .5s;
	opacity: 0
}

.navbar-nav.selectpayment>li.active>a span {
	opacity: 1
}

.navbar-nav.selectpayment>li>a span i {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 24px;
	height: 24px;
	margin: -12px 0 0 -12px;
	background: url(../images/sellcarstep_icon.png) no-repeat;
	background-size: 48px 96px;
	background-position: -24px 0
}

.nav-tabs.cardetails_nav {
	float: none;
	border: 0;
	margin-bottom: 30px
}

.nav-tabs.cardetails_nav>li {
	width: auto;
	margin-bottom: 0;
	padding: 0
}

.nav-tabs.cardetails_nav>li>a {
	font-size: 24px;
	color: #a9aaae;
	border-width: 2px;
	border-radius: 0;
	padding: 5px 10px;
	border: 0;
	border-bottom: 2px solid;
	border-color: transparent;
	display: inline-block;
	margin-right: 20px
}

.nav-tabs.cardetails_nav>li:hover>a {
	background-color: transparent
}

.nav-tabs.cardetails_nav>li.active>a,
.nav-tabs.cardetails_nav>li.active>a:focus,
.nav-tabs.cardetails_nav>li.active>a:hover {
	color: #000;
	margin-right: 20px;
	border: 0;
	border-bottom: 2px solid #ff3447;
	background-color: transparent
}

.albacars_video {
	position: relative;
	height: 425px;
	width: 95%;
	margin: auto
}

.albacars_video iframe {
	position: absolute;
	height: 425px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin-top: 42px
}

.albacars_video video {
	width: 100%;
	margin-top: 73px
}

.video_showroom h4 {
	font-size: 26px;
	text-align: left;
	color: #1f2734;
	margin-bottom: 0
}

.imageuploadrow #uploadImage,
.imageuploadrow .fileinput-button {
	position: relative;
	overflow: hidden;
	width: 140px;
	height: 140px;
	border-radius: 0;
	display: inline-block;
	box-shadow: none;
	background: url(../images/plus_icon.png) center center no-repeat #f4f8f9;
	background-size: 35px 34px
}

.imageuploadrow #uploadImage input,
.imageuploadrow .fileinput-button input {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: 0;
	opacity: 0;
	-ms-filter: 'alpha(opacity=0)';
	font-size: 200px;
	direction: ltr;
	cursor: pointer
}

.imageuploadrow .pip {
	position: relative;
	width: 140px;
	float: left;
	display: inline-block;
	vertical-align: top;
	height: 140px;
	border: 1px solid #f1f1f1;
	margin-right: 10px;
	margin-bottom: 10px
}

.imageuploadrow .imageThumb,
.imageuploadrow .thumb {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%
}

.imageuploadrow output {
	float: left;
	display: block;
	padding: 0
}

.imageuploadrow ul.thumb-Images li {
	position: relative;
	width: 140px;
	display: inline-block;
	vertical-align: top;
	height: 140px;
	border: 1px solid #f1f1f1;
	margin-right: 10px
}

.imageuploadrow .img-wrap {
	position: absolute;
	display: inline-block;
	font-size: 0;
	width: 100%;
	height: 100%
}

.imageuploadrow .img-wrap .close {
	position: absolute;
	top: 2px;
	right: 2px;
	z-index: 100;
	background-color: #d0e5f5;
	padding: 5px 2px 2px;
	color: #000;
	font-weight: bolder;
	cursor: pointer;
	opacity: .5;
	font-size: 23px;
	line-height: 10px;
	border-radius: 50%
}

.imageuploadrow .img-wrap:hover .close {
	opacity: 1;
	background-color: red
}

.FileNameCaptionStyle {
	font-size: 12px
}

.imageuploadrow form #Filelist {
	float: left
}

.imageuploadrow .thumb-Images {
	margin: 0;
	padding: 0
}

.imageuploadrow input[type=submit] {
	display: block;
	margin-top: 20px
}

.imageuploadrow .thumb-Images div:last-child {
	display: none
}

.imageuploadrow .remove {
	position: absolute;
	width: 20px;
	height: 20px;
	top: -10px;
	right: -10px;
	display: block;
	background: #fff;
	color: #000;
	text-align: center;
	cursor: pointer
}

.specificationdetailsbx.call_us a {
	text-decoration: none;
	display: block
}

.specificationdetailsbx.call_us .contact-no,
.specificationdetailsbx.call_us .contact-no-gr {
	margin-bottom: 15px;
	border-bottom: 1px solid #e0e0e0
}

.specificationdetailsbx.call_us .contact-no .imgbx,
.specificationdetailsbx.call_us .contact-no-gr .imgbx {
	position: relative;
	width: 50px;
	height: 50px;
	float: left;
	border-radius: 100%;
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .040);
	overflow: hidden
}

.specificationdetailsbx.call_us .contact-no .imgbx img,
.specificationdetailsbx.call_us .contact-no-gr .imgbx img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: -10px;
	max-width: 90%;
	max-height: 90%;
	margin: auto
}

.specificationdetailsbx.call_us .contact-no .imgbx img,
.specificationdetailsbx.call_us .contact-no-gr .imgbx img {
	width: 100%;
	height: auto
}

.specificationdetailsbx.call_us .contact-no .callus_person_details,
.specificationdetailsbx.call_us .contact-no-gr .callus_person_details {
	margin-left: 70px
}

.specificationdetailsbx.call_us .contact-no .callus_person_details .callnm,
.specificationdetailsbx.call_us .contact-no-gr .callus_person_details .callnm {
	font-size: 18px;
	color: #6b6b6b;
	font-weight: 700;
	margin-bottom: 8px
}

.specificationdetailsbx.call_us .contact-no .callus_person_details .callingrw,
.specificationdetailsbx.call_us .contact-no-gr .callus_person_details .callingrw {
	font-size: 16px;
	color: #6b6b6b;
	margin-bottom: 8px;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.callingrw1 {
	font-size: 16px;
	color: #6b6b6b;
	margin-bottom: 8px;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.specificationdetailsbx.call_us .contact-no-gr:hover .callus_person_details .callingrw,
.specificationdetailsbx.call_us .contact-no:hover .callus_person_details .callingrw {
	color: #ff3448;
	letter-spacing: .4px;
	text-decoration: underline
}

.specificationdetailsbx.call_us .contact-no .callus_person_details .designation,
.specificationdetailsbx.call_us .contact-no-gr .callus_person_details .designation {
	font-size: 16px;
	color: #6b6b6b;
	margin-bottom: 8px
}

.colorchoose_active_and_inactive {
	padding-bottom: 15px
}

.colorchoose_active_and_inactive span.wd {
	position: relative;
	top: 2px;
	width: 16px;
	height: 16px;
	background-color: green;
	border-radius: 100%;
	display: inline-block
}

.colorchoose_active_and_inactive span.availabe {
	font-size: 16px;
	color: green;
	display: inline-block;
	margin-left: 10px
}

.colorchoose_active_and_inactive span.unavailabe {
	font-size: 16px;
	color: red;
	display: inline-block;
	margin-left: 10px
}

.colorchoose_active_and_inactive span.wd.wds {
	background-color: red
}

.selectoptionrow .dropdown-menu ul li.disabled:first-child {
	display: none
}

.messageheadingbox {
	font-size: 18px;
	color: #000;
	text-align: center;
	line-height: 28px
}

.fln_wd {
	float: none;
	margin: auto
}

.compare_list_box {
	position: absolute;
	left: -5px;
	top: -25px;
	z-index: 1
}

.compare_list_box [type=checkbox]:checked,
.compare_list_box [type=checkbox]:not(:checked) {
	position: absolute;
	left: -9999px
}

.compare_list_box [type=checkbox]:checked+label,
.compare_list_box [type=checkbox]:not(:checked)+label {
	position: relative;
	width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 100%;
	box-shadow: -4.5px 5.362px 18px 0 rgba(0, 0, 0, .08);
	margin-bottom: 0;
	display: block
}

.compare_list_box [type=checkbox]:checked+label:before,
.compare_list_box [type=checkbox]:not(:checked)+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background: #fff;
	margin-bottom: 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.compare_list_box label span {
	position: absolute;
	width: 30px;
	height: 30px;
	left: 50%;
	top: 50%;
	margin: -15px 0 0 -15px;
	background: url(../images/compare_icon.png) no-repeat;
	background-size: 30px 60px;
	background-position: 0 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	z-index: 2
}

.compare_list_box [type=checkbox]:checked+label:after,
.compare_list_box [type=checkbox]:not(:checked)+label:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background: #ff3448;
	z-index: 1
}

.compare_list_box [type=checkbox]:not(:checked)+label:after {
	opacity: 0;
	transform: scale(0)
}

.compare_list_box [type=checkbox]:checked+label:after {
	opacity: 1;
	transform: scale(1)
}

.compare_list_box [type=checkbox]:checked+label span {
	background-position: 0 -31px
}

.car_reservation_ins,
.specificationbox.mobile_version {
	display: none
}

.comparewrap {
	margin: 0
}

.comparewrap .compares_leftbox {
	padding-right: 40px
}

.comparewrap .compareimgbx {
	position: relative;
	height: 250px;
	border: 1px solid #e2e3e5;
	background: url(../images/compare_plus_icon.png) no-repeat center center #ececec;
	background-size: 298px 120px
}

.comparewrap .compareimgbx.removeCompareImage {
	background: 0 0
}

.comparewrap .compareimgbx .closeimg {
	position: absolute;
	width: 32px;
	height: 32px;
	top: -14px;
	right: -16px;
	background: url(../images/compare_img_close.png) no-repeat;
	background-size: 32px 32px;
	display: block;
	z-index: 1;
	cursor: pointer
}

.comparewrap .compareimgbx img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto
}

.comparewrap h3 {
	font-size: 24px;
	color: #1f2734;
	min-height: 50px;
	margin-bottom: 15px
}

.comparewrap h4 {
	font-size: 16px;
	color: #ff3448;
	text-align: left
}

.comparewrap h5 {
	font-family: Montserrat-Light;
	font-size: 16px;
	color: #141414
}

.compare_view_details_btnrw {
	margin-top: 30px
}

.compare_view_details_btnrw h2 {
	font-size: 26px;
	line-height: 50px;
	color: #1f2734;
	text-align: left;
	margin-bottom: 0
}

.compare_view_details_btnrw .btn-primary.comparebtn {
	background-color: #fff;
	color: #ff3448;
	border: 2px solid #ff3448;
	border-radius: 32px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, .1)
}

.compare_view_details_btnrw .btn-primary.comparebtn:focus,
.compare_view_details_btnrw .btn-primary.comparebtn:hover {
	background-color: #ff3448;
	border: 2px solid #ff3448;
	color: #fff
}

.our_excutives {
	padding: 80px 0
}

.our_excutives h3 {
	font-size: 30px;
	color: #000;
	text-align: center;
	margin: 0
}

.excutives_box {
	margin-top: 50px
}

.excutives_box .excutivesimgbx {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background-color: #fff;
	margin: auto;
	background: url(../images/sales_excutive.png) no-repeat center bottom;
	background-size: 80px 77px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
	margin-bottom: 20px;
	overflow: hidden
}

.excutives_box .excutivesimgbx img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: -20px;
	max-width: 90%;
	max-height: 90%;
	margin: auto
}

.excutives_box h4 {
	font-size: 18px;
	color: #000;
	text-align: center
}

.excutives_box h5 {
	font-size: 14px;
	color: #a3a3a3;
	text-align: center
}

.excutives_box .callnumrw {
	text-align: center;
	margin-right: -3px;
	margin-left: -19px
}

.whatsappicon {
	font-size: 25px;
	color: #46c254
}

.mailicon {
	font-size: 25px;
	color: #5262f1
}

.whatsappicon {
	font-size: 25px;
	color: #46c254
}

.excutives_box .callnumrw .cannnumbx {
	padding: 10px 12px;
	font-size: 14px;
	color: #ff3448;
	border-radius: 32px;
	background-color: #fff;
	display: inline-block;
	margin-left: 18px
}

.excutives_box .callnumrw .cannnumbx1 {
	padding: 10px 12px;
	font-size: 14px;
	color: #46c254;
	border-radius: 32px;
	background-color: #fff;
	display: inline-block;
	margin-left: 17px
}

.excutives_box .callnumrw .cannnumbx2 {
	padding: 10px 12px;
	border-radius: 32px;
	background-color: #fff;
	display: inline-block;
	margin-left: 18px
}

.excutives_box .callnumrw .cannnumbx .fa {
	font-size: 22px;
	margin-right: 0;
	margin-left: 0;
	color: #ff3448
}

.contactfullwdrow {
	background-color: #ff3448
}

.contactfullwdrow h3 {
	font-size: 26px;
	color: #fff;
	padding: 20px 0;
	margin: 0;
	text-align: center
}

.inner-div {
	width: 100%;
	/* margin-left: 110px; */
	/* margin-left: 195px; */
}

.inner-div2 {
	display: block;
	margin-left: 300px;
	width: 100%
}

.excutive_wd {
	width: 16%
}

html.boxModel {
	overflow: hidden
}

.modal-footer {
	border: 0;
	text-align: center;
	padding-top: 0;
	padding-bottom: 30px
}

.modal-footer .btn-default {
	padding: 8px 36px;
	border-radius: 40px;
	font-size: 20px;
	color: #ff3448;
	border: 2px solid #ff3448;
	box-shadow: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	outline: 0;
	display: inline-block
}

#logoutWebsite .modal-footer .btn-default {
	margin: 0 5px
}

.modal-footer .btn-default:hover {
	color: #fff;
	background-color: #ff3448
}

.logininputbox.forgotpassword h2 {
	margin-left: -15px
}

.ui-slider-handle {
	-ms-touch-action: none;
	touch-action: none
}

.timerbtn {
	background-color: #ff3448;
	padding: 10px 30px;
	border-radius: 4px;
	font-size: 16px;
	border: 2px solid #ff3448;
	box-shadow: none;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	outline: 0
}

.loaderrow {
	text-align: center
}

.loaderrow .lds-hourglass {
	position: static;
	top: auto;
	left: auto;
	margin: 0;
	display: inline-block
}

.loaderrow .lds-hourglass:after {
	border: 26px solid #ff3448;
	border-color: #ff3448 transparent #ff3448 transparent
}

.compare_list_icon_rows {
	text-align: center;
	margin-top: 16px;
	margin-bottom: 8px
}

.compare_list_iconsbx {
	width: 40px;
	height: 40px;
	background: url(../images/compare_icon.png) no-repeat;
	background-size: 40px 80px;
	background-position: 0 0;
	-webkit-transition: all .4s linear;
	transition: all .4s linear;
	display: inline-block
}

body.modal-open {
	padding-right: 0!important
}

.albacars_footer_info_details {
	font-family: Montserrat-Light;
	font-size: 18px;
	color: #fff;
	line-height: 32px;
	text-align: justify
}

.footer_line {
	position: absolute;
	top: 10px;
	right: -40px;
	width: 1px;
	height: 90%;
	background-color: #fff
}

.phonenumbx a {
	color: #fff
}

.lds-rollerwrap {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .6);
	z-index: 99999
}

.lds-roller {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -32px 0 0 -32px;
	width: 64px;
	height: 64px
}

.lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
	transform-origin: 32px 32px
}

.lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	margin: -3px 0 0 -3px
}

.lds-roller div:nth-child(1) {
	animation-delay: -36ms
}

.lds-roller div:nth-child(1):after {
	top: 50px;
	left: 50px
}

.lds-roller div:nth-child(2) {
	animation-delay: -72ms
}

.lds-roller div:nth-child(2):after {
	top: 54px;
	left: 45px
}

.lds-roller div:nth-child(3) {
	animation-delay: -108ms
}

.lds-roller div:nth-child(3):after {
	top: 57px;
	left: 39px
}

.lds-roller div:nth-child(4) {
	animation-delay: -144ms
}

.lds-roller div:nth-child(4):after {
	top: 58px;
	left: 32px
}

.lds-roller div:nth-child(5) {
	animation-delay: -.18s
}

.lds-roller div:nth-child(5):after {
	top: 57px;
	left: 25px
}

.lds-roller div:nth-child(6) {
	animation-delay: -216ms
}

.lds-roller div:nth-child(6):after {
	top: 54px;
	left: 19px
}

.lds-roller div:nth-child(7) {
	animation-delay: -252ms
}

.lds-roller div:nth-child(7):after {
	top: 50px;
	left: 14px
}

.lds-roller div:nth-child(8) {
	animation-delay: -288ms
}

.lds-roller div:nth-child(8):after {
	top: 45px;
	left: 10px
}

@keyframes lds-roller {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(360deg)
	}
}

.no_options {
	text-align: center;
	padding: 12px 0;
	font-size: 15px;
	color: #6b6b6b
}

label.error {
	color: #fa4047;
	font-size: 13px;
	font-weight: 400
}

.checkboxbx label.error {
	padding-left: 0;
	color: #fa4047!important
}

.checkboxbx label+label {
	padding: 0;
	padding-left: 45px!important;
	display: inline-block!important
}

#sell-car-message {
	-moz-animation: cssAnimation 0s ease-in 5s forwards;
	-webkit-animation: cssAnimation 0s ease-in 5s forwards;
	-o-animation: cssAnimation 0s ease-in 5s forwards;
	animation: cssAnimation 0s ease-in 5s forwards;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

@keyframes cssAnimation {
	to {
		width: 0;
		height: 0;
		overflow: hidden
	}
}

@-webkit-keyframes cssAnimation {
	to {
		width: 0;
		height: 0;
		visibility: hidden
	}
}

#sell-car-message h4 {
	color: #333;
	text-align: center;
	margin-bottom: -3px
}

#visit_interest-error {
	position: absolute;
	top: 50px;
	z-index: 99
}

.showroom_msg {
	text-align: center;
	padding-bottom: 16px
}

#state-error {
	position: absolute;
	top: 95px;
	z-index: 9999
}

.selectoptionrow.city #state-error {
	z-index: 999!important;
	top: 60px
}

.bootstrap-select.btn-group .dropdown-menu {
	z-index: 9999
}

#image-error {
	color: #fa4047;
	font-size: 16px;
	padding: 10px 0;
	display: block
}

.error_msg {
	color: #fa4047;
	font-weight: 400;
	font-size: 13px;
	margin-top: 8px;
	display: block
}

#financePopup .modal-content {
	padding: 20px
}

#financePopup .modal-body p {
	font-size: 16px;
	text-align: center
}

#financePopup .modal-footer {
	padding: 0;
	border-top: 0 solid #e5e5e5;
	text-align: center
}

.logininputbox .help-block strong {
	color: #fa4047
}

.logininputbox .has-error .form-control:focus {
	border-color: #fa4047
}

.contact_admin {
	text-align: center;
	margin-top: 75px
}

.contact_admin a:hover {
	text-decoration: none
}

.showDetails {
	opacity: 0!important;
	display: none
}

.lds-hourglass {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -32px 0 0 -32px;
	width: 64px;
	height: 64px;
	display: block
}

.lds-hourglass:after {
	content: " ";
	display: block;
	border-radius: 50%;
	width: 0;
	height: 0;
	margin: 6px;
	box-sizing: border-box;
	border: 26px solid #ff3448;
	border-color: #ff3448 transparent #ff3448 transparent;
	animation: lds-hourglass 1.2s infinite
}

@keyframes lds-hourglass {
	0% {
		transform: rotate(0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	50% {
		transform: rotate(900deg);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	100% {
		transform: rotate(1800deg)
	}
}

.listviews a {
	text-decoration: none
}

.uploadimgbx {
	margin-bottom: 80px
}

.carlistingbox .reserved-sticker h3 {
	margin: 0;
	font-size: 15px;
	margin-top: -3px
}

.carlistingbox .reserved-sticker {
	display: inline-block;
	box-sizing: content-box;
	height: 10px;
	position: absolute;
	content: "";
	cursor: pointer;
	margin: 0;
	width: 216px;
	padding: 12px;
	border: none;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	background: #f9373e;
	transform: rotate(-38deg);
	top: 15px;
	z-index: 9;
	left: -77px
}

.modelyearrw p {
	color: #333;
	font-size: 12px
}

.mydetail .usremail a:hover,
.mydetail .usrphone a {
	color: #000!important
}

.success_msg {
	color: #41de03
}

.getintouchbx .success_msg {
	font-size: 16px
}

#contact_us_city-error {
	position: absolute;
	left: 0;
	top: 58px
}

.footermobile {
	display: none
}

.specificationdetailsbx.call_us {
	margin-bottom: 40px
}

.carlistingSelectOptionbox .filterslidebtn {
	position: relative;
	padding: 14px 12px;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	background-color: #ff3448;
	cursor: pointer;
	margin: 0 15px;
	border-radius: 4px;
	display: none
}

.carlistingSelectOptionbox.active .filterslidebtn {
	border-radius: 4px 4px 0 0
}

.carlistingSelectOptionbox .filterslidebtn .fa {
	position: absolute;
	top: 12px;
	right: 15px;
	color: #fff;
	font-size: 28px;
	-webkit-transition: all .4s linear;
	transition: all .4s linear
}

.carlistingSelectOptionbox.active .filterslidebtn .fa {
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-ms--transform: rotate(180deg);
	transform: rotate(180deg)
}

.offer_border_top {
	margin: 20px
}

.offer_border {
	padding: 10px 0;
	padding-left: 40px;
	line-height: 1.6em!important;
	font-size: 16px!important;
	color: #1f2734;
	background: url(../images/offer_ticks.png) left 15px no-repeat;
	background-size: 20px 14px;
	border-bottom: 1px solid #f6f6f6;
	display: block
}

.offerdetailsConmen {
	margin-bottom: 0
}

.formpdzero {
	padding: 0
}

.carevaluationbx {
	padding: 50px 0 40px 0
}

.carevaluationbx .evaluation_heading {
	font-size: 24px;
	padding: 0 20px;
	color: #1f2734;
	line-height: 36px;
	text-align: center
}

.carevaluationbx .evaluation_subheading {
	font-family: Montserrat-Light;
	font-size: 20px;
	padding: 20px;
	color: #1f2734;
	text-align: center;
	line-height: 24px
}

.carevaluationbx .pricerowbx {
	padding: 20px;
	font-size: 28px;
	text-align: center;
	color: #fff;
	margin: 35px 0;
	background-color: #1f2734
}

.carevaluationbx .gotitbtnrw {
	padding: 25px 0 15px 0;
	text-align: center
}

.modal-dialog.testdrive.carevaluation {
	width: 700px
}
.modal-dialog.callUsModal.carevaluation {
	width: 700px
}

.video_box {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	cursor: pointer
}

.video_box img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%
}

#videoModal .modal-dialog {
	width: 900px
}

#videoModal .modal-body {
	padding: 0
}

#videoModal .video_wrapper {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden
}

#videoModal .video_wrapper iframe {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: 100%;
	height: 500px
}

#videoModal .modal-content {
	background: 0 0;
	box-shadow: none;
	border: none
}

#videoModal .modal-header {
	border: 0
}

#videoModal .modal-header .close {
	opacity: 1;
	color: #fff
}

#deskview {
	display: block
}

.mobvieww {
	display: none
}

#mobview {
	display: none
}

#mobviewtab {
	display: none
}

.mobviewtabb {
	display: none
}

.sellConbx.desktext {
	padding: 0 0 25px 0!important
}

.offerdetailsbox.expbtn {
	margin-left: 0
}

.offerdetailsbox.expbtn .offerbtsnrw {
	text-align: left
}

#mapbx {
	background-image: url(../images/mapimage.png);
	background-repeat: no-repeat;
	background-size: cover
}

.pgtitlerw .pgtitlenm h1 {
	font-size: 30px
}

.listviewbtn {
	display: table;
	margin: 15px auto 0 auto
}

.redtag {
	color: #ff3448
}

.detail_notify {
	text-align: center;
	color: #41de03;
	padding-bottom: 20px
}

.carlistdetailsbox .carmodelrow .lftbdr {
	margin-top: 0;
	top: 18px
}

.slide {
	transition: 1s;
	left: 0
}

.carlistingdetailswrap {
	margin-top: 35px;
}

.bookcartypewrap {
	border: 0;
	margin-top: 20px
}

.summary_heading {
	font-size: 17px;
	font-weight: 700;
	color: #1f2734
}

.tabsContype p {
	margin-bottom: 8px!important
}

.payment_summary li {
	list-style: none;
	margin-top: 25px
}

.payment_summary li i {
	margin-right: 15px;
	font-size: 35px;
	vertical-align: middle
}

.bank_application_ins ul,
.car_reservation_ins ul {
	padding: 0;
	margin: 0;
	margin-bottom: 40px
}

.payment_summary .fa-check {
	color: #51d136
}

.payment_summary .fa-times {
	color: #fa4047
}

.cash_click {
	margin-bottom: 15px
}

.cash_click strong {
	width: 115px;
	display: inline-block
}

.total_book_price {
	border-top: 1px solid #ccc;
	display: inline-block;
	margin-top: 10px;
	padding-top: 10px
}

.deposit {
	margin-top: 10px
}

.slidevehiclebx {
	position: relative
}

.slidevehiclebx .owl-carousel .owl-nav {
	font-size: 45px
}

.slidevehiclebx .owl-carousel .owl-nav button {
	background: 0 0;
	border: 0;
	outline: 0
}

.slidevehiclebx .owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	top: 35%;
	left: -3%
}

.slidevehiclebx .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 35%;
	right: -3%
}

.slidevehiclebx .listviews {
	margin: 0 1px
}

.modeldrop button {
	background-color: #f5f8f9;
	padding: 14px;
	height: auto;
	font-size: 16px;
	color: #1f2734;
	border: 1px solid #e0e0e0;
	box-shadow: none;
	-webkit-appearance: none
}

#financeCalculator h4 {
	font-family: Montserrat-Regular
}

#financeCalculator .modal-dialog {
	top: 28px;
	max-width: 700px
}

#financeCalculator .modal-content .closebtn {
	position: absolute;
	right: -10px;
	top: -20px;
	z-index: 999
}

#financeCalculator .modal-content span.icon {
	position: relative;
	width: 35px;
	height: 35px;
	border: 3px solid #fff;
	border-radius: 50%;
	display: inline-block;
	background: #282828;
	cursor: pointer
}

#financeCalculator .modal-content span.icon button {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	color: #fff;
	font-size: 25px
}

#financeCalculator .modal-body {
	background: #fafafa;
	border-radius: 4px
}

#financeCalculator label {
	float: left;
	width: 275px;
	margin-top: 15px
}

#financeCalculator .modal-dialog.testdrive .getintouchbx {
	padding: 40px;
	max-height: 550px;
	overflow-y: auto
}

#financeCalculator .getintouchbx .form-control {
	display: inline-block;
	width: 275px;
	border-color: #dadada
}

#financeCalculator .modal-dialog.testdrive .getintouchbx .form-group {
	border-top: 1px solid #e9ecef;
	padding-top: 10px
}

#financeCalculator .modal-dialog.testdrive .getintouchbx .btn-primary.searchcars {
	width: auto;
	padding: 8px 25px;
	font-size: 16px;
	margin-bottom: 20px
}

#callUsPopup h4 {
	font-family: Montserrat-Regular
}

#callUsPopup .modal-dialog {
	top: 28px;
	max-width: 700px
}

#callUsPopup .modal-content .closebtn {
	position: absolute;
	right: -10px;
	top: -20px;
	z-index: 999
}

#callUsPopup .modal-content span.icon {
	position: relative;
	width: 35px;
	height: 35px;
	border: 3px solid #fff;
	border-radius: 50%;
	display: inline-block;
	background: #282828;
	cursor: pointer
}

#callUsPopup .modal-content span.icon button {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	color: #fff;
	font-size: 25px
}

#callUsPopup .modal-body {
	background: #fafafa;
	border-radius: 4px
}

#callUsPopup label {
	float: left;
	width: 275px;
	margin-top: 15px
}

#callUsPopup .modal-dialog.callUsModal .getintouchbx {
	padding: 40px;
	max-height: 550px;
	overflow-y: auto
}

#callUsPopup .getintouchbx .form-control {
	display: inline-block;
	width: 275px;
	border-color: #dadada
}

#callUsPopup .modal-dialog.callUsModal .getintouchbx .form-group {
	border-top: 1px solid #e9ecef;
	padding-top: 10px
}

#callUsPopup .modal-dialog.callUsModal .getintouchbx .btn-primary.searchcars {
	width: auto;
	padding: 8px 25px;
	font-size: 16px;
	margin-bottom: 20px
}

.labeltext {
	margin-top: 0!important
}

.selectshowdrop .form-control {
	overflow: inherit!important
}