/* CSS Document */

/* ########################################################### FILESTART ################################################### */
/* ########################################################### FILESTART ################################################### */
/* ########################################################### FILESTART ################################################### */
.progressbar ul {
    margin: auto;
}
.progressbar li {
      list-style-type: none;
      width: 25%;
      float: left;
      position: relative;
      text-align: center;
      text-transform: uppercase;
}
.progressbar li:before {
    width: 26px;
    height: 26px;
    content: "";
    line-height: 26px;
    border: 0px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 3px auto;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    background-color: #cde0f8;
}
.progressbar li:after {
     width: 100%;
     height: 2px;
     content: '';
     position: absolute;
     background-color: #eff0f6;
     top: 13px;
     left: -50%;
     z-index: 0;
}
.progressbar li:first-child:after {
     content: none;
}
.progressbar li.active + li:after {
    background-color: #cde0f8;
}
.progressbar li.active:before {
    background: #69a4f8;
    color: #ffffff;
}
.progressbar li::before {
    color: black;
    background: #eff0f6;
}
.progressbar {
    counter-reset: step;
}
.progressbar li:before {
    content: counter(step);
    counter-increment: step; 
}

#loggedIn {
    position: fixed;
    top: 0;
    right: 0;
    min-width: 6rem;
    min-height: 2rem;
    background-color: white;
    border: 0.1rem solid hsla(0,0%,42%,1.00);
    margin-right: 1rem;
    margin-top: 1rem;
    padding: 0.3rem;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #99c0bc; 
}

.partner-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.partner-dropdown a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

#loggedIn:hover .partner-dropdown {
    display: block;
}

.bar {
    margin-top: 0.15rem;
    border: 0.1rem solid #666;
    border-radius: 1px;
    height: 4px;
    width: 100%;
}

.in {
    animation: fill 1438s linear 1;
    height: 100%;
    background-color: green;
}


@keyframes fill {
  100% {
    width: 0%;
    background-color: red;
  }
  80% {
    background-color: red;
  }
  79% {
    background-color: green;
  }
  0% {
    width: 100%;
  }
}

#showNewBooking {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 0.5rem;
    min-width: 10rem;
    min-height: 4rem;
/*    background-color: hsla(138,100%,39%,0.50);
    border: 1px solid hsla(0,0%,42%,1.00);*/
    margin-right: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 2px 2px 4px hsla(0,0%,42%,0.40);
    background-color: #EFE;
    border: 1px solid #DED;
    cursor: hand;
    cursor: pointer;
    visibility: hidden;
}

.showNewBookingText {
    color: #798879;
}

/*#alertBox {
   width: 100px;
   display: none;
    height: 100px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
	min-height: 200px;
	min-width: 300px;
	background: rgba(255,255,255, 0.8);
	border: 0px solid #666;
	border-radius: 8px;
	padding: 5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}*/
div {
/*    border: 1px solid #ff0000;*/
}

.hr {
    width: 90%;
    border: none;
    height: 1px;
    background: #c9e5e3;
    margin: auto;
}
.hero-section {
    min-height: 100vh;
 /*   background-image: url(../images/backgrounds/background.webp);    
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top;*/
    margin-top: 0px;
    padding-top: 0px;
}

.trustindex {
    left: 0;
    right: 0;    
    margin: auto;
    width: 90%;
    opacity: 0.92;
}

.trustindex img {
    border-radius: 5px;
/*    border: var(--Geel) 1px solid;*/
}

.footer-section {
	background: rgba(255,189,16, 0.8);
    min-height: 100vh;
}

.topSpace {
    margin-top: 3rem;
}

.btn {
    background-color: var(--menuBtnBack);
    color: white;
    padding: 10px 18px;
    font-size: 16px;
    margin-right: 1rem;    
    opacity: 1;
    /*padding: 5px 5px;*/    
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 2px 2px 3px 1px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: var(--menuBtnBackHover);
}

.fa-home {
    background:url('../images/icons/w_home.png') no-repeat left center;
    padding-left:30px;
}
.fa-book {
    background:url('../images/icons/w_bookings.png') no-repeat left center;
    padding-left:30px;
}
.fa-car {
    background:url('../images/icons/w_car.png') no-repeat left center;
    padding-left:30px;
}
.fa-calender {
    background:url('../images/icons/w_calendar.png') no-repeat left center;
    padding-left:30px;
}
.input-icons {
    color: black;
    margin-right: 1rem;    
    opacity: 1;
    /*padding: 5px 5px;*/    
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 2px 2px 3px 1px rgba(0,0,0,0.1);
}
.search-icon {
    margin-left: 3rem;
    background:url('../images/icons/search.png') no-repeat left center;
    padding-left:30px;
    cursor: pointer;
}
.excel-icon {
    margin-right: 3rem;
    background:url('../images/icons/excel.png') no-repeat left center;
    padding-right:30px;
    cursor: pointer;
}
.topSpaceWerknemersDiv {
    width: 100vw;
}
.topSpaceWerknemers {
    margin: 2rem;
}

.infoBox {
    width: 50vw;
	min-height: 40vh;
    margin-top: var(--MarginTop);
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
    left: 0;
    right: 0;
	padding: 15px;
	background: var(--infoBox);
    position: absolute;
}

.infoBox img {
    float: left;
    margin-right: 10px;
}

.infoBoxExtra, .infoBoxExtra1  {
    width: 50vw;
	min-height: 40vh;
    margin-top: var(--MarginTop);
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
    left: 0;
    right: 0;
	padding: 15px;
	background: var(--infoBox);
}

.infoBoxExtraSmallerSpace {
    margin-top: var(--MarginMinTop);
}

.infoBoxExtra img {
    float: left;
    margin-right: 10px;
}

.infoBoxExtra1 img {
    float: right;
    margin-right: 10px;
}

.infoBoxExtra ol {
    counter-reset: item;
}

.infoBoxExtra li {
    display: block;
    color: #666666;
}
.infoBoxExtra li:before {
    content: counters(item, ".") " ";
    counter-increment: item;
}

.readMoretext a {
    color: var(--menuTopBack);
    font-style: italic;
}

#readLess {
    display: block;
}
#readMore {
    display: none;
    text-align:left;
}

.tabIncluded,.tabExcluded, .tabOptional {
    width: 8rem;
    text-align: center;
    display: inline-block;
    padding: 0.3rem;
    padding-bottom: none;
    border: 1px solid var(--Geel);
    border-bottom: none;
    border-radius: 2px,2px,0px,0px;
    background-color: var(--Geel);
}

.textIncluded, .textExcluded, .textOptional {
    width: 100%;
    border: 1px solid var(--Geel);
    min-height: 5rem;
    padding: 0.3rem;
    border-radius: 0px,2px,2px,2px;
    display: inline-block;
}

.tabExcluded {
    background-color: transparent;
    display: inline-block;
}

.tabOptional {
    background-color: transparent;
    display: inline-block;
}

.textExcluded {
    width: 100%;
    border: 1px solid var(--Geel);
    min-height: 5rem;
    padding: 0.3rem;
    border-radius: 2px,2px,2px,2px;
    display: none;
}

.textOptional {
    width: 100%;
    border: 1px solid var(--Geel);
    min-height: 5rem;
    padding: 0.3rem;
    border-radius: 2px,2px,2px,2px;
    display: none;
}

.carrier {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
}
.carrierCenter {
	width: 70vw;
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
    text-align: center;
}
.row {
	width: 100%;
	display: block;	
	text-align:left;
 /*   border: 1px solid hsla(289,85%,48%,1.00);*/
}

.betweenRow {
	background: var(--betweenRowBack);
	height: 40px;
	padding: 10px;
	text-align:center;
	font-weight: bold;
	text-transform:uppercase;
    color: var(--betweenRowText);
}

.cellfloat {
    float: left;
	display: inline-block;
	text-align:center;
	vertical-align: top;
}

.cellfloatleft {
	display: inline-block;
	text-align:left;
	vertical-align: top;
}

.containerConfirm {
    display: flex;
    column-gap: 3rem;
    row-gap: 1rem;
    flex-direction: row;
}

.cellfloatleftSwitch, .cellfloatrightSwitch {
    flex: 1;
}

.widthWorkField {
    width: 70%;
}

.betweenCell {
    margin-bottom: 0.5rem; 
    min-height: 3rem; 
    border-left: 1px solid #eaeaea;
    padding-right: 3px;
}

.cellfloatright {
    float: right;
	display: inline-block;
	text-align: left;
	vertical-align: top;
}


.cellfloatleftFixed {
	display: inline-block;
	text-align:left;
	vertical-align: top;
}

.cellfloatrightFixed {
	display: inline-block;
	text-align:left;
	vertical-align: top;
}
.width10 {
	width: 9%;
}

.width15 {
	width: 14%;
}

.width20 {
	width: 20%;
}

.width25 {
	width: 24%;
}

.width30 {
	width: 30%;
}

.width35 {
	width: 35%;
}

.width40 {
	width: 40%;
}

.width48 {
	width: 45%;
}

.width480 {
	width: 48%;
}

.width50 {
	width: 49%;
}

.width60 {
	width: 58%;
}

.width70 {
	width: 68%;
}

.width75 {
	width: 73%;
}

.width80 {
	width: 79%;
}

.width90 {
	width: 88%;
}

.width100 {
	width: 100%;
}

.spacer {
	height: 50px;	
}

.borderradius5 {
    border-radius: 5px;
}

.borderradius10 {
    border-radius: 10px;
}

.borderradius15 {
    border-radius: 15px;
}

.whiteBack {
    background: var(--semiWhite);
    padding-top: 32px;
    padding-bottom: 32px;
}

.greeenBack {
    background: var(--greenBack);
}

.NietBeschikbaar {
    box-shadow: 0px 0px 10px 5px var(--errorMelding) inset;
    -webkit-box-shadow: 0px 0px 10px 5px var(--errorMelding) inset;
    -moz-box-shadow: 0px 0px 10px 5px var(--errorMelding) inset;
    border-radius: 8px;
}

.tintBack {
    background: var(--greenBack);
    min-height: 15rem;
}

.CDWBottom {
    background: var(--semiWhite);
    border: 1px solid #f5f9fa;
    border-top: 0px;
    border-radius: 0px 0px 5px 5px;
    min-height: 2rem;
}

.whiteBackground {
    background: var(--semiWhite);    
    border: 1px solid #f5f9fa;
    border-left: 0px;
    border-radius: 0px 5px 5px 0px;
    min-height: 15rem;
}

.CarOptionsContainer {
    display: flex; /* or inline-flex */
    flex-wrap: wrap;
    align-content: flex-start;
    row-gap: 5px;
    column-gap: 10px;
}

.CarOptions {
    flex-basis: auto;
    background: var(--semiWhite);
    border-radius: 5px;
    padding: 8px;
    min-height: 1.5rem;
    text-align: center;
    vertical-align:middle;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 2px 4px;
}

.CarOptionsText {
    color: var(--greenText);
}

.CarOptionsInfo {
    background: var(--greenBack);    
    border: 0px;
    border-radius: 5px 0px 0px 5px;
    min-height: 5rem;
}

.CarOptionsUpDown {
    background: var(--semiWhite);    
    border: 1px solid #f5f9fa;
    border-left: 0px;
    border-radius: 0px 5px 5px 0px;
    min-height: 5rem;
}

.padding5 {
	padding: 5px;
}

.padding10 {
	padding: 10px;	
}

.padding15 {
	padding: 15px;	
}

.padding20 {
	padding: 20px;	
}

.paddingTop5 {
	padding-top: 5px;	
}

.paddingTop10 {
	padding-top: 10px;	
}

.paddingTop15 {
	padding-top: 15px;	
}

.paddingTop20 {
	padding-top: 20px;
}

.paddingLeft5 {
    padding-left: 5px;
}

.paddingLeft10 {
    padding-left: 10px;
}

.paddingLeft20 {
    padding-left: 20px;
}
.paddingRight20 {
    padding-right: 20px;
}
.paddingBottom {
    padding-bottom: 0px;
}

.margin20 {
	margin: 20px;	
}

.marginTop5 {
    margin-top: 5px;
}
.marginTop10 {
    margin-top: 10px;
}
.marginTop15 {
    margin-top: 15px;
}
.marginTop20 {
    margin-top: 20px;
}


.marginBottom10 {
    margin-bottom:10px;	
}

.marginLeft20 {
    margin-left: 20px;
}

.marginRight20 {
    margin-right: 20px;
}

#korting {
    display: none;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.textLeft {
	text-align: left;
}

.texCenter {
	text-align: center;
}

.textRight {
	text-align: right;
}

#driver_no {
	width: 98%;	
}

.labelHeight {
	margin-top:5px;	
	margin-bottom:5px;	
}


.client-step,
.payment-step { display: none; }
.client-step.active,
.payment-step.active { display: block; }

.payment-option + .payment-option { margin-top: 5px; }
.payment-option input[type="radio"] { display: none; }
.payment-option label { display: block; border: 1px solid #f3f3f3; border-radius: 4px; padding: 1.5em; cursor: pointer; }
.payment-option label img { position: absolute; }
.payment-option label h5,
.payment-option label h6 { padding-left: 60px; margin: 0; }
.payment-option label h5 { font-size: 1.2rem; }
.payment-option label h6 { font-weight: lighter; color: #777;}
.payment-option label:hover { background: #f3f3f3; border-color: #ccc }
.payment-option input[type="radio"]:checked + label { background: #e6f6ff; border-color: #94c6ec; }

.payment-option label + select { position: absolute; margin: -50px 0 0 200px; line-height: 32px; padding: 3px 6px; border-radius: 3px; border: 1px solid #f3f3f3; }
.payment-option input[type="radio"]:checked + label + select { border-color: #94c6ec;   }
.payment-option label + select.wv-offset { margin-left: 300px; }
.payment-option .terms { position: absolute; margin: -66px 0 0 195px; display: none;}
.payment-option input[type="radio"]:checked + label + .terms { display: block; }

.payment-bank { width: 40%; height: 30px; }
.payment-margin-right {  display: inline-block; width: 12rem;}

            
ol {
    counter-reset: item;
  /*  list-style-type: none;*/
    text-align: left;
    padding: 20px;
}

ol li {
    display: block;
    margin-bottom: 10px;
}

ol li:before {
    content: counter(item) "  ";
    counter-increment: item;
}
    

ol > li:before {
  font-weight: bold;
}
/* ########################################################### TAB ################################################### */
/* ########################################################### TAB ################################################### */
/* ########################################################### TAB ################################################### */

.tabMenu {
    width: 70%;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 5px 5px 0px 0px;
    display: inline-flex;
	margin-top: var(--MarginTop);
}

.tabMenuRow {
	width: 70%;
    display: inline-flex;  
}

.tabImage {
	vertical-align:middle;
}

.tablinks{
	width: 22%;
	vertical-align:middle;
    display: table-column;
    font-size: 1.4rem;
}

/* Style the buttons that are used to open the tab content */
.tabMenu button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
}

/* Change background color of buttons on hover */
.tabMenu button:hover {
	background-color: var(--tabHoveractive);
}

/* Create an active/current tablink class */
.tabMenu button.active {
	background-color: var(--tabActive);
    color: var(--semiWhite);
}

/* Style the tab content */
.tabcontent {
    background: var(--Geel);
    /* background-color: #feffef; */
    font-size: 1.2rem;
    width: 100%;
    height: 60px;
    padding: 10px 25px;
    text-align: left;
    border-top: none;
    border-bottom: none;
    display: none; 
} 

#home {
    display:block;
    width: 100%;
    background: var(--semiWhite);
    border-radius: 5px;
    padding: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.mainConfirm {
      display: flex;
      flex-direction: row;
}

#left {
    display:block;
    width: 100%;
    float: left;
    background: var(--greenBack);
    border-radius: 5px;
    padding: 1.5rem;
}

#right {
    width: 100%;
    float: right;
    background: var(--greenBack);
    border-radius: 5px;
    padding: 1.5rem;
}

.Voorwaarden {
    font-size: 12px;
}

.RentFormCarrier {    
    border: 0px solid #02373a;
    border-top: none;
    width: 60%;
    display: inline-flex;
}

.linkClass {
    color: var(--greenText);
    font-weight: normal;
    text-decoration: underline;
}

.rowRentForm {
    border: 0px solid #00f;
	width: 30%;
	margin: .2em;
	float:left;
    -ms-flex-preferred-size: 100%;
	flex-basis: 100%;
    flex-direction: column;
	padding: 5px;
    text-align: left;
}

.betweenForm {
    float: left; 
    margin-top: 1rem; 
    min-height: 3rem; 
    border-left: 1px solid #eaeaea;
    padding-right: 3px;
}

.rowRentFormTop {
	width: 100%;
    text-align: left;
}

.rowRentFormTop > h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.cellRentFormL {
    text-align: left;
	width: 95%;
    float: left;
}

.cellRentFormR {
    text-align: left;
    width: 95%;
    float: left;
    /* padding: 10px; */
}

.rowRentFormFull {
	width: 100%;
	text-align: right;
}

.cellRentFormC {
	margin-right: 35px;
	text-align: center; 
    border: 0px solid #E80003;
}


#tussendiv {
	position:absolute;
	/* top: 50%;
	left: 47%;
	transform: translateY(-50%); */
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
}

#AfterConfirm {
	position:absolute;
	left:0;
  	display: none;
	width: 100vw;
	height: 100vh;
	min-height: 100vh;
	background-color: rgba(255,255,255, 0.8);
	text-align:center;
	vertical-align: middle;
	z-index:1000;
}

#loading {
  display: inline-block;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(5,5,5,.3);
  border-radius: 30%;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@media (max-width: 1600px){
	.carrier {
		width: 95%;	
	}
    .RentFormCarrier {
        width: 85%;
    }
}

@media (max-width: 1400px){
    .RentFormCarrier {
        width:95%;
    }
    .widthWorkField {
        width: 78%;
    }
}

@media (max-width: 1100px){
    .tabMenu {
        width: 97%;
        margin-top: var(--MarginTopMob);
    }

    .topSpace {
        margin-top: 3rem;
    }
    #home {
        padding: 0.5rem;
    }
}

@media (max-width: 950px){
    .tabMenu {
        width: 97%;
        margin-top: var(--MarginTopMob);
    }

    .width80 {
        width: 76%;
    }
    #tussendiv {
    	left: 40%;
    }
}

@media (max-width: 900px){
    .tabMenu {
        width: 97%;
        margin-top: var(--MarginTopMob);
    }
    
    .RentFormCarrier {
        width:90%;
    }

    .containerConfirm {
        flex-direction: column-reverse;
    }

    .cellfloatrightSwitch {
        text-align: left;
    }

    .cellfloatleft {
		width: 100%;
		display: block;
	}
   .cellfloatright {
		width: 100%;
		display: block;
   }
    .tabIncluded,.tabExcluded, .tabOptional {
        width: 6rem;
    }
	#driver_no {
		width: 99%;
	}
	.own_risk_choicek {
		width: 50%;	
	}
	.tours_pax {
		width: 50%;	
	}
    .infoBox {
        margin-top: var(--MarginMobTop);
        width: 90vw;
    }
    .infoBoxExtra, .infoBoxExtra1 {
        margin-top: var(--MarginExtraMobTop);
        width: 90vw;
     }
    .infoHideButton {
        display: none;
    }
    .trustindex {
        width: 100%;
    }
    .carrierCenter {
	    width: 90%;
    }
}

@media (max-width: 90px){
    .RentFormCarrier {
        width:85%;
    }
    .rowRentForm {
        flex-direction:  column;
        width: 100%;   
        text-align: center;
    }
	.cellRentFormL {
		 width: 100%;
	}
	.cellRentFormR {
		 width: 100%;
	}
 	.cellRentFormC {
		margin-right: 5px;
	}
    .tabMenuRow {
	    width: 90%;
    }
    .tablinks{
	    width: 33%;
        font-size: 1rem;
    }
}

@media (max-width: 800px){
    input[type=submit],input[type=button] {
        width: 100%;
		margin-bottom: 10px;
    }
    .width80 {
        width: 78%;
    }
}

@media (max-width: 600px){

}

/* ########################################################### INPUT ################################################### */
/* ########################################################### INPUT ################################################### */
/* ########################################################### INPUT ################################################### */

select {
    font-family: 'Poppins',serif;
}
option {
    font-family: 'Poppins',serif;
}

input[type=text], select, textarea, option {
    width: 99%;
    height: 40px;
    background: var(--inputBack) 0% 0% no-repeat padding-box;
    border: 1px solid var(--inputBorder);
    opacity: 1;
    padding: 10px 5px;
    border:0;
    outline:0;
    border-radius: 5px;
	color: var(--inputText);
}

input::placeholder {
  opacity: 0.3;
  color: var(--inputText);
}

input:focus {outline:none!important;}

input[type=file] {
    width: 99%;
    height: 40px;
    background: var(--inputBack) 0% 0% no-repeat padding-box;
    border: 1px solid var(--inputBorder);
    opacity: 1;
    padding: 5px 5px;
    border-radius: 5px;
	color: var(--inputText);
}

input[type=submit],input[type=button]  {
    width: 140px;
    height: 40px;
    background: var(--inputButtonBack) 0% 0% no-repeat padding-box;
    opacity: 1;
    /*padding: 5px 5px;*/
    cursor: pointer;
	color: var(--semiWhite);
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 2px 2px 3px 1px rgba(0,0,0,0.1);
}

#SearchCars{  /* knop op index  */
    height: 45px;
}

input[type=checkbox] {
    width: 30px;
    background: var(--inputBack) 0% 0% no-repeat padding-box;
    border: 1px solid var(--inputBorder);
    opacity: 1;
    padding: 10px 5px;
    border-radius: 5px;
	color: var(--inputText);
}

input[type=submit]:hover, input[type=button]:hover {
    background: var(--Geel); /*#ffbd10;*/
    color: #fff;
}

textarea {
	height: 100px;
	color: var(--inputText);
}

#from {
    cursor: pointer;
}

#to {
    cursor: pointer;
}


.lbl-checkbox {
    padding: 5px;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

