/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 13 2026 | 13:36:57 */
/* Buscador de disponibilidad en horizontal */
.cbs-hero-widget {
	width: 100%;
	max-width: 1180px;
	margin: 30px auto;
	padding: 24px;
	background: #ffffff;
	border-radius: 22px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.cbs-hero-widget-title,
.cbs-hero-widget-subtitle {
	text-align: center;
}

.cbs-hero-vform {
	display: flex;
	align-items: stretch;
	gap: 16px;
	width: 100%;
}

.cbs-hero-vform .cbs-vfield {
	flex: 1;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cbs-hero-vform .cbs-vfield label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #52677a;
	margin-bottom: 8px;
}

.cbs-hero-vform .cbs-vfield input,
.cbs-hero-vform .cbs-vfield select {
	width: 100%;
	border: none;
	background: transparent;
	font-size: 18px;
	font-weight: 700;
	color: #1f2933;
	outline: none;
	padding: 0;
	box-shadow: none;
}

.cbs-hero-vbtn {
	min-width: 230px;
	border: none;
	border-radius: 16px;
	background: #7fa321;
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 18px 24px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.cbs-hero-vbtn:hover {
	background: #6f901b;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Resultados debajo del buscador */
.cbs-hero-results {
	margin-top: 24px;
}

/* Responsive: en móvil vuelve a vertical */
@media (max-width: 900px) {
	.cbs-hero-widget {
		padding: 18px;
		border-radius: 20px;
	}

	.cbs-hero-vform {
		flex-direction: column;
		gap: 12px;
	}

	.cbs-hero-vbtn {
		width: 100%;
		min-width: unset;
	}
}

