/*!
 * Slidebars - A jQuery Framework for Off-Canvas Menus and Sidebars
 * Version: 2 Development
 * Url: http://www.adchsm.com/slidebars/
 * Author: Adam Charles Smith
 * Author url: http://www.adchsm.com/
 * License: MIT
 * License url: http://www.adchsm.com/slidebars/license/
 */

/**
 * Box Model, Html & Body
 */
@media only screen and (min-width: 769px) {
  .sidemenu {display:none !important;}
}

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

html, body, [canvas=container], [off-canvas] {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/**
 * Canvas
 */

[canvas] {
	z-index: 1;
}

[canvas=container] {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	position: relative;
	background-color: white; /* Basic background color, overwrite this in your own css. */
	-webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
}

[canvas=container]:before, [canvas=container]:after {
	clear: both;
	content: '';
	display: table;
}

/**
 * Off-Canavs
 */

[off-canvas] {
	display: none;
	position: fixed;
	overflow: hidden;
	overflow-y: auto;
	background-color: #7f7f7f; /* Basic background color, overwrite this in your own css. */
	color: white; /* Basic colors, overwrite this in your own css. */
	-webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

[off-canvas*=top] {
	width: 100%;
	height: 255px;
	top: 0;
}

[off-canvas*=right] {
	width: 255px;
	height: 100%;
	top: 0;
	right: 0;
}

[off-canvas*=bottom] {
	width: 100%;
	height: 255px;
	bottom: 0;
}

[off-canvas*=left] {
	width: 255px;
	height: 100%;
	top: 0;
	left: 0;
}

[off-canvas*=reveal] {
	z-index: 0;
}

[off-canvas*=push] {
	z-index: 1;
}

[off-canvas*=overlay] {
	z-index: 9999;
}

[off-canvas*=shift] {
	z-index: 0;
}

/**
 * Animation
 */

[off-canvas] p  {padding: 10% 0 0 10%;}
[off-canvas] img  {width:80%;}

[class*=js-] {
    cursor: pointer;
}

button.js-toggle-right-slidebar {
  position: fixed;
  right: 5%;
  top: 4%;
  height: 35px;
  width: 100px;
  border: 0 none;
  border-radius: 25px;
  text-transform: uppercase;
  color: #7f7f7f;
  font-family: 'Open Sans', sans-serif;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-align: center;
  background: white;
}
button.js-close-right-slidebar {
    position: absolute;
    right: 3%;
    top: 1%;
    border: 2px solid white;
    border-radius: 26px;
    background: white;
    font-size: 20px;
    height: 31px;
    color: #ec0b20;
}
button.js-toggle-right-slidebar i {
  color: #ec0b20;
}

.sidemenu a {
  color: white;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid white;
  width: 80%;
  font-weight: bold;
}
.sidemenu a:last-child {
  border-bottom: 0 none;
}

.sidemenu a.suba {
    padding: 15px;
    border: 0 none;
    font-weight: normal;
}

.mobonly  {position:fixed; z-index:99999999;}

}

/**
 * Print
 */

@media print {
	[canvas] {
		-webkit-transform: translate( 0px, 0px ) !important;
		    -ms-transform: translate( 0px, 0px ) !important;
		        transform: translate( 0px, 0px ) !important;
	}

	[off-canvas] {
		display: none !important;
	}
}