/* jQuery Drawer ============================== */

* {
	box-sizing: border-box;
	
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}


.drawer {
	width: 100%;	
	border-radius: 3px;
	    margin-top:9px;
}

.drawer-item {
	
}
	.drawer-item-active .drawer-header {
		
		transition: 0.25s;
		color: #fff;
	}
	.drawer-item-active .drawer-header-icon {
		color: #fff;
	}

.drawer-header {	
	color: #212121;
	/*border: 1px solid #313131;*/
	/*border-left:1px solid #272727;
	border-right:1px solid #272727;
	background-color: transparent;*/
    height: 0;
    /*border: none;*/
    /*border-bottom: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(0,0,0,0.9);*/
    margin-bottom: 0px !important;
	
	/*padding:12px;*/
	cursor: pointer;	
	min-height:25px;
	transition: 0.25s;
}
	.drawer-header h1 {
		float: left;
		font-size: 13px;
       
		margin: 0;
	}

	.drawer-header span {
		float: left;
		font-size: 13px;
        text-shadow: 0.5px 0 0 rgba(255,255,255,0.5);
	    color: #b9b9b9;
		margin: 0;
	}

.drawer-content {	
	display: none;	
	color:#A9A9A9;	
	font-size: 13px;
	line-height: 1.45;
}
	.drawer-content p {
		margin: 0;
	}

.drawer-header-icon {
     float: left;
    margin-left: 10px;
    color: #888;
}
}
	.drawer-header-icon.drawer-header-icon-active {
		transform: rotate(180deg);
	}