@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* 
font-family: 'Montserrat', sans-serif;
Montserrat
Thin 100
ExtraLight 200
Light 300
Regular 400
Medium 500
SemiBold 600
Bold 700
ExtraBold 800
Black 900 */


:root {
    /* ORANGE */
    /* --primary-color-hex: #F7B407;
  --primary-color-rgb: 247, 180, 7;
  --default-grey: #C5C5C5;
  --warning: #ff0000; */
    /* GREEN */
    --primary-color-hex: #7ac052;
    --primary-color-rgb: 122, 192, 82;
    --default-grey: #C5C5C5;
    --warning: #ff0000;
    --darker-color: #292929;
    --primary-filter: brightness(0) saturate(100%) invert(67%) sepia(36%) saturate(582%) hue-rotate(54deg) brightness(92%) contrast(98%);
    /* Used on items with a non white background to override default text color */
    --text-color-hex: #fff;
}

html {
    background: rgba(var(--primary-color-rgb), 0.05);
}

/* Base ================================================== */
body {
    overflow-x: hidden;
    background: transparent;
    font-family: 'Open Sans';
    font-size: 16px;
    color: var(--darker-color);
    position: relative;
    min-height: 100vh;
    height: 100%;
}

#hoek {
    width: 640px;
    height: 420px;
    position: absolute;
    right: -5px;
    bottom: 0;
    pointer-events: none;
}

    #hoek path {
        fill: rgba(var(--primary-color-rgb), 0.2);
    }

main {
    position: relative;
    z-index: 1;
    padding-bottom: 110px;
}

h1,
h2,
h3,
h4,
p {
}

h1 {
    font-size: 36px;
    font-weight: 700;
}

h2 {
    font-weight: 900;
    font-size: 35px;
}

h3 {
    font-size: 20px;
    font-weight: 800;
    padding: 0;
    margin: 0;
}

p {
    color: var(--darker-color);
}

    p.small {
        font-size: 14px;
    }

.darker {
    color: var(--darker-color);
}

.btn {
    padding: 10px 15px;
    border: none;
    font-weight: 700;
    text-transform: capitalize;
}

    .btn::after {
    }

.btn-primary {
    background: var(--primary-color-hex);
    font-size: 16px;
}

.btn.btn-primary::after {
    content: '\f054';
    font-family: "Font Awesome 6 Pro";
}

.btn-primary:hover {
    background: rgba(var(--primary-color-rgb), 0.5);
}

.btn-primary:focus {
    background: rgba(var(--primary-color-rgb), 0.5);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    background: rgba(var(--primary-color-rgb), 0.5);
}

.btn-primary:not(:disabled):not(.disabled):not(.inactive),
.btn-primary:not(:disabled):not(.disabled):not(.inactive) {
    color: var(--text-color-hex);
}

    .btn-primary:not(:disabled):not(.disabled):not(.inactive):hover,
    .btn-primary:not(:disabled):not(.disabled):not(.inactive):hover {
        color: #fff;
    }

.btn-secondary {
}

    .btn-secondary:hover {
    }

.btn-prev {
    background-color: #C5C5C5;
    color: #fff !important;
    padding: 10px 25px;
    font-weight: 400;
}

    .btn-prev::before {
        content: '\f053';
        font-family: 'Font Awesome 6 Pro';
        padding-right: 60px;
    }

.btn-prev:hover {
    background: rgba(var(--primary-color-rgb), 0.5);
}

.btn-prev:focus {
    background: rgba(var(--primary-color-rgb), 0.5);
}

.btn-next {
    font-weight: 400;
}

    .btn-next::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Pro';
        padding-left: 60px;
    }

button.btn.btn-primary {
    padding-left: 25px;
    padding-right: 20px;
}

    button.btn.btn-primary::after {
        padding-left: 60px;
    }

.btn.inactive {
    background: var(--default-grey);
}

#step-2 .btn-next {
    display: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select {
    background-color: #fff;
    height: 40px;
    padding-left: 20px;
    color: var(--darker-color);
    border: none;
    border-radius: 10px;
    max-width: 660px;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="email"]:focus,
    input[type="number"]:focus,
    select:focus {
        outline-color: var(--primary-color-hex);
    }

.toggle {
    position: relative;
    width: 44px;
    height: 20px;
    background: rgba(var(--primary-color-rgb), 0.5);
    border-radius: 10px;
    flex-shrink: 0;
}

    .toggle::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -7px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
        transition: 0.3s;
    }

input[type="checkbox"]:checked + label .toggle::after {
    background: red;
    background: rgba(var(--primary-color-rgb), 1);
    transform: translateX(25px);
}

input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
}

p.red {
    color: #FF0000 !important;
}

main section.step-content .step-nav {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}

/* .app-wrap { display: flex; } */
.app-wrap.progress-bar_top {
    flex-direction: column;
}

/* main { width: calc(100% - 480px); margin-left: 480px; } */
.container {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

.progress-bar_top main {
    width: 100%;
}

.info-icon {
    height: 40px;
    stroke-width: 100;
    cursor: pointer;
    flex-shrink: 0;
}

    .info-icon path {
        stroke-width: 45;
        stroke: var(--primary-color-hex);
    }

        .info-icon path:last-child {
            stroke-width: 0;
            fill: var(--primary-color-hex);
        }

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 0px rgba(146, 146, 146, 0.08);
    border: none;
    display: block;
}

textarea {
    width: 100%;
    min-height: 185px;
    border: none;
    padding: 20px 25px;
}

    textarea:focus {
        outline: none;
    }

    textarea::placeholder {
        color: #9C9C9C;
    }

.d-flex {
    display: flex;
}

.icon {
    display: flex;
    align-items: center;
}

    .icon img,
    .icon svg {
        border: 1px solid var(--primary-color-hex);
        border-radius: 100%;
    }

.pt-100 {
    padding-top: 100px;
}

.pt-40 {
    padding-top: 40px;
}

a.text-down {
    font-size: 12px;
    display: block;
    color: var(--primary-color-hex) !important;
    text-decoration: none;
}

    a.text-down::before {
        content: '\f078';
        font-size: 16px;
        font-family: 'Font Awesome 6 Pro';
        font-weight: 300;
        transition: all 0.5s ease-in-out;
        margin-right: 10px;
    }

    a.text-down[aria-expanded="true"]::before {
        transform: rotate(180deg);
        display: inline-block;
    }

a u {
    color: #292929;
}

.color-green {
    color: var(--primary-color-hex);
}

.dropdown-data-small {
    font-size: 12px;
}

.app-wrap {
    min-height: 100vh;
    position: relative;
}

footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 0;
    z-index: 999;
}

    footer .container {
        width: 100vw;
        position: relative;
        display: flex;
        justify-content: flex-end;
    }

/* Nav ================================================== */
nav {
    width: 100vw;
    max-width: 100%;
    height: 140px;
    min-height: 140px;
    margin-bottom: 60px;
    position: relative;
    background: #fff;
    box-shadow: 5px 3px 30px 0px rgba(184, 184, 184, 0.22);
}

    nav .nav-stepper {
        display: flex;
    }

    nav .nav-title {
        padding: 50px 50px 0 50px;
        height: 150px;
    }

        nav .nav-title img {
            height: 30px;
            width: auto;
        }

    nav .nav-content {
        width: 100%;
        height: calc(100% - 0px);
        display: flex;
        flex-direction: row;
        justify-content: start;
    }

    nav .nav-stepper {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

        nav .nav-stepper .step {
            display: flex;
            align-items: center;
            color: var(--default-grey);
            margin: 15px 0;
            position: relative;
            height: fit-content;
            transition: color 0.3s;
            pointer-events: none;
        }

            nav .nav-stepper .step .step-circle {
                background: #fff;
                font-weight: 700;
                display: flex;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                border: 1px solid var(--default-grey);
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                user-select: none;
                transition: background 0.3s;
            }

            nav .nav-stepper .step h4 {
                margin: 0 0 0 15px;
                font-weight: 300;
                font-size: 15px;
            }

            nav .nav-stepper .step::after {
                content: "";
                border-bottom: 1px solid var(--default-grey);
                width: 50px;
                margin: 0 12px;
                height: 60%;
            }

            nav .nav-stepper .step:last-child::after {
                display: none;
            }

            nav .nav-stepper .step:nth-child(1) .step-circle::after {
                content: '1';
            }

            nav .nav-stepper .step:nth-child(2) .step-circle::after {
                content: '2';
            }

            nav .nav-stepper .step:nth-child(3) .step-circle::after {
                content: '3';
            }

            nav .nav-stepper .step:nth-child(4) .step-circle::after {
                content: '4';
            }

            nav .nav-stepper .step:nth-child(5) .step-circle::after {
                content: '5';
            }

            nav .nav-stepper .step.active {
                color: var(--primary-color-hex);
                pointer-events: all;
                cursor: pointer;
            }

            nav .nav-stepper .step.active .step-circle {
                border-color: var(--primary-color-hex);
                background-color: var(--primary-color-hex);
                color: var(--text-color-hex);
            }

            nav .nav-stepper .step.active h4 {
                font-weight: 300;
                font-size: 16px;
            }

            nav .nav-stepper .step.completed {
                color: var(--primary-color-hex);
                pointer-events: all;
                cursor: pointer;
            }

            nav .nav-stepper .step.completed .step-circle {
                position: relative;
                border-color: #E2E2E2;
                color: #fff;
                background: #E2E2E2;
            }

            nav .nav-stepper .step.completed .step-circle::before {
                position: absolute;
                top: 0;
                right: -5px;
                content: '\f00c';
                font-family: 'Font Awesome 6 Pro';
                font-size: 14px;
                border-radius: 100%;
                background-color: var(--primary-color-hex);
                width: 20px;
                height: 20px;
            }

                nav .nav-stepper .step.completed h4 {
                    font-weight: 600;
                    opacity: 0.5;
                }

                nav .nav-stepper .step.completed::after {
                    border-color: var(--primary-color-hex);
                }

.progress-bar_top nav {
    width: 100%;
    height: 100px;
    min-height: unset;
}

    .progress-bar_top nav .nav-title {
        display: none;
    }

    .progress-bar_top nav .nav-flair {
        display: none;
    }

    .progress-bar_top nav .nav-content {
        height: auto;
        display: block;
        padding: 0;
        height: 100%;
    }

    .progress-bar_top nav .nav-stepper {
        flex-direction: row;
        height: 100%;
        max-width: 1440px;
        margin: auto;
        justify-content: space-between;
    }

        .progress-bar_top nav .nav-stepper .step {
            margin: 0;
            width: 15%;
            display: flex;
            justify-content: center;
        }

            .progress-bar_top nav .nav-stepper .step::after {
                margin: 0;
                height: 1px;
                width: 45%;
                border-left: 0;
                border-top: 1px solid var(--default-grey);
                left: 100%;
                top: auto;
            }

.darker-border-bottom {
    border-bottom: 2px solid var(--darker-color);
    color: var(--darker-color);
}

a.darker-border-bottom:hover {
    text-decoration: none;
    color: var(--primary-color-hex);
}

/* Header ================================================== */

/* Content ================================================== */

/* error bar */
.error-bar {
    background-color: #FFA3A3;
    border-radius: 10px;
    width: 100%;
    padding: 10px 30px;
    margin-bottom: 25px;
    color: #fff;
    display: none;
}

    .error-bar i {
        padding-right: 25px;
    }

/* car data  */
.car-recap {
    position: relative;
    right: 0;
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

    .car-recap .icon {
        padding-right: 16px;
    }

    .car-recap h2 {
        font-size: 20px;
        margin: 0;
        padding: 0;
        margin: auto 0;
    }

    .car-recap .bt {
        border-top: 0.5px solid #C1C1C1;
        padding-top: 16px;
    }

    .car-recap .recap-toggle {
        position: absolute;
        right: 0;
        color: var(--darker-color);
        font-size: 20px;
        transition: all 0.5s;
    }

        .car-recap .recap-toggle.collapsed {
            transform: rotate(180deg);
        }

    .car-recap,
    .car-recap > div {
        display: none;
    }

        .car-recap .car {
            padding-bottom: 30px;
        }

            .car-recap .car .kenteken-wrap {
                max-width: 262px;
                height: 40px;
                margin: 20px 0;
                overflow: hidden;
                display: inline-flex;
                border-radius: 2px;
                border-width: 0.25px;
                border-color: var(--darker-color);
            }

                .car-recap .car .kenteken-wrap label {
                    position: relative;
                    height: 40px;
                    background: #2562A2;
                    width: 25px;
                    color: #fff;
                    display: flex;
                    margin: 0;
                    font-size: 12px;
                    font-weight: 600;
                    justify-content: center;
                    align-items: flex-end;
                }

                .car-recap .car .kenteken-wrap.CH label {
                    background: #D52211;
                }

                    .car-recap .car .kenteken-wrap label::before {
                        content: '';
                        position: absolute;
                        top: 3px;
                        width: 30px;
                        height: 20px;
                        background-image: url('../images/stars.svg');
                    }

                    .car-recap .car .kenteken-wrap.CH label::before {                      
                        background-image: none;
                    }

                .car-recap .car .kenteken-wrap .plate_summary {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 40px;
                    background: #F4BE03;
                    width: 262px;
                    outline: none;
                    border: none;
                    color: var(--darker-color);
                    text-align: center;
                    font-weight: 700;
                    font-size: 21px;
                    text-transform: uppercase;
                    min-width: 0;
                    border-radius: 0;
                }

            .car-recap .car .data tr td:nth-child(2) {
                padding-left: 20px;
                text-transform: unset;
            }

/* NL kenteken */

section.step-content .kenteken-wrap.NL {
    border: 1px solid #FFD037;
}

    section.step-content .kenteken-wrap.NL label,
    .NL .kenteken-country {
        color: #fff;
        background: #1A2FBB;
    }

    section.step-content .kenteken-wrap.NL input,
    .NL .kenteken {
        background: #FFD037;
    }

/* BE kenteken */

section.step-content .kenteken-wrap.BE, #recap-car .kenteken-wrap.BE {
    border: 1px solid red;
}

    section.step-content .kenteken-wrap.BE label, #recap-car .kenteken-wrap.BE label,
    .BE .kenteken-country {
        color: #fff;
        background: #1A2FBB;
    }

    section.step-content .kenteken-wrap.BE input, #recap-car .kenteken-wrap.BE #RegistrationNumber,
    .BE .kenteken {
        background: white;
        color: red;
    }

/* DE, CH en FR kenteken*/

section.step-content .kenteken-wrap.DE,
section.step-content .kenteken-wrap.FR,
section.step-content .kenteken-wrap.CH,
#recap-car .kenteken-wrap.DE,
#recap-car .kenteken-wrap.FR,
#recap-car .kenteken-wrap.CH {
    border: 1px solid lightgrey;
}

.kenteken-wrap.DE label,
.kenteken-wrap.FR label,
.DE .kenteken-country,
.FR .kenteken-country {
    color: #fff;
    background: #1A2FBB;
}

.kenteken-wrap.CH label,
.CH .kenteken-country {
    color: #fff;
    background: #D52211;
}

section.step-content .kenteken-wrap.DE input,
section.step-content .kenteken-wrap.FR input,
section.step-content .kenteken-wrap.CH input,
#recap-car .kenteken-wrap.DE #RegistrationNumber,
#recap-car .kenteken-wrap.FR #RegistrationNumber,
#recap-car .kenteken-wrap.CH #RegistrationNumber,
.DE .kenteken,
.FR .kenteken,
.CH .kenteken {
    background: white;
}

section.step-content .kenteken-wrap.NL input,
#recap-car .kenteken-wrap.NL #RegistrationNumber,
.NL .kenteken {
    background: #FFD037;
}


/* EU kenteken */

section.step-content .kenteken-wrap.EU, #recap-car .kenteken-wrap.EU {
    border: 1px solid #1a2fbb;
}

.kenteken-wrap.EU label,
.EU .kenteken-country {
    color: #fff;
    background: #1A2FBB;
}

section.step-content .kenteken-wrap.EU input, #recap-car .kenteken-wrap.EU #RegistrationNumber,
.EU .kenteken {
    background: white;
}

.kenteken-wrap:not(.NL) {
    margin-bottom: 15px;
}

/* .car-recap .data {padding-top: 20px;} */

.car-recap ul.checked {
    position: relative;
}

    .car-recap ul.checked li {
        list-style: '';
    }

        .car-recap ul.checked li::before {
            content: '\f058';
            font-size: 20px;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 900;
            position: absolute;
            left: 5px;
            color: var(--primary-color-hex);
        }

.car-recap .car,
.car-recap .place,
.car-recap .work,
.car-recap .date {
    position: relative;
}

/* Step general */
section.step-content {
    height: 100%;
    /*display: none; opacity: 0;*/
    transition: 0.3s;
}

.step-wrapper {
    height: 100%;
    display: none;
    opacity: 0;
    transition: 0.3s;
}

    .step-wrapper.active {
        display: initial;
    }

    .step-wrapper.show {
        opacity: 1;
    }

    .step-wrapper .step-element.hidden {
        transform: translateY(100px);
        opacity: 0;
    }

section.step-content.active {
    display: block;
}

section.step-content.show {
    opacity: 1;
}

section.step-content .step-element {
    margin-top: 0px;
    position: relative;
    transition: 0.3s;
}

    section.step-content .step-element.hidden {
        transform: translateY(100px);
        opacity: 0;
    }

    section.step-content .step-element h2 {
        text-transform: uppercase;
    }

section.step-content .subtitle {
    font-size: 24px;
}

section.step-content .select {
    position: relative;
    height: fit-content;
    width: fit-content;
    transition: all 0.5s ease-in-out;
    width: 656px;
}

    section.step-content .select select {
        appearance: none;
    }

    section.step-content .select::after {
        content: "\f078";
        position: absolute;
        right: 36px;
        font-family: "Font Awesome 6 Pro";
        font-size: 14px;
        top: 11px;
        transition: all 0.5s;
    }

    section.step-content .select:has(select:focus)::after {
        transform: rotate(180deg);
    }

section.step-content .icon {
    padding-right: 16px;
}

section.step-content h3 {
    display: flex;
    align-items: center;
}

/* .btn.btn-prev {display: none;} */

/* Step 1*/
section.step-content .kenteken-btn-container {
    display: inline-flex;
    align-items: center;
}

    section.step-content .kenteken-btn-container .btn {
        margin-top: 20px;
        margin-left: 25px;
        height: 40px;
        padding: 0 50px;
    }

section.step-content .kenteken-wrap {
    margin-top: 20px;
    height: 42px;
    overflow: hidden;
    display: inline-flex;
    border-radius: 2px;
    border-width: 0.25px;
    border-color: var(--darker-color);
}

    section.step-content .kenteken-wrap label {
        position: relative;
        height: 40px;
        background: #2562A2;
        width: 25px;
        color: #fff;
        display: flex;
        margin: 0;
        font-size: 12px;
        font-weight: 600;
        justify-content: center;
        align-items: flex-end;
    }

    section.step-content .kenteken-wrap.CH label {
      
        background: #D52211;
      
    }

        section.step-content .kenteken-wrap label::before {
            content: '';
            position: absolute;
            top: 3px;
            width: 30px;
            height: 20px;
            background-image: url('../images/stars.svg');
        }

    section.step-content .kenteken-wrap.CH label::before {
        background-image: none;
    }

    section.step-content .kenteken-wrap input {
        height: 40px;
        background: #F4BE03;
        width: 320px;
        color: #fff;
        display: block;
        outline: none;
        border: none;
        color: var(--darker-color);
        text-align: center;
        font-weight: 700;
        font-size: 21px;
        text-transform: uppercase;
        min-width: 0;
        border-radius: 0;
    }

section.step-content .car-details {
    padding: 25px 50px;
    max-width: 600px;
    margin-bottom: 50px;
    box-shadow: 0px 5px 10px 0px rgba(146, 146, 146, 0.08);
    background: #fff;
    border-radius: 2px;
    margin-top: 50px;
}

    section.step-content .car-details .car {
        color: var(--darker-color);
        font-size: 24px;
        font-weight: 700;
        display: block;
    }

    section.step-content .car-details .car-year {
        color: #9C9C9C;
        display: block;
    }

    section.step-content .car-details p {
        margin-top: 12px;
        margin-bottom: 0;
    }

section.step-content#step-1 .select {
    width: 340px;
}

section.step-content#step-1 input,
section.step-content#step-1 select {
    max-width: 340px;
}

section.step-content#step-1 select {
    width: 340px;
}

/* Step 2 */
section.step-content .location-label {
    position: absolute;
}

    section.step-content .location-label::after {
        content: '\f3c5';
        font-family: 'Font Awesome 6 Pro';
        position: absolute;
        right: 15px;
        bottom: -40px;
        font-size: 20px;
        color: #9C9C9C;
    }

section.step-content .vestigingen input[type="radio"] {
    display: block;
    position: absolute;
    visibility: hidden;
}

section.step-content .vestigingen label {
    display: flex;
    position: relative;
    cursor: pointer;
    max-width: 850px;
    height: 165px;
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(146, 146, 146, 0.08), 0 0 0 3px rgba(var(--primary-color-rgb), 0);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 25px;
    transition: box-shadow 0.2s, transform 0.3s;
}

    section.step-content .vestigingen label:hover {
        transform: translateY(-5px);
    }

    section.step-content .vestigingen label::after {
        content: '\f00c';
        font-family: 'Font Awesome 6 Pro';
        position: absolute;
        color: var(--primary-color-hex);
        right: 50px;
        top: 0;
        font-size: 32px;
        font-weight: 700;
        line-height: 165px;
        display: none;
    }

section.step-content .vestigingen input[type="radio"]:checked + label {
    box-shadow: 0px 5px 10px 0px rgba(146, 146, 146, 0.08), 0 0 0 3px rgba(var(--primary-color-rgb), 1);
    background: rgba(var(--primary-color-rgb), 0.005);
}

    section.step-content .vestigingen input[type="radio"]:checked + label:hover {
        transform: translateY(0);
    }

    section.step-content .vestigingen input[type="radio"]:checked + label::after {
        display: block;
    }

section.step-content .vestigingen label .vestiging-img {
    height: 100%;
    width: 57%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.step-content .vestigingen label img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section.step-content .vestigingen label svg {
    width: 75px;
    opacity: 0.5;
}

    section.step-content .vestigingen label svg path {
        fill: var(--primary-color-hex);
    }

section.step-content .vestigingen label .vestiging-info {
    padding: 25px;
    color: #9C9C9C;
}

    section.step-content .vestigingen label .vestiging-info span {
        display: block;
    }

    section.step-content .vestigingen label .vestiging-info .vestiging-name {
        font-weight: 700;
        font-size: 24px;
        color: var(--darker-color);
    }

    section.step-content .vestigingen label .vestiging-info .vestiging-plan_date {
        margin-top: 10px;
        color: var(--default-grey);
        white-space: nowrap;
    }

section.step-content .vestigingen .item {
    align-items: end;
    padding: 12px 0;
}

    section.step-content .vestigingen .item .data {
        margin: 0;
    }

        section.step-content .vestigingen .item .data .vestiging-img {
            padding-right: 40px;
            width: 54%;
        }

            section.step-content .vestigingen .item .data .vestiging-img img {
                object-fit: cover;
                height: 100%;
                width: 100%;
            }

        section.step-content .vestigingen .item .data .vestiging-info {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 46%;
        }

            section.step-content .vestigingen .item .data .vestiging-info div.date {
                color: #858585;
            }

            section.step-content .vestigingen .item .data .vestiging-info div > span {
                display: block;
            }

    section.step-content .vestigingen .item .next label {
        margin-bottom: 0;
    }

        section.step-content .vestigingen .item .next label,
        section.step-content .vestigingen .item .next label .btn {
            width: fit-content;
            height: 40px;
            font-weight: 400;
            text-transform: lowercase;
        }

            section.step-content .vestigingen .item .next label .btn {
                padding: 10px 25px;
                display: flex;
                align-items: center;
            }

                section.step-content .vestigingen .item .next label .btn::first-letter {
                    text-transform: uppercase;
                }

                section.step-content .vestigingen .item .next label .btn::after {
                    padding-left: 25px;
                }

/* Step 3 */
section.step-content .main-job-wrap .item {
    display: flex;
    width: 100%;
    max-width: 660px;
}

    section.step-content .main-job-wrap .item .circle {
        padding-right: 20px;
    }

        section.step-content .main-job-wrap .item .circle input {
            visibility: hidden;
            display: none;
        }

            section.step-content .main-job-wrap .item .circle input[type="radio"]:checked + label::before {
                content: '';
                display: block;
                border-radius: 100%;
                width: 14px;
                height: 14px;
                background-color: var(--primary-color-hex);
            }

        section.step-content .main-job-wrap .item .circle label {
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 20px;
            height: 20px;
            border: 1px solid var(--darker-color);
            border-radius: 100%;
            position: relative;
            margin-bottom: 0;
        }

    section.step-content .main-job-wrap .item .content {
        width: 100%;
    }

        section.step-content .main-job-wrap .item .content p {
            margin: 0;
        }

        section.step-content .main-job-wrap .item .content a::before {
            transition: all 0.5s ease;
        }

        section.step-content .main-job-wrap .item .content .card {
            padding: 0;
            box-shadow: none;
        }

        section.step-content .main-job-wrap .item .content textarea {
            position: relative;
            left: -40px;
            resize: none;
            border: #C1C1C1 1px solid;
            width: calc(100% + 40px);
        }
        section.step-content .main-job-wrap .item .content .main-job-title {
            cursor: pointer;
        }

            section.step-content .main-job-wrap .item .content textarea::placeholder {
                font-size: 12px;
            }

    section.step-content .main-job-wrap .item .price {
        position: absolute;
        right: 20px;
        top: 20px;
    }

section.step-content .main-job-selection {
    padding: 40px 50px;
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(146, 146, 146, 0.08);
    border-radius: 10px;
}

    section.step-content .main-job-selection .main-job-title-wrap {
        display: flex;
        justify-content: space-between;
    }

        section.step-content .main-job-selection .main-job-title-wrap h3 {
            color: var(--primary-color-hex);
            font-weight: 600;
            font-size: 36px;
        }

    section.step-content .main-job-selection span {
        color: #C5C5C5;
        font-size: 24px;
        font-style: italic;
        margin-bottom: 25px;
        display: block;
    }

        section.step-content .main-job-selection span section.step-content .title-info-wrap {
            display: inline-flex;
            justify-content: space-between;
        }

section.step-content .title-info-wrap h3 {
    margin-right: 15px;
    font-size: 32px;
    font-weight: 600;
}

section.step-content .extra-option {
    background-color: #fff;
    width: 100%;
    max-width: 660px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 5px 10px 0px rgba(146, 146, 146, 0.08);
}

    section.step-content .extra-option .square {
        padding-right: 20px;
    }

        section.step-content .extra-option .square label {
            width: 20px;
            height: 20px;
            border: 1px solid var(--darker-color);
            border-radius: 3px;
            margin: 0;
            cursor: pointer;
        }

        section.step-content .extra-option .square input[type="checkbox"]:checked + label::before {
            content: '\f00c';
            font-size: 14px;
            font-family: "Font Awesome 6 Pro";
            text-align: center;
            color: #fff;
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--primary-color-hex);
            border: 1px solid var(--primary-color-hex);
            border-radius: 3px;
            left: 20px;
            top: 20px;
        }

        section.step-content .extra-option .square input[type="checkbox"]:disabled:checked + label::before {
            cursor: default;
            content: '\f00c';
            font-size: 14px;
            font-family: "Font Awesome 6 Pro";
            font-weight: bold;
            text-align: center;
            color: var(--primary-color-hex);
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: #fff;
            border: 1px solid #fff;
            border-radius: 0px;
            left: 20px;
            top: 20px;
        }

    section.step-content .extra-option .option-half p {
        margin: 0;
    }

    section.step-content .extra-option .option-half .card {
        box-shadow: none;
    }

    section.step-content .extra-option .price {
        position: absolute;
        right: 20px;
    }

    section.step-content .extra-option .option-half .extra-job-name {
        cursor: pointer;
    }

section.step-content .banden {
    width: 100%;
    max-width: 660px;
}

    section.step-content .banden p {
        position: absolute;
        right: 0;
    }

        section.step-content .banden p a.text-down {
            color: var(--darker-color);
        }

            section.step-content .banden p a.text-down::before {
                color: var(--darker-color);
                font-size: 25px;
                font-weight: 500;
            }

    section.step-content .banden .card-body {
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

#step-3 .title-info-wrap {
    width: 100%;
    max-width: 660px;
    padding-top: 30px;
}

    #step-3 .title-info-wrap strong {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

#step-3 textarea.card {
    max-width: 660px;
    padding: 24px;
    resize: none;
    margin-bottom: 40px;
}

section.step-content .wait {
    display: flex;
    width: fit-content;
}

    section.step-content .wait .item {
        display: flex;
        flex-direction: row-reverse;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 30px;
    }

        section.step-content .wait .item .circle {
            padding-left: 8px;
            display: flex;
            align-items: center;
        }

            section.step-content .wait .item .circle input {
                visibility: hidden;
                display: none;
            }

                section.step-content .wait .item .circle input[type="radio"]:checked + label::before {
                    content: '';
                    display: block;
                    border-radius: 100%;
                    width: 14px;
                    height: 14px;
                    background-color: var(--primary-color-hex);
                }

            section.step-content .wait .item .circle label {
                cursor: pointer;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 20px;
                height: 20px;
                border: 1px solid var(--darker-color);
                border-radius: 100%;
                position: relative;
                margin-bottom: 0;
            }

    section.step-content .wait .content label {
        margin: 0;
    }

.title-info-wrap + .banden {
    padding-top: 30px !important;
}

/* Step 4 */
section.step-content .replacement-vehicle-wrap .item {
    display: flex;
    width: 100%;
    max-width: 660px;
}

    section.step-content .replacement-vehicle-wrap .item .circle {
        padding-right: 20px;
    }

        section.step-content .replacement-vehicle-wrap .item .circle input {
            visibility: hidden;
            display: none;
        }

            section.step-content .replacement-vehicle-wrap .item .circle input[type="radio"]:checked + label::before {
                content: '';
                display: block;
                border-radius: 100%;
                width: 14px;
                height: 14px;
                background-color: var(--primary-color-hex);
            }

            section.step-content .replacement-vehicle-wrap .item .circle input[type="radio"]:disabled + label,
            section.step-content .replacement-vehicle-wrap .item .circle input[type="radio"]:disabled + label span {
                opacity: 0.5; /* make it look faded */
                cursor: not-allowed; /* show the “forbidden” cursor */
                pointer-events: none; /* prevent interaction */
            }

        section.step-content .replacement-vehicle-wrap .item .circle label {
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 20px;
            height: 20px;
            border: 1px solid var(--darker-color);
            border-radius: 100%;
            position: relative;
            margin-bottom: 0;
        }

    section.step-content .replacement-vehicle-wrap .item .content {
        width: 100%;
    }

        section.step-content .replacement-vehicle-wrap .item .content p {
            margin: 0;
        }

        section.step-content .replacement-vehicle-wrap .item .content a::before {
            transition: all 0.5s ease;
        }

        section.step-content .replacement-vehicle-wrap .item .content .card {
            padding: 0;
            box-shadow: none;
        }

        section.step-content .replacement-vehicle-wrap .item .content .replacement-vehicle-title {
            cursor: pointer;
        }

        section.step-content .replacement-vehicle-wrap .item:has(input:disabled) {
            opacity: 0.5; /* make it look faded */
            cursor: not-allowed; /* show the "forbidden" cursor */
            pointer-events: none; /* prevent interaction */
        }       

        section.step-content .replacement-vehicle-wrap .item .content textarea {
            position: relative;
            left: -40px;
            resize: none;
            border: #C1C1C1 1px solid;
            width: calc(100% + 40px);
        }

            section.step-content .replacement-vehicle-wrap .item .content textarea::placeholder {
                font-size: 12px;
            }

    section.step-content .replacement-vehicle-wrap .item .price {
        position: absolute;
        right: 20px;
        top: 20px;
    }  

section.step-content .calendar-timepicker-wrap {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

    section.step-content .calendar-timepicker-wrap .col-lg-6:nth-child(1) {
        padding-left: 0;
    }

    section.step-content .calendar-timepicker-wrap .col-lg-6:nth-child(2) {
        padding-right: 0;
    }

section.step-content .calendar {
    padding: 25px 50px;
    height: 100%;
}

    section.step-content .calendar .ui-datepicker {
        width: auto;
        padding: 0;
    }

        section.step-content .calendar .ui-datepicker .ui-datepicker-header {
            margin-bottom: 25px;
        }

            section.step-content .calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-title {
                font-family: 'Montserrat', sans-serif;
                font-size: 20px;
                font-weight: bold;
                margin: 0;
                line-height: normal;
            }

            section.step-content .calendar .ui-datepicker .ui-datepicker-header a {
                position: absolute;
                text-align: center;
                top: 13px;
                width: auto;
                font-weight: 700;
                color: #9C9C9C;
            }

                section.step-content .calendar .ui-datepicker .ui-datepicker-header a:hover {
                    text-decoration: none;
                    cursor: pointer;
                }

            section.step-content .calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev::after {
                content: '\f053';
                font-family: 'Font Awesome 6 Pro';
            }

            section.step-content .calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next::after {
                content: '\f054';
                font-family: 'Font Awesome 6 Pro';
            }

        section.step-content .calendar .ui-datepicker th {
            color: #9C9C9C;
        }

        section.step-content .calendar .ui-datepicker td {
            padding: 0;
            position: relative;
            z-index: 1;
        }

            section.step-content .calendar .ui-datepicker td span,
            .ui-datepicker td a {
                padding: 0;
                text-align: center;
                height: 50px;
                display: flex;
                justify-content: center;
                align-items: center;
                color: var(--darker-color) !important;
                font-size: 16px;
                background: rgba(var(--primary-color-rgb), 0.5) !important;
            }

            section.step-content .calendar .ui-datepicker td .ui-state-active {
                color: var(--text-color-hex)!important;
            }

        section.step-content .calendar .ui-datepicker .ui-datepicker-today span,
        section.step-content .calendar .ui-datepicker .ui-state-disabled span {
            background: #F2F2F2 !important;
            color: #9C9C9C !important;
        }

        section.step-content .calendar .ui-datepicker .ui-state-disabled a {
            background: #F2F2F2;
            color: #9C9C9C;
        }

        section.step-content .calendar .ui-datepicker td .ui-state-active::before {
            content: '';
            position: absolute;
            background-color: var(--primary-color-hex);
            width: 35px;
            height: 35px;
            border-radius: 100%;
            z-index: -1;
        }

a.ui-datepicker-next.ui-corner-all.ui-state-disabled, a.ui-datepicker-prev.ui-corner-all.ui-state-disabled {
    display: none;
}

section.step-content .cal .legenda {
    padding-top: 20px;
}

    section.step-content .cal .legenda .on {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    section.step-content .cal .legenda .sel {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.step-content .cal .legenda .off {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    section.step-content .cal .legenda .on::before {
        content: '';
        display: inline-block;
        background-color: rgba(var(--primary-color-rgb), 0.5);
        position: relative;
        border-radius: 100%;
        width: 25px;
        height: 25px;
        margin-right: 14px
    }

    section.step-content .cal .legenda .off::before {
        content: '';
        display: inline-block;
        background-color: #F2F2F2;
        position: relative;
        border-radius: 100%;
        width: 25px;
        height: 25px;
        margin-right: 14px
    }

    section.step-content .cal .legenda .sel::before {
        content: '';
        display: inline-block;
        background-color: rgba(var(--primary-color-rgb), 1);
        position: relative;
        border-radius: 100%;
        width: 25px;
        height: 25px;
        margin-right: 14px
    }

section.step-content .timepick {
    height: 100%;
}

    section.step-content .timepick p {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    section.step-content .timepick input {
        position: absolute;
        visibility: hidden;
    }

    section.step-content .timepick label {
        position: relative;
        background: #fff;
        outline: none;
        display: flex;
        width: 100px;
        height: 35px;
        justify-content: center;
        align-items: center;
        user-select: none;
        color: var(--darker-color);
        border-radius: 10px;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s, background 0.3s;
    }

        section.step-content .timepick label:hover {
            transform: translateY(-2px);
            cursor: pointer;
        }

    section.step-content .timepick input[type="radio"]:disabled + label {
        display: none;
    }

    section.step-content .timepick input[type="radio"]:checked + label {
        background: rgba(var(--primary-color-rgb), 0.5);
        color: var(--darker-color);
    }

        section.step-content .timepick input[type="radio"]:checked + label:hover {
            transform: none;
        }

    section.step-content .timepick .btns-wrap {
        display: flex;
        flex-wrap: wrap;
        margin-left: -20px;
        margin-right: -20px;
        padding: 10px;
    }

        section.step-content .timepick .btns-wrap label {
            margin: 5px 10px;
        }

section.step-content .step-element .vervangend-vervoer {
    padding-top: 50px;
}

#step-4 option.off {
    color: var(--default-grey);
}

.ui-widget-header .ui-icon {
    background-image: none !important;
}

section.step-content .calendar .ui-datepicker .ui-datepicker-header {
    background: none;
    border: none;
}

.ui-widget.ui-widget-content {
    border: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    border: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    background: unset;
    border: none;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled {
    opacity: unset;
}

div.ui-datepicker-header a.ui-datepicker-prev span.ui-icon.ui-icon-circle-triangle-w {
    background: none !important;
}

/* Step 5 */
section.step-content .contact-gegevens {
    max-width: 660px;
}

    section.step-content .contact-gegevens input {
        height: 40px;
        margin-bottom: 18px;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.01);
    }

        section.step-content .contact-gegevens input::placeholder {
            font-size: 14px;
            color: #C1C1C1;
        }

/* Step 6 */

#step-6 .confirmed .recap {
    padding-top: 35px;
}

#step-6 .confirmed .dateTime {
    text-transform: lowercase;
}

#step-6 a.agenda-down {
    color: var(--darker-color);
    text-decoration: underline;
}

#step-6 .agenda-links div {
    padding: 8px 0;
}

    #step-6 .agenda-links div a {
        color: var(--darker-color);
        text-decoration: none;
    }

        #step-6 .agenda-links div a:hover {
            color: var(--primary-color-hex);
        }

        #step-6 .agenda-links div a i {
            padding-right: 12px;
        }

/* Footer ================================================== */


/* Endpage ================================================== */


@media only screen and (max-width: 1440px) {
    nav {
        width: 100vw;
    }

    h1 {
        font-size: 24px;
    }

    main > .container,
    footer > .container,
    nav > .container {
        max-width: 1050px;
    }

    .title h3 {
        padding-top: 12px;
    }

    section.step-content .vestigingen .item .data .vestiging-info {
        width: 43%;
    }

    section.step-content .vestigingen .item .data .vestiging-img {
        padding-right: 40px;
        width: 57%;
    }
}

@media only screen and (max-width: 1199px) {

    main > .container,
    footer > .container,
    nav > .container {
        max-width: 960px;
    }

    nav .nav-stepper .step::after {
        width: 30px;
    }

    .pt-100 {
        padding-top: 50px;
    }

    section .select input,
    section .select,
    section .select select {
        max-width: 340px;
    }

    #step-4 .select,
    #step-4 .select select {
        max-width: 520px;
    }

    .car-recap h2 {
        font-size: 1rem;
    }

    .car-recap .car .kenteken-wrap .plate_summary {
        width: 195px !important;
    }

    .car-recap .car .data tr td:nth-child(2) {
        padding-left: 12px;
    }

    /* Step 2 */
    section.step-content .vestigingen label .vestiging-img {
        width: 175px;
    }

    section.step-content .vestigingen label .vestiging-info {
        font-size: 14px;
    }

    /* Step 4 */
    section.step-content .calendar-timepicker-wrap {
        flex-wrap: wrap;
    }

        section.step-content .calendar-timepicker-wrap .col-lg-6 {
            max-width: 100%;
            flex: 0 0 100%;
            padding: 0;
        }

    section.step-content .timepick {
        margin-top: 25px;
    }

    section.step-content .vestigingen .item .data .vestiging-info {
        width: 40%;
    }

    section.step-content .vestigingen .item .data .vestiging-img {
        padding-right: 25px;
    }

    .car-recap {
        padding: 20px 10px;
    }
}

@media only screen and (max-width: 991px) {

    nav {
        width: 100%;
    }

        nav .nav-content {
            display: flex;
            justify-content: center;
            align-items: center;
        }

            nav .nav-content .nav-stepper {
                width: 100%;
                justify-content: space-between;
            }

                nav .nav-content .nav-stepper .step::after {
                    width: 83px;
                }

                nav .nav-content .nav-stepper .step h4 {
                    display: none;
                }

    h1 {
        font-size: 24px;
    }

    main > .container,
    footer > .container,
    nav > .container {
        max-width: 720px;
    }

    .car-recap {
        margin-bottom: 20px;
    }

    .tp-100 {
        padding-top: 12px;
    }

    /* Step 2 */
    section.step-content .vestigingen .item .data .vestiging-img,
    section.step-content .vestigingen .item .data .vestiging-info {
        max-width: 50%;
    }

    section.step-content .vestigingen .item .data .vestiging-info {
        padding-left: 12px;
    }


    /* Step 3 */
    section.step-content .onderhoud-summary {
        padding: 25px;
    }

    /* Step 4 */

    section.step-content .step-element .vervangend-vervoer {
        padding-top: 12px;
    }

    /* Step 5 */
    section.step-content .complete-summary-wrap .details-step-1 {
        flex-direction: column;
    }

    section.step-content .complete-summary-wrap .kenteken-wrap {
        height: 65px;
    }

        section.step-content .complete-summary-wrap .kenteken-wrap .kenteken-country {
            height: 65px;
            width: 40px;
            font-size: 16px;
        }

        section.step-content .complete-summary-wrap .kenteken-wrap .kenteken {
            height: 65px;
            font-size: 36px;
            width: 250px;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

    section.step-content .complete-summary-wrap .car-data {
        margin-left: 0;
        margin-top: 15px;
        width: auto;
    }

    section.step-content .complete-summary-wrap .job-summary-wrap {
        flex-direction: column;
        margin-top: 0;
    }

        section.step-content .complete-summary-wrap .job-summary-wrap .jobs-wrap {
            padding: 0;
            margin-top: 25px;
        }

    section.step-content .complete-summary-wrap .job-total {
        padding-right: 0;
        margin-top: 25px;
    }

    section.step-content .complete-summary-wrap .job-summary-wrap .jobs-wrap .job strong {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    section.step-content .complete-summary-wrap .replacement-wrap {
        padding: 25px;
        display: flex;
        flex-direction: row;
    }

    section.step-content .complete-summary-wrap .details-step-5 p:nth-child(2) {
        margin-left: 15px;
    }

    section.step-content .complete-summary-wrap .extra-option {
        padding: 25px 15px;
    }

    .car-recap {
        padding: 20px 35px;
    }

    .main-job-box, .replacement-vehicle-box, section.step-content .extra-option, #step-3 .title-info-wrap, #step-3 textarea.card {
        max-width: unset !important;
    }

    div#car-recap {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) {
    nav {
        width: 100%;
        height: 100px;
        min-height: unset;
        z-index: 2;
    }

        nav .nav-title {
            display: none;
        }

        nav .nav-flair {
            display: none;
        }

        nav .nav-content {
            height: auto;
            display: block;
            padding: 0;
            height: 100%;
        }

        nav .nav-stepper {
            flex-direction: row;
            height: 100%;
            max-width: 1440px;
            margin: auto;
            justify-content: space-between;
        }

            nav .nav-stepper .step {
                margin: 0;
                width: 15%;
                display: flex;
                justify-content: center;
            }

                nav .nav-stepper .step::after {
                    display: none;
                }

                nav .nav-stepper .step h4 {
                    display: none;
                }

                nav .nav-stepper .step:nth-child(1) .step-circle.Car::after {
                    content: '\f1b9';
                    font-family: 'Font Awesome 6 Pro';
                }

                nav .nav-stepper .step:nth-child(1) .step-circle.Bicycle::after {
                    content: '\f206';
                    font-family: 'Font Awesome 6 Pro';
                }

                nav .nav-stepper .step:nth-child(2) .step-circle::after {
                    content: '\f041';
                    font-family: 'Font Awesome 6 Pro';
                }

                nav .nav-stepper .step:nth-child(3) .step-circle::after {
                    content: '\f0ad';
                    font-family: 'Font Awesome 6 Pro';
                }

                nav .nav-stepper .step:nth-child(4) .step-circle::after {
                    content: '\f073';
                    font-family: 'Font Awesome 6 Pro';
                }

                nav .nav-stepper .step:nth-child(5) .step-circle::after {
                    content: '\f007';
                    font-family: 'Font Awesome 6 Pro';
                }

    main {
        width: 100%;
        margin-left: 0;
    }

    section.step-content {
        padding: 0 15px;
    }

    .car-recap {
        margin: 0 12px;
    }

    main section.step-content .step-nav {
        padding: 20px 0 20px 0;
    }

    /* step 2 */
    section.step-content .vestigingen .item .data .vestiging-img img {
        max-width: 330px;
    }

    /* Step 3 */
    section.step-content .onderhoud-summary .job-summary-wrap {
        flex-direction: column;
    }

        section.step-content .onderhoud-summary .job-summary-wrap .jobs-wrap {
            padding-left: 0;
            padding-right: 0;
        }

    section.step-content .onderhoud-summary .job-final-summary {
        padding-right: 0;
    }

    section.step-content .onderhoud-summary .job-total {
        margin-right: 0;
    }

    section.step-content .vestigingen .item .data .vestiging-info {
        width: 50%;
    }
}


@media only screen and (max-width: 575px) {
    h2 {
        font-size: 24px;
    }

    section.step-content .subtitle {
        font-size: 20px;
    }

    nav {
        margin-bottom: 12px;
    }

    main section.step-content .step-nav {
        padding: 20px 0;
    }

    main > .container,
    footer > .container,
    nav > .container {
        max-width: 540px;
    }

    .pt-100 {
        padding-top: 12px;
    }

    .car-recap .car {
        padding-bottom: 20px;
    }

    /* Step 2 */
    section.step-content .vestigingen .item .data .vestiging-img {
        padding-right: 0;
    }

        section.step-content .vestigingen .item .data .vestiging-img img {
            max-width: 100%;
        }

    section.step-content .vestigingen .item .data .vestiging-img,
    section.step-content .vestigingen .item .data .vestiging-info {
        max-width: 100%;
    }

    section.step-content .vestigingen .item .data .vestiging-info {
        padding-left: 0;
    }

    /* Step 3 */
    section.step-content .onderhoud-summary h3 {
        font-size: 24px;
    }

    /* step 4 */
    section.step-content .cal .legenda .sel,
    section.step-content .cal .legenda .on,
    section.step-content .cal .legenda .off {
        flex-direction: column;
    }

        section.step-content .cal .legenda .sel::before,
        section.step-content .cal .legenda .on::before,
        section.step-content .cal .legenda .off::before {
            margin-right: 0;
        }

    #step-4 .select,
    #step-4 .select select {
        max-width: 460px;
        font-size: 14px;
    }

    /* Step 5 */
    section.step-content .complete-summary-wrap .vestiging-wrap {
        flex-direction: column;
        height: auto;
    }

        section.step-content .complete-summary-wrap .vestiging-wrap .vestiging-img {
            width: 100%;
        }

        section.step-content .complete-summary-wrap .vestiging-wrap img {
            height: 100px;
        }

    section.step-content .complete-summary-wrap .details-step-5 p {
        font-size: 14px;
    }


    section.step-content .vestigingen .item .data .vestiging-info {
        width: 100%;
    }
}


@media only screen and (max-width: 479px) {

    main > .container,
    footer > .container,
    nav > .container {
        max-width: 100%;
    }

    h2 {
        font-size: 24px;
    }

    nav .nav-stepper .step {
        width: 20%;
        opacity: 0.5;
    }

        nav .nav-stepper .step.active {
            opacity: 1;
        }

    .car-recap {
        margin: 0;
    }

    section.step-content {
        padding: 0;
    }

        section.step-content .kenteken-wrap input {
            margin-top: 0;
        }

    section select,
    section input,
    section textarea {
        width: 100%;
        max-width: 100%;
    }


    section textarea {
        margin-top: 12px;
        max-width: calc(100% + 40px) !important;
    }

    section.step-content .select::after {
        right: unset;
        left: calc(340px - 26px);
    }

    section .select,
    section .select select {
        width: calc(100vw - 30px) !important;
        max-width: 100vw;
    }


    .extra-sm-6 {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
    }

    /* Step 1 */
    section.step-content .kenteken-btn-container {
        flex-direction: column;
        align-items: flex-start;
    }

        section.step-content .kenteken-btn-container .btn {
            margin-left: 0;
            margin-top: 15px;
        }

    section.step-content .kenteken-wrap {
        height: fit-content;
    }

        section.step-content .kenteken-wrap label {
            height: 45px;
            width: 40px;
            font-size: 16px;
        }

        section.step-content .kenteken-wrap input {
            height: 45px;
            font-size: 20px;
            width: 250px;
        }

    section.step-content .vestigingen label .vestiging-info strong {
        display: block;
        margin-left: 18px;
    }

    /* Step 2 */
    section.step-content .vestigingen label::after {
        bottom: 70px;
        right: 25px;
    }


    /* Step 3 */

    #step-3 .card span {
        font-size: 14px;
    }

    .questions-container input {
        width: unset;
    }

    /* Step 4 */
    section.step-content .calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-title {
        font-size: 24px;
    }

    section.step-content .calendar {
        padding: 12px 20px;
    }

    section.step-content .timepick .btns-wrap {
        justify-content: space-between;
    }

    section.step-content .timepick label {
        margin: 5px 0 !important;
        width: 48%;
    }

    #step-4 .select,
    #step-4 .select select {
        font-size: 10px;
    }

    /* step 5 */
    #step-5 br {
        display: none;
    }
}

@media only screen and (max-width: 375px) {
    section.step-content .select::after {
        right: unset;
        left: calc(100% - 26px);
    }
}

@media only screen and (min-width: 1440px) {
    .progress-bar_top .container {
        max-width: 1100px;
    }
}

section.step-content .vestigingen svg {
    fill: var(--primary-color-hex);
    width: 30%;
}

    section.step-content .vestigingen svg path {
        fill: var(--primary-color-hex);
    }

del {
    text-decoration: none;
    position: relative;
}

    del:before {
        content: " ";
        display: block;
        width: 100%;
        border-top: 2px solid rgba(255, 0, 0, 0.8);
        height: 12px;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: rotate(-7deg);
    }

.option-half > .option-head + p {
    position: relative !important;
}

    .option-half > .option-head + p > .text-down::before {
        font-size: 16px !important;
        color: unset !important;
        font-weight: 300 !important;
    }

.extra-option.card textarea {
    position: relative;
    resize: none;
    border: #C1C1C1 1px solid;
    width: 100%;
    font-size: 12px;
}

.extra-option .option-half:not(.price),
.main-job-wrap .content label,
.replacement-vehicle-wrap .content label {
    width: 75%;
}

.price {
    text-align: right;
}

@media only screen and (max-width: 660px) {

    .extra-option .option-half:not(.price),
    .main-job-wrap .content label,
    .replacement-vehicle-wrap .content label {
        width: 65%;
    }
}

#vestigingen .data.row {
    width: 100%;
}

.svg-icon {
    display: inline-block;
    width: 35px;
    height: 36px;
    fill: var(--primary-color-hex);
}

    .svg-icon path {
        fill: var(--primary-color-hex);
    }

/* Questions */

.questionBox {
    padding: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
    background: rgba(var(--primary-color-rgb), 0.05);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--primary-color-hex);
    border-radius: 10px;
}

    .questionBox #question {
        padding: 1% 4%;
        margin-bottom: 1rem;
    }

    .questionBox textarea {
        color: #9C9C9C !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: unset !important;
        border: none !important;
        font-size: inherit !important;
    }

    .questionBox #answers {
        text-align: left;
        padding: 1% 4%;
        box-shadow: none;
    }

        .questionBox #answers label {
            cursor: pointer;
        }

.questions-container-large .questionBox {
    background: transparent;
    box-shadow: none;
}

.questionBox #previous-button {
    float: left;
    padding: 5px;
}

.questionBox #next-button,
.questionBox #finished-button {
    padding: 5px;
    float: right;
}

.multiple-choice input[type='radio'] {
    accent-color: var(--primary-color-hex);
    cursor: pointer;
}

.main-job-box {
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    background-color: #fff;
    width: 100%;
    max-width: 660px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.08);
}

.replacement-vehicle-box {
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    background-color: #fff;
    width: 100%;
    max-width: 660px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.08);
}

.questionBox #next-button::after,
.questionBox #finished-button::after,
.questionBox #previous-button::after {
    content: none;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background: rgba(var(--primary-color-rgb), 0.5) !important;
}

.questionBox p {
    position: relative !important;
}

#showMoreContainer {
    text-align: center;
    display: block;
    margin-top: 35px;
}

#showMoreLabel {
    background: #C5C5C5;
    text-transform: none;
    font-weight: normal;
}

    #showMoreLabel::after {
        content: '';
    }

    #showMoreLabel:hover {
        text-decoration: underline;
    }

.warned,
.error {
    border: none;
    color: #ff0000;
}

.warned, select.error, input.error {
    border: 1px solid #ff0000;
}

select.error {
    color: var(--darker-color);
}

@media only screen and (min-width: 991px) {

    .step-element.step-nav {
        max-width: 660px;
    }
}

section#step-4 textarea::placeholder {
    color: #C1C1C1;
}

a, a.text-down:hover {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}