
/*
 * drawer behavior
 * 
 */

#confDrawer{
	
	transition: left .2s;
	width:80%;position: fixed; top:0; bottom:0;
	 background-color: inherit;  
	  z-index:1004; left:-81%;
	
}
#confDrawer:focus{

	border:none;
	outline:none;	
}

#confDrawer.open{
	
	transition: left .2s;
	left:0;
}

.drawer-bg.open{
	
	display: block;
}

.drawer-bg{
	
	position:fixed;
	top:0;left:0;right:0;bottom:0;
	display:none;
	z-index: 1000;
	opacity: .6;
	background: #000;
}

.ic-option-menu-close{
		
	float: right;
	height: 40px;
	width:45px;
	text-align: center;
	border-left:solid #333 1px;
}

@media (min-width:1000px){
	
	#confDrawer{
	
		transition: opacity .3s, width .3s, height .3s;
		position: absolute;
		top: 75px;
		left: auto;
		height: 0;
		width: 0;
		opacity:0;
	}
	
	#confDrawer.open{
		
		transition: all .3s;
		box-shadow: 0 0 12px 1px rgba(0,0,0,.9);
		height: 259px;
		left: auto;
		width: 500px;
		opacity:1;
		overflow-y: scroll;
	}
	.ic-option-menu-close{
		
		display: none;
	}
}

/*
 * drawer list style
 */
#confDrawer ul{
	
	list-style: none; padding:0 ; margin:0;	
}

#confDrawer ul li:not(.header){
	
	text-transform: capitalize;	
}
#confDrawer ul li{
	
	padding:10px 20px;
	vertical-align:middle;
	cursor:pointer;
	border-bottom: solid 1px #E0E0E0;
	line-height: auto;
}

#confDrawer ul li.header{
	
	color:#fff;
	padding:0px 0 0 10px;
	height: 50px;
	line-height: 50px;
	background-color: #399e62;
}

#confDrawer ul li.item{
	
	cursor: pointer;	
}

#confDrawer ul li.item img{
	
	margin-right:10px;
}
	
#confDrawer ul li h1{
	
	font-weight: 700;
	color:#eee;
	font-size: 27px;	
	margin:0;
}

#confDrawer ul li:not(:nth-child(0)) img{
	
	height: 20px;
}

#confDrawer ul li input{
	
	padding:0;
	text-indent: 0;
}

