/* generic styles that apply to many dashboard elements */

.searchbar__container {
	display: flex;
	flex-direction: row-reverse;
	gap: 20px;
	position: relative;
	margin-bottom: 20px;
}

.searchbar__container .claim-ingredients {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 16px;
	background: rgba(222, 90, 97, 1);
	color: #fff;
	border: 1px solid rgba(222, 90, 97, 1);
	border-radius: 4px;
	transition: all 200ms;
}

.searchbar__container .claim-ingredients:hover {
	background: rgba(255, 255, 255, 1);
	color: rgba(222, 90, 97, 1);
}

.back-from-search-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	background: #007d7a;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	padding: 0.5rem 1rem;
}

.back-from-search-btn:hover,
.back-from-search-btn:focus {
	background: #005e5c;
}

.stemz-searchbar {
	position: relative;
	border-radius: 30px !important;
	flex: 1;
}

.stemz-searchbar__input {
	border-radius: 30px !important;
}

.search-for-flowers-btn {
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
}

.search-for-flowers-btn svg,
.search-for-flowers-btn path {
	pointer-events: none; /* Prevent SVG and path from receiving pointer events */
}

.search-for-flowers-btn:hover,
.search-for-flowers-btn:focus {
	background: #fff;
	z-index: 2;
}
.new-sku-request-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 8px 16px;
	background: rgba(222, 90, 97, 1);
	color: #fff;
	border: 1px solid rgba(222, 90, 97, 1);
	border-radius: 4px;
}

/* .new-sku-request-btn:hover,
.new-sku-request-btn:focus {
	background: rgba(255, 255, 255, 1);
	color: rgba(222, 90, 97, 1);
} */
@media (min-width: 1024px) {
	.back-from-search-btn {
		padding: 0.5rem 2rem;
	}
}

@media only screen and (max-width: 768px) {
	
	.searchbar__container {
		display: flex;
		flex-direction: column-reverse;
		gap: 20px;
		position: relative;
		margin-bottom: 20px;
	}
}
