#wrapper {
    width: 80%;
    margin-left:200px;
    background: none;
    -webkit-transition: margin-left 0.635s, width 0.235s, background 0.8s ease-in; /* For Safari 3.1 to 6.0 */
    transition: margin-left 0.535s, width 0.235s, background 0.8s ease-in;
}

#wrapper.toggled {
    width: 100%;
    background: white;
    margin-left: 0;
    -webkit-transition: margin-left 0.535s, width 0.235s; /* For Safari 3.1 to 6.0 */
    transition: margin-left 0.535s, width 0.235s;
}

#sidebar-wrapper {
    z-index: 1;
    position: absolute;
    width: 200px;
    -webkit-transition: z-index 0.535s; /* For Safari 3.1 to 6.0 */
    transition: z-index 0.535s;
}

#sidebar-wrapper.toggled {
    z-index: -1;
}

#menu-toggle{
    left: 15px;
    top: 15px;
    height: 30px;
    width: 40px;
    cursor: pointer;
    color:white;
    background: transparent;
    font-size: 16px;
    margin-top: 12px;
    border-color: #333;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
}

#menu-toggle:hover {
    background: #333;
}

#resizeWrapper{
    margin-left: 0;
    width: auto;
}

#resizeSidebar{
    width: auto;
    position: relative;
}

@media (min-width: 768px) {
    .container {
        width: auto;
    }
}
