/* 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');
html,
body {
  background: #fff;
}

body {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0B0B0C;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  padding: 0;
  font-family: 'Righteous', cursive;
}

h1 {
  font-size: 24px;
  margin-bottom: 12px;
}

h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

h3 {
  font-size: 18px;
}

p {
  line-height: 25px;
  margin: 0 0 30px 0;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: #6EA8D0;
  font-weight: 700;
  -webkit-transition: ease-in-out all 0.3s;
  -o-transition: ease-in-out all 0.3s;
  transition: ease-in-out all 0.3s;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  height: 100%;
  text-align: center;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-loader div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 4px solid #6EA8D0;
  border-radius: 50%;
  animation: page-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #6EA8D0 transparent transparent transparent;
}

.page-loader div:nth-child(1) {
  animation-delay: -0.45s;
}

.page-loader div:nth-child(2) {
  animation-delay: -0.3s;
}

.page-loader div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes page-loader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

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

.nav-brand span{
  font-size: 35px;
  line-height: 35px;
  font-family: 'Righteous', cursive;
  font-weight: 400;
}

/**********************
****** 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: #0B0B0C;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Righteous', cursive;
}

/* 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: #11A4BE;
}

/* Menu icon*/
.navbar-default .navbar-toggle .icon-bar {
  background-color: #000;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border-color: #000;
}

@media (max-width: 767px) {
  
  a.navbar-brand img {
    max-width: 100px;
}

  /* Setup */
  body {
    padding-top: 49px
  }

  .navbar-xs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }

  .navbar-default .navbar-brand {
    padding: 15px;
    font-size: 20px;
    line-height: 20px;
    font-family: Righteous, cursive;
    color: #6EA8D0;
  }

  .navbar-default .navbar-brand,
  .navbar-default .navbar-brand:hover {
    color: #6EA8D0;
  }

  /* Background */
  .navbar-default .navbar-header {
    background: #fff;
  }

  /* Collapse */
  .navbar-default .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
    background-color: #fff;
  }

  .navbar-default .navbar-collapse {
    border: none;
    color: #fff;
  }

  /* Menu Link */
  .navbar-default .navbar-nav>li>a {
    border: none;
  }

  /* Menu links incl dropdown */
  .navbar-default .navbar-nav>li a {
    text-align: center;
  }

  /* Dropdown */
  .navbar-nav .open .dropdown-menu {
    padding: 0;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a {
    background: #2f2f2f;
    color: #fff;
    padding: 9px 20px;
    font-size: 15px;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
    color: #000;
  }
}

@media (min-width: 768px) {
  .navbar-default {
    min-height: 0;
  }

  .navbar-nav {
    width: 100%;
    display: table;
  }

  .navbar-nav>li {
    float: none;
    display: table-cell;
  }

  .nav>li>a {
    padding: 0 3px;
  }

  nav .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }

  nav .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}

/**********************
****** Carousel *******
**********************/

/* Carousel height */
#carousel-header {
  height: 150px;
  border-radius: 0;
  margin-bottom: 30px;
}

.carousel-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
}

.carousel-content .container-fluid {
  width: 100%;
}

.carousel-title h2 {
  margin: 0;
  font-size: 20px;
  color: #fff;
  line-height: 20px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px #000;
}

@media (min-width: 768px) {
  #carousel-header {
    height: 450px;
    margin-bottom: 60px;
  }

  .carousel-title h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

@media (min-width: 992px) {
  #carousel-header {
    height: 650px;
    margin-bottom: 90px;
  }

  .carousel-title h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (min-width: 1200px) {
  #carousel-header {
    height: 880px;
    margin-bottom: 120px;
  }

  .carousel-title h2 {
    font-size: 45px;
    line-height: 50px;
  }
}

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

#carousel-header .carousel-indicators {
  z-index: 5;
}

#carousel-header .carousel-inner,
#carousel-header .carousel .item,
#carousel-header .carousel-inner .bg {
  height: 100%;
}

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

/* 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 {
  padding: 30px 0;
}

.footer p {
  margin: 0;
}

span.line {
  margin: 0 10px;
}

.footer-top {
  background: url();
}


@media (min-width: 768px) {

  .footer {
    padding: 60px 0;
  }

  .footer-in {
    display: table;
    width: 100%;
  }

  .footer-in>p {
    display: table-cell;
    text-align: center;
    border-right: 1px solid #000;
    line-height: 16px;
  }

  .footer-in>p:first-child {
    text-align: left;
  }

  .footer-in>p:last-child {
    text-align: right;
    border-right: 0;
  }
}

@media (min-width: 992px) {

  .footer {
    padding: 90px 0;
  }
}

@media (min-width: 1200px) {

  .footer {
    padding: 120px 0;
  }

  .footer-in {
    table-layout: fixed;
  }

  .footer-in>p:first-child {
    width: 400px;
  }
}

@media (min-width: 1400px) {

  .footer-in>p:first-child {
    width: 520px;
  }
}

@media (max-width: 767px) {
  .footer p {
    text-align: center;
  }
}

/**********************
*** Custom Style ******
**********************/

.content-img,
.content-text {
  margin-bottom: 30px;
}

.content-text h1,
.content-text h2 {
  margin: 0 0 30px 0;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 1.5px;
}

.content-space {
  margin-top: 30px;
}

.custom-form .panel-body {
  padding: 0;
}

.custom-form .form-group .input-group {
  display: block;
}

.custom-form .form-group .input-group input,
.custom-form .form-group textarea {
  display: block;
  float: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #818181;
  color: #fff;
  padding-left: 15px;
}

.custom-form .form-group .input-group input::placeholder,
.custom-form .form-group textarea::placeholder{
  color: #fff;
}

.custom-form .form-group .input-group input {
  height: 40px;
}

.custom-form .form-group textarea {
  max-width: 100%;
  padding-top: 10px;
}

.custom-form .form-group button.btn-primary.btn-home{
  margin: 0 10px 0 auto;
  display: block;
}

.tel-email {
  line-height: 25px;
}

.tel-email tr td:first-child {
  width: 55px;
}


#fixed-icons a.btn.btn-default.whatsapp_icon {
  background: #6EA8D0;
}

@media(min-width:768px) {
  #fixed-icons .btn-group-custom {
    position: fixed;
    left: 0px;
    top: 200px;
    z-index: 999;
  }

  #fixed-icons a {
    background: #fff;
    padding: 0;
    margin-bottom: 10px;
    box-shadow: 0px 2px 10px #444;
    border-radius: 0px;
    border: none;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
  }

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

  #fixed-icons img {
    max-width: 25px;
    max-height: 25px;
    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{
    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: 30px;
    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: 15px 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%;
  }

}


/**********************
******* Global ********
**********************/

ul#slideshow7 .item-information{
  background: #6EA8D0;
}

ul#slideshow7 h4.prijs{
  color: #fff;
}

a.btn-primary.btn-home,
button.btn-primary.btn-home {
  line-height: 26px;
  padding: 6px 20px;
  transform: skewX(-25deg);
  margin-left: 10px;
}

button.btn-primary.btn-home span,
a.btn-primary.btn-home span {
  display: inline-block;
  transform: skewX(25deg);
}

a.btn-primary,
span.btn-primary,
button.btn-primary,
.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus,
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus,
.pager li>a,
.pager li>span {
  font-family: 'Righteous', cursive;
  background: #6EA8D0;
  border-color: #6EA8D0;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  border-radius: 0;
  transition: ease all 0.3s;
}

a.btn-primary:hover,
span.btn-primary:hover,
button.btn-primary:hover,
.pager li>a:hover,
.pager li>span:hover {
  background: #fff;
  border-color: #fff;
  color: #6EA8D0;
}

a.btn-social {
  color: #fff;
}

a.label {
  background: #6EA8D0;
  color: #fff;
}

span.title,
.pagination>li>a,
.pagination>li>span {
  color: #6EA8D0;
}

nav.right {
  border-bottom: 0;
}

nav.right ul {
  margin-bottom: 0;
}

a.photo-a,
img.img-rounded {
  border-radius: 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee span {
  display: inline-block;
  animation: marquee 15s linear infinite;
}

.marquee span {
  padding: 0 20px;
  Color: #ff0000;
  Font-size: 22px;
  white-space: nowrap;
}

.beoordeling .beoordeling .gemiddelde .beoordelen {
  display: none;
}

input[type=file] {
  max-width: 100%;
}

/**********************
*** Style per pagina **
**********************/

/***************
***** Home *****
***************/
#body.Home {}


/***************
*** Occasions **
***************/
#body.autolijst_background {
  color: #000;
}

#body.autolijst_background .auto-detail-page contact-adres {
  color: #000;
}

#body.autolijst_background .list-view {
  color: #000;
}

#body.autolijst_background .gallery-view {
  color: #000;
}

#body.autolijst_background .detail-view {
  color: #000;
}

#body.autolijst_background .row.auto-specificaties {
  color: #000;
}

#body.autolijst_background .row.auto-opties {
  color: #000;
}

#body.autolijst_background .row.auto-opmerkingen h3 {
  color: #000;
}


/***************
**** Contact ***
***************/
#body.Contact #map {
  height: 400px;
}

#body.Contact #route {
  background: #fff;
}

#body.Contact .adp b,
#body.Contact .adp-list b {
  display: inline-block;
}

#body.Contact .adp-directions,
#body.Contact .adp-summary {
  width: 100%;
}


/**********************
*** Mediaqueries ******
**********************/

/* tot Mobiel (col-xs) */
@media(max-width:767px) {
  .beoordeling .gemiddelde {
    font-size: 2em;
  }
}

/* Vanaf Tablet staand/portait modus (col-sm en hoger) */
@media(min-width: 768px) {
  .row-eq-height {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: wrap row;
    flex-flow: wrap row;
  }

  .row-eq-height:after,
  .row-eq-height:before {
    display: none;
  }

  .row-eq-height.middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  body{
    padding-top: 100px;
  }

  .header {
    padding: 30px 0;
    position: fixed;
    background: #fff;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    text-align: center;
  }
  
  .nav-brand{
    display: inline-block;
    margin-bottom: 15px;
    max-width: 280px;
  }

  .content-space {
    margin-top: 60px;
  }

  .home-slider {
    max-width: 610px;
  }

  .contact-content {
    max-width: 610px;
    margin: 0 0 0 auto;
  }


  #main {
    background: url(//svl.autodealers.nl/upload/3783_img_arrow-left.svg) no-repeat right 80%;
    background-size: 40%;
  }

  .footer-top {
    background: url(//svl.autodealers.nl/upload/3783_img_arrow-right.svg) no-repeat left bottom;
    background-size: 40%;
  }
}

/* Vanaf Tablet liggend/landscape modus (col-md en hoger) */
@media(min-width: 992px) {
  
  body{
    padding-top: 0;
  }

  .header {
    text-align: left;
  }
  
  .nav-brand{
    margin-bottom: 0;
  }

  .navbar-default .navbar-nav>li>a {
    font-size: 14px;
  }

  .content-img,
  .content-text {
    margin-bottom: 45px;
  }

  .content-space {
    margin-top: 90px;
  }

  .footer-top,
  #main {
    background-size: 50%;
  }
}

/* Vanaf computerscherm (col-lg) */
@media(min-width: 1200px) {

  .content-img,
  .content-text {
    margin-bottom: 60px;
  }

  .content-space {
    margin-top: 120px;
  }

  .footer-top,
  #main {
    background-size: auto;
  }
}

@media(min-width: 1400px) {
  .navbar-default .navbar-nav>li>a {
    font-size: 16px;
  }
}