.search-bar_holder {
	margin: var(--global-xl-spacing, 3.5rem) auto;
	max-width: 50rem;
	padding: 0;
	position: relative;
}

.search-bar_holder .search-bar-inner {
	display: flex;
	padding: 0;
	margin: 0;
	position: relative;
	align-items: center;
}

.search-bar_holder .search-bar-inner > p {
	width: 40%;
	padding: 0 2.5rem 0 0;
	text-align: right;
	margin: 0;
	font-size: var(--text-size-200);
	font-weight: 500;
}
.search-bar_holder .search-bar-inner form {
	width: 60%;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
		rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
	background-color: #fff;
	border-radius: 0;
	display: flex;
	align-items: stretch;
}

.search-bar_holder .search-bar-inner form input[type="text"] {
	padding: 0.75rem 1rem;
	border: 1px solid #fff;
	border-radius: 0;
	background-color: #fff;
	height: auto;
	width: calc(100% - 3rem);
	box-sizing: border-box;
	color: var(--global-palette3, #222222);
}

.search-bar_holder .search-bar-inner form input[type="text"]::placeholder {
	color: #999;
}

.search-bar_holder .search-bar-inner form button {
	background-color: #fff;
	color: red;
	width: 3rem;
	min-height: 100%;
	padding: 0;
	box-sizing: border-box;
	border: none;
	border-radius: 0;
	background-image: url("/wp-content/themes/md-block-theme-2022/assets/icons/Midland-Skin-Icon-Search.svg");
	background-position: center;
	background-size: 40%;
	background-repeat: no-repeat;
}

.search-bar_holder .search-bar-inner form button:active,
.search-bar_holder .search-bar-inner form button:focus,
.search-bar_holder .search-bar-inner form button:hover {
	background-color: #fff;
	color: #fff;
	border: none;
	outline: none;
	background-color: var(--global-palette1, #2b6cb0);
	background-image: url("/wp-content/themes/md-block-theme-2022/assets/icons/Midland-Skin-Icon-Search-White.svg");
}

@media screen and (max-width: 768px) {
	.search-bar_holder .search-bar-inner {
		flex-direction: column;
	}

	.search-bar_holder .search-bar-inner > p {
		width: 100%;
		padding: 0;
		text-align: left;
		margin: 0;
		font-size: var(--text-size-100);
		text-align: center;
		margin-bottom: 1rem;
	}
	.search-bar_holder .search-bar-inner form {
		width: 100%;
		max-width: 30rem;
	}
}
