﻿/*!
 * Start Bootstrap - Simple Sidebar (http://startbootstrap.com/)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */

/* 
    === Important note ===
    This file only contains structural layout information.
    All colours and background colours are defined in the site-sidebar-menu.css file
*/

/* 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.sidebar {
    padding-left: 275px;
}

#wrapper.thin-sidebar {
    padding-left: 50px;
}

#wrapper.no-sidebar {
    padding-left: 0;
}

    #wrapper.sidebar #page-header-wrapper {
        padding-left: 275px;
        background: #003658; /*Added by ROhil*/ 
    }

    #wrapper.thin-sidebar #page-header-wrapper {
        padding-left: 50px;
        background: #003658; /*Added by ROhil*/
    }

    #wrapper.no-sidebar #page-header-wrapper {
        padding-left: 0;
        background: #003658;
    }

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    width: 0;
    height: 100%;
    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;
}

#page-content-wrapper {
    width: 100%;    
    position: relative;
    padding: 15px;
}

#page-header-wrapper {
    width: 100%;
    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;
}

/* Sidebar Styles */

ul.sidebar-nav {
    position: absolute;
    position: fixed;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

/* normal sidebar styles */

#wrapper.sidebar #sidebar-wrapper {
    width: 275px;
}

/* no-sidebar styles */

#wrapper.no-sidebar #sidebar-wrapper {
    width: 0;
    overflow: hidden; /* hides the green active bar */
}

#wrapper.no-sidebar #page-menu-bar-container {
    padding-right: 0;
}

/* thin styles */

#wrapper.thin-sidebar #sidebar-wrapper {
    width: 50px;
}

/* dropdown-styles */

#wrapper.no-sidebar.sidebar-dropdown #sidebar-wrapper {
    position: absolute;    
    top: 0px;
    left: 0px;
    width: 275px;
}

/* media queries */

@media only screen and (max-width : 768px) {

    #sidebar-wrapper {
        width: 275px;
    }

    #page-content-wrapper {
        padding: 0 20px 20px 20px;
        padding: 5px;
    }

}