#screenNav {
    visibility: hidden;
    background: linear-gradient(#338aff, #5833ff);
    box-shadow: -5px +5px 15px black;
    width: 90px;
    height: 90px;
    position: fixed;
    right: 10px;
    top: 10px;
    border-radius: 45px;
}

#mobileNav {
    background: linear-gradient( #338aff, #5833ff);
    box-shadow: -5px +5px 15px black;
    width: 100px;
    height: 100px;
    position: fixed;
    left: 50%;
    margin-left: -50px;
    bottom: -50px;
    border-radius: 50px;
    z-index: 999;
}

@media (min-width:0px) {
    #screenNav {
        visibility: hidden;
    }
    #mobileNav {
        visibility: visible;
    }
}

@media (min-width:768px) {
    #screenNav {
        visibility: visible;
    }
    #mobileNav {
        visibility: hidden;
    }
}

.line1 {
    background-color: white;
    width: 40px;
    height: 5px;
    margin-top: 12px;
}

.line2 {
    background-color: white;
    width: 50px;
    height: 5px;
    margin-top: 8.75px;
}

.line3 {
    background-color: white;
    width: 40px;
    height: 5px;
    margin-top: 8.75px;
}

#movileNavOverlay {
    position: absolute;
    visibility: hidden;
    z-index: 999;
}

.menuVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100vw;
    min-height: 100vh;
}

#bgPink {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(340, 57%, 64%, 0.42);
}

#bgSaveurs {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(340, 57%, 64%, 0.8);
}

#close {
    position: fixed;
    height: 100px;
    width: 100px;
    left: 50%;
    margin-left: -50px;
    bottom: -50px;
    border-radius: 50px;
    background-color: red;
    box-shadow: -5px +5px 15px black;
}

.line4 {
    background-color: white;
    width: 40px;
    height: 8px;
    margin-top: 30px;
    transform: rotate(45deg);
}

.line5 {
    background-color: white;
    width: 40px;
    height: 8px;
    margin-top: -8px;
    transform: rotate(-45deg);
}

#garnituresOverlay {
    visibility: hidden;
}

.dot {
    color: white;
}

.saveurs {
    color: midnightblue;
    font-size: large;
    text-shadow: -1px 1px 3px white;
}