.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;
}


.media-preloader img {
    margin: 100px auto 40px auto;
    text-align: center;
    display: inline-block;
}

.dom_overlay_container {
    position: absolute;
    top: 0;
    z-index: -1;
    pointer-events: none;
}

/* ::fbs::a08cd4e694f16f700cd75d3be68c77c4b8ed8ff3:: */
/* ::fbs::a08cd4e694f16f700cd75d3be68c77c4b8ed8ff3:: */

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

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