
/*
 * drawer behavior
 * 
 */

#confDrawer{
	
	transition: opacity .3s, width .3s, height .3s, left .3s;
	width:80%;position: fixed; top:0; bottom:0;
	 z-index:104; left:-81%;
	
}
#confDrawer:focus{

	border:none;
	box-shadow: none;
	outline:none;	
}

#confDrawer.open{
	
	
	left:0;
	box-shadow: 5px 0 10px 0 rgba(0,0,0,.4);
}

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

.drawer-bg{
	
	position:fixed;
	top:0;left:0;right:0;bottom:0;
	display:none;
	background-color: transparent;
	    z-index: 100;
}

.ic-option-menu-close{
		
	float: right;
	height: 45px;
	width:45px;
	text-align: center;
}

@media (min-width:1000px){
	
	#confDrawer{
	
		transition:none;
		position: absolute;
		top: 75px;
		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{
	
	padding:10px 20px;
	vertical-align:middle;
	line-height: auto;
	box-shadow: 0 1px 0 0 rgba(0,0,0,.1);
}

#confDrawer ul li.border{
	
	border-bottom:solid #555 1px;
}
#confDrawer ul li.header{
	
	padding:0px 0 0 10px;
	height: 48px;
	line-height: 45px;
	
}

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

#confDrawer ul li.item img{
	
	margin-right:10px;
}
	
#confDrawer ul li h1{
	
	color:inherit;
	margin:0;
}

.activity.full.header .header h1{
	
	margin:0;
}

.activity.full.header > .header{
	
    box-shadow: 0 1px 5px 0 rgba(0,0,0,0.2);
}

#confDrawer ul li:not(:nth-child(0)) img{
	
	background: #FFA200;
    border-radius: 30px;
    padding: 5px;
    height: 20px;
	    top: 8px;
}

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

#confDrawer ul li .social-icons a img {
    height: 30px !important;
    background: transparent !important;
    padding:0;
    border-radius: 0;
}

