.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::a1ff2e63b6a0e2838e2c308fe7440a0abddb441c:: */

/* _____HIERNA NIETS VERANDEREN_______ */
.table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Verdeelt de table in een grid van 12 */
.table-grid td {
    width: calc(100% / 12);
}

/* algemeen */
.table-wrap {
    width: 100%;
}

.table td {
    overflow: hidden;
    word-break: normal;
}

/* Zorgt voor een mooie positie scrollbalk verticaal scrollen */
.table-grid td {
    visibility: hidden;
    border: 0px;
    height: 5px !important;
    overflow: hidden;
    padding: 0px;
}

/* header is sticky (big screen only )*/
.table .table-header td {
    position: -webkit-sticky;
    position: sticky;
    text-align: left;
    top: -1px;
    vertical-align: top;
    will-change: transform
}

/* Verticaal scrollen */
@media screen and (max-width: 766px) {
    .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* _____HIERBOVEN NIETS VERANDEREN_______ */


/* Styling only */
.table {
    width: 100%;
    margin: 0 auto;
    vertical-align: left;
    font-family: "Futura Maxi Std Book Regular";
}

.table td {
    font-size: 11px;
    padding: 2px 5px;
    color: #6f7d7d;
    border: 1px solid #6f7d7d;
    background: #FFF;
}

.table tr.table-header td {
    font-weight: 700;
    background: #0033A0;
    color: #fff;
    font-family: "Futura Maxi Std Bold Bold";
}

td.light-gray-bg {
    background: rgba(111, 125, 125, .1);
    font-weight: 700;
}

td.green-font {
    font-weight: 700;
    color: #B8BF11;
    text-align: center;
    font-size: 16px;
}

td.orange-font {
    font-weight: 700;
    color: #ED8800;
    text-align: center;
    font-size: 16px;
}

td.red-font {
    font-weight: 700;
    color: #EF3340;
    text-align: center;
    font-size: 16px;
}


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

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