/* Search & filter */
.post-search-panel{
	width: 100%;
	display: flex;
	justify-content: center;
    justify-content: flex-end;
}
.post-search-panel input, .post-search-panel select{
    display: block;
    padding: .375rem .75rem;
    font-size: 12px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	float: left;
}
.post-search-panel input:focus, .post-search-panel select:focus{
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.post-search-panel input{
    width: 150px;
}
.post-search-panel select{
	width: 120px;
	margin-left: 10px;
}