
/* BOOTSTRAP NORMALIZE CSS begin */

/*
// Reset CSS
// Adapted from http://github.com/necolas/normalize.css
// --------------------------------------------------

// Display in IE6-9 and FF3
// -------------------------
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
/*
// Display block in IE6-9 and FF3
// -------------------------
*/
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/*
// Prevents modern browsers from displaying 'audio' without controls
// -------------------------
*/
audio:not([controls]) {
    display: none;
}
/*
// Base settings
// -------------------------
*/
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
/*
// Focus states
*/
a:focus {
  .tab-focus();
}
/*
// Hover & Active
*/
a:hover,
a:active {
  outline: 0;
}
/*
// Prevents sub and sup affecting line-height in all browsers
// -------------------------
*/
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/*
// Img border in a's and image quality
// -------------------------
*/
img {
  /* Responsive images (ensure images don't scale beyond their parents) */
  max-width: 100%; /* Part 1: Set a maxium relative to the parent */
  *width: auto\9; /* IE7-8 need help adjusting responsive images */
  *height: auto; /* Part 2: Scale the height according to the width, otherwise you get stretching */

  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
/*
// Prevent max-width from affecting Google Maps
*/
#map_canvas img,
.google-maps img {
  max-width: none;
}
/*
// Forms
// -------------------------

// Font size in all browsers, margin changes, misc consistency
*/
button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}
button,
input {
  *overflow: visible; /* Inner spacing ie IE6/7*/
  line-height: normal; /* FF3/4 have !important on line-height in UA stylesheet*/
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Inner padding and border oddities in FF3/4 */
  padding: 0;
  border: 0;
}
button,
html input[type="button"], /*// Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.*/
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /*// Corrects inability to style clickable `input` types in iOS.*/
    cursor: pointer; /*// Improves usability and consistency of cursor style between image-type `input` and others.*/
}
/*label,*/
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
    cursor: pointer; /*// Improves usability and consistency of cursor style between image-type `input` and others.*/
}
input[type="search"] { /*// Appearance in Safari/Chrome*/
  .box-sizing(content-box);
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; /*// Inner-padding issues in Chrome OSX, Safari 5*/
}
textarea {
  overflow: auto; /*// Remove vertical scrollbar in IE6-9*/
  vertical-align: top; /*// Readability and alignment cross-browser*/
}

/* BOOTSTRAP NORMALIZE CSS end */


/* general styles begin ------------------------------------------------------------------------ */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin:0; 
  padding:0;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body { 
    height:100%;
}

body{
	background: #ededed;
	font-family: 'Source Sans Pro', sans-serif;
	margin: 0;
	padding: 0px;
	color: #555555;
	font-size: 19px;
	line-height: 1.5;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}
a, a:active {
  outline: 0;
}
.clearfix{
    clear: both;
}
img {
	border: none;
}

p {
	font-weight: normal;
	margin-top: 10px;
	}

a {
	color: #c72e03;
	text-decoration: none;
}
a:hover,
a:visited{
    text-decoration: none;
}
h1 {
	font-size: 32px;
	color: #335266;
	margin: 0;
	padding: 0;
	font-weight: normal;
	}

h3 {
	font-size: 27px;
	color: #335266;
	margin: 0;
	padding: 0;
	font-weight: normal;
	}


h4 {
	font-size:21px;
	color: #ffffff;
	margin: 0;
	padding: 0;
	font-weight: normal;
	}

blockquote{
    display: block;
    margin: 22px 0 0 0;
    padding: 0;
    text-align: left;
	font-size: 21px;
	line-height: 0.8;
	color: #525252;
	font-style:oblique;
}
blockquote::before{
    content: "“";
    display: inline-block;
    text-align: left;
    font-size: 53px;
    line-height: 0.6;
    vertical-align: middle;
    color: #bdbdbd;
    font-style: oblique;
    padding: 0 7px 0 0;
}

pre {
	font-size: 15px;
	color: #888888;
	display: block;
	text-align: left;
	margin: 2px 0 8px 30px;
}

div.hr hr { display: none;}
div.hr {
	height: 30px;
	background: url(../images/hr.png) no-repeat scroll center;
	clear: both;
	margin: 30px 0 20px 0;
	}


input, select, textarea {  
    font-size:1em;
    color: #2e7fb4;
    border: solid 1px #c6c6c6;
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
input:hover, select:hover, textarea:hover {
    color: #2e7fb4;
    border: solid 1px #2e7fb4;
    background: #f2faff;
}
input:disabled:hover, select:disabled:hover, textarea:disabled:hover {
    cursor: not-allowed;
    pointer-events: all !important;
}
font {
    font-size:0.8461em;
    color:#949494;
}
select {
    background: transparent;
    padding: 7px;
    width: 100%;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
input[type=checkbox], input[type=radio] {
    vertical-align: middle;
    border:none;
    padding:0;
    margin:0;
}
input[type=radio]  {
    margin-right:10px;
}
body .check_marg {
    margin-right:5px;
}
input[type=text],
input[type=password]{
    padding: 8px 7px 8px 7px;
    width: 193px;
    width: 100%;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
textarea{
    padding: 8px 7px 8px 7px;
    width: 100%;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    resize: vertical;
}



/* general styles end ------------------------------------------------------------------------ */


/* content styles begin ------------------------------------------------------------------------ */

#content{
    margin: 0;
}
#main{
   width: 100%;
   max-width: 100%;
}
#main_header{
    min-height: 100px;
    margin: 0 auto;
    width: 1280px;
    display: none;
}
#main #content{
    font-size: 1.0em;
}

.container {
    max-width: 100%;
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

#main_why_menu{
    display: block;
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
    border-top: 1px solid #dbdbdb;
}
#main_wrapper{
    padding-bottom: 20px;
}
#main_slider_menu{
    margin-bottom: 15px;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2) inset;
}
#main_headline_video{
    margin-bottom: 0;
}

#main_why_menu .main_menu_wrap{
    display: block;
    text-align: center;
}
#main_why_menu .main_menu{
    display: inline-block;
    margin: 0 auto;
}
#main_why_menu .main_menu li{
    list-style-type: none;
    float: left;
}
#main_why_menu .main_menu li a{
    background: #ffffff;
    display: block;
    font-size: 1.1em;
    font-weight: 400;
    margin: 0 15px 15px 0;
    padding: 7px 20px 8px 20px;
    color: #2e7fb4;
    border-radius: 5px;
    text-align: left;
    line-height: 1.2;
}
#main a i{
    padding-right: 10px;
    font-size: 15px;
    vertical-align: middle;
}
#main a span{
    vertical-align: middle;
}

#main a.btn_contact_menu,
#main a.btn_search_menu{
    background: #54a500;
    display: inline-block;
    font-size: 1.4em;
    font-weight: 400;
    /*margin: 20px 0 0 0;*/
    margin: 0;
    padding: 7px 20px 10px 20px;
    color: #ffffff;
    border-radius: 5px;
    text-align: left;
    line-height: 1;
}
#main a.btn_contact_menu:hover{
    background: #468900;
    color: #ffffff;
}
#main a.btn_search_menu{
    background: #5099c8;
}
#main a.btn_search_menu:hover{
    background: #427fa6;
    color: #ffffff;
}
#main a.btn_contact_menu i,
#main a.btn_search_menu i{
    padding-right: 10px;
    padding-top: 3px;
    font-size: 21px;
    vertical-align: top;
}


#main_why_menu ul li a:hover{
    background: #d01414;
    color: #ffffff;
}

#main_why_menu .main_menu li:last-of-type a{
    margin: 0 0 15px 0;
}

.bgr-car{
    background-image: url(../images/webcar-vrei-sa-cumperi-o-masina-premium.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    width: 100%;
    min-height: 530px;
    padding: 70px 0 0 0;
}

.orange_title {
	font-size: 33px;
	color: #d01414;
	font-weight: normal;
}

.gray_title {
	font-size: 34px;
	color: #335266;
	font-weight: normal;
}
.plus_title {
	font-size: 27px;
	color: #335266;
	font-weight: normal;
}
.gray_title_sm{
	font-size: 25px;
}

/*---- header headlines begin ----*/


.lc_00{
    display: block;
}
.lc_00 h1{
    color: #203340;
    font-size: 37px;
    margin-bottom: 40px;
}
.intro_separator_wrap{
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
}
.intro_separator{
    background: #dde9f5;
    padding: 2px 15px 5px 15px;
    border-radius: 5px;
    margin: 0;
    display: block;
    font-size: 23px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lc_01{
    display: block;
    padding: 30px 30px 30px 30px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.5);
}
.lc_01 h1,
.lc_02 h1{
    color: #203340;
    font-size: 22px;
}
.lc_01 h1 span.tp,
.lc_02 h1 span.tp{
    color: #d01414;
    font-size: 29px;
    line-height: 1.0;
    margin-bottom: 7px;
    display: block;
}
.lc_01 h1 span.bt,
.lc_02 h1 span.bt{
    display: block;
}

.lc_02{
    display: block;
    background: rgba(255,255,255,0.95);
    padding: 30px 30px 10px 30px;
    border-radius: 5px;
}
.carsearch_text{
    color: #203340;
    font-weight: normal;
    font-size: 19px;
}

#main a i {
    font-size: 15px;
    padding-right: 10px;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .row.row-eq-height{ /*makes all three columns same height*/
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }
    .row.row-eq-height > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }
}


/*---- header headlines end ----*/


#top_logo {
	float: left;
	width: 100%;
	min-height: 100px;
	padding: 20px 0 20px 0;
}
#top_logo a{
    display: block;
}

#header {
    color: #333;
    margin: 0 auto;
    max-width: 1280px;
    padding-left: 30px;
    padding-right: 30px;
}

.benefits_wrapper {
    display: block;
	text-align:left;
	margin-bottom: 15px;
}
.benefits_wrapper .dblock{
	display: block;
	}
.benefit_item {
    display: block;
	text-align: left;
	margin-top: 26px;
}
.benefit_item li{
	padding: 0;
	margin: 0;
}
.benefit_item_right {
	display: block;
	margin-top: 12px;
}
.benefit_item_first {
	display: block;
	text-align: left;
	margin-top: 40px;
}
.bicons{
	float: left;
	width: 85px;
	height: 65px;
	display: inline-block;
}
/*-- background images (sp_why_webcar) moved --*/

.bitexts{
	float: left;
	display: block;
}
.bitexts .redt{
	color: #D01414;
}
.sbicon {
	display: inline-block;
	float: left;
	width: 125px;
	height: 125px;
	margin-right: 15px;
	margin-bottom: 10px;
}
.info_icon{
    background: url(../images/sp_why_webcar.png) no-repeat 0 -714px;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 2px 5px 0 5px;
}
.benefit_item img, .benefit_item_first img, .benefit_item_right img {
	float: left;
}
.webcar_package{
    float: left;
    margin: 0 0 20px 0;
}
.download_button {
	float: left;
	margin: 10px 0 0 0;
	width: 410px;
}

.download_button a {
	font-size:14px;
	color: #c72e03;
	text-decoration:underline;
}

.download_button a:hover {
	color: #525252;
	text-decoration:underline;
}
.right_content{
    display: block;
}
.right_content.second{
    display: block;
    margin: 25px 0 0 0;
}
.right_content2{
    display: block;
    float: left;
    margin: 25px 0 0 0;
    border-top: 1px solid #dce4e9;
    padding: 15px 0 0 0;
    color: #335266;
}
.right_content2 h3{
    color: #3A3A3A;
    font-size: 29px;
}
.right_content3{
    display: block;
    font-size: 23px;
    color: #335266;
}
.right_content3 span{
    display: block;
}
.right_content3 span.ben01{
    font-size: 28px;
    margin: 10px 0 0 0;
}
.right_content3 span.ben02{
    font-size: 21px;
    margin: 15px 0 0 0;
}
.video_package{
    display: block;
    margin-bottom: 15px;
}

/*-- right container styles end --*/

.right_content {
    display: block;
}

.testimonials_content {
	display: block;	
	border-top: 1px solid #dbdbdb;
	padding-top: 30px;
	margin-bottom: 30px;
}
.testimonials_content h3{
	color: #3A3A3A;
}
.parteners_content{
    display: block; 
    border-top: 1px solid #dbdbdb;
    padding-top: 30px;
}
.parteners_content h3{
    color: #3A3A3A;
    margin: 0 0 18px 0;
}
.parteners_content a{
    display: inline-block;
    float: left;
    margin: 0 30px 30px 0;
}
.parteners_content a img {
    max-height: 50px;
}

/*-- form box end --*/


#why-webcar-form-container .form-control{
    background: #eaf5fc;
    color: #2e7fb4;
    border: 0 none;
    font-size: 1em;
    height: 41px;
}
#why-webcar-form-container .form-title h2 {
    color: #2e7fb4;
    font-weight: 400;
    font-size: 1.68rem;
    line-height: 1.3;
}
#why-webcar-form-container .form-control:hover,
#why-webcar-form-container .form-control:focus {
    background: #d5e9f6;
    outline: 0 none;
    color: #2e7fb4;
    border: 0 none;
}
#why-webcar-form-container textarea.form-control{
    height: auto;
}
#why-webcar-form-container .form-control::placeholder{
    color: #999999;
}
#why-webcar-form-container .bootstrap-select.form-control {
    border: 0 none;
}
#why-webcar-form-container .bootstrap-select.form-control:hover,
#why-webcar-form-container .bootstrap-select.form-control:focus,
#why-webcar-form-container .bootstrap-select.form-control:active,
#why-webcar-form-container .bootstrap-select.form-control.show{
    background: #d5e9f6;
}
#why-webcar-form-container .bootstrap-select.form-control .btn.dropdown-toggle.btn-default{
    height: 41px;
}
#why-webcar-form-container .bootstrap-select.form-control.show .btn.dropdown-toggle.btn-default:hover,
#why-webcar-form-container .bootstrap-select.form-control.show .btn.dropdown-toggle.btn-default:focus,
#why-webcar-form-container .bootstrap-select.form-control.show .btn.dropdown-toggle.btn-default:active{
    background: #d5e9f6;
}
#why-webcar-form-container .bootstrap-select .btn {
    background: #eaf5fc;
    color: #2e7fb4;
}
#why-webcar-form-container .dropdown-menu.open.show{
    margin: 2px 0 0 0;
    font-size: 1.125em;
    color: #333333;
    background: #eaf5fc;
    border: 0 none;
    border-radius: .25rem;
    -moz-border-radius: .25rem;
    -webkit-border-radius: .25rem;
}
#why-webcar-form-container .dropdown-menu.open.show:hover{
    background: #eaf5fc;
    border: 0 none;
}
#why-webcar-form-container .bootstrap-select.show .dropdown-menu a {
    color: #333333;
}
#why-webcar-form-container .bootstrap-select.show .dropdown-menu a:hover {
    background: #d5e9f6;
    color: #2e7fb4;
}

#inmat-container label, #phone-container label, #captcha-container label{
  display: block;
}
#inmat-container .bootstrap-select{
  width: calc(50% - 7px);
}
#inmat-container .bootstrap-select:last-child{
  margin-left:10px;
}
#phone-container .bootstrap-select{
  width: 140px;
  margin-right: 10px;
}
#phone-container input{
  width: calc(100% - 154px);
  display: inline-block;
  vertical-align: bottom;
}

#captcha-container input{
  width: calc(100% - 158px);
  margin-right: 10px;
  display: inline-block;
  vertical-align: bottom;
}

#why-webcar-form-container .approval-c-form{
    margin-left: 0;
    margin-right: 0;
}

#why-webcar-form-container .col{
    width: auto !important;
    float: none !important;
    margin-bottom: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
#why-webcar-form-container .form-f-checkbox-label .checkmark{
    border: 1px solid #c6c6c6;
}

label.error.valid {
    display: none !important;
}

.form-control:hover,
.form-control:active,
.form-control:focus{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.bp_box a.capcha_refresh{
    background: url(../images/sp_why_webcar.png) no-repeat 0 -460px;
    display: inline-block;
    width: 29px;
    height: 29px;
    padding: 4px;
    vertical-align: middle;
    margin: 5px 0 0 10px;
    float: right;
}
.bp_box a.capcha_refresh:hover{
    background: url(../images/sp_why_webcar.png) no-repeat -56px -460px;
}
/*-- form box end --*/


.right_content .orange_title, .full_width  .orange_title {
	font-size: 33px;
	color: #335266;
	font-weight: normal;
}

.right_content .gray_title, .full_width  .gray_title {
	font-size: 33px;
	color: #d01414;
	font-weight: normal;
}

.right_content.second{
	margin: 0;
}

.btn_contact{
   float: none;
    background: #54a500;
    border: 1px solid #54a500;
    border-radius: 5px;
    color: #ffffff;
    display: block;
    font-size: 1.813em;
    margin: 0;
    padding: 2px 20px 2px 20px;
    vertical-align: middle;
    line-height: 1.5;
   position: relative;
   /* white-space: nowrap; */
   text-align: center;
}
.btn_contact.btn_package {
    float: left;
    display: inline-block;
    margin: 3px 20px 9px 0;
    padding: 2px 20px 2px 20px;
}

.btn_contact:hover{
    background: #468900;
    color: #ffffff;
}
.btn_contact.sm{
    background: #5099c8;
    border: 0 none;
    float: none;
    color: #ffffff;
    font-size: 0.8em;
    margin: 3px 0 9px 20px;
    padding: 2px 10px 2px 10px;
}
.btn_contact.sm:hover{
    background: #427fa6;
    color: #ffffff;
}
.btn_contact:disabled{
  background-color: #54a500;
  cursor: default;
}

.btn_phone{
    float: none;  
    background: #ffffff;
    border: 1px solid #c6c6c6;
    border-radius: 5px;
    color: #54a500;
    display: block;
    font-size: 1.813em;
    margin: 0;
    padding: 2px 20px 2px 20px;
    vertical-align: middle;
    line-height: 1.5;
    position: relative;
    /* white-space: nowrap; */
    text-align: center;
}

.btn_phone.btn_package {
    float: none;
    display: inline-block;
    margin: 3px 0 9px 0;
    padding: 2px 20px 2px 20px;
}

span.btn_phone{
	display: inline-block;
	width: 217px;
	height: 50px;
	float: left;
}


.social {
	padding:0;
	}

.social img, img.a {
	padding:2px 0 0 0;
	}

.social a:hover {
	filter: gray;
	}

.full_width {
	margin: 0 auto;
	width: 960px;
	padding-bottom:50px;
	}

.full_width ul.gallery li {
	display: inline;
	margin: 0 17px 0 0;
	}

.full_width2 {
	margin: 0 auto;
	width: 960px;
	clear: both;
	padding-bottom:50px;
	}

.full_width2 ul.gallery li {
	display: inline;
	margin: 0 17px 0 0;
	}

#gallery {
	padding:20px 0 20px 0;
	}

#gallery img, img.a {
	padding:2px 0 0 0;
	}

ul {
	margin: 10px 0 0 0;
	padding: 0;
	list-style:none;
	list-style-position: inside;
	list-style-type:disc;
	}

li {
	padding: 0 0 0 0;
	margin:0;
	}




/***********************************************************************************************************************
 STYLES FOR Tipsy Rollovers
************************************************************************************************************************/

.tipsy { padding: 5px; font-size: 11px; opacity: 1.0; filter: alpha(opacity=100); background-repeat: no-repeat;  background-image: url(../images/tipsy.gif); margin-top: 10px; 	color:#1F242F; font-family: Helvetica, Arial, sans-serif; }
  .tipsy-inner { padding: 5px 8px 4px 8px; background-color: #0969a6; color: white; max-width: 500px; text-align: center; }
  .tipsy-inner { -moz-border-radius:3px; -webkit-border-radius:3px; }
  .tipsy-north { background-position: top center; }
  .tipsy-south { background-position: bottom center;}
  .tipsy-east { background-position: right center; }
  .tipsy-west { background-position: left center; }


 .pp_nav p {
	font-size:20px;
	color: #8d8e92;
	margin:10px 0 5px 15px;
	z-index:9999;
	text-shadow: none;
	}

.pp_description {
	font-size:20px;
	color: #8d8e92;
	margin:10px 0 5px 15px;
	z-index:9999;
	text-shadow: none;
	}



/***********************************************************************************************************************
 STYLES FOR CONTACT FORM
************************************************************************************************************************/

.contact_wrapper {
    float: left;
}

.form_error {
    border:  1px solid #406a27;
}

#thanks {
    border:  1px solid #bcbcbc;
    width: 400px;
    padding: 0px 10px 0px 0px;
    background-color:#f2f3ea;
    text-align: left;
}

#contactmessage {
    clear:both;
    padding-top: 20px;
    font-size:20px;
    color: #ffffff;
    text-align:left;
}

.fleft {
    float:left;
}
.fright {
    float:right;
}
.clear {
    clear:both;
}
.bold{
    font-weight:bold;
}
.error {
    color: #D31414;
    font-weight: normal;
    display: block;
}

.leasing-partners{
    display: block;
    margin: 20px 0 0 0;
}
.leasing-partners img{
    max-width: 160px;
    display: inline-block;
    float: left;
    margin: 0 30px 20px 0;
}

#phone_info{
    font-size: 13px;
}

/*--- new footer begin ---*/

#footer_container{
    padding-bottom: 25px;
}
#footer_wrapper {
	clear: both;
	background: #2a75a2;
}

#footer_bottom {
    display: block;
	font-size: 15px;
	font-weight: normal;
	padding: 10px 30px 10px 30px;
}
#footer_bottom span{
    display: inline-block;
    color: rgba(255,255,255,0.5);
}
#main .f_copyright{
    float: left;
    display: inline-block;
    padding-top: 12px;
}
#main .f_top{
    width: auto;
    float: right;
}
#main .f_top a{
    background: transparent;
    display: inline-block;
    text-align: center;
    color: rgba(255,255,255,0.5);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
#main .f_top a i{
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 2em;
    line-height: 0.8;
    padding: 0 5px 0 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
#main .f_top a:hover i{
    border: 1px solid rgba(255,255,255,0.7);
    color: rgba(255,255,255,1);
}


/*--- new footer end ---*/

.box_blue,
.box_gray,
.box_white{
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    padding: 30px 40px 30px 40px;
}

.box_blue{
    background-color: #dde9f5;
    border: 1px solid #cecece;
}
.box_gray{
    background-color: #cbd5dd;
    border: 1px solid #cecece;
}
.box_white{
    background-color: #ffffff;
}

.box_white.main_menu{
    padding: 30px 20px 30px 20px;
}

/* content styles begin ------------------------------------------------------------------------ */


/* popup styles begin ------------------------------------------------------------------------ */


#min-price-error-wrapper{
    display: none;
    /*display: block; this is for testing purposes */ 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 15px 0 15px;
    background: rgba(46, 127, 180, 0.75);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    z-index: 10000;
    text-align: center;
}
#min-price-error{
    background: #ffffff;
    display: inline-block;
    margin: 20px 20px 20px 20px;
    padding: 25px 30px 25px 26px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-align: left;
    width: 70%;
}
#min-price-error-text{
    display: block;
    margin: 0 0 20px 0;
}
a.btn_sm_1_ns, a.btn_sm_2_ns, a.btn_sm_3_ns, a.btn_sm_4_ns, a.btn_sm_5_ns {
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    font-size: 1.188em;
    color: #ffffff !important;
    font-weight: 300;
    padding: 6px 15px 7px;
    text-decoration: none;
    transition: all 0.2s ease 0s;
}
a.btn_sm_1_ns {
    background: #5099c8 none repeat scroll 0 0;
}
a.btn_sm_1_ns:hover {
    background: #2677ab none repeat scroll 0 0;
}
.top_box_white {
    color: #d31414;
    display: block;
    font-weight: 700;
    margin: 0 0 10px 0;
    padding: 0;
    text-transform: uppercase;
}

/* popup styles end ------------------------------------------------------------------------ */

.app-download-icon{
    display: inline-block;
    max-width: 150px;
    margin-right: 5px;
    margin-bottom: 20px;
}
.app-download-icon:hover{
    opacity: 0.75;
}
.carsearch_headline,
.intro_headline{
    margin-bottom:20px;
}

/*-------------------------------Transition applies-------------------------------*/


.btn_contact,
#main_why_menu .main_menu li a,
.btn_contact_menu,
.btn_search_menu{
    -moz-transition: all .1s;
    -o-transition: all .1s;
    -webkit-transition: all .1s;
    transition: all .1s;
}

.display-make{
 display: block;
 font-size: 15px;
 margin: 15px 0 0 0;
}
.display-make .sm-link{
 font-size: 15px;
 padding: 5px 7px 5px 7px;
}
.display-make .sm-link:first-of-type{
    padding: 5px 7px 5px 0;
}

/* Hiding the main menu */
#menu,
#content_head,
#footer {
    display: none;
}

.wl_lang .lang-sel {
    font-size: 16px;
}




/* ------------------------------------------------------------------------- */
/*-------------------------------Media queries-------------------------------*/
/* ------------------------------------------------------------------------- */


/* [1280] ----------------------------------------------------------------------- */


@media (max-width: 1280px) {
    btn_phone, btn_contact { font-size: 1.5em; }
}

/* [1170] ----------------------------------------------------------------------- */


@media (max-width: 1170px) {
    .lc_00 h1 { font-size: 33px; }
}

/* [992] ------------------------------------------------------------------------ */


@media (max-width: 991px) {
    .bgr-car { padding: 40px 0 0; }
    .lc_00 h1 { font-size: 31px; }
    .lc_01 h1, .lc_02 h1 { font-size: 24px; }
    .lc_01 h1 span, .lc_02 h1 span { font-size: 29px; }
    #footer_middle .f_form_group{ float: none; display: block; width: 100%; }
    #main a.btn_contact_menu i, #main a.btn_search_menu i { display: block; font-size: 23px; padding-right: 5px; padding-top: 3px; padding-bottom: 10px; text-align: center;}
    #main a.btn_contact_menu, #main a.btn_search_menu { font-size: 1.2em; padding: 10px 20px 14px 20px; }
    /*.wl_motto_phone{ margin-bottom: 20px; }*/
    btn_phone, btn_contact { font-size: 1.813em; }
}


/* [768] ------------------------------------------------------------------------ */


@media (max-width: 767px) {
    /*.wl_logo { margin-right: 0; }
    .wl_lang { display: block; width: 100%; margin: 15px 0 15px 0; border-left: 0 none; border-top: 1px solid #bbbbbb;}
    .wl_lang .dropdown-toggle { padding: 15px 0 2px 0; }
    .wl_lang .dropdown-menu { top: 41px; }*/
    .bgr-car{ background-position: 30% top; background-size: cover; padding: 30px 0 30px 0; }
    .orange_title { font-size: 29px; }
    .right_content .gray_title, .full_width .gray_title { font-size: 29px; }
    .right_content .orange_title, .full_width .orange_title { font-size: 29px; }
    .btn_contact { font-size: 1.5em; }
    .btn_phone { font-size: 1.5em; }
    .box_blue, .box_gray, .box_white {  padding: 20px 20px 20px 20px; }
    .form-group.captcha { margin-bottom: 20px; }
    .right_content3 span.ben01 { font-size: 25px; }
    #main_why_menu .main_menu li a { font-size: 1.3em; padding: 7px 20px 8px 20px; }
    #min-price-error{ margin: 10px; padding: 15px 15px 15px 15px; width: 90%; }
    #main a.btn_contact_menu i, #main a.btn_search_menu i { display: inline-block; font-size: 17px; padding-right: 5px; padding-top: 3px; padding-bottom: 0; text-align: left; }
    #main a.btn_contact_menu, #main a.btn_search_menu { font-size: 1.4em; padding: 7px 20px 10px 20px; margin: 15px 0 0 0; }
    .intro_separator_wrap{ position: static; }
    .intro_separator{ margin: 20px 0 20px 0; display: inline-block; position: static; top: auto; left: auto; transform: none; }
    .lc_01{ background: rgba(255,255,255,0.95); border: o none; }
    .lc_01 h1, .lc_02 h1 { font-size: 22px; }
    .lc_01 h1 span, .lc_02 h1 span { font-size: 26px; }
    #main { padding: 0px; margin-left: 0px; margin-right: 0px; }
    .app-download-icon{ max-width: 200px; }
}


/* [575] ------------------------------------------------------------------------ */

@media (max-width: 575px) {
    #footer_bottom { text-align: center; }
    #footer_bottom span { border-bottom: 1px solid rgba(255,255,255,0.3); }
    #main .f_copyright { float: none; display: block; padding-top: 0; padding-bottom: 10px; margin-bottom: 20px; }
    #main .f_top { float: none; display: block; }
}


/* [480] ------------------------------------------------------------------------ */


@media (max-width: 479px) {
    .container { padding-left: 15px; padding-right: 15px; }
    /*.wl_logo { float: none; display: block; width: 100%; height: auto; }
    .wl_motto { float: none; display: inline-block; height: 30px; background: url(../images/sp_base.png) no-repeat 0 -60px; }
    .wl_phone_no { float: none; display: block; margin-top: 0; width: 100%; border-top: 1px solid #bbbbbb; }
    .wl_phone_no span { font-size: 19px; margin: 15px 0 0 0; padding: 0; border-left: 0 none; }
    .wl_delivery { float: none; display: block; width: 100%; margin: 0; }
    .wl_delivery span { border-left: 0 none; display: block; margin: 4px 0 0 0; padding: 0; }
    .wl_lang { float: none; display: block; width: 100%; margin: 15px 0 15px 0; border-left: 0 none; border-top: 1px solid #bbbbbb;}
    .wl_lang .dropdown-toggle { padding: 15px 0 2px 0; }
    .wl_lang .dropdown-menu { top: 41px; }*/
    .lc_01 h1, .lc_02 h1 { font-size: 23px; }
    .lc_01 h1 span, .lc_02 h1 span { font-size: 23px; }
    #main a.btn_contact_menu, #main a.btn_search_menu { font-size: 1.2em; }
    #header { padding-left: 15px;padding-right: 15px; }
}


/* [400] ------------------------------------------------------------------------ */


@media (max-width: 399px) {
    .bgr-car{ background-position: 35% top; background-size: cover; padding: 30px 0 30px 0; }
}
