:root {
    --dvroze: #DF3D4B;
    --dvrozehover: #C42D3A;
    --tekstkleur: #02202f;
    --blauw0: #011F2E;
    --blauw1: #051F2E;
    --blauw2: #1C475F;
    --blauw3: #557383;
    --blauw4: #6a91a6;

    --wit: #FFFFFF;
    --geel: #fab510;
    --geelhover: #faa810;
    --notwhite: #F0F8FF;
    --offwhite: #CECECE;

    --rood: #e95a66;
    --groen: #62bb46;

    --fontfam: 'Montserrat', sans-serif;
    --regular: 400;
    --medium: 500;
    --semibold: 600;
    --bold: 700;
    --gradient: transparent linear-gradient(88deg, var(--blauw0) 0%, var(--blauw2) 100%) 0% 0% no-repeat padding-box;
}

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

no-wrap {
    text-wrap: nowrap;
}

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

.icon {
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* Customize the label (the container) */
.checkcontainer {
    display: block;
    position: relative;
    padding-left: 1.54rem;
    margin-bottom: .53rem;
    margin-left: 0.47rem;
    padding-top: 0.15rem;
    cursor: pointer;
    font-size: 0.7rem;
    -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);
}

div#freeprivacypolicy-com---nb {
    position: fixed;
    background-color: #042333ee;
}

.freeprivacypolicy-com---reset select {
    font-size: 0.7rem !important;
}

strong,
b {
    font-weight: var(--bold);
}

/* Custom Confirm */
.confirm {
    position: fixed;
    z-index: 999;
    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: 30rem;
    background: white;
    color: var(--blauw1);
    font-size: 0.8rem;
    font-family: var(--fontfam);
    border-radius: .3rem;
    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.bullmi {
    height: 2em;
    width: 1.7em;
}

.confirm__titlebar .confirm_titel {
    /* color: #df3d4b; */
    font-weight: bold;
}

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

.confirm__title .logo-dcami {
    width: calc(12.0625 * 1.3em);
    height: 1.3em;
}

.confirm__title .icon.bullmi {
    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(--rood);
    cursor: pointer;
}

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

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

.confirm__buttons {
    /* background: #eeeeee; */
    display: flex;
    justify-content: flex-start;
    padding-top: 0;
    gap: 0.6rem;
}

.confirm__button,
.confirm__content button {
    padding: 0.4em 0.6em;
    border: .05rem solid var(--blauw3);
    border-radius: .3rem;
    background: #ffffff;
    color: var(--blauw3);
    font-weight: 600;
    font-size: 1.1em;
    font-family: var(--fontfam);
    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,
.confirm__button--b3.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 */