/*
 *
 * Theme override styles
 */


/*
 * Search results styling
 * ======================================================== */
.search-item {
	padding: 20px 40px 20px 20px;
	display: flex;
	min-height: 100px;
	margin-bottom: 15px;
	color: var(--base-text-color);
	transition: all 250ms ease-in-out;
	background: #f8f8f8;
}
.search-item:hover {
	color: var(--base-text-color);
	background: #f3f3f3;
}
a.search-item {
	text-decoration:none;
	position: relative;
}

a.search-item:hover::after {
    right: 10px;
    transition: all 400ms ease-in-out;
    color: #ccc;
}
a.search-item::after {
    position: absolute;
    content: "\f054";
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 24px;
    height: 100%;
    text-align: right;
	top: 0;
	bottom: 0;
    right: 16px;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 36px;
    color: #eee;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    transition: all 250ms ease-in-out;
}
.search-item .box-img {
	max-height: 120px;
	max-width: 120px;

}
.search-item .box-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.search-item .item-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.search-item  .box-img + .item-content {
	padding-left: 20px;
}
.search-item .item-content h2 {
	font-size: 18px;
	margin-bottom: 1rem;
}
.search-item .item-content .excerpt {
	font-size: 14px;
	flex: 1;
}
.search-item .item-content .entry-footer {
	position: relative;
	color: #BAC3CA;
    text-transform: uppercase;
    font-size: 11px;
    padding-bottom: 5px;
    font-weight: 500;
}
.search-item .item-content .entry-footer .cat-icon {
	padding-right: 10px;
}

/* ivory search fix */
.search-close::before,
.search-close::after {
    display: none !important
}

