.shp-sidebar
{
	position: fixed;
	width: 300px;
	top: 0;
	bottom: 0;
	left: 0;
	background-color: #fafafa;
	height: 100%;
	z-index: 101;
	left: -310px;
	color: #455a64;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
	-webkit-transition: all 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
	-moz-transition: all 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
	-o-transition: all 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
	transition: all 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
	color: #514A9D;
}
.shp-opened-sidebar .shp-sidebar{
	left: 0;
}
.shp-sidebar-wrapper{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	padding-bottom: 60px;
}
.shp-sidebar-wrapper::-webkit-scrollbar {
    width: 6px;
}
.shp-sidebar-wrapper::-webkit-scrollbar-thumb {
    background: #4A569D;
}
.shp-sidebar-wrapper::-webkit-scrollbar-track {
    background: #455a64;
}
.shp-sidebar-logo{
	width: 100%;
	height: 60px;
	border-bottom: solid 1px #cfd8dc;
}
.shp-sidebar-logo a{
	display: inline-block;
	float: left;
	margin: 16px 24px;
}
.shp-sidebar-logo a img{
	display: block;
}
.shp-sidebar-toggle-button{
	width: 24px;
	height: 24px;
	float: right;
	margin: 18px;
	cursor: pointer;
}
.shp-sidebar-pin-button{
	width: 24px;
	height: 24px;
	float: right;
	margin: 18px;
	cursor: pointer;
}
.shp-sidebar-pin-button i{
	position: absolute;
	transform: scale(1);
	-webkit-transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
	-moz-transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
	-o-transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
	transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
}
.shp-sidebar-pin-button .shp-fixed-icon{
	transform: scale(0);
}
.shp-pinned-sidebar .shp-sidebar-pin-button .shp-fixed-icon{
	transform: scale(1);
}
.shp-pinned-sidebar .shp-sidebar-pin-button .shp-not-fixed-icon{
	transform: scale(0);
}
.shp-sidebar-navi ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.shp-sidebar-navi > ul ul{
	display: none;
}
.shp-sidebar-navi .inner{
	overflow: hidden;
  	display: none;
}
.shp-sidebar-navi .shp-seperate{
	width: 100%;
	height: 1px;
	background-color: #cfd8dc;
}
.shp-sidebar-navi li{
	margin: 2px 0;
	display: block;
	width: 100%;
}
.shp-sidebar-navi a{
	line-height: 50px;
	text-decoration: none;
	height: 50px;
	padding: 0 20px;
	color: #455a64;
	white-space: nowrap;
	display: table;
	width: 100%;
}
.shp-sidebar-navi a:hover{
	background-color: #EEE;
}
.shp-sidebar-navi a > span{
	display: table-cell;
}

.shp-sidebar-navi a > span.shp-icon{
    width: 40px;
    height: 50px;
    line-height: 0;
    vertical-align: middle;
}
.shp-sidebar-navi a > span.shp-arrow-icon{
	width: 24px;
    height: 50px;
    line-height: 0;
    vertical-align: middle;
    -webkit-transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -moz-transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.shp-sidebar-navi > ul > li > ul > li > a{
	padding: 0 20px 0 60px;
	line-height: 40px;
	height: 40px;
	font-size: 95%;
}
.shp-sidebar-navi > ul > li > ul > li > a span.shp-arrow-icon{
	height: 40px;
}
.shp-sidebar-navi > ul > li > ul > li > ul > li > a{
	padding: 0 20px 0 80px;
	line-height: 40px;
	height: 40px;
}
.shp-sidebar-navi ul li.show > a > .shp-arrow-icon{
	-ms-transform: rotate(180deg); /* IE 9 */
    -ms-transform-origin: 50% 50%; /* IE 9 */
    -webkit-transform: rotate(180deg); /* Safari 3-8 */
    -webkit-transform-origin: 50% 50%; /* Safari 3-8 */
    transform: rotate(180deg);
    transform-origin: 50% 50%;
}
.shp-sidebar-navi ul li.show > a{
	background-color: #EEEEEE;
}
.shp-sidebar-navi>ul>li>ul>li.show > a{
	background-color: #f4f4f4;
}
.shp-sidebar-navi ul li.show > a{
	color: #4A569D;
}
.shp-overlay{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	z-index: 100;
	cursor: pointer;
	display: none;
}
/*pinned sidebar styles */
.shp-opened-sidebar .shp-overlay{
	display: block;
}
.shp-pinned-sidebar .shp-overlay{
	display: none !important;
}
.shp-pinned-sidebar .shp-sidebar{
	top: 60px;
}

.shp-pinned-sidebar.shp-opened-sidebar .shp-wrapper{
	margin-left: 300px;
}
.shp-pinned-sidebar .shp-wrapper{
	margin-left: 0;
}


.shp-toggle-sidebar i {
    position: absolute;
    left: 8px;
    top: 8px;
    -webkit-transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -moz-transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: transform 200ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}


.shp-material-button {
    position: relative;
    overflow: hidden;
}

.shp-toggle-sidebar{
	width: 40px;
	height: 40px;
	text-align: center;
	cursor: pointer;
	color: #FFF;
	background-color: rgba(0,0,0,0.55);
	float: left;
  border-radius: 6px;
  margin-right:10px;
  display: none;
}

.shp-toggle-sidebar .shp-open-icon{
	transform: scale(1);
}
.shp-toggle-sidebar .shp-close-icon{
	transform: scale(0);
}
.shp-opened-sidebar .shp-toggle-sidebar .shp-open-icon{
	transform: scale(0);
}
.shp-opened-sidebar .shp-toggle-sidebar .shp-close-icon{
	transform: scale(1);
}


.shp-material-button{
	position: relative;
	overflow: hidden;
}

.shp-wave-effect {
	display: block;
	position: absolute;
	-webkit-transform: translateX(-50%) translateY(-50%);
	      transform: translateX(-50%) translateY(-50%);
	width: 0px;
	height: 0px;
	background-color: #fff;
	border-radius: 50%;
	opacity: 0.7;
}

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

.shp-toggle-sidebar{
  display: inline-block;
}

}


@media only screen and (max-width: 1140px) {
  .ship-navbar
  {
    display:none
  }
}
