/* ONETRUST BANNER */

#onetrust-banner-sdk #onetrust-button-group-parent:not(.has-reject-all-button) #onetrust-button-group {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

#onetrust-banner-sdk .banner-actions-container {
width: auto !important;
}

#onetrust-consent-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #ffffff;
    transition: all .25s linear;
}

/* BOOTSTRAP CSS */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    line-height: inherit;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    outline: none;
    cursor: pointer;
}

.close:hover {
    opacity: .7;
    text-decoration: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: .75;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

a.close.disabled {
    pointer-events: none;
}

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 5%;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none; 
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: .5;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}

.modal-footer > * {
    margin: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem);
    }

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width:992px) {

    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

/* BOOTSTRAP END */

/* ACCORDION START */


.noMargin {
    margin: 0;
}

.accordion {
  background-color: #f8f9fa;
  color: #444;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: all 0.4s;
}

.accordion.active, .accordion:hover {
  background-color: #d0d3d9; 
}

.accordion.active {
    margin-bottom: 10px;
}

.accordion:after {
  content: url(../img/bilhold-arrow.svg);
    transform: rotate(90deg);
    width: 10px;
  font-weight: bold;
  float: right;
    transition: all .4s;
  margin-right: 5px;
}

#mainWrapper2 .accordion.active:after {
  content: url(../img/bilhold-arrow.svg);
  width: 10px;
  margin-right: 0px;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow-y: scroll;
  transition: max-height 0.2s ease-out;
}

.tableModal {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-bottom: 1px solid #d0d3d9;
}

.thModal {
    padding: 5px;
    border-top: 1px solid #d0d3d9;
    border-right: 1px solid #d0d3d9;
}

.theadModal{
    padding: 5px;
    background-color: #d0d3d9;
}

.tdModal {
    padding: 5px;
    border-top: 1px solid #d0d3d9;
}

th, td {
    width: 50%;
}

/* ACCORDION END */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;700&display=swap');


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, dl, dt, dd, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

html, body {
    color: #171a21;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    line-height: 1.5em;
    font-weight: 300;
}

h1,
h2,
h3,
p {
    font-size: 1rem;
    margin-bottom: 8px;
}

h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.15em;
}

p {
    display: inline-block;
}

h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0px;
}

h3 {
    width: 76%;
    font-size: 1.1rem;
    color: #171a21;
    margin: 16px 0px 10px 0px;
}

a {
    font-family: 'Figtree', sans-serif;
    text-decoration: underline;
    color: #0019ed;
    margin: 0 10px;
}

a:hover {
    text-decoration: none;
}

/* IDs */

/* GEOGRAPHY */

#baltic {
    display: none;
}

#norway {
    display: none;
}

#maintenance,
#mainwrapper,
#mainWrapper2,
.dropdown {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 0px 16px 0px;
    overflow: hidden;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.dropdown {
    padding: 0;
    max-height: 0;
  /*  background-color: bisque; */
}

#maintenance {
    display: block;
}

#maintenance a {
    margin: 0;
}

#mainWrapper2 {
    max-width: 100%;
    padding: 16px 0px;
    background-color: #f8f9fa;
    align-items: flex-start;
}

#vwWrapper,
#vwNytteWrapper,
#audiWrapper,
#skodaWrapper,
#seatWrapper {
    max-width: 100%;
    margin: 16px 0px;
}

#audiWrap,
#vwWrap,
#vwNytteWrap,
#seatWrap,
#skodaWrap {
    position: relative;
    padding: 16px 0px;
	display: none;
}

#dealerVW,
#dealerVWCom,
#dealerSeat,
#dealerSkoda,
#dealerAudi {
	display: none;
}

#maincard {
    margin: 0px 20px;
    padding: 32px 0px 16px 0px;
    order: 0;
}

#headercard,
#footer,
#footerTwo {
    z-index: 99;
    margin-top: 34px;
    width: 100%;
}

#headercard {
    padding-left: 20px;
    order: -10;
}

#footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 30px 0 150px;
}

#footerTwo {
    display: flex;
    bottom: -1px;
    position: fixed;
    color: #fff;
    background-color: #000;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    margin: 0;
}

#footerTwo p {
    display: inline-block;
    padding: 0;
    margin: 10px 10px;
}

/* CLASSES */


.disclaimer {
    position: relative;
    display: flex;
}

/* KomPref start */
#vwWrapper,
#vwNytteWrapper,
#audiWrapper,
#skodaWrapper,
#seatWrapper {
    display: block;
}

.vwKomPref,
.vwNytteKomPref,
.audiKomPref,
.skodaKomPref,
.seatKomPref {
    display: none;
}
/* KomPref end */

.mmgConsent,
.mmgOtherChannelConsent {
    display: visible;
}

.footer {
    line-height: 2em;
    width: 100%;
    margin: 0 0 10px 0;
}

.samtykke {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.left a,
.right a {
    margin: 0;
    display: flex;
    justify-content: flex-start;
    text-decoration: none;
    color: #171a21;
}

.right a {
    margin: 0 10px;
    color: #fff;
    align-items: center;
    justify-content: space-between;
}

.disclaimer a {
    margin: 0;
}

.info {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-content: center;
    padding-right: 20px;
}

.carInfo,
.newsLetter {
    display: flex;
    justify-content: space-between;
    align-items: center;
 /*   background-color: crimson; */
}

.bilhold_logo {
    z-index: 1;
    height: 40px;
    margin: 10px;
    background-size: contain;
    background: url(../img/bilhold-b-logo-hvit.svg) no-repeat;
    width: 29px;
}

.pil {
    background: url(../img/arrow_forward.svg) no-repeat;
    height: 20px;
    width: 20px;
    margin-left: 5px;
}

.pilwhite {
    background: url(../img/arrow_forward_white.svg) no-repeat;
    height: 20px;
    width: 20px;
    transition: all .25s;
}

.pilwhite:hover {
    transform: scale(1.2);
}

.pilcolor {
    background: url(../img/arrow_forward.svg) no-repeat;
    height: 20px;
    width: 20px;
    margin: 10px 0;
    border: solid 5px #eab300;
    border-radius: 50px;
    background-color: #eab300;
}

.pilcolor:hover {
    border: solid 5px #f4e7bd;
    background-color: #f4e7bd;
    transition: all .25s ease-in-out;
}

/* TOGGLE SWITCHES START */

/* The switch - the box around the slider */

.smallSwitch {
    position: relative;
    display: inline-block;
    right: 5px;
    min-width: 30px;
    height: 12px;
}

/* Hide default HTML checkbox */

.smallSwitch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom checkbox */

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
    border: 1px solid #000;
    transition: all .25s;
cursor: pointer;
}

/* On mouse-over, add a grey background color */
.smallSwitch:hover input ~ .checkmark {
  background-color: #d0d3d9;
}

/* When the checkbox is checked, add a blue background */
.smallSwitch input:checked ~ .checkmark {
  background-color: #22252E;
    border: 1px solid #22252E;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.smallSwitch input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.smallSwitch .checkmark:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* TOGGLE SWITCHES END */

/* FORHANDLER START */

#preferredDealer {
    width: 80%;
    display: flex;
    flex-direction: column;
    background-color: #d0d3d9;
}

.dealer {
    margin: 15px 0;
}

/* FAVORITT FORHANDLER START */

#selectedDealerAudi, #selectedDealerVW, #selectedDealerVWCom, #selectedDealerSkoda, #selectedDealerSeat {
    display: flex;
    background-color: #d0d3d9;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5em 1.5em 2.5em;
}

.centerColumn h3 {
    width: 100%;
    margin: 0;
}

.leftColumn, .centerColumn, .rightColumn {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    align-items: flex-start;
    justify-content: flex-start;
}

.centerColumn {
    flex: 1 0 auto;
    margin: 0 1em;
}

.rightColumn {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.b-icon {
    width: 25px;
}

.selectedDealerInfo, .selectedDealerInfoAudi, .selectedDealerInfoVW, .selectedDealerInfoVWCom, .selectedDealerInfoSkoda, .selectedDealerInfoSeat {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    cursor: pointer;
    border: none;
    font-size: .95em;
    outline: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.selectedDealerInfo {
    position: absolute;
    right: 20px;
    margin-top: -42px;
}

.selectedDealerInfo:after, .selectedDealerInfoAudi:after, .selectedDealerInfoVW:after, .selectedDealerInfoVWCom:after, .selectedDealerInfoSkoda:after, .selectedDealerInfoSeat:after {
  content: url(../img/arrowCircleBlack.svg);
  margin: 0.16em 0 0 .4em;
  width: 15px;
}

.selectedDealerInfo:hover:after, .selectedDealerInfoAudi:hover:after, .selectedDealerInfoVW:hover:after, .selectedDealerInfoVWCom:hover:after, .selectedDealerInfoSkoda:hover:after, .selectedDealerInfoSeat:hover:after {
    filter: drop-shadow(0px 0px 4px rgba(23, 26, 33, .35));
}

.selectedDealerInfo.active:after, .selectedDealerInfoAudi.active:after, .selectedDealerInfoVW.active:after, .selectedDealerInfoVWCom.active:after, .selectedDealerInfoSkoda.active:after, .selectedDealerInfoSeat.active:after {
    content: url(../img/arrowCircleBlack.svg);
    margin: -5px 0 0 .4em;
    transform: rotate(180deg);
    width: 15px;
}

.selectedDealerInfo.active:hover:after, .selectedDealerInfoAudi.active:hover:after, .selectedDealerInfoVW.active:hover:after, .selectedDealerInfoVWCom.active:hover:after, .selectedDealerInfoSkoda.active:hover:after, .selectedDealerInfoSeat.active:hover:after {
    filter: drop-shadow(0px 0px 4px rgba(23, 26, 33, .35));
}

#showAudiPrefDealerInfo, #showVWPrefDealerInfo, #showVWComPrefDealerInfo, #showSkodaPrefDealerInfo, #showSeatPrefDealerInfo, .showPrefDealerInfo {
    display: flex;
    flex-direction: column;
    background-color: #d0d3d9;
    margin: 0 auto 1.5em 0;
    position: relative;
    justify-content: space-between;
    overflow: hidden;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.showPrefDealerInfo {
    background-color: transparent;
    margin: 0 auto .5em 0;
}

#showAudiPrefDealerInfo, #showVWPrefDealerInfo, #showVWComPrefDealerInfo, #showSkodaPrefDealerInfo, #showSeatPrefDealerInfo, .showPrefDealerInfo {
    padding: 0;
    max-height: 0;
}

#showAudiPrefDealerInfo p, #showAudiPrefDealerInfo img, #showVWPrefDealerInfo p, #showVWPrefDealerInfo img, #showVWComPrefDealerInfo p, #showVWComPrefDealerInfo img, #showSkodaPrefDealerInfo p, #showSkodaPrefDealerInfo img, #showSeatPrefDealerInfo p, #showSeatPrefDealerInfo img {
    margin-left: 60px;
}

#showAudiPrefDealerInfo p, #showVWPrefDealerInfo p, #showVWComPrefDealerInfo p, #showSkodaPrefDealerInfo p, #showSeatPrefDealerInfo p {
    margin-bottom: 1.5em;
}

.showPrefDealerInfo p {
    margin-bottom: .75;
}

#showAudiPrefDealerInfo a, #showVWPrefDealerInfo a, #showVWComPrefDealerInfo a, #showSkodaPrefDealerInfo a, #showSeatPrefDealerInfo a, .showPrefDealerInfo a {
    text-decoration: none;
    color: #000;
    margin: 0;
}


/* FAVORITT FORHANDLER END */

/* SØKEFELT FORHANDLER START */

#searchField {
    display: flex;
    flex-direction: column;
    margin: 1.5em 0;
    padding: 1em;
    background-color: #f9fafb;
}

#searchField input {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5em 2.5em;
  outline: none;
  background: white;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  transition: border-color 0.3s;
}

#searchField:before {
  content: "";
    z-index: 99;
  position: absolute;
  transform: translate(10px,50px);
  height: 25px;
  width: 25px;
  background: url("../img/searchicon.svg") center / contain no-repeat;
}

/* SØKEFELT FORHANDLER END */

/* LISTE OVER FORHANDLERE START */

#preferredDealerAudi, #preferredDealerVW, #preferredDealerVWCom, #preferredDealerSkoda, #preferredDealerSeat {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dealerWrapper {
    padding: 0 0 0 40px;
    border-bottom: 1px solid #e4e7ec;
}

.dealerWrapper h3 {
    width: 100%;
    margin: 15px 0 0 0;
}

/* HEART SHAPED CHECKBOX START */

.switch input[type="checkbox"] {
    display: inline-block;
    position: absolute;
    height: 25px;
    width: 25px;
    transform: translate(-33px,18px);
    outline: none;
    border: none;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    appearance: none;
    
}

.switch input[type="checkbox"]:before {
    height: 25px;
    width: 25px;
    position: absolute;
    content: url(../img/heartOutline.svg);
}

.switch input:hover[type="checkbox"]:before,
.switch input:checked[type="checkbox"]:before {
    content: url(../img/heartBlack.svg);
}

/* HEART SHAPED CHECKBOX END */

/* HEART SHAPED BUTTON START */

.switch2 input[type="checkbox"] {
    z-index: 99;
    display: inline-block;
    position: absolute;
    height: 25px;
    width: 25px;
    transform: translate(-0px,35px);
    outline: none;
    border: none;
    margin: 5px 0 0 0;
    -webkit-appearance: none;
    appearance: none;
}

.switch2 input[type="checkbox"]:before {
    height: 25px;
    width: 25px;
    position: absolute;
    content: url(../img/heartOutline.svg);
}

.switch2 input:hover[type="checkbox"]:before,
.switch2 input:checked[type="checkbox"]:before {
    content: url(../img/heartBlack.svg);
}

.switch2 input[type="checkbox"]:after {
    content: attr(data-after);
    font-size: .9em;
    width: 150px;
    transform: translate(30px,2px);

    position: absolute;
}

.switch2 input:checked[type="checkbox"]:after {
    content: attr(data-after);
}

/* LISTE OVER FORHANDLERE END */

/* VIS FLERE FORHANDLERE BUTTON START */

#AudiBtn {
    margin-top: 20px;
    font-size: 1em;
    font-family: 'Figtree',sans-serif;
    min-height: 3em;
    border-radius: 4em;
    padding: 0 1.5em;
    cursor: pointer;
    background: #fff;
    border: 2px solid #adb5bd;
    transition: all .4s;
}

#AudiBtn:hover {
    filter: drop-shadow(0px 0px 4px rgba(23, 26, 33, .35));
    border: 2px solid transparent;
}

#AudiBtn:active {
    filter: drop-shadow(0px 0px 0px rgba(23, 26, 33, .35));
    border: 2px solid #7e858c;
    background: #f9fafb;
}

.showContent {
    line-height: 1em;
    height: auto;
}

/* VIS FLERE FORHANDLERE BUTTON END */

/* FORHANDLER END */

/* DROPDOWN CARS */

.collapsible, .collapsibleSam {
    display: block;
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0 20px;
    background-color: transparent;
    transition: all .4s;
}

.collapsible:after, .collapsibleSam:after {
    position: absolute;
    font-size: 25px;
    right: 20px;
    font-weight: 200;
    margin-left: 20px;
    margin-top: -24px;
    transition: all .4s;
    transform: rotate(90deg);
}

/* DROPDOWN SAMTYKKE */

.collapsibleSam:after {
    margin-top: -22px;
}

#vwWrap .collapsible:after, #vwNytteWrap .collapsible:after, #audiWrap .collapsible:after, #skodaWrap .collapsible:after, #seatWrap .collapsible:after, .collapsibleSam:after {
    content: url(../img/bilhold-arrow.svg);
    width: 12px;
}

#vwWrap .collapsible.active:after, #vwNytteWrap .collapsible.active:after, #audiWrap .collapsible.active:after, #skodaWrap .collapsible.active:after, #seatWrap .collapsible.active:after, #mainWrapper2 .active:after {
    content: url(../img/bilhold-arrow.svg);
    width: 12px;
    transform: rotate(-90deg);
}

.collapsible:active, .collapsible:focus, .collapsibleSam:active, .collapsibleSam:focus {
    outline: none;
    border:none;
}

/* MODAL */

.modal-header, .modal-footer {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e3e6ec;
}

.modal-header h3 {
    color: #000;
}

.modal-body p, .modal-body li {
    font-family: 'Figtree', sans-serif;
    font-size: .85em;
    color: #000;
    margin-bottom: 1em;
}

.modal-content {
    border-radius: 0.5rem;
}

.modal-footer {
    border-top: 1px solid #e3e6ec;
    border-bottom: none;
}


.close {
    color: #000;
    opacity: 1;
}

.btn-light {
    outline: none;
    border: none;
    padding: 4px 10px;
    background-color: #000;
    color: #ffffff;
    transition: all .25s linear;
    cursor: pointer;
}

.btn-light:hover {
    opacity: .7;
}

/* MEDIA QUERYS */

@media only screen and (min-width: 420px) {
    
html, body {
    font-size: 14px;
}

.selectedDealerInfo {
    right: 41px;
    margin-top: -50px;
}

.dealerWrapper {
    padding: 0 0 0 60px;
    }
    
.switch input[type="checkbox"] {
    transform: translate(-45px,18px);
}
    
.switch2 input[type="checkbox"]:after {
    font-size: 14px;
    }

.selectedDealerInfo, .selectedDealerInfoAudi, .selectedDealerInfoVW, .selectedDealerInfoVWCom, .selectedDealerInfoSkoda, .selectedDealerInfoSeat {
    font-size: 14px;
}

.selectedDealerInfo:after, .selectedDealerInfoAudi:after, .selectedDealerInfoVW:after, .selectedDealerInfoVWCom:after, .selectedDealerInfoSkoda:after, .selectedDealerInfoSeat:after {
  content: url(../img/arrowCircleBlack.svg);
  margin: 0 0 0 .4em;
  width: 20px;
}

.selectedDealerInfo.active:after, .selectedDealerInfoAudi.active:after, .selectedDealerInfoVW.active:after, .selectedDealerInfoVWCom.active:after, .selectedDealerInfoSkoda.active:after, .selectedDealerInfoSeat.active:after {
    content: url(../img/arrowCircleBlack.svg);
    margin: -5px 0 0 .4em;
    transform: rotate(180deg);
    width: 20px;
}
    
}

@media only screen and (min-width: 501px) {
    
#searchField input {
    width: 50%;
    }
    
}


@media only screen and (min-width: 830px) {

#maintenance,
#mainwrapper,
#mainWrapper2 {
    width: 60%;
}

.dropdown {
    width: 100%;
}
    
    #footerTwo {
        display: flex;
        flex-direction: row;
    }
    .bilhold_logo {
        background: url(../img/bilhold-logo-hvit.svg) no-repeat;
        width: 135px;
    }
    
.info {
    width: 90%;
}
    
.disclaimer {
    width: 90%;
}

}

@media only screen and (min-width: 1000px) {

#maintenance,
#mainwrapper,
#mainWrapper2 {
    width: 50%;
}
}