.navbar {
    position: absolute;
    width: 100vw;
    z-index: 2;
    user-select: none;
}

.essilor-logo {
    position: absolute;
    height: 140px;
    top: -17px;
    right: 2%;  
}

.navbar-white {
    background: white;
    height: 1.50vh;
}

.navbar-gradient {
    background: linear-gradient(to right, rgba(0, 147, 208, 0.0), rgba(0, 147, 208, 1));
    width: 100vw;
    height: 55px;
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-end;
    padding-right: 3vw;
    font-weight: bold;
    line-height: 55px;
}

.navbar-text {
    color: white;
    z-index: 3;
    position: absolute;
    right: 170px;
    letter-spacing: 0px;
}

.store-logo {
    position: absolute;
    right: 3%;
    top: 120px;
}
.store-logo img{
    height: 80px;
}

@media only screen and (max-width: 576px){ 
   
    .essilor-logo {
        max-height: 110px;
        right: 0px;
    }
    
    .navbar-text {
        display: none;
    }

    .store-logo{
        position: absolute;
        top: 7px;
        left: 1.50vh;
    }
    .store-logo img {
        height: 60px;
    }
}

