/*!
 * Start Bootstrap - Simple Sidebar (http://startbootstrap.com/)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */

 body {
    overflow-x: hidden;
 }

/* Toggle Styles */
.full-screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#wrapper {
    padding-right: 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-right: 250px;
}
*/
#sidebar-wrapper {
    z-index: 100;
    position: fixed;
    right: 250px;
    width: 0;
    top: 0;
    height: 100%;
    margin-right: -250px;
    overflow-y: auto;
    background: rgba(0,151,166,0.95);
    -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: 100vw;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    /*padding: 15px;*/
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -250px;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 6rem;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    color: white;
}

.sidebar-nav li {
    /*text-indent: 20px;*/
    line-height: 40px;
    margin: 0 3rem 3rem 3rem;
    border-bottom:1px solid rgba(255,255,255,0.7);
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999999;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}


#wrapper.toggled .cus-nav-mobile{
    background-color: inherit;
}
#wrapper.toggled .cus-nav-mobile-bar{
    border: 1px solid white;
}
#wrapper.toggled .cus-nav-mobile-bar hr{
    border: 1px solid white;
}
.cus-mobile-dropdown-open .glyphicon-chevron-down{
    transform: rotate(180deg);
        -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media(min-width:768px) {
    #wrapper {
        padding-right: 0;
    }
/*
    #wrapper.toggled {
        padding-right: 250px;
    }
*/
    #sidebar-wrapper {
        width: 0;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 100vw;
    }

    #page-content-wrapper {
        /*padding: 20px;*/
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}
@media (min-width:992px) {
    #sidebar-wrapper {
        display: none;
        overflow: hidden;
    }
    #wrapper.toggled {
        padding-right: 0;
    }
}