/**
* @package      CRE8 Social
* @copyright    Copyright (C) Creative Graphics. All rights reserved.
* @license      GNU/GPL, see LICENSE.php
*/
#es#es .es-combofilter--bar {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 1px;
	background: #e5e7eb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	margin-bottom: 16px;
}

#es#es .es-combofilter__field:first-child input {
	border-radius: 7px 0 0 7px;
}

#es#es button.es-combofilter__submit {
	border-radius: 0 7px 7px 0;
}

#es#es .es-combofilter__field {
	position: relative;
	flex: 1 1 240px;
	background: #fff;
}

#es#es .es-combofilter__field input {
	width: 100%;
	box-sizing: border-box;
	border: 0;
	padding: 12px 14px;
	font-size: 14px;
	background: transparent;
}

#es#es .es-combofilter__field input:focus {
	outline: none;
	box-shadow: inset 0 -2px 0 #ec5b7a;
}

#es#es button.es-combofilter__submit {
	flex: 0 0 auto;
	border: 0;
	padding: 12px 24px;
	background: #ec5b7a;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
}

#es#es button.es-combofilter__submit:hover {
	background: #d94a68;
}

#es#es .es-combofilter__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1100;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	max-height: 380px;
	overflow-y: auto;
	margin-top: 4px;
}

#es#es .es-combofilter__section-title {
	padding: 8px 12px 4px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #888;
}

#es#es a.es-combofilter__suggestion {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	color: inherit;
	text-decoration: none;
}

#es#es a.es-combofilter__suggestion:hover {
	background: #f5f6f8;
}

#es#es a.es-combofilter__suggestion--child {
	padding-left: 32px;
}

#es#es a.es-combofilter__suggestion--child span {
	font-size: 13px;
	color: #555;
}

#es#es .es-combofilter__suggestion--category i {
	color: #999;
	width: 14px;
}

#es#es .es-combofilter__tree-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	cursor: default;
}

#es#es .es-combofilter__tree-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	flex: 0 0 auto;
	color: #999;
	font-weight: 700;
	cursor: pointer;
	user-select: none;
}

#es#es .es-combofilter__tree-label {
	color: inherit;
	text-decoration: none;
	font-size: 14px;
}

#es#es .es-combofilter__tree-label:hover {
	text-decoration: underline;
}

#es#es .es-combofilter__tree-children {
	border-left: 1px solid #eee;
	margin-left: 20px;
}

#es#es .es-combofilter__item-thumb {
	width: 40px;
	height: 40px;
	border-radius: 6px;
	object-fit: cover;
	flex: 0 0 auto;
	background: #f0f2f5;
}

#es#es .es-combofilter__item-thumb--empty {
	display: inline-block;
}

#es#es .es-combofilter__item-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

#es#es .es-combofilter__item-category {
	font-size: 11px;
	color: #888;
}

#es#es .es-combofilter__item-title {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#es#es .es-combofilter__item-region {
	font-size: 12px;
	color: #999;
}

@media (max-width: 640px) {
	#es#es .es-combofilter--bar {
		flex-direction: column;
	}

	#es#es .es-combofilter__field:first-child input {
		border-radius: 7px 7px 0 0;
	}

	#es#es button.es-combofilter__submit {
		width: 100%;
		border-radius: 0 0 7px 7px;
	}
}
