 Released under MIT License
 * http://opensource.org/licenses/MIT
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */

html, body, #sb-site, .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;
}

html {
	height: 100%;
}

body {
	min-height: 100%;
	z-index:9999;
}

/* ----------
 * 002 - Site
 */

#sb-site {
	width: 100%;
	min-height: 100%; /* Initially set here but accurate height is set by slidebars.js */
	position: relative;
	z-index: 1; /* Site sits above Slidebars */
	/*box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0); Fixes some translation issues. */
	}

/* ---------------
 * 003 - Slidebars
 */

.sb-slidebar {
	width: 35%; /* Slidebar width for older browsers that don't support media queries. */
	height: 100%;
	overflow-y: auto; /* Enable vertical scrolling on Slidebars when needed. */
	position: fixed;
	top: 0;
	z-index: 0; /* Slidebars sit behind sb-site. */
	visibility: hidden; /* Initially hide the Slidebars. */
	background-color: #363a3b; /* Default Slidebars background colour, overwrite this with your own css. */
}

html.sb-android .sb-slidebar { /* Unfix Slidebars for Android Browser < 3 */
	height: auto;
	position: absolute;
}

.sb-left {
	left: 0;
}

.sb-right {
	right: 0;
}

html.sb-active-left .sb-left {
	visibility: visible;
}

html.sb-active-right .sb-right {
	visibility: visible;
}


			.sb-toggle-right{
				position:absolute;
				color: #fff;
				z-index:99999;
				right:0;
				font-size:28px;
				color: #707273;
				width:40px;
				height:20px;
				margin-top:-12px;
				right:-60px;
				background-color: #282b2c;
				display:block;
				padding: 0 15px 42px 6px;
				border:2px solid #707273;
				border-radius:5px;
				
			}
			
			.sb-toggle-right:hover{
				position:absolute;
				color: #929da0;
			}
			
			.sb-slidebar {
				color: #fff;
				padding-top:115px;
				
			}
			
			.sb-slidebar ul{
				padding-left:0;
				margin-left:0;
				color: #707273;
				text-decoration:none;
				list-style:none;
				text-align:center;
				
			}
			
			li.nav-work-mobile, .sb-slidebar li a{
				color: #707273;
				text-decoration:none;
				list-style:none;
				display:block;
				border-bottom: 1px solid #707273;
				padding: 10px 0 10px 0;
				-webkit-transition: all 1s ease-in-out;
 				-moz-transition: all 1s ease-in-out;
				 -o-transition: all 1s ease-in-out;
				 transition: all 1s ease-in-out;
			
			}
			
			
			li.nav-work-mobile, .sb-slidebar #web-design a, .sb-slidebar #logo-design a,  .sb-slidebar #motion-graphics a, .sb-slidebar #graphic-design a, .sb-slidebar [id='3d-visuals'] a, .sb-slidebar #all-pro a{
				color: #707273;
				text-decoration:none;
				list-style:none;
				display:block;
				border-bottom: 1px solid #707273;
				padding: 10px 0 10px 0;
				-webkit-transition: all 1s ease-in-out;
 				-moz-transition: all 1s ease-in-out;
				 -o-transition: all 1s ease-in-out;
				 transition: all 1s ease-in-out;
				 text-transform:uppercase;	
				 border-left:none;
				 border-right:none;
				 background-image:none;
	}
	

	
			.sb-slidebar li a:hover, .sb-slidebar #web-design a:hover, .sb-slidebar #logo-design a:hover, .sb-slidebar #logo-design.selected, .sb-slidebar #motion-graphics a:hover, .sb-slidebar #graphic-design a:hover, .sb-slidebar [id='3d-visuals'] a:hover, .sb-slidebar #all-pro a:hover{
				color: #929da0;
				text-decoration:none;
				list-style:none;
				display:block;
				border-bottom: 1px solid #929da0;
				background:none;
				
			}
				
	li.nav-work-mobile:hover{
		
		}			
			
.mobile-sub{
		display:block;
		-webkit-transition: all 1s ease-in-out;
 		-moz-transition: all 1s ease-in-out;
		-o-transition: all 1s ease-in-out;
		transition: all 1s ease-in-out;
		font-size:12px;
		}
		

li.nav-work-mobile:hover ul.mobile-sub{
		display:block;
		
		-webkit-transition: all 1s ease-in-out;
 		-moz-transition: all 1s ease-in-out;
		-o-transition: all 1s ease-in-out;
		transition: all 1s ease-in-out;
		}
				
				
			@media (min-width: 992px) {
				.sb-toggle-left, .sb-toggle-right, .sb-open-left, .sb-open-right, .sb-close {
					display: none;
				}
				
				
			}


/* Media queries to set Slidebar widths. */
@media (max-width: 750px) {

.sb-slidebar ul {
				color: #fff;
				margin-top:0px;
				
			}			
			
			}	

/* Media queries to set Slidebar widths. */
@media (max-width: 480px) {


			
	.sb-slidebar {
		width: 40%; /* Slidebar width on extra small screens. */
	}
}

@media (min-width: 481px) and (max-width: 991px) {
	.sb-slidebar {
		width: 25%; /* Slidebar width on small screens. */
	}
	
	ul.nav{display:none;}
}

@media (min-width: 992px) {
	.sb-slidebar {
		width: 35%; /* Slidebar width on medium screens. */
	}
	
}

@media (min-width: 1200px) {
	.sb-slidebar {
		width: 20%; /* Slidebar width on large screens. */
	}
}

@media screen and  (max-width: 320px) 
{

.sb-slidebar ul {
				color: #fff;
				margin-top:0px;
				
			}	

}

/* ---------------
 * 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. */
}