.bedankt{
	margin: 0 auto 50px;
	width:100%;
	max-width: 470px;
	display: block;
}

.dateRangeHolder{
	display: flex;
	flex-direction: row;
	align-items: stretch;
	background-color: var(--themeTextLightGrey3);
	border-radius: var(--themeRadius);
	padding: 15px 9px;
	position: relative;
}

.dateRangeHolder .divider{
	height: 45px;
	width: 1px;
	display:inline-block;
	background-color: #ddd;
	border: none;
}

.dateRangeHolder label{display: flex;align-items: center;justify-content: center;flex-direction: row;width: 50%;color: var(--themeTextGrey);padding: 0;gap: 5px;font-size: 13px;font-weight: 300;}
.dateRangeHolder label:first-of-type svg{
	height:22px;
}

.dateRangeHolder label div{
	display:flex;
	flex-direction: column;
	align-items: stretch;
	font-weight: 400;
}
.dateRangeHolder label div span{
	color: var(--themeBlue);
	font-size: 12px;
}
.dateRangeHolder label div font{font-weight: 300;}
.dateRangeHolder label svg{
	height:26px;
	width:32px;
	fill: var(--themeTextLightGrey);
}

.dateRangeHolder input.daterange{
	opacity:0.0;
	position: absolute !important;
	top:0;
	left:0;
	height: 100%;
	width: 100%;
	cursor: pointer;
}

.statusHistory{
    padding-top: 12px;
    border-top: 1px solid var(--themeTextLightGrey3);
    margin-top: 25px;
    float: left;
}
.statusHistory .statusRow{
	--statusColor:var(--themeTextLightGrey3);
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    min-height: 60px;
	position:relative;
}
.statusHistory .statusRow.done:not(.inprogress){
	--statusColor: var(--themeGreen);
}

.statusHistory .statusRow .status-circle{
    --size: 24px;
    display: block;
    border-radius: 50%;
    width: var(--size);
    height: var(--size);
    background-color: var(--statusColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.statusHistory .statusRow > div{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 3px;
}
.statusHistory .statusRow > div label{
    font-size: 16px;
    line-height: 1.4em;
    font-weight: 300;
}
.statusHistory .statusRow > div span{font-size: 12px;font-weight: 300;}

.statusHistory .statusRow.status-circle{
    background-color: var(--statusColor);
}
.statusHistory .statusRow.done .status-circle{
	color:#fff;
}
.statusHistory .statusRow.inprogress .status-circle{
	border: 6px solid var(--themeGreen);
	background-color:white;
	position:relative;
}
.statusHistory .statusRow.inprogress .status-circle:after{
	content:'';
	position: absolute;
	background-color: rgba(255,255,255,0.7);
	background-image: url('/images/spinner.gif');
	background-size: cover;
	width: calc(100% + 14px);
	height: calc(100% + 14px);
	top: -7px;
	left: -7px;
}

.statusHistory .statusRow .status-circle svg {
    width: calc(100% - 9px);
    height: calc(100% - 9px);
}
.statusHistory .statusRow:not(:last-of-type)::after{
	content:'';
	width:1px;
	height: 100%;
	position:Absolute;
	background-color: var(--statusColor);
	left: 12px;
	top: 50%;
}

.statusHistory .statusRow.canceled{
	--statusColor: var(--themeOrange);
}

.calendarSliderHolder{
	width:100%;
	margin: 25px 0;
	overflow:hidden;
}
.calendarSliderHolder .calendarSlider{
	width:max-content;
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.calendarSliderHolder .calendarSlide{
	width: 350px;
	padding-bottom: 20px;
}
.calendarButtons{
	display:flex;
	width:100%;
	justify-content: flex-end;
	gap: 10px;
}
.calendarButtons a{
    padding: 14px 25px;
    text-align: center;
    width: 130px;
}

a.alternatief{
	text-decoration:underline;
}

.extraOptieHolder{
	margin: 10px 0 -13px;
	border-top: 1px solid #f4f5f6;
	padding: 10px 0 0;
}
.extraOptieHolder label{
	margin:0;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 300;
	text-align: center;
}
span.extraOptie{
	display:inline-flex;
	gap:10px;
	justify-content: space-between;
	width: 100%;
	font-size: 12px;
	border-bottom: 1px solid #f4f5f6;
	padding: 4px 0;
}
span.extraOptie > b{
	max-width: 100%;
}
span.extraOptie font{
	width:100%;
	min-width: max-content;
	flex: 1;
	text-align: right;
}
.cancelReservering{
	width:100%;
	margin-top:10px;
}

.verzekeringskosten{
	width: calc(100% - 120px) !important;
	margin-right: 10px;
}

.extra-opties label.customCheckbox > div b{
	width:100%;
}
.extra-opties label.customCheckbox > div span{
	flex:none;
	width: 80px;
	text-align: right;
}
.extra-opties label.customCheckbox > div input[type="checkbox"]{
    top: 50% !important;
    transform: translateY(-50%);
}
.extra-opties label.customCheckbox > div .subLabel{
	font-size:12px;
	font-weight:bold;
	line-height: 1.3em;
}
.extra-opties label.customCheckbox > div input[type="number"]{
	width:80px;
	position: relative !important;
	left: inherit !important;
	top: inherit !important;
	line-height: 1.2em !important;
	height: auto;
}