.sticky-bar-container-750f7c20 {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #1a1a1a;
	color: #ffffff;
	z-index: 99999;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	font-family: inherit;
	padding: 12px 20px;
	box-sizing: border-box;
}

.sticky-bar-content-750f7c20 {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.sticky-bar-text-750f7c20 {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

.sticky-bar-form-750f7c20 {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-grow: 1;
	justify-content: flex-end;
}

.sticky-bar-input-750f7c20 {
	background-color: #2b2b2b;
	border: 1px solid #444444;
	color: #ffffff;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 14px;
	outline: none;
	width: 100%;
	max-width: 200px;
	transition: border-color 0.2s;
}

.sticky-bar-input-750f7c20:focus {
	border-color: #ff6600;
}

.sticky-bar-button-750f7c20 {
	background-color: #ff6600;
	color: #ffffff;
	border: none;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.2s;
	white-space: nowrap;
}

.sticky-bar-button-750f7c20:hover {
	background-color: #e05500;
}

.sticky-bar-message-750f7c20 {
	text-align: center;
	font-size: 13px;
	margin-top: 5px;
	display: none;
}

/* Mobile responsive layout */
@media screen and (max-width: 768px) {
	.sticky-bar-container-750f7c20 {
		padding: 15px;
	}

	.sticky-bar-content-750f7c20 {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.sticky-bar-text-750f7c20 {
		text-align: center;
		white-space: normal;
	}

	.sticky-bar-form-750f7c20 {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.sticky-bar-input-750f7c20 {
		max-width: none;
		width: 100%;
	}

	.sticky-bar-button-750f7c20 {
		width: 100%;
		text-align: center;
	}
}
