.fzt-search-box-container {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
}

.fzt-search-box-container .search-form,
.fzt-search-box-container .search-form .fzt-search-box-field {
	display: inline-flex;
	flex: 1;
	flex-wrap: nowrap;
	gap: 5px;
	justify-content: space-between;
	position: relative;
	width: 100%;
}

.fzt-search-box-container .search-form input[type='search'] {
    border-radius: 0;
	border-style: solid;
	border-width: 1px;
    display: flex;
    line-height: 1;
    margin: 0;
    min-height: 50px;
	padding: 12px 20px;
    width: 100%;
}

.fzt-search-box-container.product-category-search {
	border: 1px solid var(--nexun-border-light-color);
}

.fzt-search-box-container.product-category-search:focus-within {
	border-color: var(--nexun-primary-color);
}

.fzt-search-box-container .search-form button[type='submit'] {
	background: var(--nexun-primary-color);
    border: none;
    border-radius: 0;
    bottom: 0;
    color: var(--nexun-light-color);
    font-size: 0;
    height: 50px;
    left: auto;
    margin: 0;
    padding: 10px;
    position: relative;
    right: 0;
    top: 0;
    width: 60px;
}

.fzt-search-box-container .search-form button[type='submit']:hover {
	background-color: var(--nexun-secondary-color);
    border-color: var(--nexun-secondary-color);
    color: var(--nexun-light-color);
}

.fzt-search-box-container .search-form button[type='submit']:before {
	background: currentColor;
    content: "";
    display: inline-block;
    font-size: calc(var(--nexun-body-font-size) + 4px);
    height: 16px;
    margin: 0;
    -webkit-mask-image: url(images/search-icon.svg);
    mask-image: url(images/search-icon.svg);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    position: relative;
    width: 16px;
}

.fzt-search-box-container .search-form button[type='submit']:after {
	animation: cart_loader 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
	background: none;
	background: transparent;
	border-bottom-color: currentColor;
	border-left-color: transparent;
	border-radius: 100%;
	border-right-color: transparent;
	border-style: solid;
	border-top-color: currentColor;
	border-width: 2px;
	bottom: 0;
	color: currentColor;
	content: "";
	height: 20px;
	left: 0;
	margin: 0 10px 0 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	visibility: hidden;
	width: 20px;
}

.fzt-search-box-container .search-form button[type='submit']:hover:before {
	background: var(--nexun-light-color);
}

.fzt-search-box-container .search-form button[type='submit']:focus span,
.fzt-search-box-container .search-form button[type='submit']:focus:before {
	opacity: 0.2;
}

.fzt-search-box-container .search-form button[type='submit']:focus:after {
	visibility: visible;
}

.fzt-search-box-container .search-form .fzt-search-box-field select,
.fzt-search-box-container .search-form .fzt-search-box-field + .fzt-search-box-field input[type='search'] {
	border: none;
	box-shadow: none;
	padding: 0 10px;
}

/* Type - 2 */

.fzt-search-box-container.type-2 {
	width: auto;
}

.fzt-search-box-container.type-2:before {
	background: var(--nexun-heading-color);
	color: inherit;
	content: "";
	font-size: var(--nexun-h4-font-size);
	height: 25px;
	margin: 0;
	-webkit-mask-image: url(images/search-icon.svg);
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: 100% auto;
	-webkit-mask-size: 100% auto;
	position: relative;
	width: 25px;
}

.fzt-search-box-container.type-2 .fzt-search-box-wrapper {
	background: var(--nexun-body-background-color);
	border-radius: 8px;
	box-shadow: 0 1px 5px rgba(var(--nexun-dark-color-rgb), 0.1);
	-webkit-box-shadow: 0 1px 5px rgba(var(--nexun-dark-color-rgb), 0.1);
	display: inline-flex;
	margin: 30px 0 0 0;
	min-width: 400px;
	opacity: 0;
	padding: 15px;
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	transition: var(--transition);
	-webkit-transition: var(--transition);
	visibility: hidden;
	width: 100%;
	z-index: 1;
}

.fzt-search-box-container.product-category-search.type-2 {
	border: none;
}

.fzt-search-box-container.product-category-search.type-2 form {
	border: 1px solid var(--nexun-border-light-color);
}

.fzt-search-box-container.product-category-search.type-2 form:focus-within {
	border-color: var(--nexun-primary-color);
}

.fzt-search-box-container.type-2:hover .fzt-search-box-wrapper {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.fzt-search-box-container.type-2:hover:before {
	background-color: var(--nexun-primary-color);
}

.site-header-sticky.nav-sticky .fzt-search-box-container.type-2 .fzt-search-box-wrapper {
	margin: 20px 0 0 0;
}