/* Autodealers.nl CSS voor de dealerwebsite */
@import url('//svl.autodealers.nl/css/responsive2/bootstrap.min.css');
@import url('//fonts.googleapis.com/css?family=Open+Sans:300,400,600');
@import url('//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.min.css');
@import url('//svl.autodealers.nl/css/responsive2/style.min.css');
/*
Style.css
Table of Contents:

- Global
- Theme
+ Header
+ Menu
+ Carousel
+ Occasion Slideshow
+ Footer
- Custom
+ Global
+ Pages
+ Mediaqueries
*/


/*********************
****** GLOBAL ********
*********************/

html, body {
  background: #D4D4D4;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  padding: 0;
  text-transform: uppercase;
  color: #A32C2C;
}
h1 {
  font-size: 22px;
  margin-bottom: 22px;
}
h2 {
  font-size: 25px;
  margin-bottom: 22px;
  font-weight: bold;
}
h3 {
  font-size: 18px;
  font-weight: bold;
}
p {
  line-height: 25px;
  margin: 0 0 22px 0;
}
a,
a:link,
a:visited,
a:hover,
a:active {
  color: #CC2626;
  text-decoration: none;
}

/*********************
******* THEME ********
*********************/

/*************
*** Header ***
*************/

#header h1 {
  color: #000;
  font-weight: bold;
  font-size: 25px;
  margin: 0px;
}
@media (min-width: 768px) and (max-width: 992px) {
  #header h1 {
    font-size: 23px;
  }
}
/*****************
*** Navigation ***
*****************/

/* Setup */
.navbar {
  z-index: 99;
}
.navbar-default {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  z-index: 999;
}
/* Menu Link */
.navbar-default .navbar-nav > li > a {
  color: #000;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  transition:all 0.3s ease; /* Animate */
}
.navbar-default .navbar-nav > li:first-child a {
  border-left: none;
}
/* Menu Link Hover & Active*/
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
  background-color: transparent;
  color:  #FFF;
}
/* Menu icon*/
.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
  margin-left:20px;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color:  transparent;
}
.navbar-default .navbar-toggle {
  border-color: transparent;
}
@media (max-width: 767px) {
  /* Setup */
  body { padding-top: 50px }
  .navbar-xs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
  /* Background */
  .navbar-default .navbar-header {
    background: #CC2626;
  }
  /* Brand */
  .navbar-default .navbar-brand,
  .navbar-default .navbar-brand:hover {
    color: #fff;
  }
  /* Collapse */
  .navbar-default .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
    background-color: #CC2626;
  }
  .navbar-default .navbar-collapse {
    border: none;
    color: #fff;
  }
  /* Menu Link */
  .navbar-default .navbar-nav > li > a {
    border: none;
  }
  /* Dropdown */
  .navbar-nav .open .dropdown-menu {
    padding: 0;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    background: dimgray;
    color: #fff;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #fff;
  }
  /* Menu links */
  .navbar-default .navbar-nav > li a {
    text-align: center;
  }
}
@media (min-width: 768px) {
  /* Setup */
  .navbar-nav {
    width: 100%;
    display: table;
  }
  .navbar-nav > li {
    float: none;
    display: table-cell;
  }
  nav .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
  nav .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  nav.navbar.navbar-default.navbar-xs{
    display: table;
    margin: auto;
  }
}
@media (max-width: 767px){
  .navbar-default .navbar-brand, .navbar-default .navbar-brand:hover {
    color: #fff;
  }
}
/**********************
****** Carousel *******
**********************/

/* Carousel height */
#carousel-header {
  height: 200px;
  border-radius: 0px;
}
@media (min-width: 768px) {
  #carousel-header {
    height: 117px;
  }
}

/* Carousel backgrounds */
#carousel-header .carousel-inner .bg1 {
  background-image: url("//svl.autodealers.nl/upload/6039_header_van_der_veen.jpg");
}

#carousel-header .carousel-indicators {
  z-index: 5;
}
#carousel-header .carousel-inner,
#carousel-header .carousel .item,
#carousel-header .carousel-inner .bg {
  height: 100%;
  z-index:1;
}

#carousel-header .carousel-inner .bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
}

/* Carousel fade effect */
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .item.next,
  .carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.next.left,
  .carousel-fade .carousel-inner > .item.prev.right,
  .carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/*************
*** Footer ***
*************/

/** Sticky Footer ***/
#footer {
  position: relative;
  height: auto;
}
#footer a{
  font-weight: 600;
}
@media (min-width: 767px) {
  body {
    margin-bottom: 0; /* Margin bottom by footer height */
  }
  html {
    position: relative;
    min-height: 100%;
  }
  #footer {
    position: relative;
  }
  #footer p {
    margin: 0;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  #footer p {
    line-height: 30px;
  }
  html{
    margin-top: -15px;
  }
}

/*************
*** CUSTOM ***
*************/

.erkenning-RDW{
  width: 100%;
  max-width: 100px;
  border: solid 0.8px #DF6726;
}
.ladda-button[data-style=zoom-out]{
  background-color: #CC2626;
  border-color: #CC2626;
  color: #FFF;
}
/*************
*** Global ***
*************/
.content-bg {
  background: #fff;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .headerbg-red{
    background-color: #CC2626;
    height: 117px;
  }
}
@media (min-width: 769px) {
  body{
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
/*************
**** Home ****
*************/
.img-pand{
  display: block;
  margin: auto;
}

#body.home #slideshow_footer img.photo-img.img-rounded,
#body.home #slideshow_footer a.photo-a.auto-caroussel,
#body.home #slideshow_footer a.btn.btn-primary.btn-block,
#body.home #slideshow_footer .pager a{
  border-radius: 0px;
}

#body.home #slideshow_footer  a.btn.btn-primary.btn-block,
#body.home #slideshow_footer .pager a{
  background-color: #CC2626;
  border-color: #CC2626;
  color: #FFF;
  text-transform: uppercase;
}

#body.home #slideshow_footer nav.right{
  border: none;
}
#body.home #openingstijden2 ul{
  list-style-type: none;
}
/****************
*** Occasions ***
****************/

/* Base colors*/
#body.autolijst_background a.btn-primary,
#body.autolijst_background a.btn-social,
#body.detail-view .label-primary {
  color: #fff;
}
#body.detail-view .label-primary{
  background-color: #CC2626;
}
#body.autolijst_background .well,
#body.autolijst_background .list-group,
#body.detail-view h3[itemprop="name"],
#body.detail-view p[itemprop="address"],
#body.detail-view span[itemprop="telephone"],
#body.detail-view .row.nav-bar {
  color: #000;
}

/* Secondary colors */
#body.autolijst_background ul.pagination a,
#body.detail-view .bg-info {
  color: #CC2626;
}
#body.autolijst_background span.title{
  color: #A32C2C;
}
#body.autolijst_background .pagination > .active > a,
#body.autolijst_background a.btn-primary {
  background: #CC2626;
  border: 1px solid #CC2626;
  color: #fff;
}
#body.autolijst_background a.btn.btn-default.btn_print {
  color: #000;
}
#body.autolijst_background a.btn.btn-primary.btn-lg.btn-block-company.mob{
  display: block !important;
  margin-top: 10px;
}
/**********************
*** Route & Contact ***
**********************/

#body.contact #map {
  height: 400px;
}
#body.contact #route {
  background: #fff;
}
/* de routebeschgrijving op mobiel valt buiten het scherm zonder */
#body.contact .adp b,
#body.contact .adp-list b {
  display: inline-block;
}
/* de prijs valt anders over de "bekijk deze auto" heen */
#body.contact .adp-directions,
#body.contact .adp-summary
{
  width:100%;
}
#body.contact a.btn.btn-primary.btn-navigatie.full-width{
  background-color: #CC2626;
  border-color: #CC2626;
  color: #FFF;
}

/*******************
*** Mediaqueries ***
*******************/
@media (min-width: 768px) {
  .mlMin-30{
    margin: 0px -15px;
  }
}
@media (min-width: 992px) {
  .headerbg-red{
    margin-right: -15px;
  }
  .mlMin-30{
    margin: 0px -15px;
    margin-left: -30px;
  }
}

@media (min-width: 1200px) {

}

#fixed-icons a.btn.btn-default.whatsapp_icon { 
  background: #0dc143; 
} 
@media(min-width:768px) { 
  #fixed-icons .btn-group-custom{ 
    position: fixed; 
    left: 0px; 
    bottom: 100px; 
    z-index: 999; 
  } 

  #fixed-icons a { 
    background: #fff; 
    display: block; 
    padding: 15px; 
    margin-bottom: 10px; 
    box-shadow: 0px 2px 10px #444; 
    border-radius:0px; border:none; 
  } 

  #fixed-icons a:hover { 
    background:#eee; 
  } 

  #fixed-icons img { 
    height: 30px; 
    margin: 0 auto; 
    display: block; 
  } 

  #fixed-icons .btn-group, #fixed-icons .btn-group-custom{ 
    display: inline-block; 
    vertical-align: middle; 
  } 

  #fixed-icons .btn-group-custom>.btn, #fixed-icons .btn-group-custom>.btn-group, #fixed-icons .btn-group-custom>.btn-group>.btn { 
    display: block; 
    float: none; 
    width: 100%; 
    max-width: 100%; 
  } 
} 

@media(max-width:767px){ 
  body{ 
    margin-bottom:61px; 
  } 

  #fixed-icons .btn-group-custom { 
    position: fixed; 
    left: 0px; 
    bottom: 0px; 
    z-index: 999; 
    width: 100%; 
    background: #fff; 
    border-top: 1px solid #000; 
  } 

  #fixed-icons img { 
    display: block; 
    margin: 0 auto; 
    height: 40px; 
    width: auto; 
  } 

  #fixed-icons div.btn-group:first-child { 
    border-left: 0px; 
  } 

  #fixed-icons div.btn-group { 
    border-left: 1px solid #000; 
  } 

  #fixed-icons div.btn-group a { 
    display: block; 
    width: 33%; 
    text-align: center; 
    float: left; 
    padding: 10px 0px; 
    border:none;
    border-radius:0px; 
  } 
  #fixed-icons a:hover { 
    background: #eee; 
  } 
  #fixed-icons .btn-group-custom { 
    display: table; 
    width: 100%;
    table-layout: fixed; 
    border-collapse: separate; 
  } 

  #fixed-icons .btn-group-custom>.btn, .btn-group-custom>.btn-group { 
    display: table-cell;
    float: none;
    width: 1%;
  }

  #fixed-icons .btn-group-custom>.btn-group .btn {
    width: 100%;
  }

}
