.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:: */
.sf-footer-icons {
    justify-content: center;
}