/*!
 * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

/* Toggle Styles */

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;

}

    #wrapper.toggled {
        padding-left: 330px;
    }

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 330px;
    width: 0;
    height: 100%;
    margin-left: -330px;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 330px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 0px;
    margin: 0;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -330px;
}

/* Sidebar Styles */

.sidebar-nav {
    list-style: none;
    display: block;
    margin-top: 0;
    overflow: hidden;
    padding: 0 30px;
}

.sidebar-nav li {
    border: medium none !important;
    right: 0;
    position: relative;
    list-style-type: none;
    display: list-item;
}

.sidebar-nav li a {

    border-top: 1px solid rgba(214, 173, 79, 0.1);
    border-bottom: medium none;
    color: #EDE9CF !important;
    display: block;
    font-family: 'Lora';
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.6em;
    margin-bottom: 0;
    margin-left: 0;
    padding: 3px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.sidebar-nav li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1) inset, -1px -1px 3px rgba(0, 0, 0, 0.1) inset, 2px 2px 2px rgba(0, 0, 0, 0.1) inset;
    border-radius: 3px;    text-decoration: none;
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

.sidebar-nav > .sidebar-brand a {
    color: #999999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

@media(min-width:992px) {
    #wrapper {
        padding-left: 330px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 330px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        padding: 0px;
        position: relative;
        margin: 0;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}