.rmc-rental-page {
	--rr-bg: #f4f5f7;
	--rr-card: #fff;
	--rr-ink: #15171b;
	--rr-ink-2: #454b54;
	--rr-muted: #767e89;
	--rr-line: #eaecf0;
	--rr-line-2: #d8dde5;
	--rr-accent: #f0501e;
	--rr-accent-dark: #d84415;
	--rr-accent-soft: #fff4f0;
	--rr-ok: #12925b;
	--rr-error: #c9362a;
	--rr-font: "Schibsted Grotesk", system-ui, -apple-system, sans-serif;
	--rr-site-heading: "Barlow Condensed", "Arial Narrow", sans-serif;
	--rr-radius: 14px;
	--rr-radius-lg: 20px;
	--rr-radius-xl: 28px;
	--rr-shadow-1: 0 1px 2px rgba(21,23,27,.05), 0 1px 3px rgba(21,23,27,.04);
	--rr-shadow-2: 0 2px 6px rgba(21,23,27,.04), 0 18px 40px -22px rgba(21,23,27,.28);
	--rr-ring: 0 0 0 4px rgba(240,80,30,.14);
	background: var(--rr-bg);
	color: var(--rr-ink);
	font: 400 16px/1.55 var(--rr-font);
	-webkit-font-smoothing: antialiased;
}
.rmc-rental-page *,
.rmc-rental-page *::before,
.rmc-rental-page *::after { box-sizing: border-box; }
.rmc-rental-page [hidden] { display: none !important; }
.rmc-rental-page h1,
.rmc-rental-page h2,
.rmc-rental-page h3,
.rmc-rental-page p { margin: 0; }
.rmc-rental-page button,
.rmc-rental-page input,
.rmc-rental-page select,
.rmc-rental-page textarea { color: inherit; font: inherit; }
.rmc-rental-page :focus-visible { outline: 2px solid var(--rr-accent); outline-offset: 3px; }
.rr-ref-wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.rr-ref-hero { padding: clamp(42px, 6vw, 62px) 0 28px; text-align: center; }
.rr-ref-tag { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: var(--rr-accent-soft); color: var(--rr-accent-dark); font-size: 13px; font-weight: 600; letter-spacing: -.01em; }
.rr-ref-tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--rr-accent); }
.rmc-rental-page .rr-ref-hero h1 { margin-top: 18px; color: var(--rr-ink) !important; font: 800 clamp(38px, 5vw, 58px)/1 var(--rr-site-heading) !important; letter-spacing: .004em; text-transform: uppercase; }
.rr-ref-hero-copy { max-width: 59ch; margin: 14px auto 0 !important; color: var(--rr-muted); font-size: 17px; letter-spacing: -.01em; }
.rr-ref-main { padding: 14px 0 clamp(64px, 8vw, 92px); }

.rr-conf-grid { display: grid; grid-template-columns: minmax(0, 1fr) 348px; gap: 22px; align-items: start; }
.rr-conf-card { border: 1px solid var(--rr-line); border-radius: var(--rr-radius-xl); background: var(--rr-card); box-shadow: var(--rr-shadow-2); overflow: hidden; }
.rr-conf-card-body { padding: 38px 38px 32px; }

.rr-steps { display: flex; align-items: center; gap: 0; margin: 0; padding: 22px 32px; border-bottom: 1px solid var(--rr-line); overflow-x: auto; list-style: none; scrollbar-width: none; }
.rr-steps::-webkit-scrollbar { display: none; }
.rr-step-nav { display: flex; align-items: center; flex-shrink: 0; }
.rr-step-nav-button { display: flex; align-items: center; gap: 9px; padding: 4px; border: 0; border-radius: 999px; background: none; color: var(--rr-muted); cursor: default; }
.rr-step-nav.is-clickable .rr-step-nav-button { cursor: pointer; }
.rr-step-nav.is-clickable .rr-step-nav-button:hover .rr-step-dot { border-color: var(--rr-ink); color: var(--rr-ink); }
.rr-step-dot { display: grid; flex-shrink: 0; width: 28px; height: 28px; place-items: center; border: 1.5px solid var(--rr-line-2); border-radius: 50%; background: var(--rr-card); color: var(--rr-muted); font-size: 13px; font-weight: 600; transition: .22s ease; }
.rr-step-dot svg { display: none; width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 3; }
.rr-step-name { font-size: 14.5px; font-weight: 500; letter-spacing: -.01em; white-space: nowrap; }
.rr-step-bar { flex-shrink: 0; width: 34px; height: 1.5px; margin: 0 6px; border-radius: 2px; background: var(--rr-line-2); }
.rr-step-nav.is-done .rr-step-dot { border-color: var(--rr-ok); background: var(--rr-ok); color: #fff; }
.rr-step-nav.is-done .rr-step-dot b { display: none; }
.rr-step-nav.is-done .rr-step-dot svg { display: block; }
.rr-step-nav.is-done .rr-step-name { color: var(--rr-ink-2); }
.rr-step-nav.is-current .rr-step-dot { border-color: var(--rr-accent); background: var(--rr-accent); box-shadow: var(--rr-ring); color: #fff; }
.rr-step-nav.is-current .rr-step-name { color: var(--rr-ink); font-weight: 600; }

.rr-conf-step { display: none; }
.rr-conf-step.is-active { display: block; animation: rr-in .32s cubic-bezier(.2,.7,.3,1) both; }
@keyframes rr-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.rr-step-kick { color: var(--rr-accent); font-size: 13px; font-weight: 600; letter-spacing: -.01em; }
.rmc-rental-page .rr-step-title { margin-top: 6px; color: var(--rr-ink) !important; font: 600 clamp(25px, 3vw, 32px)/1.12 var(--rr-font) !important; letter-spacing: -.03em; text-transform: none; }
.rr-step-sub { max-width: 58ch; margin-top: 7px !important; color: var(--rr-muted); font-size: 15.5px; letter-spacing: -.01em; }
.rr-block { margin-top: 28px; }
.rr-block-label { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.rmc-rental-page .rr-block-label h3 { color: var(--rr-ink) !important; font: 600 15px/1.3 var(--rr-font) !important; letter-spacing: -.015em; text-transform: none; }
.rr-block-label h3 span { color: var(--rr-accent); }
.rr-block-label > small { color: var(--rr-muted); font-size: 13px; }

.rr-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rr-option { position: relative; display: flex; align-items: center; gap: 14px; min-height: 92px; padding: 15px 16px; border: 1.5px solid var(--rr-line-2); border-radius: var(--rr-radius-lg); background: var(--rr-card); cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease; }
.rr-option:hover { border-color: #c3c9d2; box-shadow: var(--rr-shadow-1); transform: translateY(-1px); }
.rr-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rr-option-icon { display: grid; flex-shrink: 0; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: var(--rr-bg); color: var(--rr-ink-2); transition: .18s ease; }
.rr-option-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.rr-option-text { min-width: 0; flex: 1; }
.rr-option-text b,
.rr-option-text small { display: block; }
.rr-option-text b { color: var(--rr-ink); font-size: 15px; font-weight: 600; letter-spacing: -.015em; line-height: 1.25; }
.rr-option-text small { margin-top: 3px; color: var(--rr-muted); font-size: 13px; line-height: 1.35; }
.rr-option-check { display: grid; flex-shrink: 0; width: 22px; height: 22px; place-items: center; border: 1.5px solid var(--rr-line-2); border-radius: 50%; background: var(--rr-card); transition: .18s ease; }
.rr-option-check svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-linecap: round; stroke-width: 3.4; opacity: 0; transform: scale(.5); transition: .2s ease; }
.rr-option:has(input:checked) { border-color: var(--rr-accent); background: var(--rr-accent-soft); }
.rr-option:has(input:checked) .rr-option-icon { background: #fff; color: var(--rr-accent); }
.rr-option:has(input:checked) .rr-option-check { border-color: var(--rr-accent); background: var(--rr-accent); }
.rr-option:has(input:checked) .rr-option-check svg { opacity: 1; transform: none; }
.rr-option:has(input:focus-visible) { outline: 2px solid var(--rr-accent); outline-offset: 3px; }

.rr-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rr-wide { grid-column: 1 / -1; }
.rr-field { display: block; color: var(--rr-ink-2); font-size: 13.5px; font-weight: 500; letter-spacing: -.01em; }
.rr-field > span { display: block; margin-bottom: 6px; }
.rr-field > span small { color: var(--rr-muted); font-weight: 400; }
.rr-field > small { display: block; margin-top: 6px; color: var(--rr-muted); font-size: 13px; font-weight: 400; }
.rr-visually-labelled > span { position: absolute; left: -9999px; }
.rr-field-spaced { margin-top: 14px; }
.rmc-rental-page .rr-control { width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid var(--rr-line-2); border-radius: var(--rr-radius); background: #fafbfc; color: var(--rr-ink); font: 400 15.5px/1.45 var(--rr-font); letter-spacing: -.01em; box-shadow: none; transition: border-color .16s ease, box-shadow .16s ease, background .16s ease; }
.rmc-rental-page textarea.rr-control { min-height: 120px; resize: vertical; }
.rmc-rental-page select.rr-control { padding-right: 40px; cursor: pointer; }
.rmc-rental-page .rr-control::placeholder { color: #9da4ae; opacity: 1; }
.rmc-rental-page .rr-control:hover { border-color: #c3c9d2; }
.rmc-rental-page .rr-control:focus { border-color: var(--rr-accent); outline: 0; background: #fff; box-shadow: var(--rr-ring); }
.rmc-rental-page .rr-control[aria-invalid="true"] { border-color: var(--rr-error); background: #fef6f5; }
.rr-file-control { padding: 9px 12px !important; }
.rr-inline-error { min-height: 0; margin-top: 6px !important; color: var(--rr-error); font-size: 13px; font-weight: 500; }
.rr-inline-error:not(:empty) { min-height: 20px; }
.rr-duration { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 12px; padding: 13px 18px; border-radius: var(--rr-radius-lg); background: var(--rr-bg); }
.rr-duration p { color: var(--rr-muted); font-size: 14px; }
.rr-duration b { font-size: 17px; font-weight: 600; letter-spacing: -.02em; }
.rr-unit { position: relative; display: block; font-style: normal; }
.rr-unit .rr-control { padding-right: 62px; }
.rr-unit em { position: absolute; top: 50%; right: 14px; color: var(--rr-muted); font-size: 13.5px; font-style: normal; transform: translateY(-50%); pointer-events: none; }

.rr-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.rr-pills label { position: relative; cursor: pointer; }
.rr-pills input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rr-pills span { display: block; padding: 9px 17px; border: 1.5px solid var(--rr-line-2); border-radius: 999px; background: var(--rr-card); color: var(--rr-ink); font-size: 14.5px; font-weight: 500; letter-spacing: -.01em; transition: .16s ease; }
.rr-pills label:hover span { border-color: #c3c9d2; }
.rr-pills input:checked + span { border-color: var(--rr-ink); background: var(--rr-ink); color: #fff; }
.rr-pills input:focus-visible + span { outline: 2px solid var(--rr-accent); outline-offset: 3px; }
.rr-check-line { position: relative; display: flex; align-items: flex-start; gap: 11px; margin-top: 16px; color: var(--rr-ink-2); font-size: 14.5px; letter-spacing: -.01em; line-height: 1.45; cursor: pointer; }
.rr-check-line input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rr-check-box { display: grid; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; place-items: center; border: 1.5px solid var(--rr-line-2); border-radius: 7px; background: var(--rr-card); transition: .16s ease; }
.rr-check-box svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-linecap: round; stroke-width: 3.4; opacity: 0; transform: scale(.6); transition: .2s ease; }
.rr-check-line input:checked + .rr-check-box { border-color: var(--rr-accent); background: var(--rr-accent); }
.rr-check-line input:checked + .rr-check-box svg { opacity: 1; transform: none; }
.rr-check-line input:focus-visible + .rr-check-box { outline: 2px solid var(--rr-accent); outline-offset: 3px; }
.rr-check-line a { color: var(--rr-accent); text-underline-offset: 3px; }

.rr-client-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rr-client-option { position: relative; cursor: pointer; }
.rr-client-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rr-client-option > span { display: block; min-height: 83px; padding: 15px 17px; border: 1.5px solid var(--rr-line-2); border-radius: var(--rr-radius-lg); background: #fff; transition: .18s ease; }
.rr-client-option b,
.rr-client-option small { display: block; }
.rr-client-option b { font-size: 15.5px; font-weight: 600; }
.rr-client-option small { margin-top: 3px; color: var(--rr-muted); font-size: 13.5px; }
.rr-client-option.is-active > span { border-color: var(--rr-accent); background: var(--rr-accent-soft); box-shadow: inset 4px 0 0 var(--rr-accent); }
.rr-company-panel { margin-top: 18px; padding: 20px; border: 1px solid var(--rr-line); border-radius: var(--rr-radius-lg); background: #fafbfc; }
.rr-company-cui-block > .rr-field-label { display: block; margin-bottom: 7px; color: var(--rr-ink); font-size: 14px; font-weight: 600; }
.rr-company-control-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; gap: 10px; }
.rr-company-control-row .rr-control { min-width: 0; }
.rr-company-control-row .rr-pill-button { min-width: 190px; }
.rr-company-cui-block > small { display: block; margin-top: 6px; color: var(--rr-muted); font-size: 12.5px; }
.rr-pill-button { min-height: 50px; padding: 11px 20px; border: 0; border-radius: 999px; background: var(--rr-ink); color: #fff !important; font-size: 14px; font-weight: 600; cursor: pointer; }
.rr-pill-button:hover { background: var(--rr-accent); }
.rr-pill-button:disabled { opacity: .65; cursor: wait; }
.rr-company-status { min-height: 24px; margin: 8px 0; font-size: 13.5px; font-weight: 600; }
.rr-company-status.is-success { color: var(--rr-ok); }
.rr-company-status.is-error { color: var(--rr-error); }
.rr-contact-block { margin-top: 22px; }
.rr-privacy { margin-top: 20px; }

.rr-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--rr-line); }
.rr-action-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 12px 24px; border: 1.5px solid transparent; border-radius: 999px; font-size: 15.5px; font-weight: 600; letter-spacing: -.01em; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.rr-action-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }
.rr-action-main { background: var(--rr-accent); box-shadow: 0 6px 16px -6px rgba(240,80,30,.7); color: #fff !important; }
.rr-action-main:hover { background: var(--rr-accent-dark); box-shadow: 0 12px 24px -8px rgba(240,80,30,.65); transform: translateY(-2px); }
.rr-action-back { border-color: var(--rr-line-2); background: var(--rr-card); color: var(--rr-ink-2); }
.rr-action-back:hover { border-color: var(--rr-ink); color: var(--rr-ink); transform: translateY(-1px); }
.rr-action-button:disabled { opacity: .65; cursor: wait; transform: none; }
.rr-form-message { color: var(--rr-error); font-size: 14px; font-weight: 600; }
.rr-form-message:not(:empty) { margin-bottom: 20px; padding: 12px 14px; border-left: 4px solid currentColor; border-radius: 8px; background: #fff1f0; }
.rr-form-message.is-success { color: var(--rr-ok); background: #eff9f1; }
.rr-honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.rr-summary-column { position: sticky; top: 92px; }
.rr-summary-head { display: flex; align-items: center; gap: 14px; padding: 22px 22px 18px; border-bottom: 1px solid var(--rr-line); }
.rmc-rental-page .rr-summary-head h2 { color: var(--rr-ink) !important; font: 600 17px/1.2 var(--rr-font) !important; letter-spacing: -.02em; text-transform: none; }
.rr-summary-head p { margin-top: 2px !important; color: var(--rr-muted); font-size: 13.5px; }
.rr-progress-ring { position: relative; flex-shrink: 0; width: 52px; height: 52px; }
.rr-progress-ring svg { width: 52px; height: 52px; transform: rotate(-90deg); }
.rr-progress-ring circle { fill: none; stroke-width: 4; stroke-linecap: round; }
.rr-ring-track { stroke: var(--rr-line); }
.rr-ring-value { stroke: var(--rr-accent); transition: stroke-dashoffset .5s cubic-bezier(.2,.7,.3,1); }
.rr-progress-ring b { position: absolute; inset: 0; display: grid; place-items: center; font-size: 13px; font-weight: 600; letter-spacing: -.03em; }
.rr-summary-body { padding: 6px 22px 18px; }
.rr-summary-group { padding: 14px 0; border-bottom: 1px solid var(--rr-line); }
.rr-summary-group:last-child { border-bottom: 0; }
.rmc-rental-page .rr-summary-group h3 { margin-bottom: 9px; color: var(--rr-muted) !important; font: 600 12px/1.3 var(--rr-font) !important; letter-spacing: .06em; text-transform: uppercase; }
.rr-summary-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 4px 0; }
.rr-summary-row span { color: var(--rr-muted); font-size: 14px; letter-spacing: -.01em; white-space: nowrap; }
.rr-summary-row b { color: var(--rr-ink); font-size: 14px; font-weight: 600; letter-spacing: -.015em; text-align: right; }
.rr-summary-row b.is-empty { color: #a8aeb7; font-weight: 400; }
.rr-summary-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rr-summary-tags span { padding: 5px 11px; border-radius: 999px; background: var(--rr-accent-soft); color: var(--rr-accent-dark); font-size: 13px; font-weight: 500; }
.rr-summary-tags span.is-empty { background: var(--rr-bg); color: #a8aeb7; font-weight: 400; }
.rr-summary-foot { display: flex; gap: 11px; padding: 16px 22px 20px; border-top: 1px solid var(--rr-line); border-radius: 0 0 var(--rr-radius-xl) var(--rr-radius-xl); background: var(--rr-bg); }
.rr-summary-foot svg { flex-shrink: 0; width: 17px; height: 17px; margin-top: 2px; fill: none; stroke: var(--rr-accent); stroke-linecap: round; stroke-width: 2; }
.rr-summary-foot p { color: var(--rr-ink-2); font-size: 13.5px; line-height: 1.5; }
.rr-summary-foot a { color: var(--rr-ink); font-weight: 600; text-decoration: none; }

.rr-recap { display: grid; gap: 10px; margin-top: 22px; }
.rr-recap-card { padding: 16px 18px; border: 1px solid var(--rr-line); border-radius: var(--rr-radius-lg); background: #fcfcfd; }
.rr-recap-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.rmc-rental-page .rr-recap-top h3 { color: var(--rr-ink) !important; font: 600 14.5px/1.3 var(--rr-font) !important; letter-spacing: -.015em; text-transform: none; }
.rr-recap-top button { padding: 4px 8px; border: 0; border-radius: 999px; background: none; color: var(--rr-accent); font-size: 13.5px; font-weight: 600; cursor: pointer; }
.rr-recap-top button:hover { background: var(--rr-accent-soft); }
.rr-recap-row { display: flex; align-items: baseline; gap: 12px; padding: 3px 0; }
.rr-recap-row span { min-width: 112px; color: var(--rr-muted); font-size: 13.5px; }
.rr-recap-row b { color: var(--rr-ink); font-size: 14px; font-weight: 500; }
.rr-submit-note { margin-top: 18px !important; color: var(--rr-muted); font-size: 13.5px; }
.rr-success { padding: 54px 22px 46px; text-align: center; }
.rr-success-icon { display: grid; width: 66px; height: 66px; margin: 0 auto; place-items: center; border-radius: 50%; background: #e9f7f0; color: var(--rr-ok); }
.rr-success-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2.4; }
.rmc-rental-page .rr-success h2 { margin-top: 20px; color: var(--rr-ink) !important; font: 600 clamp(26px,4vw,34px)/1.1 var(--rr-font) !important; letter-spacing: -.03em; text-transform: none; }
.rr-success > p { max-width: 46ch; margin: 12px auto 0 !important; color: var(--rr-muted); font-size: 16px; }
.rr-success-reference { display: inline-block; padding: 10px 20px; border-radius: 999px; background: var(--rr-bg); color: var(--rr-ink-2) !important; font-size: 14px !important; }
.rr-success-reference b { color: var(--rr-ink); }

@media (max-width: 999px) {
	.rr-conf-grid { grid-template-columns: 1fr; }
	.rr-summary-column { position: static; }
	.rr-conf-card-body { padding: 34px 32px 30px; }
}
@media (max-width: 700px) {
	.rr-ref-wrap { padding-inline: 14px; }
	.rr-ref-hero { padding-top: 34px; }
	.rmc-rental-page .rr-ref-hero h1 { font-size: 38px !important; }
	.rr-ref-hero-copy { font-size: 15.5px; }
	.rr-steps { justify-content: space-between; padding: 20px 18px; }
	.rr-step-name { display: none; }
	.rr-step-bar { width: 24px; margin-inline: 3px; }
	.rr-conf-card-body { padding: 28px 20px 24px; }
	.rr-options,
	.rr-two,
	.rr-client-options,
	.rr-company-control-row { grid-template-columns: 1fr; }
	.rr-wide { grid-column: auto; }
	.rr-option { min-height: 84px; }
	.rr-pill-button { width: 100%; }
	.rr-summary-column { order: 2; }
}
@media (max-width: 480px) {
	.rr-block-label { align-items: flex-start; flex-direction: column; gap: 3px; }
	.rr-actions .rr-action-button { flex: 1; padding-inline: 16px; }
	.rr-recap-row { align-items: flex-start; flex-direction: column; gap: 0; }
	.rr-recap-row span { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.rmc-rental-page *,
	.rmc-rental-page *::before,
	.rmc-rental-page *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
	.rr-action-button:hover,
	.rr-option:hover { transform: none; }
}
