.fc_search_bar > div {
	padding: clamp(15px, 6vw, 50px);
	box-sizing: border-box;
	display: flex;
	gap: clamp(15px, 6vw, 50px);
}
.fc_search_bar > div p {
	font-size: 30px;
	line-height: 150%;
	letter-spacing: 0.3px;
	color: #000000;
	font-weight: 600;
	margin: 0;
}
.fc_search_bar > div form {
	flex: 1;
}
.search-field {
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	height: 60px;
	padding: 15px 30px;
	box-sizing: border-box;
	width: 100%;
}
.custom-search {
	position: relative;
}
.custom-search input[type = 'submit'] {
	position: absolute;
	right: 30px;
	height: calc(100% - 4px);
	min-width: 30px;
	border: none;
	background-color: white;
	top: 2px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32' fill='none'%3E%3Cpath fill='%2345AE50' d='M27.413 17.412a2.003 2.003 0 0 0 0-2.83l-10-10a2.003 2.003 0 0 0-2.832 2.83L21.175 14H2c-1.106 0-2 .894-2 2 0 1.106.894 2 2 2h19.169l-6.582 6.587a2.003 2.003 0 0 0 2.832 2.832l10-10-.006-.007Z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: all .3s ease-in-out;
	cursor: pointer;
}
.custom-search input[type = 'submit']:hover {
	opacity: 0.7;
	transition: all .3s ease-in-out;
}

@media (max-width: 1024px) {
	.fc_search_bar > div {
		flex-direction: column;
		gap: 30px;
	}
	.fc_search_bar > div p {
		text-align: center;
	}
}
@media (max-width: 640px) {
	.fc_search_bar > div {
		gap: 20px;
	}
}
