body {
    font-family: 'Inter', sans-serif;
    color: #46547A;
    font-size: 16px;
}
header{
    background-color: #F6F6F6;
}
.title-header {
    padding: 50px 0px;
    background-color: #545d87;
        color: white;
    background-image: url('../images/title-header-bg.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-attachment: scroll;
    background-size: contain;
}
h1, h2{
    font-weight: 800;
}
.bold-text{
    font-weight: 800;
}
label{
    cursor: pointer;
}
.background-grey{
    background-color: #F6F6F6;
}

.background-white{
    background-color: #FFFFFF;
}
.background-orange{
    background-color: #DA974A;;
}
.background-violet{
    background-color: #46547A;;
}
.text-orange{
    color: #DA974A;
}
.text-white{
    color: #FFFFFF;
}
.text-violet{
    color: #46547A;
}
.main-logo{
    width: 270px;
}
.step-underline {
    padding: 0 50px 10px 50px;
    border-bottom: 4px solid #46547A;
    display: inline-block;
}
.step-number {
    font-weight: 800;
    font-size: 32px;
    color: #46547A;
}
.hidden {
    display: none;
}

.error-msg {
    color: red;
    padding-left: 8px;
}

.usps ul li::marker {
    content: "✓ ";
    color: #DA974A;
    font-size: 20px;
}

.usps ul li {
    font-weight: bold;
}

.gegevens-error {
    color: red;
    font-weight:bold;
    width: 100%;
    text-align: center;
}

@media (max-width: 575.98px) {
    .main-logo{
        width: 120px;
    }
    .step-underline {
        padding: 0 16px 4px 16px;
    }
    .step-number {
        font-size: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .main-logo{
        width: 140px;
    }
    .step-underline {
        padding: 0 24px 6px 24px;
    }
    .step-number {
        font-size: 24px;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .main-logo{
        width: 180px;
    }
    .step-underline {
        padding: 0 30px 10px 30px;
    }
    .step-number {
        font-size: 28px;
    }
}
.button-base{
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    min-width: 150px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}
.button-base:hover {
    transform: scale(1.05);
}

.min-w-40{
    min-width: 40%;
}

/*.nav-tabs{*/
/*    --bs-nav-tabs-border-width: 0 !important;*/
/*}*/
.nav-tabs .nav-link{
    font-weight: 800;
    color: #46547A;
}
.nav-tabs .nav-link:hover{
    background-color: #F6F6F6;
}
.nav-tabs .nav-link.active{
    background-color: #F6F6F6;
    color: #DA974A;
}

.orange-checkbox {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #DA974A;
    width: 25px !important;
    height: 25px;
    cursor: pointer;
    border-radius: 0;
    position: relative;
    flex-shrink: 0;
}
.orange-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 14px;
    border: solid #DA974A;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.form-input {
    border: none;
    border-bottom: 1px solid #46547A;
    color: #46547A;
    outline: none;
    padding: 10px 8px;
    width: 100%;
    background-color: transparent;
}
.form-input:focus {
    border-bottom: 1px solid #DA974A;
}
.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid #46547A;
    padding: 10px 8px;
    padding-right: 30px;
    color: #46547A;
    width: 100%;
    cursor: pointer;
    border-radius: 0;
    outline: none;
}
input::placeholder {
    opacity: 0.5 !important;
    color: #46547A;

}
.form-select:focus {
    border-bottom: 1px solid #DA974A;
    box-shadow: none;
}

.select-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:has(.form-select:focus) .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}
.signature-container {
    border: 1px solid #ccc;
    width: 500px;
    height: 200px;
}


@media (max-width: 576px) {
    .signature-container {
        width: 300px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 12px;
    }
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.1rem;
    }
    h4 {
        font-size: 1rem;
    }
    .form-select{
        font-size: 12px;
    }
}
.badge-round{
    font-weight: 800;
    text-align: center;
    padding: 10px 20px;
    color: #F6F6F6;
    background-color: #46547A;
    border-radius: 10px;
}
.input-wrapper {
    position: relative;
}

.input-wrapper .fake-placeholder {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #46547A;
    background-color: white;
    pointer-events: none;
    transition: 0.2s;
}

button:disabled{
    opacity: 0.7;
}

ul.orangelist {
    padding-left: 1.8em;
}
ul.orangelist li::marker {
    color: #DA974A;
    font-size: 1.5em;

}