@charset "UTF-8";
/* =====================================================================
 * v1.9.13 - "Hace clic para ver los platos" toggle on the service cards.
 *
 * Dashed sub-card (option 5 of the five shown). Centred label, dashed
 * border, teal hover on border, text and chevron together.
 *
 * The dashed edge does real work: it reads as "there is more behind
 * this" rather than as a control that performs an action, which is what
 * the toggle actually is. It costs a little card height - the trade-off
 * accepted in choosing it over the flat bar.
 *
 * Colour appears ONLY on hover. At rest the card already has exactly one
 * teal element, the price, and a resting teal toggle would compete with
 * it.
 *
 * WHY EVERY RULE IS WRITTEN TWICE
 * -------------------------------
 * The scoped block runs first, prefixed like lp-service-cards.css,
 * because LatePoint's own rules on this step are five and six classes
 * deep and a shorter selector silently loses.
 *
 * The unscoped block after it is a fallback. LatePoint has TWO service
 * renderers - generate_services_bundles_and_categories_list() and
 * generate_services_list() - and which runs depends on the
 * `steps_show_service_categories` setting. Only the first produces the
 * `.os-services.os-items .os-item` ancestry the scoped rules assume, so
 * without the fallback the toggle renders unstyled on the other path.
 * Shorter selectors, so the scoped rules still win where both apply.
 *
 * Pure ASCII with an @charset rule, per lp-icon-charset-fix.css.
 * ===================================================================*/

/* ---- scoped: categorised renderer -------------------------------- */

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-toggle {
	/* MUST claim a grid area. The parent .os-item-name-w is
	   `display: contents` (lp-service-cards.css), so this button is a grid
	   item of .os-item-i and would otherwise be auto-placed into the price
	   column. */
	grid-area: more;
	justify-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 10px;
	padding: 5px;
	border: 1px dashed #d3d6df;
	border-radius: 10px;
	/* v1.9.15 - these two are stated EXPLICITLY, not omitted.
	   A <button> does not inherit color or background from its parent:
	   unset, the browser applies its own defaults - `buttonface` for the
	   background and `buttontext` for the text - which rendered the toggle
	   as a grey filled block with near-black text. Dropping the
	   declarations in 1.9.14 produced the opposite of the intended
	   transparent, quiet control. */
	background: transparent;
	color: #5a5f70;
	font: inherit;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	transition: border-color .14s ease, color .14s ease, background-color .14s ease;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-toggle:hover {
	border-color: #2d7a66;
	color: #2d7a66;
	background: #f6fbf9;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-lbl {
	flex: 0 1 auto;
	min-width: 0;
}

/* Inherits colour, so it turns teal with the label on hover. */
.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-chev {
	flex: 0 0 auto;
	font-size: 9px;
	transition: transform .2s ease;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-toggle[aria-expanded="true"] .lp-mp-chev {
	transform: rotate(180deg);
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-toggle:focus:not(:focus-visible) {
	outline: none;
	box-shadow: none;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-toggle:focus-visible {
	outline: 2px solid #2d7a66;
	outline-offset: 2px;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-list {
	grid-area: list;
	display: block;
	width: 100%;
	min-width: 0;
	margin-top: 12px;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-list[hidden] {
	display: none;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-list li {
	position: relative;
	margin: 0;
	padding: 7px 0 7px 16px;
	border-top: 1px solid #f2f2f5;
	font-size: 14px;
	line-height: 1.5;
	color: #4a4f60;
	list-style: none;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-list li:first-child {
	border-top: 0;
}

.latepoint-w .latepoint-booking-form-element .os-services.os-items .os-item .lp-mp-list li:before {
	content: "";
	position: absolute;
	left: 2px;
	top: 15px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #c9ccd6;
}

/* ---- fallback: flat renderer ------------------------------------- */

.lp-mp-toggle {
	grid-area: more;
	justify-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 10px;
	padding: 5px;
	border: 1px dashed #d3d6df;
	border-radius: 10px;
	/* v1.9.15 - these two are stated EXPLICITLY, not omitted.
	   A <button> does not inherit color or background from its parent:
	   unset, the browser applies its own defaults - `buttonface` for the
	   background and `buttontext` for the text - which rendered the toggle
	   as a grey filled block with near-black text. Dropping the
	   declarations in 1.9.14 produced the opposite of the intended
	   transparent, quiet control. */
	background: transparent;
	color: #5a5f70;
	font: inherit;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	transition: border-color .14s ease, color .14s ease, background-color .14s ease;
}

.lp-mp-toggle:hover {
	border-color: #2d7a66;
	color: #2d7a66;
	background: #f6fbf9;
}

.lp-mp-lbl { flex: 0 1 auto; min-width: 0; }

.lp-mp-chev {
	flex: 0 0 auto;
	font-size: 9px;
	transition: transform .2s ease;
}

.lp-mp-toggle[aria-expanded="true"] .lp-mp-chev { transform: rotate(180deg); }
.lp-mp-toggle:focus:not(:focus-visible) { outline: none; box-shadow: none; }
.lp-mp-toggle:focus-visible { outline: 2px solid #2d7a66; outline-offset: 2px; }

.lp-mp-list { grid-area: list; display: block; width: 100%; min-width: 0; margin-top: 12px; }
.lp-mp-list[hidden] { display: none; }
.lp-mp-list ul { margin: 0; padding: 0; list-style: none; }

.lp-mp-list li {
	position: relative;
	margin: 0;
	padding: 7px 0 7px 16px;
	border-top: 1px solid #f2f2f5;
	font-size: 14px;
	line-height: 1.5;
	color: #4a4f60;
	list-style: none;
}

.lp-mp-list li:first-child { border-top: 0; }

.lp-mp-list li:before {
	content: "";
	position: absolute;
	left: 2px;
	top: 15px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #c9ccd6;
}
