#babyluxeheader{
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #fffff;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

#babyluxeheader .top{
    background-color: var(--rozeDefault);
    padding: 12px 15px;
}

#babyluxeheader .top {
    position: relative;
    overflow: hidden;
}


#babyluxeheader .top span {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    text-align: center;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transform: translateX(100%);
    transition: transform .6s ease;
    visibility: hidden;
}

#babyluxeheader .top span img{
    width: 15px;
    height: auto;
}

#babyluxeheader .top span p{
    font-size: 12px;
}


#babyluxeheader .top span.active,
#babyluxeheader .top span.out {
    visibility: visible;
}

#babyluxeheader  .top span.active {
    transform: translateX(0);
}

#babyluxeheader .top span.out {
    transform: translateX(-100%);
}








#babyluxeheader .middle{
    background-color: #ffff;
}

#babyluxeheader .middle > div{
    max-width: 1250px;
    margin: 0 auto;
    padding: 25px 15px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#babyluxeheader .middle > div > .zoekbalk{
    width: 300px;
}

#babyluxeheader .middle > div > .zoekbalk > #hamburgerbtn{
    display: none;
}

#babyluxeheader .middle > div > .logo{
    display: block;
    width: fit-content;
    height: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

#babyluxeheader .middle > div > .logo > img{
    width: 250px;
    height: auto;
}



#babyluxeheader .middle > div > .buttons{
    display: flex;
    align-items: center;
    gap: 40px;
}

#babyluxeheader .middle > div > .buttons > button,
#babyluxeheader .middle > div > .buttons > a{
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #222222;
    text-decoration: none;
}




#babyluxeheader .middle > div > .buttons > button > img,
#babyluxeheader .middle > div > .buttons > a > img{
    width: 35px;
    height: auto;
}


#babyluxeheader .middle > div > .buttons > button > p,
#babyluxeheader .middle > div > .buttons > a > p{
    font-size: 12px;
    font-weight: 400;
}







#babyluxeheader .bottom{
    background-color: var(--rozeDefault);
}

#babyluxeheader .bottom .hamburgerclose{
    display: none !important;
}

#babyluxeheader .bottom nav ul{
    display: flex;
    justify-content: center;
}

#babyluxeheader .bottom nav ul li{
    position: relative;
}

#babyluxeheader .bottom nav ul li a{
    display: block;
    padding: 12px 17px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

#babyluxeheader .bottom nav ul li a:hover{
    background-color: #ffc6db;
    transition: .2s ease;
}

#babyluxeheader .bottom nav ul li.menu-item-has-children{
}

#babyluxeheader .bottom nav ul li.menu-item-has-children .dropdown-arrow {
    display: inline-flex;
    margin-left: 6px;
}

#babyluxeheader .bottom nav ul li.menu-item-has-children .dropdown-arrow img {
    width: 10px;
    height: 10px;
}



#babyluxeheader .bottom nav ul li.menu-item-has-children > ul{
    display: none;
    background-color: var(--rozeDefault);
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}
#babyluxeheader .bottom nav ul li.menu-item-has-children:hover > ul {
    display: block;
}



@media only screen and (max-width: 1250px) {
    #babyluxeheader .bottom nav ul li a{
        font-size: 13px;
        padding: 10px 13px;
    }
    
    #babyluxeheader .bottom nav ul li.menu-item-has-children .dropdown-arrow img{
        width: 6px;
        height: 6px;
    }
    
    #babyluxeheader .bottom nav ul li.menu-item-has-children > ul{
        top: 33px;
    }
}

@media only screen and (max-width: 1050px) {
    #babyluxeheader .middle > div > .zoekbalk {
        width: 250px;
    }

    #babyluxeheader .middle > div > .buttons{
        gap: 15px;
    }
    
    #babyluxeheader .middle > div > .buttons > button > img, 
    #babyluxeheader .middle > div > .buttons > a > img{
        width: 25px;
    }
    
    #babyluxeheader .middle > div > .buttons > button > p, 
    #babyluxeheader .middle > div > .buttons > a > p{
        font-size: 11px;
    }
    
    #babyluxeheader .bottom nav ul li a{
        font-size: 11px;
        padding: 10px 8px;
    }

    #babyluxeheader .bottom nav ul li.menu-item-has-children > ul{
        top: 32px;
    }
}




@media only screen and (max-width: 850px) {
    #babyluxeheader .middle > div > .zoekbalk{
        display: flex;
        align-items: center;
        gap: 25px;
        width: fit-content;
    }
    
    #babyluxeheader .middle > div > .zoekbalk > #hamburgerbtn{
        display: block;
        border: 0;
        background: none;
    }
    
    #babyluxeheader .middle > div > .zoekbalk > #hamburgerbtn > img{
        width: 30px;
        height: auto;
    }

    #babyluxeheader .bottom{
        display: flex;
        flex-direction: row-reverse;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #00000066;
        z-index: 999999;    
    }
    
    #babyluxeheader .bottom .hamburgerclose{
        display: block !important;
        width: 40%;
        height: 100%;
        position: relative;
    }
    
    #babyluxeheader .bottom .hamburgerclose > img{
        width: 25px;
        height: auto;
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        margin: auto;
    }
    
    #babyluxeheader .bottom nav{
        position: absolute;
        top: 0;
        left: -2000px;
        width: 60%;
        height: 100%;
        background-color: #ffff;
        border-right: 3px solid var(--rozeDefault);
    }
    
    #babyluxeheader .bottom nav ul{
        flex-direction: column;
    }
}

@media only screen and (max-width: 650px) {
    #babyluxeheader .top{
        padding: 10px 15px;
    }

    #babyluxeheader .top span img{
        width: 12px;
        height: auto;
    }
    
    #babyluxeheader .top span p{
        font-size: 10px;
    }


    #babyluxeheader .middle > div > .buttons > a{
        display: none;
    }    
    
    #babyluxeheader .middle > div > .buttons > button > img{
        width: 35px;
    }
    
    #babyluxeheader .middle > div > .buttons > button > p{
        display: none;
    }
}

@media only screen and (max-width: 550px) {
    #babyluxeheader .middle > div > .logo > img {
        width: 190px;
    }
    
    #babyluxeheader .middle > div > .zoekbalk{
        gap: 20px;
    }
}


@media only screen and (max-width: 390px) {
    #babyluxeheader .middle > div{
        padding: 15px 15px;
    }
    
    #babyluxeheader .middle > div > .zoekbalk{
        flex-direction: column;
        gap: 10px;
    }
}






    .openhamburger{
        animation: openhamburger .3s forwards;
        animation-delay: .1s
    }
    
    .closehamburger{
        animation: closehamburger .3s forwards
    }

    
    @keyframes openhamburger {
        from {
            left: -2000px
        }

        to {
            left: 0
        }
    }

    @keyframes closehamburger {
        from {
            left: 0
        }

        to {
            left: -2000px
        }
    }