/* -----------------------------------
 * Slidebars
 * Version 0.8.2
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */

html, body, #wrap, .sb-slidebar {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html, body {
	width: 100%;
	overflow-x: hidden; /* Stops horizontal scrolling. */
}

html {
	/*min-height: 100%;*/
}

body {
	height: 100%;
}

/* ---------------
 * 003 - Slidebars
 */

.sb-slidebar {
	height: 100%;
	overflow-y: none; /* Enable vertical scrolling on Slidebars when needed. */
	position: absolute;
	top: 0;
	left:-100%;
	z-index: 99999; /* Slidebars sit behind wrap. */
	visibility: hidden; /* Initially hide the Slidebars. */
	background-color: #FFF; /* Default Slidebars background colour, overwrite this with your own css. */
	transition:.3s;
	width:80%
}


.sb-slidebar.on {
	left:0;
	visibility: visible;
}

.sb-static { /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser 2.X. */
	position: absolute;
	height: auto;
	/* min-height set by slidebars.js */
}

/*.sb-left {
	 left: 0;  Sets Slidebar to the left.
	transition:.3s;
	width:0; 

}*/

html.sb-active-left .sb-left {
	visibility: visible; /* Makes Slidebars visibile when open. */
	width: 100%;
	transition:.3s;
}



.sb-width-custom {
	/* To set a custom width, add this class to your Slidebar and pass a px or % value as a data attribute 'data-sb-width'. */
}

.click-bg{
    position: fixed;
    top: 0;
    left: 0;
	width:100%;
    height: 100%;
    background: rgba(0,0,0,.5);
	transition:.3s;
	opacity:0;
	z-index:-1;
}
.click-bg.on{
	opacity:1;
	z-index:1;
}


/* ---------------
 * 004 - Animation
 */

html.sb-anim-type-translate .sb-slide, html.sb-anim-type-side .sb-slide {
	-webkit-transition: -webkit-transform 400ms ease;
	   -moz-transition: -moz-transform 400ms ease;
	     -o-transition: -o-transform 400ms ease;
	        transition: transform 400ms ease;
	-webkit-transition-property: -webkit-transform, left; /* Add 'left' for Android < 4.4 */
	-webkit-backface-visibility: hidden; /* Prevents flickering. */
}