section.onepage_app{
	display: flex;
	flex: 1;
}

section.list_column{
	width:40%;
	display: flex;
	flex-direction: column;
	max-width: 400px;
	min-width: 200px;
	border-right:1px solid #DDD;
	box-sizing:border-box;
}

section.onepage_detail{
	min-width: 500px;
	overflow-x: auto;
	overflow-y: auto;
	padding:20px;
	box-sizing:border-box;
	flex: 1;
}

nav.onepage_list{

	background-color:#F5F5F5;
	overflow-x:hidden;
	overflow-y:auto;
	flex: 1;
	
}

nav.onepage_list img.spinner{
	
	display:block;
	margin:30px auto 0 auto;
	width:30px;
	height:30px;
	
}

nav.onepage_list div.list_items p{
	
	display:block;
	margin:30px 0 0 0;
	text-align:center;
	padding:0;
	font-size:13px;
	
}

section.list_column header {
	flex: 0 0 auto;
}

section.list_column header h1 {
  height: 60px;
  font-size: 16px;
  box-sizing: border-box;
  padding: 20px;
  margin: 0;
  font-weight: 400;
  color: #777;
  background-color: #fff;
  border-bottom: 1px solid #DDD;
}

form.list_filter{
	height: 60px;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
	background-color: #F5F5F5;
}

form.list_filter input[type="search"] {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 10px;
  box-sizing: border-box;
  outline: none;
  margin-top: 10px;
}

div.list_item{

	padding:10px 20px;
	overflow-x: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

div.list_item.selected{

  	border-right: 3px solid rgba(0, 0, 0, 0.1);
	color:#fff;
	
}

h1.vnet-heading{
	
	width:100%;
	display:block;
	box-sizing:border-box;
	height:60px;
	font-size:16px;
	color:#777;
	font-weight:400;
	border-bottom:1px solid #ddd;
	background-color:#fff;
	box-sizing:border-box;
	padding:20px;
	margin:0;
	
}

@media (max-width:800px){
	
	section.onepage_detail{
		min-width: 1px;
		height:0px;
		width:100%;
	}
	
	section.onepage_detail div.mobile_header{
		
		position:fixed;
		top:0;
		left:0;
		width:100%;
		height:42px;
		background-color:#34393d;
		z-index: 100003;
		
	}
	
	div.list_item{

		cursor:pointer;
	}
	
	div.mobile_header div.mobile_closer{
		
		display:block;
		width:42px;
		height:42px;
		text-align:center;
		float: left;
		
	}
	
	div.mobile_header div.mobile_closer:before{
		
		content: "\f00d";
		color:#fff;
		font-family:"FontAwesome";
		width:42px;
		height:42px;
		text-align:center;
		line-height:42px;
		font-size:30px;
		
	}
}

@media(print){
	
	section.onepage_detail{
	overflow-y: visible;
		
	}
	
	
	
}