#carousel.search-posts-listing {
    width:100%;
}
#carousel.search-posts-listing .slider-item {
	display: grid;
  	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
	padding-right:1px;
}
@media (max-width: 980px) {
	#carousel.search-posts-listing .slider-item {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 580px) {
	#carousel.search-posts-listing .slider-item {
		grid-template-columns: repeat(1, 1fr);
		margin-left:15px;
		margin-right:15px;
	}
}
.search-listing-wrapper {
    margin-bottom: 40px;
}
.listing-box {
    color: #636363;
    border-radius: 3px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.listing-box .listing-image {
    height: 0;
    padding-top: 66.66%;
    overflow: hidden;
    position: relative;
}
.listing-box .listing-image a {
	display:block;
}
.listing-box .listing-image img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.listing-box .inner-wrapper {
    padding: 22px 19px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	border:1px solid #ececec;
}
.listing-box .listing-title {
	margin:0 0 14px;
	padding:0;
    height: 63px;
}
.listing-box .listing-title a {
	display:inline-block;
	vertical-align:top;
	text-decoration:none;
	color: #3c0076;
}
.listing-box .inner-wrapper .listing-excerpt {
    margin-bottom: 14px;
    flex: 1 1 auto;
}
.listing-box .inner-wrapper .listing-button a {
    display: block;
    width: 100%;
    background: #eeab03;
    padding: 20px 0;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
	text-decoration:none;
    text-align: center;
	transition: all .333s ease-out 0s;
}
.listing-box .inner-wrapper .listing-button a:active,
.listing-box .inner-wrapper .listing-button a:focus,
.listing-box .inner-wrapper .listing-button a:hover {
    text-decoration: none;
    background: #c89003;
}
.listing-box .inner-wrapper .listing-price .from {
    font-size: 12px;
}
.listing-box .inner-wrapper .listing-price {
	margin-bottom:15px;
}
.listing-box .inner-wrapper .listing-price h3 {
	margin:0;
}

#carousel .slick-dots {
	margin:0;
	padding:0;
	list-style:none;
	text-align:center;
}
#carousel .slick-dots li {
    display:inline-block;
	vertical-align:top;
	padding: 0;
    margin-left: 0;
    width:22px;
    background-color: transparent;
    border: none;
    color: #ccc;
    font-size: 16px;
    line-height: 1;
}
#carousel .slick-dots li a {
    display:block;
	padding: 0;
    margin: 0;
	text-decoration:none;
    color: #ccc;
}
#carousel .slick-dots li.slick-active a {
	color:#333;
}
#carousel .slick-arrow {
	display: none !important;
    position:absolute;
	bottom:10px;
    width:70px;
	padding:0;
	border:0;
	outline:0;
	color: #ccc;
    font-size: 16px;
    line-height: 1;
	background:none;
}
#carousel .slick-prev {
	left:10px;
}
#carousel .slick-next {
	right:10px;
    text-align:right;
}