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

body {
  font-family: "Saira", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #909090;
  -webkit-font-smoothing: antialiased;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
h5,
h6 {
  font-family: "Goldman", sans-serif;
  font-weight: 100;
  padding: 0;
  margin-top: 0;
  margin-bottom: 15px;
}

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

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

h3 {
  font-size: 18px;
}

table,
ul,
ol,
p {
  line-height: 25px;
  margin: 0 0 30px 0;
}

a,
a:link,
a:visited,
a:active {
  color: #f68623;
  font-weight: 500;
  text-decoration: none;
  transition: ease-in-out all 0.2s;
}
a:hover,
a:link:hover,
a:visited:hover,
a:active:hover {
  color: #dd6c09;
}

address {
  margin: 0;
}

/**********************
******** Loader *******
**********************/
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  height: 100%;
  text-align: center;
  background: #050606;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 4px solid #f68623;
  border-radius: 50%;
  animation: page-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #f68623 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 *******
**********************/
/**********************
****** 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 {
  padding: 3px 0;
  height: 68px;
}
.navbar-default .navbar-nav > li > a {
  color: #D3D3D3;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid transparent;
  border-image-slice: 1;
  border-width: 1px;
  font-family: "Saira", sans-serif;
  font-size: 16px;
  line-height: 25px;
}
.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: #D3D3D3;
  font-weight: 600;
  border-color: #f68623;
}
.navbar-default .navbar-toggle {
  border-color: #D3D3D3;
  margin-top: 14px;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #D3D3D3;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

@media (max-width: 767px) {
  /* Setup */
  body {
    padding-top: 0;
  }
  .navbar-xs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
  .navbar-default {
    background: #0D0D0D;
  }
  .navbar-default .navbar-brand,
  .navbar-default .navbar-brand:hover {
    max-width: 130px;
    padding: 5px 15px;
    margin-top: 4px;
  }
  .navbar-default .navbar-header {
    background: transparent;
  }
  .navbar-default .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
    background-color: #0D0D0D;
  }
  .navbar-default .navbar-nav > li a {
    border: none;
    text-align: center;
  }
  .navbar-default .navbar-nav .open .dropdown-menu {
    padding: 0;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    background: #272727;
    color: #D3D3D3;
    padding: 9px 20px;
    font-size: 16px;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #D3D3D3;
  }
  .navbar-default .navbar-collapse {
    border: none;
    color: #D3D3D3;
    margin-top: 10px;
  }
}
@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: 17px 2px;
  }
  nav .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
  nav .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
/**********************
****** Carousel *******
**********************/
/* Carousel height */
#carousel-header {
  height: 500px;
  border-radius: 0;
}

.carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  background: url(//svl.autodealers.nl/upload/26167_pattern.svg) no-repeat left bottom;
  background-size: 130px auto;
}
.carousel-content > .container-fluid {
  width: 100%;
}

.carousel-titles.content-text h1,
.carousel-titles.content-text .h1 {
  /** calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width]))); **/
  font-size: calc(40px + 20 * (100vw - 350px) / 1570);
  line-height: calc(40px + 20 * (100vw - 350px) / 1570);
  font-weight: 600;
}
.carousel-titles.content-text h1.sub-title,
.carousel-titles.content-text .h1.sub-title {
  margin-bottom: -10px;
  font-size: 50px;
  line-height: 50px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .carousel-titles.content-text h1,
  .carousel-titles.content-text .h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .carousel-titles.content-text h1.sub-title,
  .carousel-titles.content-text .h1.sub-title {
    font-size: 30px;
  }
}
.carousel-btn {
  display: flex;
  flex-direction: column;
}
.carousel-btn a + a {
  margin-top: 30px;
}

@media (min-width: 768px) {
  #carousel-header {
    height: 650px;
  }
  .carousel-content {
    background-size: 200px auto;
  }
  .carousel-btn {
    flex-direction: row;
    align-items: center;
  }
  .carousel-btn a + a {
    margin-left: 30px;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  #carousel-header {
    height: 800px;
  }
  .carousel-content {
    background-size: 240px auto;
  }
}
@media (min-width: 1200px) {
  #carousel-header {
    height: 1080px;
  }
  .carousel-content {
    background-size: auto;
  }
}
/* Carousel backgrounds */
#carousel-header .carousel-inner .bg1 {
  background-image: url("//svl.autodealers.nl/upload/26167_header-2025.jpg");
}
#carousel-header .carousel-inner .bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#carousel-header .carousel-indicators {
  z-index: 5;
}
#carousel-header .carousel-inner,
#carousel-header .carousel .item,
#carousel-header .carousel-inner .bg {
  height: 100%;
}

/* 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;
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
    opacity: 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;
    transform: translate3d(0, 0, 0);
  }
}
/**********************
******** Footer *******
**********************/
.footer {
  background: #1d1c1a;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer .footer-btns-in {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.footer .footer-btns-in a {
  color: #D3D3D3;
}

.footer-in p {
  color: white;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.footer-socials a {
  background: #f68623;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer-socials a::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: calc(100% - 2px);
  background: #161617;
  transition: ease-in-out all 0.2s;
}
.footer-socials a:hover::after {
  height: 0;
}
.footer-socials a img {
  position: relative;
  z-index: 1;
}
.footer-socials a + a {
  margin-left: 30px;
}

.footer-in a {
  font-weight: 600;
  font-family: "Saira", sans-serif;
}

.footer-bottom p {
  margin: 0;
}

.footer-adres {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .footer-in {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-flow: wrap;
  }
  .footer-in > p {
    text-align: center;
    line-height: 16px;
  }
  .footer-in > p.line {
    margin: 0 15px;
  }
  .footer-btns {
    position: relative;
  }
  .footer-btns::after {
    content: "";
    height: 1px;
    width: 100%;
    background: #161617;
    position: absolute;
    top: 29px;
    left: 0;
  }
  .footer-btns .footer-btns-in {
    position: relative;
    z-index: 1;
    background: #1d1c1a;
    padding: 0 30px;
    flex-direction: row;
  }
  .footer-btns .footer-btns-in a + a {
    margin-left: 30px;
    margin-top: 0;
  }
  .footer-adres {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .footer-logo {
    margin-bottom: 50px;
  }
  .footer-btns .footer-btns-in {
    max-width: 930px;
    margin: 0 auto;
  }
  .footer-btns .footer-btns-in a + a {
    margin-left: 45px;
  }
  .footer-socials {
    margin-bottom: 50px;
  }
  .footer-adres {
    margin-bottom: 75px;
  }
}
@media (min-width: 1200px) {
  .footer-adres {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .footer p {
    text-align: center;
  }
}
/**********************
*** Custom Style ******
**********************/
.section-bg {
  background-repeat: no-repeat;
  background-size: auto 250px;
}

#main {
  background-image: url(//svl.autodealers.nl/upload/26167_bg-1.svg);
  background-position: right 60%;
}

#occ {
  background-image: url(//svl.autodealers.nl/upload/26167_bg-2.svg);
  background-position: left top;
}

.content-text h1,
.content-text .h1 {
  font-family: "Goldman", sans-serif;
  color: #FFFFFF;
  margin-bottom: 50px;
  text-transform: uppercase;
  /** calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width]))); **/
  font-size: calc(20px + 20 * (100vw - 350px) / 1570);
  line-height: calc(20px + 20 * (100vw - 350px) / 1570);
  font-weight: 600;
}
.content-text h1.sub-title,
.content-text .h1.sub-title {
  font-family: "Goldman", sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  font-size: 30px;
  line-height: 30px;
}

.content-text p {
  color: white;
  font-family: "Saira", sans-serif;
  font-size: 16px;
  line-height: 25px;
}

.content-text a {
  font-weight: 600;
  font-family: "Saira", sans-serif;
}

.btn-item {
  margin-top: 30px;
}

.filter-bg {
  background: #3b3935;
  padding: 0 15px;
  margin: 0 -15px;
}

ul.search-filter-vertical {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 290px;
}
ul.search-filter-vertical li {
  display: block;
  margin-bottom: 30px;
}
ul.search-filter-vertical li:last-child {
  margin-bottom: 0;
}
ul.search-filter-vertical li select,
ul.search-filter-vertical li input {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  height: 60px;
  cursor: pointer;
}
ul.search-filter-vertical li select {
  padding-left: 20px;
  background: white;
  color: black;
  border: 1px solid black;
  font-family: "Saira", sans-serif;
  line-height: 25px;
  font-size: 16px;
}
ul.search-filter-vertical li select option {
  background: white;
  color: black;
}
ul.search-filter-vertical li span {
  display: block;
  width: 100%;
  padding: 17px 0px 16px 20px;
  background: #161617;
  color: black;
  border: 1px solid black;
}
ul.search-filter-vertical li a#a___zf_transmissie {
  position: absolute;
  top: 17px;
  right: 11px;
  z-index: 3;
}
ul.search-filter-vertical li input {
  border: none;
  transition: ease all 0.2s;
}
ul.search-filter-vertical li.search-filter-select {
  position: relative;
}
ul.search-filter-vertical li.search-filter-select:after {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 14px;
  color: black;
  position: absolute;
  right: 15px;
  top: 18px;
  pointer-events: none;
}

div#slideshow9 .slideshow-content {
  padding: 30px 10px;
  background: #3b3935;
  color: #909090;
  font-size: 16px;
}

div#slideshow9 .slideshow9-blok {
  border: 0px;
}

div#slideshow9 h3.slideshow-titel {
  color: #909090;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid #909090;
  padding-bottom: 30px;
  font-family: 'Goldman',
	sans-serif;
  color:white;
  font-weight:600;
  line-break: anywhere;
}

div#slideshow9 table.slideshow-gegevens td:first-child {
  padding-right: 10px;
  font-weight: 400;
}

div#slideshow9 table.slideshow-gegevens td {
  color:white;
  font-weight:400;
  font-family: 'Saira',
sans-serif;
}

div#slideshow9 table.slideshow-gegevens td:nth-child(2) {
  padding-left: 20px;
}

div#slideshow9 span.item-prijs {
  color: #ffffff;
  padding-right:10px;
  padding-top:10px;
  font-family:'Saira',
sans-serif;
}

div#slideshow9 .slideshow-button {
  height: 60px;
}

/**********************
******* Global ********
**********************/
.content-space {
  padding: 18.75px 0;
}

.btn.btn-primary{
	font-size:16px;
}

.btn-primary.btn-home {
  padding: 15px 15px;
  width: 100%;
  max-width: 290px;
  font-size: 16px;
}

.btn-primary.btn-gradient {
  background: #f68623;
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary.btn-gradient::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: calc(100% - 2px);
  z-index: -1;
  background: #161617;
  transition: ease-in-out all 0.2s;
}
.btn-primary.btn-gradient:hover {
  background: #f68623;
  background: linear-gradient(180deg, #f68623 0%, rgba(255, 0, 0, 0) 100%);
}
.btn-primary.btn-gradient:hover::after {
  height: 0;
}

@media (max-width: 767px) {
  .btn-primary.btn-gradient {
    background: none;
  }
}
.btn-primary,
a.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 {
  background: #f68623;
  border-color: #f68623;
  color: #FFFFFF;
  font-family: "Saira", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
}

.btn-primary:hover,
a.btn-primary:hover,
.btn-primary:active,
a.btn-primary:active,
.btn-primary:focus,
a.btn-primary:focus,
.btn-primary:active:focus,
a.btn-primary:active:focus,
.pager li > a:hover,
.pager li > span:hover {
  background: #dd6c09;
  border-color: #dd6c09;
  color: #FFFFFF;
}

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

a.label {
  background: #f68623;
  color: #FFFFFF;
}

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

nav.right {
  border-bottom: 0;
}

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

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

.marquee {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}
.marquee span {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  padding-left: 100%;
  will-change: transform;
  animation: marquee 15s linear infinite;
  color: #FF0000;
  font-size: 22px;
}
.marquee span:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee span {
    animation-iteration-count: 1;
    animation-duration: 0.01;
    width: auto;
    padding-left: 0;
  }
}
.beoordeling .beoordeling .gemiddelde .beoordelen {
  display: none;
}

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

/**********************
*** Style per pagina **
**********************/
/***************
*** Occasions **
***************/
#body.autolijst_background,
#body.autolijst_background .auto-detail-page contact-adres,
#body.autolijst_background .list-view,
#body.autolijst_background .gallery-view,
#body.autolijst_background .detail-view,
#body.autolijst_background .row.auto-specificaties,
#body.autolijst_background .row.auto-opties,
#body.autolijst_background .row.auto-opmerkingen h3,
#body.autolijst_background #main h2 {
  color: #909090;
}

#body.autolijst_background .auto-detail-page h2 {
  margin: 20px 0;
}

/**********************
*** Mediaqueries ******
**********************/
/* tot Mobiel (col-xs) */
@media (max-width: 767px) {
  .header.scroll .navbar-xs {
    background: #0D0D0D;
    height: 70px;
  }
  .beoordeling .gemiddelde {
    font-size: 2em;
  }
}
/* Vanaf Tablet staand/portait modus (col-sm en hoger) */
@media (min-width: 768px) {
  .row-eq-height {
    display: flex;
    flex-flow: wrap row;
  }
  .row-eq-height:after, .row-eq-height:before {
    display: none;
  }
  .row-eq-height.middle {
    align-items: center;
  }
  .content-space {
    padding: calc(18.75px * 2) 0;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
  }
  .header.scroll {
    padding: 15px 0;
    background: #0D0D0D;
  }
  .header.scroll a.nav-brand {
    max-width: 200px;
  }
  a.nav-brand {
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }
  .navbar2 .navbar-nav > li {
    padding-left: 5px;
  }
  .section-bg {
    background-size: cover;
  }
  #main {
    background-position: right bottom;
  }
  .filter-bg {
    margin: 0;
  }
}
/* Vanaf Tablet liggend/landscape modus (col-md en hoger) */
@media (min-width: 992px) {
  .content-space {
    padding: calc(18.75px * 3) 0;
  }
  .header {
    padding: 50px 0;
  }
  .navbar2 .navbar-nav > li {
    padding-left: 15px;
  }
}
/* Vanaf computerscherm (col-lg) */
@media (min-width: 1200px) {
  .content-space {
    padding: calc(18.75px * 4) 0;
  }
  .content-text.max-width {
    max-width: 770px;
  }
}
@media (min-width: 1400px) {
  .content-space {
    padding: calc(18.75px * 4) 0;
  }
  .navbar2 .navbar-nav > li {
    padding-left: 30px;
  }
}
.footer-line {
  width: 100%;
  border-top: 1px solid white;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding-bottom: 25px;
}

@media (max-width: 767px) {
  .footer-line {
    display: none;
  }
}

.merk-model-minheight a{
	color: #909090;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  padding-bottom: 30px;
  font-family: 'Goldman',
	sans-serif;
  color:white;
  font-weight:600;
}

.well.well-sm{
	background-color:#3b3935;
  border:1px solid #3b3935;
}

.well.well-sm b{
  font-weight:400;
  color:white;
  font-family: 'Saira',
	sans-serif;
}

.well.well-sm span{
  font-weight:400;
  color:white;
  font-family: 'Saira',
	sans-serif;
}

.advertisement .prijs{
  color: white;
  padding-right:10px;
  padding-top:10px;
  font-family:'Saira',
  sans-serif;
  font-weight:600;
  font-size:20px;
  line-height:20px;
}

.type {
  color: #909090;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  padding-bottom: 30px;
  font-family: 'Goldman',
	sans-serif;
  color:white;
  font-weight:600;

}

strong{
  color:white;

}

p {
	Color:black;
}

#body.Financieren p {
	color:white;
}

#body.Financieren i {
	color:black;
}

#body.Financieren strong {
	color:black;
}

#body.Contact strong {
  color:black;

}
 
#body.Contact td {
  color:black;
}

.btn-social.btn-twitter {
	color:black;
}

.data-item-value {
  color:white;
}

.bg-info.nav-bar strong {
	color:black;
}

#body.Financieren h2{
	color:white;
}

@media (max-width: 820px) {
  .nav-brand {
  	padding-bottom: 15px;
  }
}

#body.privacybeleid #main h2, #body.privacybeleid #main h3, #body.privacybeleid #main span, #body.privacybeleid #main p, #body.privacybeleid #main li {
  	color: white;
  }

#body.privacybeleid #main p, #body.privacybeleid #main li  {
	font-family: "Saira", sans-serif;
}
