/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}
a{
	text-decoration:none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.nav {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo-link {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a2d2e7;
  text-decoration: none;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #a2d2e7;
}

.cta-button {
  background: #4caf50;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background: #45a049;
}

.phone-icon {
  width: 1rem;
  height: 1rem;
}

.cta-text {
  display: none;
}

@media (min-width: 640px) {
  .cta-text {
    display: inline;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.3), white);
  padding: 4rem 0 6rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.primary-button {
  background: #4caf50;
  color: white;
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.primary-button:hover {
  background: #45a049;
}

.secondary-button {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #e2e8f0;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.secondary-button:hover {
  background: #f8fafc;
  border-color: #a2d2e7;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  width: 2rem;
  height: 2rem;
  color: #4caf50;
  margin: 0 auto 0.5rem;
}

.trust-item p {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Form Card */
.form-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #64748b;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  background: #f8fafc;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a2d2e7;
  box-shadow: 0 0 0 3px rgba(162, 210, 231, 0.1);
}

.submit-button {
  background: #4caf50;
  color: white;
  border: none;
  padding: 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 0.5rem;
}

.submit-button:hover {
  background: #45a049;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  color: #4caf50;
  margin: 0 auto 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Process Section */
.process {
  padding: 4rem 0;
}

.process-steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.process-step p {
  color: #64748b;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: #a2d2e7;
  padding: 4rem 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-section .secondary-button {
  background: white;
  color: #1a1a1a;
  border: 1px solid white;
}

.cta-section .secondary-button:hover {
  background: #f8fafc;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #a2d2e7;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-text {
  color: #94a3b8;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #a2d2e7;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .cta-title {
    font-size: 1.875rem;
  }
}


/* New Contact Form Style */


#contact-wrap {
	padding-top: 10px;
	padding-bottom: 10px;
}
#contact-wrap .logo-link {
	font-size: 24px;
	color:#a2d2e7;
}
#contact-wrap .logo-link:hover {
	text-decoration:none;
}
#contact-wrap .nav-link {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 16px;
}
#contact-wrap .nav-link:hover {
	color: #a2d2e7;
}
#contact-wrap .nav-links {
	gap: 32px;
}
#contact-wrap .phone-icon {
	width: 16px;
	height: 16px;
}
#contact-wrap .cta-button {
	background: #4caf50;
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.3s;
}
#contact-wrap .cta-button:hover{
	background:#45a049;
}
a:hover{
	text-decoration:none;
}

#sahara-footer .footer-title {
	font-size: 20px;
	font-weight: bold;
}
#sahara-footer .footer-section h3 {
	margin-bottom: 16px;
	color: #a2d2e7;
}
#sahara-footer .footer-section h4 {
	margin-bottom: 16px;
	color: #a2d2e7;
	font-weight: bold;
	font-size: 16px;
}
#sahara-footer .footer-links li {
	margin-bottom: 8px;
}
#sahara-footer .footer-links a {
	font-size:16px;
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.3s;
}
#sahara-footer .footer-links a:hover {
	color: #a2d2e7;
}
#sahara-footer .footer-text {
	color: #94a3b8;
	line-height: 1.6;
	font-size:16px;
}
#sahara-footer .footer-section p {
	font-size:16px;
	margin-bottom: 0px;
}
#sahara-footer .footer-bottom p {
	font-size: 16px;
	margin-top: 5px;
}
.saharacash-contactformright{
}
.saharacash-contactformright select {
	display: block;
	padding: 13px;
	margin-bottom:15px;
	width: 100%;
	height: 48px;
	border: none;
	border: 1px solid #e2e8f0;
	border-radius: 5px;
	background:url("public/sahara-arrow1.png") right center no-repeat;
	background-position: right 15px center;
	background-color: #f8fafc;
	color: #545454;
    font-family:'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 19px !important;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
#instantoffer {
	background-color:#4caf50;
	border: medium none;
	border-radius: 0px;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	padding-top: 13px;
	padding-bottom: 13px;
	width: 100%;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
}
#instantoffer:hover{
	background:#3bc340;
	color:#fff;
}
.saharacash-contact-section{
	padding-top:40px;
	padding-bottom:80px;
}
.saharacash-getquote h3 {
    font-family:'Montserrat', sans-serif;
	font-weight:600;
	font-size: 28px;
	color:#202020;
	margin-top:0px;
	margin-bottom:5px;
}
.saharacash-getquote p {
    font-family:'Montserrat', sans-serif;
	font-size: 18px;
	font-weight:400;
	color:#111111;
	line-height: 1.2;
	margin-bottom:30px;
}
.form_part{
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight:400;
}
.saharacash-getquote2 select {
	display: block;
	padding-left: 13px;
	margin-bottom:20px;
	width: 100%;
	height:50px;
	border: none;
	border:2px solid #7E7E7E;
	border-radius:15px;
	background:url("public/sahara-arrow1.png") right center no-repeat;
	background-position: right 15px center;
    background-color:#fff;
	color: #000;
    font-family:'Montserrat', sans-serif;
	font-weight:400;
	font-size: 16px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.saharacash-getquote2 .form-control {
    background:#fff;
	box-shadow:inset 0 0px 0px rgba(0,0,0,.075);
    height:50px;
    border: none;
	border:2px solid #7E7E7E;
    font-family:'Montserrat', sans-serif;
	font-weight:500;
	font-size: 16px;
    color: #000;
    border-radius:15px;
	padding-left:13px;
	margin-bottom:20px;
}
.saharacash-getquote2 .form-control::placeholder {
	color: #ccb8b0;
    font-family:'Montserrat', sans-serif;
	font-weight:400;
	font-size: 16px;
}
.saharacash-getquote2 #zipcode{
	margin-top:40px;
	margin-bottom:20px;
	text-align:center;
}
.saharacash-getquoteleftbtn{
	padding-top:35px;
}
.saharacash-getquoteleftbtn button {
	background-color: #fff;
	border: medium none;
	border: 2px solid #4caf50;
	border-radius: 30px;
	color: #4caf50;
    font-family:'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	padding: 10px 60px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
}
.saharacash-getquoterightbtn{
	padding-top:35px;
}
.saharacash-getquoterightbtn button {
	background-color: #4caf50;
	border: medium none;
	border: 2px solid #4caf50;
	border-radius: 30px;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	padding: 10px 60px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
	float: right;
}
.saharacash-radiowrap{
	margin-bottom:0px;
}
.saharacash-radio1{
	background:#fff;
	border-radius:15px;
	border:2px solid #7E7E7E;
	padding:15px 0px 15px 15px;
	margin-bottom:15px;
}
.saharacash-radio1 label {
	color: #3D3D3D;
    font-family:'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 15px;
	margin-bottom: 8px;
}
.saharacash-radio1 .form-check-input:checked {
	background-color: #05b693;
	border-color: #67C966;
}
.saharacash-radio1 .form-check-input[type="radio"] {
	border-radius: 50%;
	margin-top: 5px;
	margin-right: 5px;
}
.saharacash-acceptform h3 {
    font-family:'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 22px;
	color: #202020;
	margin-bottom: 20px;
}
.saharacash-accepttop{
	padding-top:20px;
}
.saharacash-accepttop h4 {
    font-family:'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color:#202020;
	margin-bottom: 60px;
}
.saharacash-accepttop h4 span.new {
	vertical-align: middle;
	display: block;
	margin-bottom: 45px;
}
.saharacash-accepttop h4 span.one {
	display: inline-block;
	font-size: 40px;
	vertical-align: top;
	margin-left: 42px;
}
.saharacash-accepttop h4 span.two {
	display: inline-block;
	font-size: 42px;
}
.saharacash-accepttop3 h3 {
    font-family:'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 28px;
	color: #1D2122;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 15px;
}
.saharacash-acceptform label {
    font-family:'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 15px;
	margin-bottom:5px;
}
.saharacash-acceptform select {
	display: block;
	padding-left: 13px;
	margin-top:0px;
	margin-bottom:2px;
	width: 100%;
	height:50px;
	border: none;
	border:2px solid #7E7E7E;
	border-radius:15px;
	background:url("public/sahara-arrow1.png") right center no-repeat;
	background-position: right 15px center;
    background-color:#fff;
	color: #000;
    font-family:'Montserrat', sans-serif;
	font-size: 15px;
	font-weight:400;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.saharacash-acceptform .form-control {
    background:#fff;
	box-shadow:inset 0 0px 0px rgba(0,0,0,.075);
    height:50px;
    border: none;
	border:2px solid #7E7E7E;
    font-family:'Montserrat', sans-serif;
	font-size: 15px;
	font-weight:500;
    color: #000;
    border-radius:15px;
	padding-left:13px;
	margin-bottom:2px;
}
.saharacash-acceptform .form-control::placeholder {
	color: #ccb8b0;
    font-family:'Montserrat', sans-serif;
	font-size: 15px;
	font-weight:400;
}
.saharacash-acceptformstep{
	margin-bottom:10px;
}
.saharacash-thanks{
	padding-top:70px;
}
.saharacash-thanks h3 {
    font-family:'Montserrat', sans-serif;
	font-size: 34px;
	font-weight: 700;
	color: #202020;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 30px;
}
.saharacash-thanks p {
    font-family:'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #111111;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 30px;
}
.saharacash-thanks a {
    font-family:'Montserrat', sans-serif;
	font-weight:700;
	font-size:16px;
	color: #111111;
	text-align: center;
	display:block;
	text-decoration:none;
}
.autovin-number{
	margin-bottom:15px;
}
.autovin-number button {
	background: #4caf50;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 16px;
	border: none;
	padding: 11px 30px;
	border-radius: 30px;
}
.site-popup h2{
    font-family:'Montserrat', sans-serif;
	font-weight:700;
	font-size:26px;
	color: #1D2122;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 5px;
}
.site-popup h3 {
    font-family:'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #4caf50;
	text-align: center;
	margin-top: 10px;
}
.site-popup h4{
    font-family:'Montserrat', sans-serif;
	font-weight:700;
	font-size:30px;
	color: #29bb6c;
	text-align: center;
	margin-bottom:10px;
}
.site-popup h4 span {
	display: inline-block;
	font-size: 18px;
	vertical-align: top;
}
.site-popup button#accept_offer_confirm_button {
	background: #4caf50;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 16px;
	border: none;
	padding: 9px 24px;
	border-radius: 30px;
	text-transform: uppercase;
	display: block;
	margin: 0px auto;
	margin-bottom: 5px;
}
.site-popup a {
    font-family:'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #f21010;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	display: block;
}
.site-popup .close{
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: .25em .25em;
	color: #000;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	border: 0;
	border-radius: .25rem;
	opacity: .5;
	text-shadow:0 0px 0 #000 !important;
}
#accept_offer_error_modal .close{
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: .25em .25em;
	color: #000;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	border: 0;
	border-radius: .25rem;
	opacity: .5;
	text-shadow:0 0px 0 #000 !important;
}
.site-popup2 h5 {
    font-family:'Montserrat', sans-serif;
	font-weight:400;
	font-size: 23px;
	color: #000;
	display:inline-block;
	margin-top: 0px;
	margin-bottom: 10px;
}
.site-popup2 .close{
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: .25em .25em;
	color: #000;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	border: 0;
	border-radius: .25rem;
	opacity: .5;
	text-shadow:0 0px 0 #000 !important;
}
.site-popup2 h2 {
    font-family:'Montserrat', sans-serif;
	font-weight:600;
	font-size: 26px;
	color:#ad1a2c;
	margin-top: 0px;
	margin-bottom:10px;
}
.site-popup2 p {
    font-family:'Montserrat', sans-serif;
	font-weight:400;
	font-size: 18px;
	color: #4F4F4F;
	line-height: 1.2;
	margin-bottom:30px;
}
.site-popup2 .form-control {
    background:#fff;
	box-shadow:inset 0 0px 0px rgba(0,0,0,.075);
    height:50px;
    border: none;
	border:2px solid #B8B8B8;
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight:500;
    color: #000;
    border-radius:30px;
	padding-left:13px;
	margin-bottom:20px;
}
.site-popup2 .form-control::placeholder {
	color: #ccb8b0;
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight:400;
}
.site-popupbtn1 button#modal_vin_prev {
	background-color: #fff;
	border: medium none;
	border: 2px solid #000;
	border-radius: 30px;
	color: #000;
    font-family:'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
	float: left;
}
.site-popupbtn2 button#modal_vin_next {
	background-color: #000;
	border: medium none;
	border: 2px solid #000;
	border-radius:30px;
	color: #FFFFFF;
    font-family:'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
	float:right;
}
.saharacash-accepttop2 p {
    font-family:'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #111111;
	line-height: 1.4;
	margin-top: 10px;
}
.acceptform-textbelow p {
    font-family:'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #111111;
	line-height: 1.4;
	margin-bottom: 0px;
}
#home_ymm_error{
	margin-bottom:0px;
	margin-top:5px;
}
.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
	padding: 15px;
}
.saharacash-acceptstep{
	padding-bottom:15px;
}
#flat-tire-checkboxes{
	color:#3D3D3D;
    font-family:'Montserrat', sans-serif;
}
#wheels-removed-checkboxes{
	color:#3D3D3D;
    font-family:'Montserrat', sans-serif;
}
#body-intact-checkboxes{
	color:#3D3D3D;
    font-family:'Montserrat', sans-serif;
}
#exterior-damage-checkboxes{
	color:#3D3D3D;
    font-family:'Montserrat', sans-serif;
}
#lights-damage-checkboxes{
	color:#3D3D3D;
    font-family:'Montserrat', sans-serif;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
.saharacash-getquote{
	margin-left:0px;
}
.saharacash-getquote2{
	margin-left:0px;
}
.saharacash-getquoteleftbtn {
	padding-top: 30px;
	margin-left: 0;
	width:50%;
	float:left;
}
.saharacash-getquoterightbtn {
	padding-top: 30px;
	margin-left: 0;
	width: 50%;
	float: right;
}
.saharacash-getquote2 #zipcode {
	margin-top: 40px;
	margin-bottom:50px;
	text-align: center;
}
.saharacash-getquote3{
	margin-left:0px;
}
.saharacash-radiowrap {
	margin-bottom:50px;
}
.saharacash-accepttop2{
	margin-left:0px;
}
.saharacash-accepttop h4 span.two {
	display: inline-block;
	font-size: 30px;
}
.saharacash-accepttop h4 span.one {
	display: inline-block;
	font-size: 30px;
	vertical-align: top;
	margin-left: 0px;
}
.saharacash-accepttop h4 {
	font-size: 24px;
}
.saharacash-accepttop h4 img {
	margin-left: 10px;
	vertical-align: middle;
	margin-top: -12px;
}
.saharacash-accepttop3{
	margin-left:0px;
}
.saharacash-acceptform{
	margin-left:0px;
}
.saharacash-thanks {
	padding-top:40px;
	margin-left: 0;
}
.saharacash-thanks h3 {
	font-size: 28px;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 20px;
}
.saharacash-thanks p {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 30px;
}
#saharacash-getquoterightbtn1{
	padding-top: 30px;
	margin-left: 0;
	width:100%;
}
.site-popupbtn1{
	width:50%;
}
.site-popupbtn2{
	width:75%;
}
.acceptform-textbelow{
	margin-left:0px;
}
	
}	

@media only screen and (max-width: 767px) {
	
.sierra-wrapmain {
	flex-direction: column-reverse !important;
	display: flex;
}	
.saharacash-getquote{
	margin-left:0px;
}
.saharacash-getquote2{
	margin-left:0px;
}
.saharacash-getquoteleftbtn {
	padding-top:10px;
	margin-left: 0;
	width:50%;
}
.saharacash-getquoterightbtn {
	padding-top:10px;
	margin-left: 0;
	width:50%;
}
.saharacash-getquote2 #zipcode {
	margin-top: 15px;
	margin-bottom:15px;
	text-align: center;
}
.saharacash-getquote3{
	margin-left:0px;
}
.saharacash-radiowrap {
	margin-bottom:0px;
}
.saharacash-accepttop2{
	margin-left:0px;
}
.saharacash-accepttop h4 span.two {
	display: inline-block;
	font-size: 30px;
}
.saharacash-accepttop h4 span.one {
	display: inline-block;
	font-size: 30px;
	vertical-align: top;
	margin-left: 0px;
}
.saharacash-accepttop h4 {
    font-family:'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 15px;
}
.saharacash-accepttop h4 img {
	margin-left: 10px;
	vertical-align: middle;
	margin-top: -12px;
}
.saharacash-accepttop h4 span.new {
	vertical-align: middle;
	display: block;
	margin-bottom: 5px;
}
.saharacash-acceptform h3{
	font-size:18px;
}
.saharacash-accepttop3{
	margin-left:0px;
}
.saharacash-acceptform{
	margin-left:0px;
}
.saharacash-thanks {
	padding-top:40px;
	margin-left: 0;
}
.saharacash-thanks h3 {
	font-size: 22px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 15px;
}
#saharacash-getquoterightbtn1{
	padding-top:0px;
	margin-left: 0;
	width:100%;
	padding-right:15px;
}
.saharacash-getquote h3 {
	font-size: 20px;
	text-align: center;
	margin-top:0px;
	margin-bottom: 5px;
}
.saharacash-getquote p {
	display:none;
}
.saharacash-getquote h2 {
	margin: 0;
	padding-bottom: 20px;
	position: relative;
	border-bottom: 3px solid #ccc;
	font-size: 26px;
	text-align: center;
}
.saharacash-accepttop3 h3 {
	font-size: 22px;
	color: #1D2122;
	text-align: center;
	margin-top: 25px;
	margin-bottom: 15px;
}
.saharacash-getquoteleftbtn {
	width: 40%;
	float: left;
	margin-left: 15px;
}
.saharacash-getquoteleftbtn button {
	background-color: #fff;
	border: medium none;
	border: 2px solid #4caf50;
	border-radius: 30px;
	color: #4caf50;
	font-size: 15px;
	font-weight: 600;
	padding: 10px 50px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
}
.saharacash-getquoterightbtn{
	width:54%;
	float:left;
}
.saharacash-getquoterightbtn button {
	background-color: #4caf50;
	border: medium none;
	border: 2px solid #4caf50;
	border-radius: 30px;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 50px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
	float: right;
}
button#accept_offer_btn {
	background-color: #4caf50;
	border: medium none;
	border: 2px solid #4caf50;
	border-radius: 30px;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
	float: right;
}
.saharacash-thanks p {
	font-size: 16px;
	color: #111111;
	line-height: 1.2;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 30px;
}
.site-popupbtn1{
	width: 50%;
	float: left;
}
.site-popupbtn2 {
	width: 50%;
	float: left;
}
.acceptform-textbelow{
	margin-left:0px;
}
.saharacash-getquote2 select {
	display: block;
	padding-left: 13px;
	margin-bottom: 10px;
	width: 100%;
	height: 40px;
	border: none;
	border: 2px solid #7E7E7E;
	border-radius: 15px;
	background-position: right 15px center;
	background-color: #fff;
	color: #000;
	font-size: 14px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.saharacash-getquote2 .form-control {
	background: #fff;
	box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
	height: 40px;
	border: none;
	border: 2px solid #B8B8B8;
	font-size: 14px;
	font-weight: 500;
	color: #000;
	border-radius: 15px;
	padding-left: 13px;
	margin-bottom: 20px;
}
.saharacash-radio1 {
	border-radius: 15px;
	border: 2px solid #7E7E7E;
	padding: 7px 0px 5px 15px;
	margin-bottom: 15px;
}
#error_title{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_be_driven{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_taken_out{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_lights_damaged{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_inflated{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_exterior_damage{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_ymm{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_vin_init{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_fob_availability{
	font-size: 16px !important;
	margin-bottom: 1px;
}
.flat-tire-getquote{
	margin-left:0px;
}
.wheels-removed-getquote{
	margin-left:0px;
}
.saharacash-radio1 label {
	font-weight: 500;
	font-size: 13px;
	margin-bottom: 8px;
}
.acceptform-textbelow p {
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #111111;
	line-height: 1.3;
	margin-bottom: 10px;
}
.saharacash-accepttop2 p {
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #111111;
	line-height: 1.4;
	margin-top: 10px;
}
.site-popup2 h2 {
    font-family:'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: #ad1a2c;
	margin-top: 0px;
	margin-bottom: 10px;
}
.site-popup2 p {
    font-family:'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #4F4F4F;
	line-height: 1.2;
	margin-bottom: 30px;
}
.site-popup2 h5 {
    font-family:'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 21px;
	color: #000;
	display: inline-block;
	margin-top: 0px;
	margin-bottom: 10px;
}
.autovin-number button {
	background: #4caf50;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 16px;
	border: none;
	padding: 10px 30px;
	border-radius: 30px;
}
	
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
.sierra-wrapmain {
	flex-direction: column-reverse !important;
	display: flex;
}
	
.saharacash-getquote{
	margin-left:0px;
}
.saharacash-getquote2{
	margin-left:0px;
}
.saharacash-getquoteleftbtn {
	padding-top:10px;
	margin-left: 0;
	width:50%;
}
.saharacash-getquoterightbtn {
	padding-top:10px;
	margin-left: 0;
	width:50%;
}
.saharacash-getquote2 #zipcode {
	margin-top: 15px;
	margin-bottom:15px;
	text-align: center;
}
.saharacash-getquote3{
	margin-left:0px;
}
.saharacash-radiowrap {
	margin-bottom:0px;
}
.saharacash-accepttop2{
	margin-left:0px;
}
.saharacash-accepttop h4 span.two {
	display: inline-block;
	font-size: 30px;
}
.saharacash-accepttop h4 span.one {
	display: inline-block;
	font-size: 30px;
	vertical-align: top;
	margin-left: 0px;
}
.saharacash-accepttop h4 {
    font-family:'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 15px;
}
.saharacash-accepttop h4 img {
	margin-left: 10px;
	vertical-align: middle;
	margin-top: -12px;
}
.saharacash-accepttop h4 span.new {
	vertical-align: middle;
	display: block;
	margin-bottom: 5px;
}
.saharacash-acceptform h3{
	font-size:22px;
}
.saharacash-accepttop3{
	margin-left:0px;
}
.saharacash-acceptform{
	margin-left:0px;
}
.saharacash-thanks {
	padding-top:40px;
	margin-left: 0;
}
.saharacash-thanks h3 {
	font-size: 22px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 15px;
}
#saharacash-getquoterightbtn1{
	padding-top:0px;
	margin-left: 0;
	width:100%;
	padding-right:15px;
}
.saharacash-getquote h3 {
	font-size: 23px;
	text-align: center;
	margin-top:0px;
	margin-bottom: 5px;
}
.saharacash-getquote p {
	display:none;
}
.saharacash-getquote h2 {
	margin: 0;
	padding-bottom: 20px;
	position: relative;
	border-bottom: 3px solid #ccc;
	font-size: 26px;
	text-align: center;
}
.saharacash-accepttop3 h3 {
	font-size: 22px;
	color: #1D2122;
	text-align: center;
	margin-top: 25px;
	margin-bottom: 15px;
}
.saharacash-getquoteleftbtn {
	width: 40%;
	float: left;
	margin-left: 15px;
}
.saharacash-getquoteleftbtn button {
	background-color: #fff;
	border: medium none;
	border: 2px solid #4caf50;
	border-radius: 30px;
	color: #4caf50;
	font-size: 15px;
	font-weight: 600;
	padding: 10px 50px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
}
.saharacash-getquoterightbtn{
	width:54%;
	float:left;
}
.saharacash-getquoterightbtn button {
	background-color: #4caf50;
	border: medium none;
	border: 2px solid #4caf50;
	border-radius: 30px;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 50px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
	float: right;
}
button#accept_offer_btn {
	background-color: #4caf50;
	border: medium none;
	border: 2px solid #4caf50;
	border-radius: 30px;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.5s ease 0s;
	margin-bottom: 0px;
	float: right;
}
.saharacash-thanks p {
	font-size: 16px;
	color: #111111;
	line-height: 1.2;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 30px;
}
.site-popupbtn1{
	width: 50%;
	float: left;
}
.site-popupbtn2 {
	width: 50%;
	float: left;
}
.acceptform-textbelow{
	margin-left:0px;
}
.saharacash-getquote2 select {
	display: block;
	padding-left: 13px;
	margin-bottom: 10px;
	width: 100%;
	height: 40px;
	border: none;
	border: 2px solid #7E7E7E;
	border-radius: 15px;
	background-position: right 15px center;
	background-color: #fff;
	color: #000;
	font-size: 14px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.saharacash-getquote2 .form-control {
	background: #fff;
	box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
	height: 40px;
	border: none;
	border: 2px solid #B8B8B8;
	font-size: 14px;
	font-weight: 500;
	color: #000;
	border-radius: 15px;
	padding-left: 13px;
	margin-bottom: 20px;
}
.saharacash-radio1 {
	border-radius: 15px;
	border: 2px solid #7E7E7E;
	padding: 7px 0px 5px 15px;
	margin-bottom: 15px;
}
#error_title{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_be_driven{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_taken_out{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_lights_damaged{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_inflated{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_exterior_damage{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_ymm{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_vin_init{
	font-size: 16px !important;
	margin-bottom: 1px;
}
#error_fob_availability{
	font-size: 16px !important;
	margin-bottom: 1px;
}
.flat-tire-getquote{
	margin-left:0px;
}
.wheels-removed-getquote{
	margin-left:0px;
}
.saharacash-radio1 label {
	font-weight: 500;
	font-size: 13px;
	margin-bottom: 8px;
}
.acceptform-textbelow p {
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #111111;
	line-height: 1.3;
	margin-bottom: 10px;
}
.saharacash-accepttop2 p {
    font-family:'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #111111;
	line-height: 1.4;
	margin-top: 10px;
}
.site-popup2 h2 {
    font-family:'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: #ad1a2c;
	margin-top: 0px;
	margin-bottom: 10px;
}
.site-popup2 p {
    font-family:'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #4F4F4F;
	line-height: 1.2;
	margin-bottom: 30px;
}
.site-popup2 h5 {
    font-family:'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 21px;
	color: #000;
	display: inline-block;
	margin-top: 0px;
	margin-bottom: 10px;
}
.autovin-number button {
	background: #4caf50;
	color: #fff;
    font-family:'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 16px;
	border: none;
	padding: 10px 30px;
	border-radius: 30px;
}
	
}