#omega{
}
#omega-button{
    display:block;
    float: right;
    color:black;
    cursor: pointer;
    //display:none;
    font-size:35px;
    background:transparent;
    border:0px;
    padding:0px;
}
#omega-content nav ul li, #omega-content #logo, #omega-content nav {
    display: inline-block;
}
.omega-links{
    display:inline-block;
}
#omega-content{
    float: right;
}
#omega-overlay {
    display: none;
    position: fixed;
    z-index: 10;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, .5);
}
#omega-sidebar{
    display:none;
    position: fixed;
    width:350px;
    z-index: 20;
    height:100%;
    top:0;
    left:0;
    transform: translateX(-100%);
    transition: transform .2s ease-in-out;
    background-color:#222222;
    color:white;
    -webkit-overflow-scrolling: touch; /* Lets it scroll lazy */
}
#omega-sidebar-header{
    background-image: url(../img/bg.png);
    background-size: cover;
    height:180px;
}
#omega-sidebar-body{
    padding:1em;
}
#omega-sidebar-body nav ul li{
    list-style: none;
    display: block;
}
#omega-sidebar-body nav ul li:before{
    content: ' ';
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    vertical-align: middle;
    width:24px;
    height:24px;
    //margin-right:5px;
    //margin-bottom:4px;
}
#omega-sidebar-body nav ul li:first-child:before {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
#omega-sidebar-body nav ul li:nth-child(2):before {
    content: "\f15c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
#omega-sidebar-body nav ul li:nth-child(3):before {
    content: "\f15c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
#omega-sidebar-body nav ul li:nth-child(4):before {
    content: "\f2bb";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
#omega-sidebar-body nav ul li a{
    display: inline-block;
    text-transform: uppercase;
    font-weight:700;
    font-size: 1.3rem;
    padding:0.5em;
    color:#606c76;
}
#omega-sidebar-body nav ul li a:hover{
    color:#9b4dca;
}
#omega-sidebar-body .omega-links a{
    display:block;
    margin-bottom:1em;
}

#omega-content { 
    display:none;
}
#omega-button, #omega-sidebar, .omega-activated #omega-overlay{
        display:block;
}
.omega-activated #omega-sidebar{
        transform: translateX(0);
}
@media only screen and (max-width: 1850px){

    #omega-content{
        display:none;
    }
    #omega-button{
        float: right;
        cursor: pointer;
    }
    .omega-links{
        display: block;
        margin-top:2em;
    }
    #omega-button, #omega-sidebar, .omega-activated #omega-overlay{
        display:block;
	overflow-y:auto;
	overflow-x:hidden;
    }
    .omega-activated #omega-sidebar{
        transform: translateX(0);
    }
}
