/* Anchor offset */
[data-anchor] {
    width: 0;
    position: relative;
    top: -87px;
}

html {
    scroll-behavior: smooth;
}

.fos-row,
.fos-reverse-row {
    column-gap: 40px;
}

.fos-related-article-wrap {
    row-gap: 22px;
}

.fos-row-buttons {
    column-gap: 12px;
    row-gap: 12px;
}

.fos-paragraph a,
.fos-introduction .sf-body-txt a {
    color: #101820;
    text-decoration: underline;
    font-weight: 800;
}

.fos-paragraph strong,
.fos-introduction .sf-body-txt strong {
    color: #101820;
    text-decoration: none;
}

.sf-section .sf-body-txt a {
    color: #004798;
    text-decoration: underline;
    font-weight: 800;
}

.sf-section .sf-body-txt strong {
    color: #004798;
    text-decoration: none;
}

.table-blue-lines {
    border-spacing: 0;
    width: 100%;
}

.table-blue-lines tr td {
    border-bottom: 1px solid #004798;
    padding: 8px 0 6px 0;
    margin: 0;
    vertical-align: top;
}

/* quote */
.fos-quote-container .fos-button-intro {
    margin-left: 0;
}

/* media container */
/* For 2+ children: apply to all except the first and last */
.fos-media-container> :not(:first-child):not(:last-child) {
    padding-top: 1.4rem;
}

/* For exactly 2 children: apply to the second */
.fos-media-container> :nth-child(2):nth-last-child(1) {
    padding-top: 1.4rem;
}

/* resize content */
@media (min-width: 766px) {
    .fos-row>.fos-content-wrapper:only-child {
        width: 85%;
    }
}

/* responsive table layout */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-family: "Futura Maxi Std Light Regular";
    font-size: 0.8em;
    line-height: 1em;
    color: rgb(113, 124, 125);
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
    /* optional: ensures scroll on small screens */
}

.table-responsive table th,
td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ccc;
}

.table-responsive table thead {
    color: #ffffff;
    background-color: #717c7d;
}

.table-responsive table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.table-responsive table tbody tr:nth-child(even) {
    background-color: #f2f5f8;
}


.moveLogoUp {
    animation-name: moveUp;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

.moveLogoDown {
    animation-name: moveDown;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

@keyframes moveUp {

    // top 10 naar 0, height naar 86px
    from {
        top: 10px;
        height: 105px;
    }

    to {
        top: 0;
        height: 86px;
    }
}

@keyframes moveDown {
    from {
        top: 0;
        height: 86px;
    }

    to {
        top: 10px;
        height: 105px;
    }
}

.moveLogoUpMobile {
    animation-name: moveUpMobile;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

.moveLogoDownMobile {
    animation-name: moveDownMobile;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

@keyframes moveUpMobile {
    from {
        top: -5px;
        height: 70px;
    }

    to {
        top: 0;
        height: 45px;
    }
}

@keyframes moveDownMobile {
    from {
        top: 0;
        height: 45px;
    }

    to {
        top: -5px;
        height: 70px;
    }
}

.sf-breadcrumb-l2,
.sf-breadcrumb-l3 {
    visibility: hidden;
}

/* ::fbs::385549c1139422c39bccebcb42afe97c3248016e:: */

.sf-carousel-btn-lft,
.sf-carousel-btn-rgt {
    cursor: pointer;
}

.sf-carousel-tickbox {
    display: none;
}

.sf-footer-icons {
    justify-content: center;
}