.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-wrap: nowrap;
	position: relative;
	width: 100%;
}

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

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

.fzt-search-box-container .search-form button[type='submit'] {
	border-radius: 8px;
	bottom: 5px;
	font-size: 0;
	left: auto;
	margin: 0;
	padding: 10px;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 50px;
}

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

.fzt-search-box-container .search-form button[type='submit']:before {
	background: var(--feroz-light-color);
	content: "";
	display: inline-block;
	font-size: calc(var(--feroz-body-font-size) + 6px);
	height: 22px;
	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: 22px;
}

.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(--feroz-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;
}

/* Type - 2 */

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

.fzt-search-box-container.type-2:before {
	background: var(--feroz-heading-color);
	color: inherit;
	content: "";
	font-size: var(--feroz-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(--feroz-body-background-color);
	border-radius: 8px;
	box-shadow: 0 1px 5px rgba(var(--feroz-dark-color-rgb), 0.1);
	-webkit-box-shadow: 0 1px 5px rgba(var(--feroz-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(--feroz-border-light-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(--feroz-primary-color);
}

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