:root {
    --blauw: #051F2E;
    --blauw2: #1C475F;
    --blauw3: #207398;
    --blauw4: #6a91a6;
    --offwhite: #CECECE;
    --notwhite: #f9f9f9;
    --dvroze: #DF3D4B;
    --dvrozehover: #C42D3A;
    --geel: #FEDD00;
    --oranje: #e39000;
    --groen: #11bb11;
    --groen2: #1187118a;
    --verify: #304d39;
    --audit: #4b1855;
    --fontfam: 'Noto Sans', sans-serif;
}

* {
    font-family: var(--fontfam);
    line-height: 1.4em;
    box-sizing: border-box;
    position: relative;
}

html {
    font-size: 20px;
    font-weight: 500;
}

/* Custom Confirm */
.confirm {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    box-sizing: border-box;

    opacity: 0;
    animation-name: confirm---open;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;

    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm--close {
    animation-name: confirm---close;
}

.confirm__window {
    width: 100%;
    max-width: 25rem;
    background: var(--blauw2);
    color: var(--blauw);
    font-size: 0.8rem;
    font-family: var(--fontfam);
    border-radius: .6rem;
    overflow: hidden;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);

    opacity: 0;
    transform: scale(0.75);
    animation-name: confirm__window---open;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}

.confirm__titlebar,
.confirm__content,
.confirm__buttons {
    padding: 0.7rem 0.8rem;
}

.confirm__titlebar {
    /* background: var(--blauw2); */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.confirm__title {
    font-size: 0.85rem;
    display: flex;
    gap: 0.75em;
    align-items: center;
}


.confirm__title .icon.beeldmerk {
    height: 2em;
    width: 1.7em;
}

.confirm__title .logo-dca-mi {
    width: calc(4.5498046875 * 1.05em);
    height: 1.05em;
    color: var(--notwhite);
}

.confirm__close {
    background: none;
    outline: none;
    border: none;
    color: #ffffff;
    transition: color 0.15s;
    border-radius: 50%;
    font-size: 1.6rem;
    width: 1em;
    height: 1em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
}

.confirm__close:hover {
    color: #ffffff;
    background-color: var(--dvrozehover);
    cursor: pointer;
}

.confirm__content {
    /* line-height: 2.4em; */
    font-weight: 500;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: var(--notwhite);
}

.confirm__content p {
    width: 100%;
    color: var(--blauw2);
}

.confirm__buttons {
    background-color: var(--notwhite);
    display: flex;
    /* justify-content: flex-end; */
    padding-top: 0;
}

.confirm__button,
.confirm__content button {
    padding: 0.5em 1em;
    border: .05rem solid var(--blauw3);
    border-radius: 0.5rem;
    background: #ffffff;
    color: var(--blauw3);
    font-weight: 600;
    font-size: 1em;
    font-family: var(--fontfam);
    margin-left: 0.6em;
    cursor: pointer;
    outline: none;
}

.confirm__content button {
    margin-left: 0;
}

.confirm__button:hover,
.confirm__content button:hover,
.confirm__content button.select {
    background: var(--blauw3);
    color: #ffffff;
}

.confirm__button--cancel.hide {
    display: none;
}

.confirm__button:focus {
    box-shadow: 0 0 .2rem rgba(0, 0, 0, 0.5);
}

@keyframes confirm---open {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes confirm---close {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes confirm__window---open {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Einde Custom confirm */

/* Customize the label (the container) */
.checkcontainer {
    display: block;
    position: relative;
    padding-left: 1.54rem;
    margin-bottom: 0;
    margin-left: 0.47rem;
    padding-top: 0;
    cursor: pointer;
    font-size: 0.8rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--blauw3);
}

/* Hide the browser's default checkbox */
.checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.1rem;
    width: 1.1rem;
    background-color: #ffffff;
    border: 0.05rem solid #c5cbcf;
    border-radius: 0.3rem;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input~.checkmark {
    background-color: var(--offwhite);
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked~.checkmark {
    background-color: var(--blauw3);
    border-color: var(--blauw3);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
    left: 0.3rem;
    top: 0.1rem;
    width: 0.25rem;
    height: 0.5rem;
    border: solid white;
    border-width: 0 0.15rem 0.15rem 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}