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

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


/* _____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: 12px;
    padding: 3px 3px;
    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;
}

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