/**
* CSS for quick search public
*/
.dxw3-quick-search-form {
    padding: 10px;
    margin-bottom: 20px;
	box-shadow: 3px 3px 10px 1px #115172;
}
.dxw3-qs-controls {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}
.sort-select-wrapper {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}
.sort-select-wrapper select {
	width: 40px;
	height: 40px;
	padding: 0 2rem 0 0.5rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: none;
	background-repeat: no-repeat;
	background-position: right 0.5rem center;
	background-size: 1rem;
	cursor: pointer;
}
.sort-select-wrapper select::-ms-expand {
	display: none;
}
.dxw3-top-cat-dropdown-container {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
.dxw3-top-cat-select {
	width: fit-content;
    padding: 0 40px 0 20px;
    border: 3px double #115172;
	margin: 0;
}
.dxw3-toggle-filter {
	width: 40px;
    height: 40px;
    min-height: unset;
    min-width: unset;
    font-size: 40px;
	line-height: 40px;
	color: #115172;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0;
}
.dxw3-toggle-filter.active {
    transform: rotate(-90deg);
}
.sort-select-wrapper .sort-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	width: 20px;
	height: 20px;
	fill: #115172;
}
.dxw3-top-category-buttons {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
	border-bottom: 2px solid #115172;
}
.dxw3-top-cat-btn {
	background: none;
	border: none;
	margin: 0;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	font-weight: 600;
	transition: all 0.2s ease-in-out;
}
.dxw3-top-cat-btn:hover,
.dxw3-top-cat-btn.active {
	border-bottom-color: #115172;
	color: #115172;
}
.dxw3-top-cat-btn:last-of-type {
	margin-right: 40px;
}
.dxw3-filter-wrapper {
	margin-top: 15px;
}
.dxw3-quick-search-fields {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 0.5rem 1rem;
}
.dxw3-quick-search-fields label {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 0.8rem;
	font-weight: 500;
}
.dxw3-quick-search-fields select {
	width: 100%;
	padding: 0.3rem;
	font-size: 0.9rem;
}
.dxw3-quick-search-fields > div {
	display: flex;
	flex-direction: column;
}
.dxw3-quick-search-fields select {
	padding: 0.25rem;
	font-size: 0.85rem;
	margin: 0;
}
.dxw3-quick-search-fields .dxw3-top-cat input[type="checkbox"] {
	width: 26px;
    height: 26px;
    margin: 2px 0 0;
    padding: 0;
	accent-color: #115172;
	cursor: pointer;
}
.design-by {
    width: 100%;
    text-align: right;
    font-size: 8px;
    margin-top: 10px;
	color: #115172;
}

/* Search results */
.dxw3-quick-search-results {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.dxw3-pagination {
	margin-top: 20px;
}
.dxw3-pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    text-decoration: none;
}
.dxw3-pagination a.current-page {
    background: #115172;
    color: #fff;
    border-color: #115172;
}

/* Products */
.dxw3-product {
	display: flex;
	padding: 5px;
    border: 1px solid white;
    box-shadow: 5px 5px 5px 5px #115172;
	text-align: center;
	border-radius: 5px;
}
.dxw3-product a {
	display: flex;
    flex-direction: column;
    flex: 1;
}
.dxw3-product img {
	contain-intrinsic-size: none !important;
	margin: 0 auto;
}
.dxw3-product-title {
    margin-top: auto;
	font-size: 16px;
    color: #115172;
    font-weight: bold;
}
.dxw3-product-price {
	font-size: 16px;
}
.dxw3-product-price .amount {
	display: block;
}
.dxw3-price-suffix {
	font-size: 14px;
}
