
/*----------------------------------*/
/* Push Sidebar Menu Css ---*/
/*----------------------------------*/
.pushmenu { /*this is the nav*/
	/*background: #323232;*/
    background: rgba(5,5,5,0.9);
    font-family: 'Muli' sans-serif;
    width: 280px;
    /* height: 100%; */
	height: auto;
    top: 0;
    z-index: 1000;
    position: fixed;
}

.pushmenu-push {
    overflow-x: hidden;
    position: relative;
}


/*==================================*/
/* Left Sidebar Menu Css --------*/
/*==================================*/

.pushmenu-right {
    right: -280px;
}

    .pushmenu-right.pushmenu-open {
        right: 0;
    }
    .pushmenu-push-left {
        left:0;
    }

.pushmenu-push-toleft {
	/* left: -280px; *//* Use this setting for side menu to push body to left*/
    left: 0px; /* Use this setting for side menu to slide in as overlay*/
}

/*Transition*/
.pushmenu, .pushmenu-push {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}


/*==================================*/
/* Left Sidebar Menu Css --------*/
/*==================================*/
.pushmenu-left {
    left: -280px;
}

    .pushmenu-left.pushmenu-open {
        left: 0;
    }

    .pushmenu-push-right {
        right:0;
    }

.pushmenu-push-toright {
    right: -280px;
}

