/* Deel-blok op de losse bootpagina */

.boot-delen {
    background: #FFFFFF;
    padding: 30px;
    margin-bottom: 40px;
    box-sizing: border-box;
    border-radius: 6px;
    border-bottom-left-radius: 60px;
    box-shadow: 0 12px 30px rgba(0, 24, 65, 0.08);
}

.boot-delen h3 {
    margin: 0;
    color: #001841;
    line-height: 35px;
}

.boot-delen .boot-delen-intro {
    margin: 5px 0 20px 0;
    color: #001841;
}

.boot-delen-knoppen {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.boot-delen-knoppen li {
    margin: 0;
    padding: 0;
}

.boot-deel-knop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #001841;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    box-sizing: border-box;
    border: 0;
    border-radius: 4px;
    border-bottom-left-radius: 20px;
    transition: background 0.25s ease-in-out;
    font-family: inherit;
}

.boot-deel-knop:hover,
.boot-deel-knop:focus {
    background: #FF7E00;
}

.boot-deel-knop i {
    color: #FFFFFF;
    font-size: 18px;
}

.boot-deel-knop.-native {
    background: #FF7E00;
}

.boot-deel-knop.-native:hover,
.boot-deel-knop.-native:focus {
    background: #001841;
}

.boot-delen-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.boot-delen-veld {
    flex: 1 1 260px;
    min-width: 0;
    padding: 12px 15px;
    background: #F1F6FB;
    color: #001841;
    font-size: 16px;
    font-family: inherit;
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
}

.boot-delen-veld:focus {
    outline: 2px solid #FF7E00;
    outline-offset: 0;
}

.boot-delen-melding {
    margin: 12px 0 0 0;
    color: #0F7B3E;
    font-weight: 500;
    min-height: 22px;
}

.boot-delen-melding.-fout {
    color: #B3261E;
}

.boot-delen-verborgen {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@media only screen and (max-width: 700px) {
    .boot-delen {
        padding: 25px 20px;
        border-bottom-left-radius: 40px;
    }

    .boot-delen-knoppen li,
    .boot-delen-knoppen li .boot-deel-knop {
        width: 100%;
        justify-content: center;
    }

    .boot-delen-link .boot-deel-knop {
        width: 100%;
        justify-content: center;
    }
}
