/* ==========================================================
   Search Box Widget
   ========================================================== */

.sbw-wrapper {
	width: 100%;
}

.sbw-form {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #ffffff;
	border-style: solid;
	border-width: 1px;
	border-color: #e0e0e0;
	border-radius: 28px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sbw-form:focus-within {
	border-color: #1a2e5a;
}

.sbw-input {
	flex: 1;
	height: 50px;
	padding: 0 16px 0 24px;
	border: none !important;
	background: transparent;
	font-size: 15px;
	color: #333333;
	outline: none;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
}
.sbw-input::placeholder {
	color: #999999;
}
.sbw-input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

.sbw-btn {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	line-height: 0;
	transition: opacity 0.2s ease;
}
.sbw-btn:hover {
	opacity: 0.7;
}
.sbw-btn svg,
.sbw-btn .sbw-icon-img {
	width: 18px;
	height: 18px;
	color: #1a2e5a;
	stroke: currentColor;
	fill: none;
}
.sbw-btn .sbw-icon-img {
	object-fit: contain;
}
