/* Neelpotro Booking - frontend v2 */

.nlp-booking {
	--nlp-primary: #1F4D3A;
	--nlp-accent: #EFA31D;
	--nlp-bg: #FFFCEB;
	--nlp-text: #1A1A1A;
	--nlp-muted: #8A8A8A;
	--nlp-booked: #ECECEC;
	--nlp-radius: 14px;
	--nlp-font: inherit;
	--nlp-heading: inherit;
	--nlp-size: 15px;
	--nlp-line: rgba(0, 0, 0, .09);
	--nlp-tint: #EDF2EF;
	--nlp-tint: color-mix(in srgb, var(--nlp-primary) 10%, #fff);
	--nlp-tint-2: #E1EAE5;
	--nlp-tint-2: color-mix(in srgb, var(--nlp-primary) 18%, #fff);

	max-width: 980px;
	margin: 0 auto;
	background: #fff;
	border-radius: calc(var(--nlp-radius) + 4px);
	box-shadow: 0 18px 50px rgba(20, 40, 30, .10), 0 1px 4px rgba(20, 40, 30, .05);
	color: var(--nlp-text);
	font-family: var(--nlp-font);
	font-size: var(--nlp-size);
	line-height: 1.55;
	overflow: hidden;
}

.nlp-booking *,
.nlp-booking *::before,
.nlp-booking *::after { box-sizing: border-box; }

.nlp-booking [hidden] { display: none !important; }

.nlp-booking h2,
.nlp-booking h3,
.nlp-booking h4 { font-family: var(--nlp-heading); }

/* Neutralise theme button and input styling inside the widget */
.nlp-booking button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	font-family: inherit;
	text-transform: none;
	letter-spacing: normal;
	text-shadow: none;
	box-shadow: none;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

/* Square buttons in every state, the theme must not change this on hover */
.nlp-booking button,
.nlp-booking button:hover,
.nlp-booking button:focus,
.nlp-booking button:active,
.nlp-booking button:disabled,
.nlp-booking .nlp-btn,
.nlp-booking .nlp-btn:hover,
.nlp-booking .nlp-btn:focus,
.nlp-booking .nlp-btn:active { border-radius: 0 !important; }

.nlp-booking button:focus { outline: none; }

/* ---------------- Header ---------------- */
.nlp-head {
	background: var(--nlp-primary);
	color: #fff;
	padding: 30px 34px 26px;
	text-align: center;
}
.nlp-head .nlp-title {
	margin: 0;
	padding: 0;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
	letter-spacing: -.01em;
}
.nlp-head .nlp-subtitle {
	margin: 8px auto 0;
	padding: 0;
	max-width: 520px;
	font-size: 14.5px;
	color: rgba(255, 255, 255, .82);
}

/* ---------------- Steps ---------------- */
.nlp-steps {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
	border-bottom: 1px solid var(--nlp-line);
}
.nlp-steps .nlp-step {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 14px 6px;
	position: relative;
	cursor: default;
	list-style: none;
}
.nlp-steps .nlp-step i {
	width: 24px;
	height: 24px;
	flex: none;
	border-radius: 50%;
	background: #ECEFED;
	color: #909995;
	font-size: 12px;
	font-weight: 700;
	font-style: normal;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nlp-steps .nlp-step b {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--nlp-muted);
}
.nlp-steps .nlp-step.active i { background: var(--nlp-primary); color: #fff; }
.nlp-steps .nlp-step.active b { color: var(--nlp-primary); }
.nlp-steps .nlp-step.done { cursor: pointer; }
.nlp-steps .nlp-step.done i { background: var(--nlp-accent); color: #fff; }
.nlp-steps .nlp-step.done b { color: var(--nlp-text); }
.nlp-steps .nlp-step.active::after {
	content: "";
	position: absolute;
	left: 18%;
	right: 18%;
	bottom: -1px;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: var(--nlp-primary);
}

/* ---------------- Panels ---------------- */
.nlp-panel { display: none; padding: 24px 28px 26px; background: var(--nlp-bg); }
.nlp-panel.is-active { display: block; }

.nlp-panel-head { margin-bottom: 18px; }
.nlp-panel-head h3 {
	margin: 0 0 4px;
	padding: 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--nlp-text);
	line-height: 1.25;
}
.nlp-panel-head p { margin: 0; font-size: 13.5px; color: var(--nlp-muted); }

/* ---------------- Calendar ---------------- */
.nlp-cal-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 6px;
}
.nlp-cal-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--nlp-primary);
	min-width: 190px;
	text-align: center;
	font-family: var(--nlp-heading);
}
.nlp-booking .nlp-nav {
	width: 34px;
	height: 34px;
	flex: none;
	border: 1px solid var(--nlp-line);
	background: #fff;
	color: var(--nlp-primary);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.nlp-booking .nlp-nav:hover:not(:disabled) { background: var(--nlp-primary); border-color: var(--nlp-primary); color: #fff; }
.nlp-booking .nlp-nav:disabled { opacity: .3; cursor: not-allowed; }

.nlp-cal-hint { margin: 0 0 14px; text-align: center; font-size: 12.5px; color: var(--nlp-muted); }

.nlp-cal { display: grid; grid-template-columns: 1fr; max-width: 660px; margin: 0 auto; }
.nlp-month {
	background: #fff;
	border: 1px solid var(--nlp-line);
	border-radius: var(--nlp-radius);
	padding: 18px 20px 20px;
}
.nlp-month-name {
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--nlp-text);
	margin-bottom: 14px;
}
.nlp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.nlp-dow {
	text-align: center;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .05em;
	color: var(--nlp-muted);
	text-transform: uppercase;
	padding-bottom: 8px;
}

.nlp-booking .nlp-day {
	height: 50px;
	padding: 0;
	border: 1px solid transparent;
	background: #fff;
	color: var(--nlp-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.nlp-booking .nlp-day.nlp-day-blank { background: transparent; border: 0; cursor: default; pointer-events: none; }

.nlp-booking .nlp-day:hover:not(:disabled),
.nlp-booking .nlp-day:focus-visible:not(:disabled) {
	background: var(--nlp-tint);
	border-color: var(--nlp-tint-2);
	color: var(--nlp-text);
}

.nlp-booking .nlp-day.is-off {
	background: var(--nlp-booked);
	color: #B6B6B6;
	border-color: transparent;
	cursor: not-allowed;
	text-decoration: line-through;
}
.nlp-booking .nlp-day.is-off:hover { background: var(--nlp-booked); border-color: transparent; color: #B6B6B6; }

.nlp-booking .nlp-day.is-past {
	background: #FAFAFA;
	color: #CFCFCF;
	cursor: not-allowed;
}
.nlp-booking .nlp-day.is-past:hover { background: #FAFAFA; border-color: transparent; color: #CFCFCF; }

.nlp-booking .nlp-day.is-preview {
	background: var(--nlp-tint);
	border-color: var(--nlp-tint-2);
	color: var(--nlp-text);
}

.nlp-booking .nlp-day.is-sel,
.nlp-booking .nlp-day.is-sel:hover,
.nlp-booking .nlp-day.is-sel:focus-visible {
	background: var(--nlp-primary);
	border-color: var(--nlp-primary);
	color: #fff;
	font-weight: 700;
}

.nlp-booking .nlp-day.is-today::after {
	content: "";
	position: absolute;
	bottom: 7px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--nlp-accent);
}
.nlp-booking .nlp-day.is-sel.is-today::after { background: #fff; }

.nlp-legend {
	display: flex;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
	margin-top: 16px;
	font-size: 12.5px;
	color: #5F6B66;
}
.nlp-legend span { display: inline-flex; align-items: center; gap: 7px; }
.nlp-legend .key { width: 13px; height: 13px; display: inline-block; }
.nlp-legend .key.free { background: #fff; border: 1px solid #D9DEDC; }
.nlp-legend .key.sel { background: var(--nlp-primary); }
.nlp-legend .key.off { background: var(--nlp-booked); }

.nlp-selection {
	margin: 16px auto 0;
	max-width: 660px;
	background: var(--nlp-primary);
	color: #fff;
	border-radius: var(--nlp-radius);
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.nlp-selection .sel-dates { font-size: 16px; font-weight: 700; }
.nlp-selection .sel-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .75; display: block; }
.nlp-selection .sel-count {
	background: rgba(255, 255, 255, .16);
	border-radius: 999px;
	padding: 7px 16px;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.nlp-msg { margin: 12px 0 0; font-size: 13.5px; text-align: center; }
.nlp-msg.is-error { color: #C0392B; font-weight: 600; }

/* ---------------- Packages ---------------- */
.nlp-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.nlp-pkg {
	position: relative;
	background: #fff;
	border: 1.5px solid var(--nlp-line);
	border-radius: var(--nlp-radius);
	padding: 16px 16px 18px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.nlp-pkg:hover { border-color: var(--nlp-tint-2); box-shadow: 0 10px 24px rgba(20, 40, 30, .08); transform: translateY(-2px); }
.nlp-pkg.is-on { border-color: var(--nlp-primary); box-shadow: 0 10px 26px rgba(31, 77, 58, .16); }
.nlp-pkg .tick {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1.5px solid #D5DBD8;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: transparent;
	line-height: 1;
}
.nlp-pkg.is-on .tick { background: var(--nlp-primary); border-color: var(--nlp-primary); color: #fff; }

.nlp-pkg .kind {
	display: inline-block;
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 4px 9px;
	border-radius: 999px;
	margin-bottom: 10px;
	align-self: flex-start;
}
.nlp-pkg .kind.day { background: rgba(239, 163, 29, .16); color: #A9700B; }
.nlp-pkg .kind.night { background: var(--nlp-tint); color: var(--nlp-primary); }

.nlp-pkg h4 {
	margin: 0 0 4px;
	padding: 0;
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--nlp-text);
}
.nlp-pkg .cap { font-size: 12.5px; color: var(--nlp-muted); margin-bottom: 8px; }
.nlp-pkg .desc { font-size: 12.5px; color: #6B7671; margin: 0 0 14px; line-height: 1.5; flex: 1; }
.nlp-pkg .price { font-size: 19px; font-weight: 800; color: var(--nlp-primary); line-height: 1.2; }
.nlp-pkg .price small { display: block; font-size: 11.5px; font-weight: 500; color: var(--nlp-muted); margin-top: 3px; }

/* Configuration panel */
.nlp-config {
	margin-top: 16px;
	background: #fff;
	border: 1.5px solid var(--nlp-primary);
	border-radius: var(--nlp-radius);
	padding: 20px 22px;
}
.nlp-config-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	padding-bottom: 14px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--nlp-line);
}
.nlp-config-head h4 { margin: 0; padding: 0; font-size: 16px; font-weight: 700; }
.nlp-config-head .chip {
	background: var(--nlp-tint);
	color: var(--nlp-primary);
	border-radius: 999px;
	padding: 5px 13px;
	font-size: 12px;
	font-weight: 700;
}

.nlp-stay { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.nlp-stay div { background: var(--nlp-bg); border-radius: 10px; padding: 11px 14px; }
.nlp-stay span { display: block; font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--nlp-muted); margin-bottom: 3px; }
.nlp-stay strong { font-size: 13.5px; font-weight: 700; }
.nlp-note { margin: 0 0 16px; font-size: 12.5px; color: #6B7671; line-height: 1.6; }

.nlp-guests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: end; }
.nlp-guests .box { background: var(--nlp-bg); border-radius: 10px; padding: 10px 14px; }
.nlp-guests .box span { display: block; font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--nlp-muted); }
.nlp-guests .box strong { font-size: 15px; }
.nlp-guests label { display: block; font-size: 11.5px; font-weight: 700; color: #4A544F; margin-bottom: 5px; }

.nlp-booking .nlp-count { display: flex; align-items: center; gap: 0; }
.nlp-booking .nlp-count button {
	width: 38px;
	height: 42px;
	border: 1.5px solid #DCE1DF;
	background: #fff;
	color: var(--nlp-primary);
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	line-height: 1;
	padding: 0;
}
.nlp-booking .nlp-count button:hover:not(:disabled) { background: var(--nlp-tint); }
.nlp-booking .nlp-count button:disabled { opacity: .4; cursor: not-allowed; }
.nlp-booking .nlp-count input {
	width: 100%;
	height: 42px;
	border: 1.5px solid #DCE1DF;
	border-left: 0;
	border-right: 0;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--nlp-text);
	font-family: inherit;
	padding: 0;
	-moz-appearance: textfield;
}
.nlp-booking .nlp-count input::-webkit-outer-spin-button,
.nlp-booking .nlp-count input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.nlp-booking .nlp-count input:focus { outline: none; }
.nlp-count.has-error input,
.nlp-count.has-error button { border-color: #C0392B; }

.nlp-guest-msg { margin: 10px 0 0; font-size: 12.5px; }
.nlp-guest-msg.is-error { color: #C0392B; font-weight: 600; }
.nlp-guest-msg.is-hint { color: #8A6D1F; }

.nlp-breakdown { margin-top: 16px; border-top: 1px solid var(--nlp-line); padding-top: 12px; }
.nlp-row { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; padding: 4px 0; color: #5F6B66; }
.nlp-row b { color: var(--nlp-text); font-weight: 600; text-align: right; }
.nlp-row-total { border-top: 1px dashed var(--nlp-line); margin-top: 8px; padding-top: 10px; font-size: 16px; }
.nlp-row-total b { color: var(--nlp-primary); font-weight: 800; font-size: 18px; }
.nlp-food { margin: 8px 0 0; font-size: 11.5px; color: var(--nlp-muted); font-style: italic; }

/* ---------------- Details ---------------- */
.nlp-split { display: grid; grid-template-columns: 1fr 280px; gap: 22px; align-items: start; }
.nlp-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nlp-input-full { grid-column: 1 / -1; }
.nlp-input label { display: block; font-size: 12px; font-weight: 700; color: #4A544F; margin-bottom: 6px; }
.nlp-input label em { color: #C0392B; font-style: normal; }
.nlp-booking .nlp-input input,
.nlp-booking .nlp-input textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #DCE1DF;
	border-radius: 10px;
	font-size: 14.5px;
	background: #fff;
	color: var(--nlp-text);
	font-family: inherit;
	line-height: 1.5;
}
.nlp-booking .nlp-input input:focus,
.nlp-booking .nlp-input textarea:focus { outline: none; border-color: var(--nlp-primary); }
.nlp-booking .nlp-input input.has-error { border-color: #C0392B; background: #FFF7F6; }
.nlp-err { display: block; margin-top: 5px; font-size: 12px; color: #C0392B; }

.nlp-recap {
	background: #fff;
	border: 1px solid var(--nlp-line);
	border-radius: var(--nlp-radius);
	padding: 18px 20px;
	position: sticky;
	top: 20px;
}
.nlp-recap-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--nlp-muted); margin-bottom: 12px; }

/* ---------------- Review ---------------- */
.nlp-review {
	background: #fff;
	border: 1px solid var(--nlp-line);
	border-radius: var(--nlp-radius);
	overflow: hidden;
}
.nlp-review-top {
	background: var(--nlp-primary);
	color: #fff;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}
.nlp-review-top .pkg { font-size: 17px; font-weight: 700; }
.nlp-review-top .meta { font-size: 12.5px; opacity: .8; }
.nlp-review-top .amt { font-size: 22px; font-weight: 800; }
.nlp-review-grid { display: grid; grid-template-columns: 1fr 1fr; }
.nlp-review-cell { padding: 16px 24px; border-bottom: 1px solid var(--nlp-line); }
.nlp-review-cell:nth-child(odd) { border-right: 1px solid var(--nlp-line); }
.nlp-review-cell span { display: block; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--nlp-muted); margin-bottom: 4px; }
.nlp-review-cell strong { font-size: 14.5px; font-weight: 700; word-break: break-word; }
.nlp-review-foot { padding: 14px 24px; display: flex; justify-content: space-between; gap: 14px; align-items: center; flex-wrap: wrap; }
.nlp-review-foot .lbl { font-size: 13.5px; color: #5F6B66; }
.nlp-terms { margin: 14px 0 0; font-size: 12px; color: var(--nlp-muted); }

/* ---------------- Footer ---------------- */
.nlp-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 28px;
	background: #fff;
	border-top: 1px solid var(--nlp-line);
}
.nlp-footer-mid { display: flex; flex-direction: column; align-items: center; line-height: 1.2; text-align: center; }
.nlp-footer-mid span { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--nlp-muted); }
.nlp-footer-mid strong { font-size: 18px; font-weight: 800; color: var(--nlp-primary); }

.nlp-booking .nlp-btn {
	border: 1.5px solid transparent;
	border-radius: 10px;
	padding: 12px 26px;
	font-size: 14.5px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	line-height: 1.4;
}
.nlp-booking .nlp-btn-solid { background: var(--nlp-primary); border-color: var(--nlp-primary); color: #fff; }
.nlp-booking .nlp-btn-solid:hover:not(:disabled) { filter: brightness(1.15); }
.nlp-booking .nlp-btn-solid:disabled { opacity: .38; cursor: not-allowed; }
.nlp-booking .nlp-btn-ghost { background: #fff; border-color: #DCE1DF; color: var(--nlp-primary); }
.nlp-booking .nlp-btn-ghost:hover { border-color: var(--nlp-primary); }
.nlp-booking .nlp-btn-accent { background: var(--nlp-accent); border-color: var(--nlp-accent); color: #fff; }
.nlp-booking .nlp-btn-accent:hover:not(:disabled) { filter: brightness(1.08); }

/* ---------------- Success ---------------- */
.nlp-panel-success { text-align: center; }
.nlp-success-wrap { max-width: 440px; margin: 0 auto; padding: 8px 0 4px; }
.nlp-success-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: var(--nlp-primary);
	color: #fff;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nlp-success-wrap h3 { margin: 0 0 8px; padding: 0; font-size: 21px; color: var(--nlp-primary); }
.nlp-success-wrap .txt { margin: 0 0 20px; color: #5F6B66; font-size: 14px; }
.nlp-success-card {
	background: #fff;
	border: 1px solid var(--nlp-line);
	border-radius: var(--nlp-radius);
	padding: 18px 20px;
	text-align: left;
	margin-bottom: 18px;
}
.nlp-success-phone { font-size: 13px; color: var(--nlp-muted); margin: 0 0 16px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 880px) {
	.nlp-packages { grid-template-columns: repeat(2, 1fr); }
	.nlp-split { grid-template-columns: 1fr; }
	.nlp-recap { position: static; order: -1; }
	.nlp-form { grid-template-columns: 1fr; }
	.nlp-review-grid { grid-template-columns: 1fr; }
	.nlp-review-cell:nth-child(odd) { border-right: 0; }
}

@media (max-width: 600px) {
	.nlp-booking { border-radius: var(--nlp-radius); }
	.nlp-head { padding: 22px 18px 20px; }
	.nlp-head .nlp-title { font-size: 21px; }
	.nlp-head .nlp-subtitle { font-size: 13px; }
	.nlp-panel { padding: 18px 14px 20px; }
	.nlp-steps .nlp-step { flex-direction: column; gap: 4px; padding: 10px 2px; }
	.nlp-steps .nlp-step b { font-size: 9.5px; letter-spacing: .02em; }
	.nlp-steps .nlp-step i { width: 22px; height: 22px; font-size: 11px; }
	.nlp-cal-hint { font-size: 11.5px; margin-bottom: 10px; }
	.nlp-cal-title { min-width: 0; font-size: 14.5px; }
	.nlp-month { padding: 12px 10px 12px; }
	.nlp-grid { gap: 3px; }
	.nlp-booking .nlp-day { height: 40px; font-size: 13.5px; }
	.nlp-legend { gap: 14px; font-size: 11.5px; }
	.nlp-selection { padding: 12px 14px; }
	.nlp-selection .sel-dates { font-size: 14px; }
	.nlp-packages { grid-template-columns: 1fr; gap: 10px; }
	.nlp-pkg { padding: 14px; }
	.nlp-pkg .desc { display: none; }
	.nlp-config { padding: 16px 14px; }
	.nlp-stay { grid-template-columns: 1fr; gap: 8px; }
	.nlp-guests { grid-template-columns: 1fr; gap: 10px; }
	.nlp-footer { padding: 12px 14px; gap: 8px; }
	.nlp-booking .nlp-btn { padding: 11px 16px; font-size: 13.5px; }
	.nlp-footer-mid strong { font-size: 16px; }
	.nlp-review-top { padding: 14px 16px; }
	.nlp-review-cell { padding: 12px 16px; }
}
