/* Results */
#entity-results {
	padding: 0 10px 10px;
}

#entity-results .search-settings-con {
    display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 0 30px;
    flex-wrap: wrap;
}
#entity-results .display-con {
    display: flex;
	align-items: center;
	gap: 30px;
}
#entity-results .display-con h5 {
	font-size: 18px;
	margin: 0;
}
#entity-results .display-con ul {
	list-style: none;
	display: flex;
	gap: 15px;
	margin: 0;
	padding: 0;
}
#entity-results .display-con ul a {
	display: block;
	color: #343d3f
	font-size: 24px;
}
#entity-results .display-con ul a:hover {
	color: #266fba;
}
#entity-results .search-settings {
	padding: 20px 0;
	display: flex;
	align-items: center;
	gap: 20px;
}
#entity-results .search-settings select {
	min-width: 200px;
	width: auto;
}

#entity-results #entity-items {
	display: grid;
	grid-column-gap: 30px;
    grid-row-gap: 30px;
	grid-template-columns: repeat(3, 1fr);
}
#entity-results.list #entity-items {
	display: flex;
	flex-direction: column;
}
#entity-results.list ._item {
	display: flex;
	margin-bottom: 20px;
}
#entity-results #entity-items article figure img {
	height: 240px;
}

#entity-results.entity-results-flickity #entity-items {
	grid-template-columns: repeat(auto-fit, minmax(366px, 1fr));
}
#entity-results.entity-results-flickity #entity-items article{
	width: calc(33.33333% - 30px);
    margin: 0 10px;
}

#entity-results #entity-items article {
	background-color: transparent;
	background-image: linear-gradient(180deg, #EFF0F0 0%, #FFFFFF 100%);
	border: 1px solid #EFF0F0;
	cursor: pointer;
}
#entity-results #entity-items article figure {
	background-color: #282830;
	margin: 0;
}
#entity-results #entity-items article figure a {
	position: relative;
}
#entity-results #entity-items article:hover .thumbnail--back,
#entity-results #entity-items article figure a:hover .thumbnail--back {
	opacity: 1;
}
#entity-results #entity-items article:hover .thumbnail--front,
#entity-results #entity-items article figure a:hover .thumbnail--front {
	opacity: 0; 
}
#entity-results #entity-items article figure img {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: cover;
    z-index: 1;
	-webkit-transition: all 325ms cubic-bezier(.55,0,.1,1);
	-o-transition: all 325ms cubic-bezier(.55,0,.1,1);
	transition: all 325ms cubic-bezier(.55,0,.1,1);
}
#entity-results #entity-items article figure img.thumbnail--back {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0; 
}

#entity-results #entity-items article .bottom-button {
	height: 40px;
    background-color: #343d3f;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    line-height: 40px;
    font-weight: 700;
	display: block;
}
#entity-results #entity-items article:hover .bottom-button {
	background-color: #266fba;
}

#entity-results #entity-items article figure figcaption {
	color: #FFFFFF;
    font-size: 0.8em;
    font-weight: 400;
    text-transform: uppercase;
	padding: 8px 5px 8px 15px;
	font-style: normal;
	display: flex;
	align-items: center;
}
#entity-results #entity-items article figure figcaption svg {
	fill: #ffffff;
	height: 0.8em;
	width: 1em;
	position: relative;
    display: block;
	margin-left: auto;
}
#entity-results #entity-items article .item-content {
	padding: 10px 30px;
}
#entity-results #entity-items article .item-content .item-top{
	min-height: 220px;
}
#entity-results #entity-items article .item-content a {
	text-decoration: none;
	color: #282830;
	position: relative;
	display: block;
}
#entity-results #entity-items article .item-content h1{
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	margin: 10px 0 5px;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: unset;
}
#entity-results #entity-items article .item-content h1 span {
	font-weight: normal;
	text-transform:none;
}
#entity-results #entity-items article .entry-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#entity-results #entity-items article .entry-content ul li {
	display: inline-block;
	position: relative;
	text-align: left;
    font-size: 0.8em;
    font-weight: 400;
	color: #494950;
	width: calc(50% - 5px);
}
#entity-results #entity-items article .item-content h5{
	color: #FF0022;
	font-size: 1.4em;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0 0 10px;
}
#entity-results #entity-items article .item-content .divider {
	width: 75%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 15px 0;
}
#entity-results #entity-items article .item-content .divider::before,
#entity-results #entity-items article .item-content .divider::after  {
	display: block;
    content: "";
    border-block-end: 0;
    flex-grow: 1;
    border-block-start: 2px solid #eff0f0;
}
#entity-results #entity-items article .item-content .divider svg {
	fill: #EFF0F0;
	transform: rotate(45deg);
	width: 1em;
    height: 1em;
    position: relative;
    display: block;
	margin: 0 10px;
}

#entity-results #entity-items article .price_con {
	display: flex;
	align-items: center;
	padding: 0 30px 15px;
}
#entity-results #entity-items article .price_con > img {
	width: 55px;
}
#entity-results #entity-items article .price_con .prices {
	margin-left: auto;
}
#entity-results #entity-items article .price_con .prices h4 {
	color: #696969;
	margin: 0;
}

.flickity-button {
	fill: #FFFFFF;
}

@media screen and (max-width:1100px) {
	.search-archive .archive-container .search-sidebar ._side-filter-otions {
		gap: 20px;
	}
	#entity-results #entity-items {
		grid-column-gap: 20px;
    	grid-row-gap: 20px;
	}
	#entity-results #entity-items article .item-content {
		padding: 10px 20px;
	}
	#entity-results #entity-items article .price_con {
		padding: 0 20px 15px;
	}
}
@media screen and (max-width:920px) {
	#entity-results #entity-items {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 767px) {

	#entity-results.entity-results-flickity #entity-items article {
		width: calc(50% - 10px);
		margin: 0 5px;
	}
	.flickity-button {
		height: 40px;
        width: 40px;
		opacity: 1 !important;
		color: #fff;
		fill: #fff6f5;
		cursor: pointer;
		outline: none;
		padding: 13px !important;
	}
	.flickity-button.previous { 
		left: 12px;
	}
	.flickity-button.next { 
		right: 12px;
	}

}
@media screen and (max-width: 650px) {
	#entity-results #entity-items {
		grid-template-columns: repeat(1, 1fr);
	}

	#entity-results .display-con {
		gap: 20px;
	}
	#entity-results .display-con h5 {
		font-size: 16px;
	}
	#entity-results .display-con ul {
		gap: 10px;
	}
	#entity-results .display-con ul {
		display: none;
	}
	#entity-results.list ._item {
		display: block;
	}
}
@media screen and (max-width: 490px) {
	#entity-results #entity-items {
		display: block;
	}
	#entity-results #entity-items article {
		margin-bottom: 20px;
	}

	
}