.menu-control-icon {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    width: 30px;
    cursor: pointer;
    z-index: 1;
}

/*-----------------------------------------*/

#img-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-menu-item {
    text-decoration: none;
}

.img-menu-icon {
    width: 40px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

#img-menu-spacer {
    position: relative;
    float: left;
}

/*-----------------------------------------*/

#menu-container {
    position: fixed;
    vertical-align: middle;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #666;
    text-align: center;
}

.menu-item {
    display: inline-block;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto 10px auto auto;
    text-align: center;
    vertical-align: middle;
    line-height: 60px;
    text-decoration: none;
    color: #CCC;
}

.menu-text {
    font-size: 15pt;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    clear:both;
}

/*-----------------------------------------*/

.selected {
    background-color: #888;
}

#menu-screen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}

#menu-margin {
    width: 100%;
    margin-bottom: 80px;
}

/*-----------------------------------------*/

@media only screen and (max-width: 880px) {

    #img-menu-container {
        left: 50%;
        transform: translateX(-50%);
    }

    #img-menu-spacer {
        display: none;
    }

    #menu-container {
        display: none;
        width: auto;
        height: 100%;
        padding-top: 50px;
    }

    .menu-item {
        display: block;
        text-align: left;
        height: 60px;
        width: calc(100% - 30px);
        margin: 0;
        padding-right: 20px;
    }

    #menu-icon {
        display: block;
    }
}