#overlay ul {
    margin:0;
}

#overlay li:not(:last-of-type) {
    border-bottom: 1px solid rgb(125,125,125);
}

#overlay a, #overlay a:visited {
    color: rgb(247, 247, 247);
    font-size: 22px;
}

#overlay a:active, #overlay a:hover, #overlay a.btn:hover {
    text-decoration:none;
    color: rgb(125,125,125);
}

#overlay button {
    color: rgb(247, 247, 247);
    font-size: 22px;
}

#overlay .dropdown-menu {
	background-color: none;
}

@media screen and (max-width: 767px) {
    
    #overlay {
        position:fixed;
        top: 0;
        left: 0;
        width: 100%;
        height:100%;
        background-color: rgba(0,0,0,.9);
        z-index: 1000;
    }
}

@media screen and (min-width: 768px) { /* width greater than or equal to 768 */
    #overlay {
        display:none !important;
    }       
}