
/* 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 */


* {
  -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-size:100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #4a4a4a;
    font-size: 1.125em;
}

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;
}
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;
}
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;
}

hr {
    border: none;
    height: 1px;
    background: #d6e1e9;
    margin: 0 0 15px 0;
}
img {
    border: 0;
}
.fleft { 
    float:left;
}
.fright { 
    float:right;
}
.clear { 
    clear:both;
}
.bold{
    font-weight:bold;
}
.alignright { 
    text-align:right;
}
.aligncenter { 
    text-align:center;
}
.alignleft { 
    text-align:left;
}
.valign {
    vertical-align: middle;
}
.topmargin {
    margin-top: 9px;
}
.distancer-tb{
    margin-top: 20px;
    margin-bottom: 20px;
}
.wrapper {
    width:100%; /*overflow:hidden;*/
}
.container { 
    width:100%;
}
.nomargin {
    margin:0;
}
#content em {
    font-weight: normal;
    font-style:normal;
}
p { 
    margin-bottom:15px;
}

a { 
    text-decoration:none;
    color:#d31414;
}
a:hover {
    color:#2e7fb4;
}
a, a:active {
    outline: 0;
}
h1 {
    font-size: 2em;
    color: #2e7fb4;
    font-weight: 300;
}
h2 {
    color: #585858;
    font-weight: normal;
    font-size:1.31em;
    margin-top: 2px;
}
h3 {
    font-size:1.1em;
    font-weight: bold;
}
h4 {
    font-size:1em;
    font-weight: bold;
}
label{
    font-family: 'Source Sans Pro', sans-serif;
    display: block;
    padding-right: 10px;
    padding-bottom: 5px;
    font-weight: 400;
}


#google_map iframe{ 
	border: 1px solid #d6e1e9;
}
#header_right div{ 
	margin-bottom:15px;
	color: #666666;
	font-size:0.81em;
	}

/* ------------------ dealer website structure begin ------------------ */

#main {
    max-width: 1024px;
    width:100%;
	margin: 0 auto;
}
#header {
    max-width: 1024px;
    width:100%;
	margin: 20px 0;
	float: left;
}
#mm, #footer {
	font-size: 1.250em;
	font-weight: 300;
	float: left;
}
#mm {
	display: block;
    max-width: 1024px;
    width:100%;
	padding: 0 10px 0 10px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    /*overflow: hidden;*/
    background: #ffffff;
    margin: 0 0 20px 0;
}
#content {
    max-width: 1024px;
    width:100%;
	margin: 0 0 20px 0;
	float: left;
}
#footer {
    max-width: 1024px;
    width:100%;
	/*margin-top:20px; 
	height: 59px;*/
}
	
#header_left{
    width: 300px;
    float: left;
	margin: 0 24px 0 0;
}
#header_left .box_white{
    text-align: center;
}
#header_right{
	max-width: 700px;
    float: left;
}
#content em {
	font-weight: normal;
	font-style:normal;
	}
.row {
	max-width: 962px;
	margin: 0 0 25px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px solid #CDCDCD;	
	/*float:left;*/
}
.row:nth-last-child(2) {
    border-bottom: none;
    margin: 0;
}
.row_left{
    max-width: 300px;
    width:31%;
	/*float:left;*/
	margin: 0 24px 0 0;
}
.row_right{
    max-width: 638px;
    width: 65%;
	/*float:left;*/
}
.col {
    max-width: 638px;
    width: 100%;
	float:left;
	margin-bottom: 3px;
	}
.col2_1 {
    max-width: 210px;
    width:50%;
    display: inline-block;
    vertical-align: top;
	/*float: left;*/
	margin: 0;
}
.col2_2 {
    display: inline-block;
    vertical-align: top;
	max-width: 418px;
	/*float: left;*/
}
#our_offer h1{
    margin-bottom: 20px;
}
#our_offer .col div{
    display: inline-block;
    vertical-align: top;
    max-width: 50%;
}
#our_offer .col div:first-of-type{
    max-width: 210px;
    width:49%;
	margin: 0;
}
#content .inline{
	display: inline;
	}
#our_offer img {
	border: solid 1px #C8C8C8;
	}
#home_text {
    display: block;
    margin: 0 0 20px;
}

/*-- footer top arrow links begin --*/
#footer_top {
	float: left;
	max-width: 1024px; 
}
.footer_top1, .footer_top2 {
	max-width: 512px;
	float: left;
}
.f_top{
    margin: 0 0 5px 0;
}
.f_top a {
    background: #ffffff;
    color:#D31414;
    display: inline-block;
    font-size: 1.5em;
    text-align: center;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.f_top a i {
    border: 1px solid #dbdbdb;
    padding: 0 5px 0 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.copy{
    float: left;
    max-width: 1024px;
    width:100%;
	font-size: 0.750em;
	margin: 10px 0 20px 0;
	padding: 10px 0 0 0;
	border-top: solid 1px #CDCDCD;
}
/*-- footer top arrow links end --*/

.grey_box_simple_top, .grey_box_simple_content , .grey_box_simple_bottom  {
	float: left;
	width: 100%;
	}
.grey_box_simple_top {
	height: 5px;
	background: url(../images/sp_dealer_site.png) no-repeat left -143px;
	}
.grey_box_simple_bottom {
	height: 11px;
	background: url(../images/sp_dealer_site.png) no-repeat left -173px;
	}
.grey_box_simple_content_right {
	background: url(../images/sp_dealer_site.png) no-repeat right -1221px;
	height: auto;
	padding-right:6px;
	}
.grey_box_simple_content_center {
	width: auto;
	height: auto;
	background: url(../images/sp_dealer_site.png) no-repeat left -226px;
	border-left: solid 1px #ADAFAC;
	border-right: solid 1px #ADAFAC;
	padding: 4px 8px 4px 8px;
	}
.top_box_simple_grey{
  background: url(../images/sp_dealer_site.png) no-repeat right -158px;
  padding:0;
	margin: 0;
  height: 5px;
	display: block;
	margin-left: 20px;
	width:auto;
}
.bottom_box_simple_grey{
  background: url(../images/sp_dealer_site.png) no-repeat right -194px;
  padding:0;
	margin: 0;
  height: 11px;
	display: block;
	margin-left: 20px;
	width:auto;
}

.white_box_simple_top_ns, .white_box_simple_content_ns, .white_box_simple_bottom_ns  {
	float: left;
	width: 100%;
	}
.white_box_simple_top_ns {
	height: 5px;
	background: url(../images/sp_dealer_site.png) no-repeat left -83px;
	}
.white_box_simple_bottom_ns {
	height: 5px;
	background: url(../images/sp_dealer_site.png) no-repeat left -113px;
	}
.white_box_simple_content_center_ns {
	width: auto;
	height: auto;
	background: #fff;
	border-left: solid 1px #D7D7D7;
	border-right: solid 1px #D7D7D7;
	padding: 15px 20px;
	}
.top_box_simple_white_ns{
  background: url(../images/sp_dealer_site.png) no-repeat right -98px;
  padding:0;
	margin: 0;
  height: 5px;
	display: block;
	margin-left: 5px;
	width:auto;
}
.bottom_box_simple_white_ns{
  background: url(../images/sp_dealer_site.png) no-repeat right -128px;
  padding:0;
	margin: 0;
  height: 5px;
	display: block;
	margin-left: 5px;
	width:auto;
}

a.google_map {
	display: block;
	width: 92px;
	height: 24px;
	background: url(../images/sp_dealer_site.png) no-repeat 0 -446px;
	margin: 10px 0 0 0;
}
a.google_map:hover {
	background: url(../images/sp_dealer_site.png) no-repeat 0 -480px;
}

a.webleasing {
	color: #D21414;
	text-decoration: none;
	font-weight: normal;
	}
.price {
    display: block;
    font-size: 1.14em;
    font-weight: bold;
    margin: 14px 0 0;
}
.price_number {
    background: #f1f9ff;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    color: #2e7fb4;
    display: inline-block;
    font-size: 1.75em;
    font-weight: 400;
    margin-bottom: 3px;
    padding: 6px 10px;
}
.tva {
    bottom: 2px;
    color: #888888;
    display: inline-block;
    font-size: 0.74em;
    margin-right: 5px;
    position: relative;
    margin-bottom: 10px;
}

/*------- result page NEW icons ---------*/

.d_icon_new_ro {
	background: url(../images/sp_dealer_site.png) no-repeat 0 -1619px;
	display: block;
	width:31px;
	height:17px;
}
.d_icon_new_en {
	background: url(../images/sp_dealer_site.png) no-repeat 0 -1646px;
	display: block;
	width:31px;
	height:17px;
}
.d_icon_new_de {
	background: url(../images/sp_dealer_site.png) no-repeat 0 -1673px;
	display: block;
	width:31px;
	height:17px;
}


.box_white{
    padding: 20px 30px 20px 30px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    /*overflow: hidden;*/
    background: #ffffff;
}
.box_white .box_top_title{
    margin: 0 0 20px;
}
.box_white .box_top_title div span{
    color: #d31414;
    display: block;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

#our_offer{
    display: block;
    margin: 0 0 20px 0;
}

.col_h3_2 h3 a {
    background: #eaf6ff;
    border-radius: 5px;
    color: #0181c2;
    cursor: pointer;
    display: block;
    font-size: 0.875em;
    font-weight: 400;
    padding: 12px 20px 12px 20px;
    width: 100%;
    margin: 10px 0 0 0;
}
.col_h3_2 h3 a:hover {
    color: #d31414;
}
.col_h3_2 h3 a i {
    margin: 0 10px 0 0;
}
.cat {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.cat:nth-last-child(2){
    border-bottom: none;
    margin-bottom: 0;
}
.col_h3, .col_h3_2 {
    float: left;
    margin-bottom: 10px;
    width: 100%;
}
#our_offer span em {
    font-weight: bold;
}

a.disabled.contact {
    background-color: #ededed !important;
    color: #7c7c7c !important;
}

/* --- common small buttons begin !!COPY ONLY FROM STYLE.CSS!! --- */

a.btn_sm_1_ns:hover span, a.btn_sm_2_ns:hover span, a.btn_sm_3_ns:hover span, a.btn_sm_4_ns:hover span{
    cursor:pointer;
}
a.btn_sm_1_ns, a.btn_sm_2_ns, a.btn_sm_3_ns, a.btn_sm_4_ns{
    color:#ffffff;
    display:inline-block;
    font-size: 1.188em;
    font-weight: 300;
    padding: 6px 15px 7px 15px;
    text-decoration:none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -webkit-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
}
a.btn_sm_1_ns:hover, a.btn_sm_2_ns:hover, a.btn_sm_3_ns:hover, a.btn_sm_4_ns:hover{
    color:#ffffff;
    padding: 6px 12px 7px 18px;
}

a.btn_sm_1_ns.sm,
a.btn_sm_2_ns.sm,
a.btn_sm_3_ns.sm,
a.btn_sm_4_ns.sm{
    font-size: 1.063em;
    padding: 3px 10px 4px 10px;
}

/* --- small blue button no shadow sprites --- */

a.btn_sm_1_ns {
    background: #5099c8;
}
a.btn_sm_1_ns:hover {
    background: #2677ab;
}

/* --- small red button no shadow sprites --- */

a.btn_sm_2_ns {
    background: #cd1313;
}
a.btn_sm_2_ns:hover {
    background: #a20606;
}

/* --- small grey button no shadow sprites --- */

a.btn_sm_4_ns {
    background: #7e7e7e;
}
a.btn_sm_4_ns:hover {
    background: #565656;
}

/* --- common small buttons end !!COPY ONLY FROM STYLE.CSS!! --- */

/* ------------------ dealer website structure end ------------------ */

.terms {
    margin-left: 5px;
}
#content ul{
	margin: 0 0 20px 40px;
}
#content ul li{
	margin-bottom: 5px;
}


@media only screen and (max-width: 1064px) {
    #main {
         padding: 0 20px; 
    }
    #mm #mm_main ul li a{
        font-size: 0.9em;
    }
  }


/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    #header_left{
        margin: 0;
        width: 100%;
        float: none;
    }
    a.google_map{
        display: none;
    }
    #header_right{
        width: 100%;
        padding: 10px 20px 0 20px;
        float: none;
    }
    .row_left, 
    .row_right{
        width: 100%;
        margin:0;
    }
    .row_left img{
        margin-bottom: 20px;
    }
    .terms {
        display: block;
    }
    #header_left .box_white{
        padding: 10px 20px;
    }
    #header_left img{
       max-height: 170px;
    }

}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    .box_white{
        padding:20px;
    }
    #header_left{
        margin:0 auto;
        float: unset;
        padding: 0 0;
    }
    #header_right{
        padding:20px;
    }
    
    h1{
        font-size: 1.7em;
    }
    h3{
        font-size: 1em;
    }
    .col{
        margin-bottom: 13px;
    }
    #our_offer .col div,
    #our_offer .col div:first-of-type{
        display:block;
        width: 100%;
        max-width: 100%;
    }
    #our_offer .col div:empty{
        display: none;
    }
    .copy{
        text-align: center;
    }
    .copy div{
        float: unset;
    }
}