.post-item {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
}
.post-item h2 {
    margin: 0 0 10px;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.page-numbers {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    cursor: pointer;
}
.page-numbers.current {
    background-color: #0073aa;
    color: #fff;
}
.page-numbers:hover {
    background-color: #0073aa;
    color: #fff;
}
#filter-form {
	padding: 30px;
	background-color: #F1F2F5;
	border-radius: 20px;
	margin-bottom: 20px;
}
.filter-form-selects {
	display: flex;
	margin: -10px;
}
.filter-form-select {
	flex: 1;
	padding: 10px;
}
.filter-form-select {
  position: relative;
}
.filter-form-select:after {
  content: "\f107" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  right: 25px;
  font-size: 20px;
}
.filter-form-select > select {
	background: #fff;
	border: none;
	border-radius: 6px;
}
#reset-button {
  width: 100%;
  border: none;
  font-weight: 700;
	margin-top: 20px;
}
#results {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
#results > div {
  padding: 10px;
}
.result-inner {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
	overflow: hidden;
    height: 100%;
}
.result-inner img {
  width: 100%;
}
.result-info {
  padding: 10px 15px;
}
#results .result-info h2 {
    margin-top: 0;
    line-height: 0.5;
}
.result-info h2 > a {
  font-size: 20px;
  font-weight: 700;
}
#results .post-phone {
  margin-bottom: 10px;
  display: inline-block;
  color: #19388A;
  text-decoration: underline;
}
.result-info > p {
    display: flex;
}
.result-info svg {
    width: 18px;
    margin-right: 10px;
    position: relative;
    top: 2px;
    height: 18px;
}
.post-fax {
    color: #19388A;
    text-decoration: underline;
}
@media(min-width: 992px) {
	#results > div {
        width: 33.333%;
    }
}
@media(max-width: 991px) and (min-width: 576px) {
    #results > div {
        width: 50%;
    }
}
@media(max-width: 767px) {
	.filter-form-selects {
		flex-direction: column;
	}
}
@media(max-width: 575px) {
    #results > div {
        width: 100%;
    }
}
.page-numbers {
    padding: 5px 10px;
    cursor: pointer;
    display: inline-block;
}
#pagination {
    text-align: center;
    margin-top: 20px;
}
.page-numbers.active {
    font-weight: bold;
    background-color: #ddd;
}
.loader {
    border: 12px solid #f3f3f3;
    border-top: 12px solid #3a96c8;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}
/* Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#filter-form-header {
  text-align: center;
    margin: 0 auto 4rem;
}
.filter-form-subheader ol {
    max-width: 800px;
    margin: auto;
    list-style-position: inside;
	padding: 0 10px;
}
.result-img {
  position: relative;
  padding-top: 66%;
  overflow: hidden;
  background-color: #f1f2f5;
}
.result-img > a {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
}
.result-img > img {
  position: absolute;
  min-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  min-height: auto;
}