.nav-main-mobile > span,
.nav-main-mobile > div,
.nav-main-mobile > ul {
    display: none;
}

@media all and (max-width: 1023px) {
    .nav-main-mobile {
        height: 80px;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 998;
    }

    .nav-main-mobile > span {
        color: #aaa;
        cursor: pointer;
        display: block;
        font-size: 12px;
        line-height: 80px;
        position: fixed;
        right: 60px;
        text-align: right;
    }

    .nav-main-mobile > div {
        background-color: #fff;
        background-image: url('../Images/Toggle.svg');
        background-position: 94% center;
        background-repeat: no-repeat;
        background-size: 26px auto;
        color: #565757;
        cursor: pointer;
        display: block;
        height: 80px;
        line-height: 80px;
        text-transform: uppercase;
    }

    .nav-main-mobile ul {
        background-color: #fff;
    }

    .nav-main-mobile ul li {
        border-top: 1px solid #f2f2f2;
        line-height: 20px;
    }

    .nav-main-mobile ul li a {
        color: #565757;
        display: block;
        line-height: 50px;
        padding: 0 10px;
    }

    .nav-main-mobile ul li a:hover {
        text-decoration: none;
    }

    .nav-main-mobile ul li a.active {
        font-family: 'Open Sans 600', sans-serif;
        font-weight: normal;
    }

    .layer {
        background-color: #000;
        display: block !important;
        height: 200%;
        left: -3000px;
        opacity: 0;
        position: fixed;
        top: 0;
        transition: opacity 0.3s ease-in-out 0s;
        width: 200%;
        z-index: 9;
    }

    .layer.active {
        left: 0;
        opacity: 0.6;
    }
}