.table{
	display: flex;
	flex-direction: column;
/*			box-shadow: 0px 0px 10px rgba(0 0 0/10%);*/
}
.table-wrapper{
	padding: 20px 0px;
}
.table-head,
.table-body-inner{
	display: grid;
	grid-template-columns: 70px 100px calc(80% - 850px) 100px 100px 200px calc(20% - 20px) 150px 150px;
}
.table-body-inner{
	background: #fff;
	display: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table-head{
	background: #3b506e;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.table-body{
/*			padding-top: 20px;*/
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;			
}
.table-head-section{
	color: #fff;
	padding: 20px 15px;
	font-size: 17px;
}
.table-body-section:nth-child(1){
	color: #999;
	font-weight: 400;
}
.table-body-section{
	font-size: 15px;
	color: #777;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 10px 15px;
	padding-top: 15px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.table-body-section span{
	font-weight: 500;
	color: indianred;
	display: none;
}
.table-body-section img{
	height: 50px;
	border-radius: 5px;
}
.table-body-section a{
	padding: 8px 15px;
	border-radius: 3px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.2);
}
.table-top{
	height: 70px;
	display: flex;
	flex-direction: row;
	line-height: 70px;
	overflow: hidden;
	position: relative;
}
.select-entries{
	width: calc(100% - 400px);
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
.fetch-search-result{
	max-height: 200px;
	top: 0px;
	margin-top: 62px;
	width: 100%;
	z-index: 2000;
	left: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
	background: #fff;
	border-radius: 3px;
	position: absolute;
/*	box-shadow: 0px 0px 3px #999;*/
}
.fetch-search-result a{
	width: calc(100% - 10px);
	text-align: left;
	font-size: 15px;
	margin: 0px;
	display: block;
	padding: 0px 10px;
	padding-bottom: 0px;
	height: 40px;
	line-height: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	color: darkslateblue;
	background: transparent;
}
.search-section{
	width: 400px;
	height: 35px;
	display: grid;
	border-radius: 5px;
	padding: 3px 10px;
	background: #fff;
	margin: 11px 0px;
	vertical-align: middle;
	border: 1px solid rgba(0, 0, 0, 0.3);
	grid-template-columns: 30px calc(100% - 30px);
	overflow: hidden;
}
.search-section i{
	height: 35px;
	width: 30px;
	display: flex;
	color: #777;
	align-items: center;
	justify-content: center;
}
.search-section input{
	border: none;
	outline: none;
	height: 35px;
	padding: 0px 5px;
	color: #777;
	line-height: 35px;
	font-size: 17px;
}
.select-entries select{
	height: 43px;
	border-radius: 5px;
	padding: 5px 10px;
	outline: none;
	background: #fff;
	margin: 11px 0px;
	vertical-align: middle;
	border: 1px solid rgba(0, 0, 0, 0.3);
	overflow: hidden;
	color: #777;
	line-height: 35px;
	font-size: 17px;
	margin-top: 4px;	
}
.table-bottom{
	padding: 10px 0px;
}
.prev-next-wrapper{
	float: right;
}
.prev-next-wrapper button{
	outline: none;
	padding: 8px 10px;
	font-size: 16px;
	color: #777;
	background: #fff;
	cursor: pointer;
	margin-left: 5px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-next-prev:nth-child(1){
	color: #fff; 
	background: steelblue;
}
#entries-desc label{
	margin: 0 5px;
}