.rly-account {
	--rly-account-ink: var(--roamly-ink, #17352d);
	--rly-account-green: var(--roamly-green, #234f42);
	--rly-account-paper: var(--roamly-paper, #fffdf8);
	--rly-account-cream: var(--roamly-cream, #f7f3e9);
	--rly-account-gold: var(--roamly-gold, #d3a65e);
	--rly-account-muted: var(--roamly-muted, #6f7e78);
	--rly-account-border: var(--roamly-border, #d8d9d3);
	color: var(--rly-account-ink);
}

.rly-account--register {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
	gap: clamp(30px, 6vw, 72px);
	align-items: start;
}

.rly-account__intro {
	position: sticky;
	top: 40px;
	padding-top: 26px;
}

.rly-account__eyebrow,
.rly-dashboard__step {
	display: block;
	margin-bottom: 12px;
	color: #9a6d35;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.rly-account :is(h2, h3, p) {
	margin-top: 0;
}

.rly-account h2 {
	margin-bottom: 18px;
	color: var(--rly-account-ink);
	font: 400 clamp(34px, 5vw, 54px) / 1.05 Georgia, "Times New Roman", serif;
	letter-spacing: -0.035em;
}

.rly-account__intro > p,
.rly-dashboard__header p {
	color: var(--rly-account-muted);
	line-height: 1.65;
}

.rly-account__benefits {
	display: grid;
	gap: 13px;
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.rly-account__benefits li {
	position: relative;
	padding-left: 28px;
	color: #435a52;
	font-size: 14px;
}

.rly-account__benefits li::before {
	position: absolute;
	top: 0.28em;
	left: 0;
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	color: #fff;
	background: var(--rly-account-green);
	border-radius: 50%;
	content: "✓";
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.rly-account__panel,
.rly-dashboard__primary,
.rly-dashboard__secondary,
.rly-account__signed-in,
.rly-account--compact .rly-alert {
	padding: clamp(24px, 4vw, 42px);
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(23, 53, 45, 0.08);
}

.rly-account-form {
	display: grid;
	gap: 20px;
}

.rly-social-login {
	margin: 2px 0;
}

.rly-social-login__divider {
	display: flex;
	gap: 14px;
	margin: 0 0 18px;
	align-items: center;
	color: var(--rly-account-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rly-social-login__divider::before,
.rly-social-login__divider::after {
	flex: 1 1 auto;
	height: 1px;
	background: var(--rly-account-border);
	content: "";
}

.rly-social-login__providers :is(.nsl-container, .nsl-container-buttons) {
	width: 100%;
}

.rly-social-login__providers .nsl-button {
	border: 1px solid var(--rly-account-border) !important;
	border-radius: 9px !important;
	box-shadow: none !important;
}

.rly-account-form fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

.rly-account-form legend,
.rly-account-form label > span {
	display: block;
	margin-bottom: 8px;
	color: var(--rly-account-ink);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.4;
}

.rly-role-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.rly-role-option {
	position: relative;
	display: block;
	cursor: pointer;
}

.rly-role-option input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.rly-role-option > span {
	display: block;
	min-height: 112px;
	padding: 15px;
	background: var(--rly-account-paper);
	border: 1px solid var(--rly-account-border);
	border-radius: 10px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rly-role-option strong,
.rly-role-option small {
	display: block;
}

.rly-role-option strong {
	margin-bottom: 5px;
	color: var(--rly-account-ink);
	font-size: 13px;
}

.rly-role-option small {
	color: var(--rly-account-muted);
	font-size: 10px;
	line-height: 1.45;
}

.rly-role-option input:checked + span {
	background: #f6faf7;
	border-color: var(--rly-account-green);
	box-shadow: inset 0 0 0 1px var(--rly-account-green);
}

.rly-role-option input:focus-visible + span {
	outline: 3px solid rgba(211, 166, 94, 0.65);
	outline-offset: 2px;
}

.rly-account-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.rly-account-form input[type="text"],
.rly-account-form input[type="email"],
.rly-account-form input[type="password"] {
	width: 100%;
	padding: 13px 14px;
	color: var(--rly-account-ink);
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 9px;
	outline: none;
}

.rly-account-form input:is([type="text"], [type="email"], [type="password"]):focus {
	border-color: #9a6d35;
	box-shadow: 0 0 0 3px rgba(211, 166, 94, 0.18);
}

.rly-account-form label > small {
	display: block;
	margin-top: 6px;
	color: var(--rly-account-muted);
	font-size: 10px;
	line-height: 1.45;
}

.rly-account-form__remember {
	display: flex;
	gap: 9px;
	align-items: center;
	width: fit-content;
	cursor: pointer;
}

.rly-account-form__remember > span {
	margin: 0 !important;
	font-weight: 600 !important;
}

.rly-button {
	display: inline-flex;
	width: fit-content;
	min-height: 46px;
	padding: 12px 22px;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	background: var(--rly-account-green);
	border: 0;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.rly-button:hover {
	background: #173a30;
	transform: translateY(-1px);
}

.rly-button--wide {
	width: 100%;
}

.rly-account-form__terms,
.rly-account__login {
	color: var(--rly-account-muted);
	font-size: 11px;
	line-height: 1.55;
	text-align: center;
}

.rly-account__login {
	margin: 20px 0 0;
}

.rly-account__login a,
.rly-dashboard__secondary a {
	color: #8c612f;
	font-weight: 800;
}

.rly-form-trap {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.rly-alert {
	padding: 15px 18px;
	margin-bottom: 22px;
	background: var(--rly-account-cream);
	border-radius: 10px;
}

.rly-alert--error {
	color: #762e28;
	background: #fff0ee;
	border: 1px solid #e9b4ae;
}

.rly-alert p {
	margin-bottom: 6px;
	font-weight: 800;
}

.rly-alert ul {
	padding-left: 20px;
	margin: 0;
}

.rly-dashboard__header {
	display: flex;
	margin-bottom: 34px;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.rly-dashboard-review-qr { display: flex; padding: 8px 10px; align-items: center; flex-wrap: wrap; gap: 7px 9px; background: #fff; border: 1px solid #d8e0dc; border-radius: 10px; box-shadow: 0 5px 16px rgb(22 54 44 / 8%); }
.rly-dashboard-review-qr [data-review-qr] { width: 58px; height: 58px; flex: 0 0 58px; }
.rly-dashboard-review-qr svg { display: block; width: 100%; height: 100%; }
.rly-dashboard-review-qr p { display: grid; max-width: 150px; margin: 0; gap: 2px; }
.rly-dashboard-review-qr strong { color: #254c40; font-size: 11px; }
.rly-dashboard-review-qr span { color: #718079; font-size: 9px; line-height: 1.35; }
.rly-dashboard-review-qr > [data-review-qr-status]:empty { display: none; }

.rly-dashboard__header h2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 9px;
	font-size: clamp(22px, 2.6vw, 30px);
	line-height: 1.1;
}

.rly-dashboard__verified-badge {
	display: inline-flex;
	min-height: 27px;
	padding: 4px 9px 4px 7px;
	align-items: center;
	gap: 5px;
	color: #185c45;
	font: 800 11px/1.1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
	background: #e7f5ed;
	border: 1px solid #a8d6bd;
	border-radius: 999px;
}

.rly-dashboard__verified-badge svg {
	width: 16px;
	height: 16px;
	fill: #2f7b5f;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rly-dashboard__review-badge {
	display: inline-flex;
	min-height: 27px;
	padding: 4px 10px 4px 7px;
	align-items: center;
	gap: 6px;
	color: #79541c;
	font: 800 11px/1.1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
	background: #fff5df;
	border: 1px solid #e4c27d;
	border-radius: 999px;
}

.rly-dashboard__review-badge svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rly-dashboard__header p {
	max-width: 620px;
	margin-bottom: 0;
}

.rly-dashboard__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
}

.rly-dashboard__shell {
	display: grid;
	grid-template-columns: minmax(235px, 270px) minmax(0, 1fr);
	gap: clamp(22px, 3vw, 40px);
	align-items: start;
}

.rly-dashboard__sidebar {
	position: sticky;
	top: 24px;
	padding: 18px;
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 16px;
	box-shadow: 0 14px 38px rgba(23, 53, 45, 0.07);
}

.rly-dashboard__sidebar > strong,
.rly-dashboard__account-group > summary {
	display: block;
	padding: 4px 9px 13px;
	color: var(--rly-account-muted);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.rly-dashboard__account-group > summary {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 8px 10px 10px 30px;
	align-items: center;
	gap: 6px;
	color: var(--rly-account-ink);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.065em;
	background:
		linear-gradient(90deg, #3f8b70 0 var(--rly-profile-progress, 0%), #ded6c5 var(--rly-profile-progress, 0%) 100%) left bottom / 100% 3px no-repeat,
		#f7f3e9;
	border: 1px solid #eadfc9;
	border-radius: 9px;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.rly-dashboard__account-group > summary > span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rly-dashboard__account-group > summary > strong {
	min-width: 0;
	padding: 0;
	justify-self: end;
	text-align: right;
	color: #285b4c;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.rly-dashboard__account-group > summary::-webkit-details-marker {
	display: none;
}

.rly-dashboard__account-group > summary::after {
	position: absolute;
	top: calc(50% - 1px);
	left: 12px;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid var(--rly-account-green);
	content: "";
	transform: translateY(-50%) rotate(90deg);
	transform-origin: 3px 4px;
	transition: transform 0.2s ease;
}

.rly-dashboard__account-group:not([open]) > summary::after {
	transform: translateY(-50%) rotate(0deg);
}

.rly-dashboard__account-group > summary:focus-visible {
	border-radius: 7px;
	outline: 2px solid var(--rly-account-green);
	outline-offset: 2px;
}

.rly-dashboard__account-group > nav {
	padding: 7px 0 0 11px;
}

.rly-dashboard__sidebar .rly-dashboard__account-group > nav > :is(a, span.is-disabled) {
	display: grid;
	min-height: 32px;
	grid-template-columns: minmax(0, 1fr) auto 16px;
	gap: 7px;
	padding: 6px 9px;
	align-items: center;
	justify-content: stretch;
	font-weight: 500;
	line-height: 1.2;
}

.rly-dashboard__account-group .rly-dashboard__menu-label {
	grid-column: 1;
	min-width: 0;
	line-height: 16px;
}

.rly-dashboard__step-marker {
	display: grid;
	width: 16px;
	height: 16px;
	grid-column: 3;
	justify-self: end;
	place-items: center;
	color: #285b4c;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	background: #fff;
	border: 1.5px solid #bcc8c3;
	border-radius: 50%;
	box-shadow: 0 1px 2px rgba(23, 53, 45, 0.08);
}

.rly-dashboard__account-group > nav > span.is-disabled small {
	grid-column: 2;
	align-self: center;
	margin: 0;
}

.rly-dashboard__step-marker.is-complete {
	color: #17352d;
	background: #e9c98f;
	border-color: #d9b36f;
}

.rly-dashboard__account-group a.is-current .rly-dashboard__step-marker {
	color: var(--rly-account-green);
	background: #fff;
	border-color: #fff;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.rly-dashboard__sidebar nav {
	display: grid;
	gap: 4px;
}

.rly-dashboard__sidebar nav.rly-dashboard__sidebar-workspace {
	padding-top: 12px;
	margin-top: 12px;
	border-top: 1px solid var(--rly-account-border);
}

.rly-dashboard__sidebar :is(a, nav > span) {
	display: block;
	padding: 11px 12px;
	color: #40574f;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.35;
	text-decoration: none;
	border-radius: 9px;
}

.rly-dashboard__sidebar nav > span.is-disabled {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	color: #98a39f;
	background: #f7f7f3;
	cursor: not-allowed;
}

.rly-dashboard__sidebar nav > span.is-disabled small {
	padding: 3px 6px;
	color: #8a938f;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: #eceeea;
	border-radius: 999px;
}

.rly-dashboard__sidebar a:hover {
	background: var(--rly-account-cream);
}

.rly-dashboard__sidebar a.is-current {
	color: #fff;
	background: var(--rly-account-green);
}

.rly-dashboard__content {
	min-width: 0;
}

.rly-driver-onboarding {
	display: grid;
	gap: 16px;
	padding: 22px 24px;
	margin-bottom: 20px;
	color: #fff;
	background: linear-gradient(135deg, #17352d, #285b4c);
	border-radius: 16px;
	box-shadow: 0 16px 38px rgba(23, 53, 45, 0.16);
}

.rly-driver-onboarding.is-complete {
	background: linear-gradient(135deg, #21483d, #367360);
}

.rly-driver-onboarding__summary {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 20px;
}

.rly-driver-onboarding__summary > div > span {
	display: block;
	margin-bottom: 7px;
	color: #ebc98f;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.rly-driver-onboarding__summary > strong {
	flex: 0 0 auto;
	color: #ebc98f;
	font: 600 32px/1 Georgia, "Times New Roman", serif;
}

.rly-driver-onboarding h3 {
	margin: 0 0 8px;
	color: #fff;
	font: 400 clamp(22px, 2.5vw, 30px) / 1.15 Georgia, "Times New Roman", serif;
}

.rly-driver-onboarding p {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
	line-height: 1.6;
}

.rly-driver-onboarding__journey {
	position: relative;
	min-width: 0;
	height: 94px;
	overflow: visible;
}

.rly-driver-onboarding__progress {
	position: absolute;
	top: 39px;
	left: 12.5%;
	z-index: 0;
	width: 75%;
	height: 4px;
	background: rgba(255, 255, 255, 0.16);
	border-radius: 999px;
}

.rly-driver-onboarding__progress-fill {
	display: block;
	width: var(--rly-journey-progress);
	height: 100%;
	background: linear-gradient(90deg, #d9af68, #f6dba9);
	border-radius: inherit;
	box-shadow: 0 0 14px rgba(235, 201, 143, 0.34);
	transition: width 0.45s ease;
}

.rly-driver-onboarding__timeline {
	position: relative;
	z-index: 1;
	display: grid;
	height: 100%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 0;
	margin: 0;
	list-style: none;
}

.rly-driver-onboarding__timeline li {
	position: relative;
	min-width: 0;
}

.rly-driver-onboarding__timeline li > a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.rly-driver-onboarding__timeline li > a:focus-visible b {
	outline: 3px solid #fff;
	outline-offset: 5px;
}

.rly-driver-onboarding__timeline b {
	position: absolute;
	top: 25px;
	left: 50%;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	color: rgba(255, 255, 255, 0.68);
	background: #285b4c;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(40, 91, 76, 0.96);
	font-size: 13px;
	line-height: 1;
	transform: translateX(-50%);
	transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rly-onboarding-icon {
	display: block;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rly-onboarding-fa-car {
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	font-style: normal;
}

.rly-onboarding-fa-car svg {
	display: none;
}

.rly-onboarding-fa-car::before {
	display: block;
	width: 20px;
	height: 20px;
	content: "";
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.92 6.01A1.51 1.51 0 0 0 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99ZM6.5 16A1.5 1.5 0 1 1 6.5 13a1.5 1.5 0 0 1 0 3Zm11 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM5 11l1.5-4.5h11L19 11H5Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.92 6.01A1.51 1.51 0 0 0 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99ZM6.5 16A1.5 1.5 0 1 1 6.5 13a1.5 1.5 0 0 1 0 3Zm11 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM5 11l1.5-4.5h11L19 11H5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.rly-driver-onboarding__complete-check {
	position: absolute;
	top: -11px;
	right: -8px;
	display: none;
	width: 17px;
	height: 17px;
	place-items: center;
	color: #17352d;
	font-size: 10px;
	font-weight: 950;
	line-height: 1;
	background: #fff;
	border: 2px solid #d9af68;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(13, 38, 31, 0.24);
}

.rly-driver-onboarding__timeline li.is-complete .rly-driver-onboarding__complete-check {
	display: grid;
}

.rly-driver-onboarding__timeline li.is-pending .rly-driver-onboarding__complete-check {
	display: none;
}

.rly-driver-onboarding__timeline li.is-complete b {
	color: #17352d;
	background: #ebc98f;
	border-color: #ebc98f;
	box-shadow: 0 0 0 5px rgba(40, 91, 76, 0.96), 0 0 16px rgba(235, 201, 143, 0.25);
}

.rly-driver-onboarding__timeline li.is-current b {
	border-color: #fff;
	box-shadow: 0 0 0 5px rgba(40, 91, 76, 0.96), 0 0 0 8px rgba(235, 201, 143, 0.72), 0 0 20px rgba(235, 201, 143, 0.5);
	transform: translateX(-50%) scale(1.12);
}

.rly-driver-onboarding__timeline li.is-current .rly-driver-onboarding__label {
	color: #fff;
	font-weight: 850;
}

.rly-driver-onboarding__label {
	position: absolute;
	top: 66px;
	left: 50%;
	width: min(140px, 98%);
	color: rgba(255, 255, 255, 0.68);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.025em;
	line-height: 1.3;
	text-align: center;
	transform: translateX(-50%);
}

.rly-driver-onboarding__timeline li.is-complete .rly-driver-onboarding__label {
	color: #f3d8a5;
}

.rly-login-method-note {
	padding: 14px 16px;
	margin-top: 18px;
	color: #355047;
	background: #f7f3e9;
	border: 1px solid #e7dac0;
	border-radius: 10px;
}

.rly-login-method-note strong {
	display: block;
	margin-bottom: 4px;
	color: var(--rly-account-ink);
	font-size: 13px;
}

.rly-login-method-note p {
	margin: 0;
	font-size: 12px;
	line-height: 1.55;
}

.rly-verification-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.rly-verification-review-summary {
	margin-top: 20px;
}

.rly-verification-card {
	padding: 20px;
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(29, 56, 48, 0.06);
}

.rly-verification-card.is-complete {
	background: #f4faf7;
	border-color: #b9d8cc;
}

.rly-verification-card__heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.rly-verification-card__heading > span {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	color: #fff;
	font-weight: 850;
	background: var(--rly-account-green);
	border-radius: 50%;
}

.rly-verification-step-state:empty::after {
	width: 7px;
	height: 7px;
	background: rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	content: "";
}

.rly-verification-card h4 {
	margin: 0 0 2px;
	font-size: 16px;
}

.rly-verification-card__heading small {
	color: var(--rly-account-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.rly-phone-number-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 5px;
}

.rly-phone-number-row strong {
	font-size: 15px;
	letter-spacing: 0.01em;
}

.rly-phone-number-edit {
	display: inline-grid;
	width: 28px;
	height: 28px;
	padding: 0;
	place-items: center;
	color: var(--rly-account-green);
	background: rgba(31, 91, 72, 0.08);
	border: 1px solid rgba(31, 91, 72, 0.2);
	border-radius: 50%;
	cursor: pointer;
	transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.rly-phone-number-edit svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.rly-phone-number-edit:hover,
.rly-phone-number-edit:focus-visible,
.rly-phone-number-edit[aria-expanded="true"] {
	color: #fff;
	background: var(--rly-account-green);
	border-color: var(--rly-account-green);
}

.rly-phone-change-panel {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(31, 91, 72, 0.16);
}

.rly-phone-otp {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.rly-phone-otp legend {
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 800;
}

.rly-phone-otp__digits {
	display: grid;
	grid-template-columns: repeat(6, minmax(36px, 44px));
	gap: 8px;
}

.rly-verification-card .rly-phone-otp__digits input {
	width: 100%;
	min-width: 0;
	min-height: 44px;
	padding: 7px 2px;
	text-align: center;
	font-size: 19px;
	font-weight: 800;
}

.rly-phone-help {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 14px;
	color: var(--rly-account-muted);
	font-size: 11px;
}

.rly-phone-help__button {
	padding: 0;
	color: var(--rly-account-green);
	font: inherit;
	font-weight: 800;
	background: none;
	border: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.rly-phone-help__button:hover,
.rly-phone-help__button:focus-visible {
	color: #102f27;
}

.rly-verification-card form,
.rly-verification-card label {
	display: grid;
	gap: 8px;
}

.rly-licence-previews {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.rly-licence-upload-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
	width: 100%;
}

.rly-passport-upload-field,
.rly-passport-upload-field input[type="file"] {
	box-sizing: border-box;
	min-width: 0;
	max-width: 100%;
	width: 100%;
}

.rly-passport-upload-field input[type="file"] {
	overflow: hidden;
	height: 44px;
	padding: 5px 8px;
	font-size: 12px;
	line-height: 32px;
}

.rly-passport-upload-field input[type="file"]::file-selector-button {
	min-height: 32px;
	padding: 6px 11px;
	margin: 0 10px 0 0;
	font: inherit;
	font-weight: 700;
	line-height: 1.2;
	vertical-align: middle;
}

.rly-licence-previews {
	margin-top: 14px;
}

.rly-licence-previews figure {
	overflow: hidden;
	margin: 0;
	background: #f4f5f1;
	border: 1px solid var(--rly-account-border);
	border-radius: 10px;
}

.rly-licence-previews img {
	display: block;
	width: 100%;
	height: 112px;
	object-fit: contain;
	object-position: center;
	background: #eef1ef;
}

.rly-licence-previews figcaption {
	padding: 8px 10px;
	color: var(--rly-account-muted);
	font-size: 10px;
	font-weight: 750;
	background: #fff;
}

.rly-licence-extracted {
	padding: 12px;
	margin-top: 12px;
	background: #f7f8f4;
	border-radius: 10px;
}

.rly-licence-extracted > strong {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
}

.rly-licence-extracted dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px 12px;
	margin: 0 0 10px;
}

.rly-licence-extracted dl div {
	min-width: 0;
}

.rly-licence-extracted :is(dt, dd) {
	margin: 0;
	font-size: 10px;
}

.rly-licence-extracted dt {
	color: var(--rly-account-muted);
}

.rly-licence-extracted dd {
	overflow: hidden;
	font-weight: 800;
	text-overflow: ellipsis;
}

.rly-licence-extracted > span {
	display: inline-block;
	padding: 4px 7px;
	margin: 3px 3px 0 0;
	font-size: 9px;
	font-weight: 850;
	border-radius: 999px;
}

.rly-licence-extracted > span.is-valid {
	color: #1e624c;
	background: #dcefe7;
}

.rly-licence-extracted > span.is-invalid {
	color: #8a332a;
	background: #f8dfdc;
}

.rly-document-review-note {
	padding: 10px 12px;
	margin: 12px 0;
	color: #7e3029;
	background: #fff0ed;
	border: 1px solid #efc6c0;
	border-radius: 9px;
}

.rly-document-review-note strong,
.rly-document-review-note p {
	margin: 0;
	font-size: 11px;
}

.rly-document-review-note p {
	margin-top: 4px;
}

.rly-verification-card form + form {
	margin-top: 14px;
}

.rly-verification-card label span {
	font-size: 11px;
	font-weight: 800;
}

.rly-verification-card input {
	min-height: 44px;
	padding: 9px 12px;
	border: 1px solid var(--rly-account-border);
	border-radius: 9px;
}

.rly-verification-card .rly-button {
	justify-self: start;
	margin-top: 5px;
}

.rly-verification-card .rly-button--secondary {
	margin-left: 7px;
	color: var(--rly-account-green);
	background: #fff;
	border: 1px solid #9ebcb2;
}

.rly-verification-card ul {
	display: grid;
	gap: 8px;
	padding: 0;
	list-style: none;
}

.rly-verification-card li::before {
	content: "○";
	margin-right: 8px;
	color: #9aa6a2;
}

.rly-verification-card li.is-complete::before {
	content: "✓";
	color: #277559;
	font-weight: 900;
}

.rly-verification-feedback {
	min-height: 18px;
	margin-top: 12px;
	font-size: 12px;
}

.rly-verification-feedback[data-state="error"] { color: #9a2f35; }
.rly-verification-feedback[data-state="success"] { color: #23694f; font-weight: 750; }
.rly-verification-feedback[data-state="pending"] { color: #8b6509; }

.rly-passport-qr {
	display: grid;
	width: 164px;
	min-height: 164px;
	padding: 8px;
	margin: 14px 0;
	place-items: center;
	color: var(--rly-account-muted);
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 12px;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rly-passport-qr:hover,
.rly-passport-qr:focus-visible {
	border-color: var(--rly-account-green);
	box-shadow: 0 0 0 3px rgba(29, 79, 66, 0.12);
	transform: translateY(-1px);
}

.rly-passport-qr svg {
	display: block;
	width: 100%;
	height: auto;
}

.rly-passport-capture-link {
	display: inline-flex;
	margin: -4px 0 14px;
	color: var(--rly-account-green);
	font-size: 11px;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rly-mobile-capture-page {
	--rly-account-green: #1d4f42;
	--rly-account-muted: #667b74;
	--rly-account-border: #d7dfdb;
	--rly-account-cream: #f6f3eb;
	min-height: 100vh;
	margin: 0;
	color: var(--rly-account-green);
	background: #f6f3eb;
}

.rly-mobile-capture-page .rly-button {
	color: #fff !important;
	background: #1d4f42;
}

.rly-mobile-capture-page .rly-button:hover,
.rly-mobile-capture-page .rly-button:focus-visible {
	background: #173a30;
}

.rly-passport-preview,
.rly-licence-previews {
	position: relative;
}

.rly-document-edit {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	width: 34px;
	height: 34px;
	padding: 0;
	place-items: center;
	color: #fff;
	font-size: 19px;
	line-height: 1;
	background: rgba(20, 52, 44, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	box-shadow: 0 5px 16px rgba(18, 44, 37, 0.24);
	opacity: 0;
	transform: translateY(-3px);
	pointer-events: none;
	cursor: pointer;
	transition: opacity 150ms ease, transform 150ms ease, background 150ms ease;
	z-index: 5;
}

.rly-passport-preview:hover .rly-document-edit,
.rly-passport-preview:focus-within .rly-document-edit,
.rly-licence-previews:hover .rly-document-edit,
.rly-licence-previews:focus-within .rly-document-edit {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.rly-document-edit:hover,
.rly-document-edit:focus-visible {
	background: var(--rly-account-green);
}

.rly-document-edit svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

@media (hover: none) {
	.rly-document-edit {
		opacity: 0.92;
		transform: none;
		pointer-events: auto;
	}
}

.rly-document-replace-panel {
	padding-top: 4px;
}

.rly-document-replace-panel[hidden] {
	display: none !important;
}

.rly-mobile-capture {
	display: grid;
	width: min(100% - 32px, 560px);
	min-height: 100vh;
	margin: 0 auto;
	align-content: center;
	gap: 16px;
	padding: 28px 0;
}

.rly-mobile-capture__brand {
	font-family: Georgia, serif;
	font-size: 26px;
	font-weight: 800;
}

.rly-mobile-capture__card {
	padding: clamp(22px, 6vw, 38px);
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 20px;
	box-shadow: 0 18px 45px rgba(25, 53, 45, 0.1);
}

.rly-mobile-capture__card h1 {
	margin: 8px 0 10px;
	font-family: Georgia, serif;
	font-size: clamp(28px, 8vw, 40px);
	line-height: 1.06;
}

.rly-mobile-capture__card > p {
	margin: 0 0 22px;
	color: var(--rly-account-muted);
	line-height: 1.6;
}

.rly-mobile-capture__form {
	display: grid;
	gap: 16px;
}

.rly-mobile-capture__form input[type="file"] {
	border: 1px solid var(--rly-account-border);
	border-radius: 9px;
	background: #fff;
}

.rly-mobile-capture__card > small {
	display: block;
	margin-top: 16px;
	color: var(--rly-account-muted);
	line-height: 1.5;
}

.rly-passport-upload-field {
	display: grid;
	gap: 8px;
}

.rly-passport-upload-field > label {
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
}

.rly-upload-field-heading {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 800;
}

.rly-passport-guide {
	position: relative;
	display: inline-block;
	margin: 1px 0 8px;
	z-index: 4;
}

.rly-passport-guide__trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--rly-account-green);
	font-size: 11px;
	font-weight: 800;
	cursor: help;
}

.rly-passport-guide__trigger > span {
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	color: var(--rly-account-green);
	font-size: 11px;
	font-weight: 900;
	background: #edf5f1;
	border: 1px solid #9ebcb2;
	border-radius: 50%;
}

.rly-passport-guide:focus-visible {
	outline: 3px solid rgba(201, 147, 63, 0.35);
	outline-offset: 2px;
	border-radius: 4px;
}

.rly-passport-guide__popover {
	position: absolute;
	top: 26px;
	left: -40px;
	width: min(310px, 76vw);
	padding: 15px;
	color: var(--rly-account-ink);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.45;
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(24, 48, 41, 0.2);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	visibility: hidden;
	transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.rly-passport-guide:hover .rly-passport-guide__popover,
.rly-passport-guide:focus .rly-passport-guide__popover,
.rly-passport-guide:focus-within .rly-passport-guide__popover {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.rly-passport-guide__sample {
	position: relative;
	display: grid;
	grid-template-columns: 64px 1fr;
	grid-template-rows: 76px 26px;
	gap: 8px 10px;
	padding: 12px;
	margin: 10px 0;
	background: #f5efe1;
	border: 1px solid #cfbf9d;
	border-radius: 8px;
}

.rly-passport-guide__photo {
	display: block;
	background: linear-gradient(#b8c7c2 0 48%, #839e95 49% 100%);
	border: 4px solid #fff;
	border-radius: 3px;
}

.rly-passport-guide__lines {
	display: block;
	background: repeating-linear-gradient(to bottom, #9d967f 0 3px, transparent 3px 12px);
}

.rly-passport-guide__mrz {
	grid-column: 1 / -1;
	overflow: hidden;
	color: #4a4c45;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 8px;
	line-height: 1.35;
	white-space: nowrap;
}

.rly-passport-guide ul {
	gap: 5px;
	margin: 0;
}

.rly-passport-guide li::before {
	content: "✓";
	color: #277559;
}

.rly-passport-preview {
	position: relative;
	width: min(100%, 280px);
	margin: 14px 0 0;
	overflow: hidden;
	background: #e9eeeb;
	border: 1px solid var(--rly-account-border);
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(29, 56, 48, 0.1);
}

.rly-passport-result {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 10px;
	align-items: stretch;
	margin-top: 14px;
}

.rly-passport-result .rly-passport-preview {
	width: 100%;
	margin: 0;
}

.rly-passport-result .rly-document-extracted {
	min-width: 0;
	margin: 0;
}

.rly-passport-preview:focus-visible {
	outline: 3px solid rgba(201, 147, 63, 0.4);
	outline-offset: 3px;
}

.rly-passport-preview > img {
	display: block;
	width: 100%;
	height: 176px;
	object-fit: contain;
	object-position: center;
	background: #eef1ef;
}

.rly-passport-preview figcaption {
	padding: 8px 10px;
	color: var(--rly-account-muted);
	font-size: 10px;
	font-weight: 750;
	background: #fff;
}

.rly-passport-preview__details {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: center;
	gap: 8px;
	padding: 14px;
	color: #fff;
	font-size: 10px;
	background: rgba(20, 48, 40, 0.94);
	opacity: 0;
	transform: translateY(5px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.rly-passport-preview:hover .rly-passport-preview__details,
.rly-passport-preview:focus .rly-passport-preview__details,
.rly-passport-preview:focus-within .rly-passport-preview__details {
	opacity: 1;
	transform: translateY(0);
}

.rly-passport-preview__details dl,
.rly-passport-preview__details ul { margin: 0; }

.rly-passport-preview__details dl {
	display: grid;
	gap: 4px;
}

.rly-passport-preview__details dl > div {
	display: grid;
	grid-template-columns: 62px 1fr;
	gap: 6px;
}

.rly-passport-preview__details dt { color: #bcd1c9; }
.rly-passport-preview__details dd { margin: 0; font-weight: 750; }
.rly-passport-preview__details ul { gap: 3px; }
.rly-passport-preview__details li::before { margin-right: 6px; font-weight: 900; }
.rly-passport-preview__details li.is-valid::before { content: "✓"; color: #82ddb9; }
.rly-passport-preview__details li.is-invalid::before { content: "!"; color: #ffc5a8; }

@media (max-width: 600px) {
	.rly-passport-result {
		grid-template-columns: 1fr;
	}
}

.rly-vehicle-profile-context {
	display: grid;
	align-content: center;
	padding: 11px 13px;
	background: var(--rly-account-cream);
	border: 1px solid var(--rly-account-border);
	border-radius: 9px;
}

.rly-vehicle-profile-context span {
	color: var(--rly-account-muted);
	font-size: 10px;
	font-weight: 750;
}

.rly-vehicle-profile-context strong {
	margin-top: 3px;
	font-size: 12px;
}

.rly-dashboard__tiles {
	margin-top: 22px;
	padding-top: 4px;
}

.rly-dashboard__tiles-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

.rly-dashboard__tiles-header h3 {
	margin: 0;
	color: var(--rly-account-ink);
	font: 400 clamp(24px, 3vw, 32px) / 1.15 Georgia, "Times New Roman", serif;
}

.rly-dashboard__tiles-header p {
	max-width: 520px;
	margin: 0;
	color: var(--rly-account-muted);
	font-size: 13px;
	line-height: 1.6;
}

.rly-dashboard__tile-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.rly-dashboard__tile {
	padding: 18px;
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 14px;
	box-shadow: 0 12px 34px rgba(23, 53, 45, 0.06);
}

.rly-dashboard__tile-head {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.rly-dashboard__tile h4 {
	margin: 0;
	color: var(--rly-account-ink);
	font-size: 15px;
	font-weight: 800;
}

.rly-dashboard__tile-head span {
	flex: 0 0 auto;
	padding: 4px 8px;
	color: #8c612f;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: #f7efe1;
	border-radius: 999px;
}

.rly-dashboard__tile p {
	margin: 0 0 14px;
	color: var(--rly-account-muted);
	font-size: 13px;
	line-height: 1.6;
}

.rly-dashboard__tile a {
	color: #8c612f;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.rly-dashboard__tile a:hover {
	text-decoration: underline;
}

.rly-dashboard-panel {
	padding: clamp(24px, 3.5vw, 42px);
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(23, 53, 45, 0.08);
}

.rly-dashboard-panel > header {
	margin-bottom: 24px;
}

.rly-dashboard-panel > header h3 {
	margin: 0 0 9px;
	color: var(--rly-account-ink);
	font: 400 clamp(27px, 3vw, 38px) / 1.12 Georgia, "Times New Roman", serif;
}

.rly-dashboard-panel > header p {
	max-width: 760px;
	margin: 0;
	color: var(--rly-account-muted);
	font-size: 14px;
	line-height: 1.65;
}

.rly-driver-bookings-workspace {
	position: relative;
}

.rly-driver-bookings-workspace.is-ajax-loading {
	overflow: hidden;
	pointer-events: none;
}

.rly-driver-bookings-workspace.is-ajax-loading::before {
	position: absolute;
	z-index: 19;
	inset: 0;
	content: "";
	background: rgb(250 251 250 / 58%);
	border-radius: inherit;
}

.rly-driver-bookings-workspace.is-ajax-loading::after {
	position: absolute;
	z-index: 20;
	top: 50%;
	left: 50%;
	width: 34px;
	height: 34px;
	content: "";
	border: 3px solid rgb(36 91 73 / 18%);
	border-top-color: #245b49;
	border-radius: 50%;
	box-shadow: 0 5px 18px rgb(22 55 44 / 12%);
	transform: translate(-50%, -50%);
	animation: rly-quote-ajax-spin .7s linear infinite;
}

.rly-driver-bookings-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 0 22px;
	border-bottom: 1px solid #dfe5e1;
}

.rly-driver-bookings-tabs a {
	position: relative;
	display: grid;
	min-height: 74px;
	padding: 12px 16px 14px;
	grid-template-columns: 23px minmax(0, 1fr);
	gap: 11px;
	align-items: center;
	color: #63726d;
	text-align: left;
	text-decoration: none;
	border-radius: 10px 10px 0 0;
}

.rly-driver-bookings-tabs a::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	content: "";
	background: transparent;
	border-radius: 3px 3px 0 0;
}

.rly-driver-bookings-tabs a:hover,
.rly-driver-bookings-tabs a:focus-visible {
	color: #243e35;
	background: #f5f7f5;
}

.rly-driver-bookings-tabs a:focus-visible {
	outline: 2px solid #9bbcaf;
	outline-offset: -2px;
}

.rly-driver-bookings-tabs svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rly-driver-bookings-tabs span,
.rly-driver-bookings-tabs strong,
.rly-driver-bookings-tabs small {
	display: block;
}

.rly-driver-bookings-tabs strong {
	color: currentColor;
	font-size: 12px;
	font-weight: 850;
}

.rly-driver-bookings-tabs small {
	margin-top: 3px;
	font-size: 9px;
	font-weight: 650;
}

.rly-driver-bookings-tabs a:nth-child(1).is-active { color: #b14c3d; background: #fff8f6; }
.rly-driver-bookings-tabs a:nth-child(1).is-active::after { background: #c55746; }
.rly-driver-bookings-tabs a:nth-child(2).is-active { color: #3565a0; background: #f6f9fd; }
.rly-driver-bookings-tabs a:nth-child(2).is-active::after { background: #477ab7; }

.rly-booking-calendar {
	padding: 0;
}

.rly-driver-bookings-workspace .rly-availability {
	padding: 0;
	margin-top: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.rly-booking-calendar > .rly-booking-calendar__intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}

.rly-booking-calendar__intro h3,
.rly-driver-bookings-workspace .rly-availability__header h3 {
	margin: 0 0 7px;
	color: var(--rly-account-ink);
	font: 400 clamp(25px, 3vw, 34px) / 1.15 Georgia, "Times New Roman", serif;
}

.rly-booking-calendar__intro p,
.rly-driver-bookings-workspace .rly-availability__header p {
	max-width: 760px;
	margin: 0;
	color: var(--rly-account-muted);
	font-size: 13px;
	line-height: 1.6;
}

.rly-booking-calendar__summary {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: max-content;
	padding: 10px 14px;
	color: #31584d;
	background: #edf5f2;
	border: 1px solid #d7e7e0;
	border-radius: 12px;
}

.rly-booking-calendar__summary strong {
	font: 700 24px/1 Georgia, "Times New Roman", serif;
}

.rly-booking-calendar__summary span {
	font-size: 11px;
	font-weight: 750;
}

.rly-booking-calendar__toolbar {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	background: #f7f7f3;
	border: 1px solid var(--rly-account-border);
	border-bottom: 0;
	border-radius: 14px 14px 0 0;
}

.rly-booking-calendar__toolbar h4 {
	margin: 0;
	color: var(--rly-account-ink);
	font: 600 20px/1.2 Georgia, "Times New Roman", serif;
	text-align: center;
}

.rly-booking-calendar__nav {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	color: #244b40;
	font-size: 28px;
	line-height: 1;
	text-decoration: none;
	background: #fff;
	border: 1px solid #d7ded9;
	border-radius: 50%;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.rly-booking-calendar__nav:last-child {
	justify-self: end;
}

.rly-booking-calendar__nav:hover,
.rly-booking-calendar__nav:focus-visible {
	color: #fff;
	background: var(--rly-account-green);
	transform: translateY(-1px);
}

.rly-booking-calendar[aria-busy="true"] .rly-booking-calendar__grid {
	opacity: 0.5;
	pointer-events: none;
}

.rly-booking-calendar__scroll {
	overflow-x: auto;
	border: 1px solid var(--rly-account-border);
	border-radius: 0 0 14px 14px;
	overscroll-behavior-inline: contain;
}

.rly-booking-calendar__grid {
	min-width: 784px;
	background: #dfe5e1;
	transition: opacity 160ms ease;
}

.rly-booking-calendar__weekdays,
.rly-booking-calendar__week {
	display: grid;
	grid-template-columns: repeat(7, minmax(112px, 1fr));
	column-gap: 1px;
}

.rly-booking-calendar__weekdays {
	margin-bottom: 1px;
}

.rly-booking-calendar__week {
	position: relative;
	margin-bottom: 1px;
}

.rly-booking-calendar__week:last-child {
	margin-bottom: 0;
}

.rly-booking-calendar__weekday {
	padding: 9px 8px;
	color: #6b7d76;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
	background: #fff;
}

.rly-booking-calendar__day {
	padding: 9px;
	background: #fff;
	z-index: 0;
}

.rly-booking-calendar__day.is-outside {
	background: #fafaf8;
}

.rly-booking-calendar__day.is-outside .rly-booking-calendar__date,
.rly-booking-calendar__day.is-outside .rly-booking-calendar__events {
	opacity: 0.48;
}

.rly-booking-calendar__day.has-booking {
	background: #f7fbf9;
}

.rly-booking-calendar__date {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 7px;
}

.rly-booking-calendar__date time {
	display: grid;
	width: 27px;
	height: 27px;
	place-items: center;
	color: #40574f;
	font-size: 12px;
	font-weight: 800;
	border-radius: 50%;
}

.rly-booking-calendar__day.is-today .rly-booking-calendar__date time {
	color: #fff;
	background: #b77b37;
}

.rly-booking-calendar__date > span {
	min-width: 20px;
	padding: 3px 6px;
	color: #fff;
	font-size: 9px;
	font-weight: 850;
	text-align: center;
	background: #31584d;
	border-radius: 999px;
}

.rly-booking-calendar__event {
	position: relative;
	z-index: 2;
	display: flex;
	height: 27px;
	min-width: 0;
	padding: 0 10px;
	margin: 2px 4px;
	align-items: center;
	color: var(--booking-text, #244b40);
	background: var(--booking-bg, #e5f1ec);
	border: 1px solid var(--booking-border, #bad8cc);
	border-left: 4px solid var(--booking-accent, #3d7c68);
	border-radius: 7px;
	box-shadow: 0 2px 5px rgb(36 75 64 / 8%);
	font: inherit;
	text-align: left;
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
}
.rly-booking-calendar__event.booking-color-0 { --booking-bg:#cfe7dd;--booking-border:#8fc4b0;--booking-accent:#34755f;--booking-hover:#28614f; }
.rly-booking-calendar__event.booking-color-1 { --booking-bg:#d5e3f4;--booking-border:#98b7da;--booking-accent:#4675a6;--booking-hover:#365f89; }
.rly-booking-calendar__event.booking-color-2 { --booking-bg:#f2dec3;--booking-border:#dbb47f;--booking-accent:#b47733;--booking-hover:#936029; }
.rly-booking-calendar__event.booking-color-3 { --booking-bg:#e1d5f0;--booking-border:#baa0d8;--booking-accent:#7856a1;--booking-hover:#624584; }
.rly-booking-calendar__event.booking-color-4 { --booking-bg:#efd2da;--booking-border:#d99caf;--booking-accent:#a85068;--booking-hover:#883e53; }
.rly-booking-calendar__event.booking-color-5 { --booking-bg:#cce8eb;--booking-border:#8dc7cf;--booking-accent:#367f89;--booking-hover:#286872; }
.rly-booking-calendar__event.booking-color-6 { --booking-bg:#e1e8c7;--booking-border:#b8c77e;--booking-accent:#73843e;--booking-hover:#5d6c31; }
.rly-booking-calendar__event.booking-color-7 { --booking-bg:#ead5c8;--booking-border:#cea287;--booking-accent:#9c6043;--booking-hover:#7e4c35; }

.rly-booking-calendar__availability-event {
	--booking-bg: #fff2de;
	--booking-border: #dfbd87;
	--booking-accent: #a5682c;
	--booking-hover: #8a5422;
	--booking-text: #694119;
	background-image: repeating-linear-gradient(135deg, rgb(255 255 255 / 0%) 0, rgb(255 255 255 / 0%) 8px, rgb(165 104 44 / 7%) 8px, rgb(165 104 44 / 7%) 14px);
}

.rly-booking-calendar__block-icon {
	display: grid !important;
	width: 19px;
	height: 19px;
	margin-right: 6px;
	flex: 0 0 19px;
	place-items: center;
	font-size: 15px;
	line-height: 1;
	overflow: visible !important;
}

.rly-booking-calendar__event.is-unread {
	background: var(--booking-bg, #fff7f5);
	border-color: var(--booking-border, #e7b2aa);
	border-left-color: #c64e42;
	box-shadow: 0 3px 10px rgb(123 47 40 / 13%);
}

.rly-booking-calendar__event > img {
	width: 25px;
	height: 19px;
	margin-right: 6px;
	flex: 0 0 25px;
	object-fit: contain;
}

.rly-booking-calendar__vehicle-icon {
	display: grid;
	width: 25px;
	height: 19px;
	margin-right: 6px;
	flex: 0 0 25px;
	place-items: center;
	font-size: 16px;
	line-height: 1;
}

.rly-booking-calendar__vehicle-icon::before {
	display: none;
}

.rly-booking-calendar__vehicle-icon svg { display:block; width:23px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

.rly-booking-calendar__unread-dot {
	width: 7px;
	height: 7px;
	margin-right: 5px;
	flex: 0 0 7px;
	background: #d9433a;
	border: 1px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgb(166 50 43 / 18%);
}

.rly-booking-calendar__unread-dot[hidden] { display: none; }

.rly-booking-calendar__event:hover,
.rly-booking-calendar__event:focus-visible {
	color: #fff;
	background: var(--booking-hover, #2f705b);
	border-color: var(--booking-hover, #2f705b);
	outline: none;
	box-shadow: 0 4px 12px rgb(31 83 66 / 22%);
}

.rly-booking-calendar__event.is-booking-hovered,
.rly-booking-calendar__availability-event.is-availability-hovered,
.rly-booking-calendar__availability-event.is-availability-selected { color: #fff; background: var(--booking-hover, #2f705b); border-color: var(--booking-hover, #2f705b); box-shadow: 0 4px 12px rgb(31 83 66 / 22%); }

.rly-booking-calendar__event.continues-before {
	margin-left: 0;
	border-left-width: 1px;
	border-radius: 0 7px 7px 0;
}

.rly-booking-calendar__event.continues-after {
	margin-right: 0;
	border-radius: 7px 0 0 7px;
}

.rly-booking-calendar__event.continues-before.continues-after {
	border-radius: 0;
}

.rly-booking-calendar__event.is-completed {
	color: var(--booking-text, #354e46);
	background: var(--booking-bg, #dfe8e3);
	border-color: var(--booking-border, #b7c9c0);
	border-left-color: var(--booking-accent, #668174);
}

.rly-booking-calendar__event strong,
.rly-booking-calendar__event span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rly-booking-calendar__event strong {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 10px;
	font-weight: 800;
}

.rly-booking-calendar__continuation {
	display: inline-grid !important;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	place-items: center;
	color: var(--booking-accent, #2f705b);
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
	background: transparent;
	overflow: visible !important;
}

.rly-booking-calendar__continuation.is-start { margin: 0 5px 0 -5px; }
.rly-booking-calendar__continuation.is-end { margin: 0 -4px 0 auto; }
.rly-booking-calendar__finish { display:inline-block !important; margin:0 -3px 0 auto; flex:0 0 auto; font-size:15px; line-height:1; overflow:visible !important; }

.rly-booking-calendar__event.continues-from-previous-month:hover .rly-booking-calendar__continuation,
.rly-booking-calendar__event.continues-from-previous-month:focus-visible .rly-booking-calendar__continuation,
.rly-booking-calendar__event.continues-to-next-month:hover .rly-booking-calendar__continuation,
.rly-booking-calendar__event.continues-to-next-month:focus-visible .rly-booking-calendar__continuation {
	color: #fff;
	background: transparent;
}

.rly-booking-calendar__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 14px;
	color: #65776f;
	font-size: 11px;
	font-weight: 700;
}

.rly-booking-calendar__legend span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.rly-availability-calendar-modal[hidden] {
	display: none !important;
}

.rly-availability-calendar-modal {
	position: fixed;
	z-index: 10020;
	inset: 0;
	display: grid;
	padding: 24px;
	place-items: center;
}

.rly-availability-calendar-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(15 35 29 / 58%);
	backdrop-filter: blur(4px);
}

.rly-availability-calendar-modal > section {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	padding: 31px;
	color: var(--rly-account-ink);
	background: #fff;
	border: 1px solid rgb(217 198 168 / 70%);
	border-radius: 20px;
	box-shadow: 0 28px 80px rgb(11 35 28 / 28%);
}

.rly-availability-calendar-modal > section:focus {
	outline: none;
}

.rly-availability-calendar-modal__close {
	position: absolute;
	top: 15px;
	right: 15px;
	display: grid;
	width: 34px;
	height: 34px;
	padding: 0;
	place-items: center;
	color: #50655e;
	font: 400 25px/1 Arial, sans-serif;
	background: #f2f5f3;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.rly-availability-calendar-modal h3 {
	margin: 7px 42px 9px 0;
	font: 400 clamp(25px, 4vw, 32px)/1.15 Georgia, "Times New Roman", serif;
}

.rly-availability-calendar-modal p {
	margin: 0;
	color: var(--rly-account-muted);
	font-size: 13px;
	line-height: 1.65;
}

.rly-availability-calendar-modal__range {
	padding: 16px 18px;
	margin: 20px 0;
	background: #fff6e8;
	border: 1px solid #ead0a6;
	border-radius: 12px;
}

.rly-availability-calendar-modal__assurance {
	padding: 12px 14px;
	margin-top: 16px !important;
	color: #285c4a !important;
	font-weight: 700;
	background: #edf7f2;
	border: 1px solid #c7e1d5;
	border-radius: 10px;
}

.rly-availability-calendar-modal__range span,
.rly-availability-calendar-modal__range strong,
.rly-availability-calendar-modal__range small {
	display: block;
}

.rly-availability-calendar-modal__range span {
	margin-bottom: 5px;
	color: #94602e;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rly-availability-calendar-modal__range strong {
	font-size: 16px;
}

.rly-availability-calendar-modal__range small {
	margin-top: 7px;
	color: #765b3e;
	font-size: 11px;
}

.rly-availability-calendar-modal__range small[hidden] {
	display: none;
}

.rly-availability-calendar-modal__guidance {
	padding-left: 14px;
	border-left: 3px solid #3f7967;
}

.rly-availability-calendar-modal footer {
	display: flex;
	gap: 10px;
	margin-top: 24px;
	justify-content: flex-end;
}

.rly-availability-calendar-modal footer .rly-button:not(.rly-button--ghost) {
	color: #fff !important;
	background: var(--rly-account-green);
	border: 1px solid var(--rly-account-green);
	box-shadow: 0 5px 14px rgb(35 88 70 / 18%);
}

.rly-availability-calendar-modal footer .rly-button:not(.rly-button--ghost):hover,
.rly-availability-calendar-modal footer .rly-button:not(.rly-button--ghost):focus-visible {
	color: #fff !important;
	background: #173a30;
	border-color: #173a30;
	outline: none;
}

.rly-availability-calendar-modal footer .rly-button--ghost {
	color: #31584a !important;
	background: #f1f6f3;
	border: 1px solid #cbdad3;
	box-shadow: none;
}

.rly-availability-calendar-modal footer .rly-button--ghost:hover,
.rly-availability-calendar-modal footer .rly-button--ghost:focus-visible {
	color: #244b3e !important;
	background: #e4eee9;
	border-color: #aebfb7;
	outline: none;
}

.rly-booking-calendar__legend i {
	display: inline-block;
	width: 11px;
	height: 11px;
	background: #3d7c68;
	border-radius: 3px;
}

.rly-booking-calendar__legend i.is-today {
	background: #b77b37;
	border-radius: 50%;
}

.rly-booking-calendar__legend i.is-unavailable {
	background: #fff2de;
	border: 1px solid #dfbd87;
}

.rly-dashboard-empty {
	padding: 32px;
	text-align: center;
	background: var(--rly-account-cream);
	border: 1px dashed #cfd3cb;
	border-radius: 14px;
}

.rly-dashboard-empty strong {
	display: block;
	margin-bottom: 7px;
	color: var(--rly-account-ink);
}

.rly-dashboard-empty p {
	margin: 0;
	color: var(--rly-account-muted);
	font-size: 13px;
}

.rly-traveler-quotes__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
}

.rly-traveler-quotes__header .rly-button {
	flex: 0 0 auto;
	text-decoration: none;
}

.rly-quote-inbox-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 0 18px;
	border-bottom: 1px solid #dfe5e1;
}

.rly-quote-inbox-tabs a {
	position: relative;
	display: grid;
	min-height: 74px;
	padding: 12px 16px 14px;
	grid-template-columns: 23px minmax(0, 1fr) auto;
	gap: 11px;
	align-items: center;
	color: #63726d;
	text-decoration: none;
	border-radius: 10px 10px 0 0;
}

.rly-quote-inbox-tabs a::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	content: "";
	background: transparent;
	border-radius: 3px 3px 0 0;
}

.rly-quote-inbox-tabs a:hover,
.rly-quote-inbox-tabs a:focus-visible {
	color: #243e35;
	background: #f5f7f5;
}

.rly-quote-inbox-tabs a:focus-visible {
	outline: 2px solid #9bbcaf;
	outline-offset: -2px;
}

.rly-quote-inbox-tabs svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rly-quote-inbox-tabs span,
.rly-quote-inbox-tabs strong,
.rly-quote-inbox-tabs small {
	display: block;
}

.rly-quote-inbox-tabs strong {
	color: currentColor;
	font-size: 12px;
	font-weight: 850;
}

.rly-quote-inbox-tabs small {
	margin-top: 3px;
	font-size: 9px;
	font-weight: 650;
}

.rly-quote-inbox-tabs a > b {
	display: grid;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	place-items: center;
	color: #4b5e56;
	font-size: 9px;
	background: #e9eeeb;
	border-radius: 999px;
}
.rly-quote-inbox-tabs .rly-notification-dot { position:absolute; top:12px; right:13px; z-index:2; width:7px; height:7px; margin:0; }

.rly-quote-inbox-tabs a:nth-child(1).is-active { color: #b14c3d; background: #fff8f6; }
.rly-quote-inbox-tabs a:nth-child(1).is-active::after { background: #c55746; }
.rly-quote-inbox-tabs a:nth-child(2).is-active { color: #3565a0; background: #f6f9fd; }
.rly-quote-inbox-tabs a:nth-child(2).is-active::after { background: #477ab7; }
.rly-quote-inbox-tabs a:nth-child(3).is-active { color: #8b641d; background: #fffaf0; }
.rly-quote-inbox-tabs a:nth-child(3).is-active::after { background: #b98a2e; }
.rly-quote-inbox-tabs a:nth-child(4).is-active { color: #24644f; background: #f3faf6; }
.rly-quote-inbox-tabs a:nth-child(4).is-active::after { background: #2e765e; }

/* Unified traveler/provider messaging workspace. */
.rly-messages-workspace { overflow: hidden; transition: opacity .16s ease; }
.rly-messages-workspace.is-ajax-loading { opacity: .58; pointer-events: none; }
.rly-messages-workspace__intro { margin-bottom: 8px; }
.rly-message-tabs { height: 75px; min-height: 75px; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.rly-message-tabs a { height:74px; min-height:74px; max-height:74px; grid-template-columns: minmax(0, 1fr) auto; box-sizing:border-box; }
.rly-message-tabs strong { font-size: 13px; }
.rly-message-tabs strong { display:flex; align-items:center; gap:7px; }
.rly-message-tabs strong .rly-notification-dot { position:static; width:7px; height:7px; margin:0; }
.rly-message-tabs small { font-size: 10px; }
.rly-messages-workspace__empty { height: 620px; min-height: 620px; max-height: 620px; padding: 28px; margin: 0; box-sizing: border-box; }
.rly-messages-workspace__layout {
	display: grid;
	grid-template-columns: minmax(245px, 31%) minmax(0, 1fr);
	height: 620px;
	min-height: 620px;
	max-height: 620px;
	border: 1px solid #dce6e1;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
}
.rly-messages-workspace__list { min-height: 0; overflow-y: auto; border-right: 1px solid #dce6e1; background: #f8faf9; }
.rly-messages-workspace__list > a {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	gap: 11px;
	align-items: center;
	min-height: 89px;
	padding: 13px 12px;
	border-bottom: 1px solid #e3ebe7;
	color: #52645e;
	text-decoration: none;
}
.rly-messages-workspace__list > a:hover,
.rly-messages-workspace__list > a:focus-visible { background: #eff6f2; }
.rly-messages-workspace__list > a.is-current { background: #e6f1ec; box-shadow: inset 4px 0 #286f58; }
.rly-messages-workspace__list > a.is-unread > span:nth-child(2) strong,
.rly-messages-workspace__list > a.is-unread > span:nth-child(2) em { color: #163d31; font-weight: 800; }
.rly-message-avatar { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: #fff; background: #3a735f; font-size: 12px; font-weight: 850; }
.rly-messages-workspace__list > a > span:nth-child(2),
.rly-messages-workspace__list strong,
.rly-messages-workspace__list small,
.rly-messages-workspace__list em { display: block; min-width: 0; }
.rly-messages-workspace__list strong,
.rly-messages-workspace__list small,
.rly-messages-workspace__list em { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.rly-messages-workspace__list strong { color: #29483e; font-size: 13px; }
.rly-messages-workspace__list small { margin-top: 2px; color: #75847f; font-size: 10px; }
.rly-messages-workspace__list em { margin-top: 5px; color: #708079; font-size: 11px; font-style: normal; font-weight: 550; }
.rly-messages-workspace__list > a > i { position: absolute; top: 14px; right: 12px; width: 8px; height: 8px; border-radius: 50%; background: #d34a41; box-shadow: 0 0 0 3px #fff; }
.rly-messages-workspace__list time { align-self: end; color: #7b8984; font-size: 9px; white-space: nowrap; }
.rly-messages-workspace__thread { display: flex; min-width: 0; min-height: 0; height: 100%; padding: 0; overflow: hidden; flex-direction: column; background: #fff; }
.rly-messages-workspace__thread > header { display: flex; min-height: 58px; height: 58px; padding: 11px 16px; align-items: center; justify-content: space-between; flex: 0 0 58px; gap: 16px; background:#f5f8f6; box-sizing: border-box; }
.rly-messages-workspace__thread > header strong,
.rly-messages-workspace__thread > header small { display: block; }
.rly-messages-workspace__thread > header strong { color: #193e32; font-size: 16px; }
.rly-messages-workspace__thread > header small { margin-top: 3px; color: #788781; font-size: 11px; }
.rly-messages-workspace__thread-actions { display:flex; align-items:center; gap:8px; }
.rly-messages-workspace__thread-actions > span { padding: 6px 10px; border-radius: 999px; color: #2f6653; background: #edf5f1; font-size: 10px; font-weight: 800; }
.rly-messages-workspace__thread-actions > button { display:inline-flex; min-height:30px; padding:5px 10px; align-items:center; gap:6px; color:#fff; font:inherit; font-size:10px; font-weight:850; background:#286f58; border:0; border-radius:8px; cursor:pointer; }
.rly-messages-workspace__thread-actions > button:hover,
.rly-messages-workspace__thread-actions > button:focus-visible { background:#1d5644; outline:2px solid rgb(40 111 88 / 20%); outline-offset:2px; }
.rly-messages-workspace__thread .rly-quote-thread { display:flex; min-height:0; height: calc(100% - 58px); padding:0; margin:0; overflow:hidden; flex:1 1 auto; flex-direction:column; background:transparent; border:0; border-radius:0; box-shadow:none; }
.rly-messages-workspace__thread .rly-quote-thread > header { display:none; }
.rly-messages-workspace__thread .rly-quote-thread__conversation { display:flex; min-height:0; overflow:hidden; flex:1 1 auto; flex-direction:column; border:0; }
.rly-messages-workspace__thread .rly-quote-thread__items { min-height:0; height:auto; max-height:none; overflow-y:auto; flex:1 1 auto; border:0; }
.rly-messages-workspace__thread .rly-quote-thread form { flex:0 0 auto; border:0; }
.rly-messages-workspace__thread > .rly-quote-thread form > label > span { display:none; }
.rly-messages-quote-modal-source > .rly-traveler-offers { display:contents; }
.rly-messages-quote-modal-source > .rly-traveler-offers > :not(.rly-quote-review-backdrop) { display:none !important; }

@media (max-width: 900px) {
	.rly-message-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.rly-messages-workspace__layout { height:700px; min-height:700px; max-height:700px; grid-template-columns: 1fr; grid-template-rows:90px minmax(0, 1fr); }
	.rly-messages-workspace__list { display: flex; min-height:0; overflow-x: auto; overflow-y:hidden; border-right: 0; border-bottom: 1px solid #dce6e1; }
	.rly-messages-workspace__list > a { flex: 0 0 245px; border-right: 1px solid #e3ebe7; }
	.rly-messages-workspace__list > a.is-current { box-shadow: inset 0 -4px #286f58; }
	.rly-messages-workspace__empty { height:700px; min-height:700px; max-height:700px; }
}

@media (max-width: 620px) {
	.rly-message-tabs a { min-height: 66px; padding: 10px; }
	.rly-message-tabs { height:67px; min-height:67px; }
	.rly-message-tabs a { height:66px; max-height:66px; }
	.rly-message-tabs small { display: none; }
	.rly-messages-workspace__thread { padding: 0; }
	.rly-messages-workspace__thread > header { align-items: flex-start; }
	.rly-messages-workspace__thread > header > span { display: none; }
}

.rly-won-quotes-tools {
	display: grid;
	gap: 12px;
	padding: 14px;
	margin-bottom: 14px;
	background: #f7faf8;
	border: 1px solid #dfe8e3;
	border-radius: 12px;
}

.rly-won-quotes-tools__filters {
	display: grid;
	grid-template-columns: minmax(170px, 1.35fr) repeat(2, minmax(135px, .8fr)) minmax(145px, .9fr) auto;
	gap: 10px;
	align-items: end;
}

.rly-won-quotes-tools__filters label { min-width: 0; }
.rly-won-quotes-tools__filters label > span {
	display: block;
	margin-bottom: 5px;
	color: #53675f;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .045em;
	text-transform: uppercase;
}

.rly-won-quotes-tools__filters :is(input, select) {
	width: 100%;
	height: 40px;
	min-height: 40px;
	padding: 7px 10px;
	color: #28463b;
	font: inherit;
	font-size: 11px;
	background: #fff;
	border: 1px solid #d4dfda;
	border-radius: 8px;
	box-sizing: border-box;
}

.rly-won-quotes-tools__filters :is(input, select):focus {
	border-color: #8eb5a5;
	box-shadow: 0 0 0 3px rgb(63 139 112 / 12%);
	outline: none;
}

.rly-won-quotes-tools__clear {
	min-height: 38px;
	padding: 7px 12px;
	color: #52665f;
	font-size: 10px;
	font-weight: 800;
	background: #fff;
	border: 1px solid #d4dfda;
	border-radius: 8px;
	cursor: pointer;
}

.rly-won-quotes-tools__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 10px;
	border-top: 1px solid #e2e9e5;
}

.rly-won-quotes-tools__actions > small { margin-left: auto; color: #6d7d76; font-size: 10px; }
.rly-won-quotes-tools__select-all { display: inline-flex; align-items: center; gap: 7px; color: #36584c; font-size: 10px; font-weight: 800; cursor: pointer; }
.rly-won-quotes-tools__select-all input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rly-won-quotes-tools__select-all > span {
	position: relative;
	display: block;
	width: 17px;
	height: 17px;
	background: #fff;
	border: 1.5px solid #91a59c;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgb(27 65 51 / 10%);
}
.rly-won-quotes-tools__select-all input:checked + span,
.rly-won-quotes-tools__select-all input:indeterminate + span { background: #2e765e; border-color: #2e765e; }
.rly-won-quotes-tools__select-all input:checked + span::after {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 8px;
	height: 5px;
	content: "";
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(-45deg);
}
.rly-won-quotes-tools__select-all input:indeterminate + span::after { position: absolute; top: 7px; right: 3px; left: 3px; height: 2px; content: ""; background: #fff; border-radius: 2px; }
.rly-won-quotes-tools__select-all input:focus-visible + span { outline: 2px solid #83ad9c; outline-offset: 2px; }
.rly-won-quotes-tools__select-all b { font: inherit; }
.rly-won-quotes-tools [data-won-download-selected]:disabled { opacity: .48; cursor: not-allowed; }

.rly-provider-quote-market { position: relative; }
.rly-provider-quote-market.is-ajax-loading { overflow: hidden; pointer-events: none; }
.rly-provider-quote-market.is-ajax-loading::before {
	position: absolute; z-index: 19; inset: 0; content: ""; background: rgb(250 251 250 / 56%); border-radius: inherit;
}
.rly-provider-quote-market.is-ajax-loading::after {
	position: absolute; z-index: 20; top: 50%; left: 50%; width: 34px; height: 34px; content: "";
	border: 3px solid rgb(36 91 73 / 18%); border-top-color: #245b49; border-radius: 50%;
	box-shadow: 0 5px 18px rgb(22 55 44 / 12%); transform: translate(-50%, -50%); animation: rly-quote-ajax-spin .7s linear infinite;
}
@keyframes rly-quote-ajax-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .rly-provider-quote-market.is-ajax-loading::after { animation-duration: 1.5s; } }

.rly-quote-mail-list {
	overflow: hidden;
	border: 1px solid #dfe5e1;
	border-radius: 12px;
}

.rly-provider-quote-market .rly-quote-mail-list {
	min-height: 620px;
	overflow: visible;
	background: #fff;
}

.rly-quote-mail-header {
	position: sticky; z-index: 6; top: 0; display: grid;
	min-height: 38px;
	padding: 8px 13px;
	grid-template-columns: 9px minmax(115px, 1.15fr) minmax(130px, 1.1fr) minmax(78px, .65fr) minmax(58px, .48fr) minmax(72px, .62fr) minmax(56px, .48fr) minmax(92px, .8fr) minmax(92px, .8fr) minmax(84px, auto);
	gap: 12px;
	align-items: center;
	color: #788780;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .06em;
	text-transform: uppercase;
	background: #f3f6f4;
	border-bottom: 1px solid #dfe5e1;
}

.rly-quote-mail-row {
	display: grid;
	min-height: 70px;
	padding: 10px 13px;
	grid-template-columns: 11px minmax(125px, .7fr) minmax(230px, 1.7fr) minmax(150px, .8fr) auto;
	gap: 13px;
	align-items: center;
	color: #52645d;
	background: #f7f9f8;
	border-bottom: 1px solid #e5e9e6;
}

.rly-quote-mail-row:last-child { border-bottom: 0; }
.rly-quote-mail-row.is-unread { color: #213c33; background: #fff; }
.rly-quote-mail-row:hover { position: relative; z-index: 1; box-shadow: inset 3px 0 #2e765e, 0 3px 12px rgb(26 57 47 / 10%); }

.rly-quote-mail-row--new {
	grid-template-columns: 9px minmax(115px, 1.15fr) minmax(130px, 1.1fr) minmax(78px, .65fr) minmax(58px, .48fr) minmax(72px, .62fr) minmax(56px, .48fr) minmax(92px, .8fr) minmax(92px, .8fr) minmax(84px, auto);
	gap: 12px;
}

.rly-quote-mail-row__marker {
	display: block;
	width: 7px;
	height: 7px;
	background: #aeb9b4;
	border-radius: 50%;
}

.rly-quote-mail-row.is-unread .rly-quote-mail-row__marker { background: #c55746; }
.rly-quote-mail-row__sender,
.rly-quote-mail-row__subject,
.rly-quote-mail-row__meta { min-width: 0; }
.rly-quote-mail-row__sender strong,
.rly-quote-mail-row__sender small,
.rly-quote-mail-row__subject strong,
.rly-quote-mail-row__subject span,
.rly-quote-mail-row__meta strong,
.rly-quote-mail-row__meta small { display: block; }
.rly-quote-mail-row__sender strong,
.rly-quote-mail-row__subject strong { overflow: hidden; color: #203b32; font-size: 11px; font-weight: 850; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-mail-row__sender small { margin-top: 4px; color: #87938e; font: 700 8px ui-monospace, SFMono-Regular, Menlo, monospace; }
.rly-quote-mail-row__subject span { margin-top: 4px; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-mail-row__subject i { color: #9aaba4; font-style: normal; }
.rly-quote-mail-row__meta { text-align: right; }
.rly-quote-mail-row__meta strong { color: #344d44; font-size: 9px; }
.rly-quote-mail-row__meta small { margin-top: 4px; color: #7b8984; font-size: 9px; }

.rly-quote-mail-row__traveler,
.rly-quote-mail-row__dates,
.rly-quote-mail-row__days,
.rly-quote-mail-row__vehicle,
.rly-quote-mail-row__type,
.rly-quote-mail-row__quotes,
.rly-quote-mail-row__earning,
.rly-quote-mail-row__average {
	min-width: 0;
}

.rly-quote-mail-row__traveler strong,
.rly-quote-mail-row__traveler small,
.rly-quote-mail-row__dates strong,
.rly-quote-mail-row__dates small,
.rly-quote-mail-row__days strong,
.rly-quote-mail-row__days small,
.rly-quote-mail-row__vehicle strong,
.rly-quote-mail-row__type strong,
.rly-quote-mail-row__quotes strong,
.rly-quote-mail-row__quotes small,
.rly-quote-mail-row__earning strong,
.rly-quote-mail-row__earning small,
.rly-quote-mail-row__average strong,
.rly-quote-mail-row__average small { display: block; }

.rly-quote-mail-row__traveler strong {
	display: flex;
	overflow: hidden;
	align-items: center;
	gap: 6px;
	color: #203b32;
	font-size: 11px;
	font-weight: 850;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: help;
}

.rly-country-flag {
	display: inline-block;
	flex: 0 0 auto;
	font-size: 15px;
	line-height: 1;
}

.rly-quote-mail-row__traveler small {
	margin-top: 5px;
	overflow: hidden;
	color: #87938e;
	font: 700 8px ui-monospace, SFMono-Regular, Menlo, monospace;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rly-quote-mail-row__dates {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px 8px;
}

.rly-quote-mail-row__dates strong {
	color: #344d44;
	font-size: 9px;
	line-height: 1.35;
}

.rly-quote-mail-row__dates strong span {
	display: block;
	margin-bottom: 2px;
	color: #8a9792;
	font-size: 7px;
	font-weight: 800;
	text-transform: uppercase;
}

.rly-quote-mail-row__dates small {
	grid-column: 1 / -1;
	color: #63736d;
	font-size: 9px;
	font-weight: 750;
}

.rly-quote-mail-row__days,
.rly-quote-mail-row__quotes,
.rly-quote-mail-row__earning,
.rly-quote-mail-row__average { text-align: center; }
.rly-quote-mail-row__days strong { color: #244d3f; font: 700 21px/1 Georgia, "Times New Roman", serif; }
.rly-quote-mail-row__days small,
.rly-quote-mail-row__quotes small,
.rly-quote-mail-row__earning small,
.rly-quote-mail-row__average small { margin-top: 4px; color: #7c8a85; font-size: 8px; line-height: 1.25; }
.rly-quote-mail-row__vehicle strong { color: #354f45; font-size: 9px; line-height: 1.4; }
.rly-quote-mail-row__type strong {
	display: inline-flex;
	padding: 4px 6px;
	color: #315f50;
	font-size: 8px;
	font-weight: 850;
	line-height: 1.2;
	background: #eaf3ef;
	border-radius: 999px;
}
.rly-quote-mail-row__type strong.is-direct { color: #85493f; background: #fff0ec; }
.rly-quote-mail-row__quotes strong { color: #315f50; font-size: 12px; }
.rly-quote-mail-row__earning strong { color: #226045; font-size: 10px; white-space: nowrap; }
.rly-quote-mail-row__average strong { color: #243f36; font-size: 10px; white-space: nowrap; }

/* Provider quote inbox: dense, readable email-style rows. */
.rly-quote-mail-list--new { overflow: visible; }
.rly-quote-mail-list--new .rly-quote-mail-header,
.rly-quote-mail-list--new .rly-quote-mail-row--new {
	grid-template-columns: 27px minmax(145px, 1.2fr) minmax(175px, 1.25fr) minmax(105px, .82fr) minmax(92px, .66fr) minmax(105px, .76fr) minmax(105px, .76fr) minmax(105px, .75fr) 22px;
	gap: 11px;
}
.rly-quote-mail-list--new .rly-quote-mail-header { min-height: 36px; padding: 7px 12px; font-size: 10px; }
.rly-quote-mail-list--new .rly-quote-mail-header > span { text-align: left; }
.rly-quote-mail-item { position: relative; background: #f6f8f7; border-bottom: 1px solid #e3e8e5; }
.rly-quote-mail-item:last-child { border-bottom: 0; }
.rly-quote-mail-item.is-pinned { background: #eef6f2; box-shadow: inset 3px 0 #b1873e; }
.rly-quote-mail-item.is-pinned.is-unread { background: #f6fbf8; box-shadow: inset 3px 0 #b1873e; }
.rly-quote-mail-item.is-cancelled,
.rly-quote-mail-item.is-cancelled.is-pinned,
.rly-quote-mail-item.is-cancelled.is-unread { background: #fff1ef; box-shadow: inset 3px 0 #c74336; }
.rly-quote-mail-row__pin {
	position: absolute; z-index: 7; top: 25px; right: 8px; display: grid; width: 30px; height: 32px; padding: 0; place-items: center;
	color: #89968f; background: transparent; border: 0; border-radius: 7px; cursor: pointer; transform: translateY(-50%);
}
.rly-quote-mail-row__pin svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linejoin: round; }
.rly-quote-mail-item:not(.is-pinned) .rly-quote-mail-row__pin { opacity: 0; pointer-events: none; transition: opacity .16s ease, color .16s ease, background-color .16s ease; }
.rly-quote-mail-item:not(.is-pinned):hover .rly-quote-mail-row__pin,
.rly-quote-mail-item:not(.is-pinned):focus-within .rly-quote-mail-row__pin { opacity: 1; pointer-events: auto; }
.rly-quote-mail-row__pin:hover { color: #76581f; background: #fff5d9; }
.rly-quote-mail-row__pin[aria-pressed="true"] { color: #9a6b18; background: #ffefbd; }
.rly-quote-mail-row__pin[aria-pressed="true"] svg { fill: currentColor; }
.rly-quote-mail-row__pin:disabled { opacity: .5; cursor: wait; }
@media (hover: none) { .rly-quote-mail-item:not(.is-pinned) .rly-quote-mail-row__pin { opacity: 1; pointer-events: auto; } }
.rly-won-quote-select {
	position: absolute;
	z-index: 8;
	top: 38px;
	left: 12px;
	display: grid;
	width: 24px;
	height: 28px;
	place-items: center;
	cursor: pointer;
}
.rly-won-quote-select input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.rly-won-quote-select span {
	display: block;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 1.5px solid #9baba4;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgb(28 62 49 / 10%);
}
.rly-won-quote-select input:checked + span { background: #2e765e; border-color: #2e765e; }
.rly-won-quote-select input:checked + span::after { display: block; width: 8px; height: 5px; margin: 3px 0 0 3px; content: ""; border-bottom: 2px solid #fff; border-left: 2px solid #fff; transform: rotate(-45deg); }
.rly-won-quote-select input:focus-visible + span { outline: 2px solid #83ad9c; outline-offset: 2px; }
.rly-quote-mail-item[data-won-quote] .rly-quote-mail-row__chevron { opacity: 0; }
.rly-quote-mail-item[data-won-quote].is-selected { background: #eef8f3; box-shadow: none; }
.rly-quote-mail-item[data-won-quote] .rly-quote-mail-detail > div:nth-child(n+5):not(.rly-won-quote-detail-contact):not(.rly-quote-mail-detail__special-notes):not(.rly-quote-mail-detail__action) {
	display: none;
}
@media (min-width: 769px) {
	.rly-quote-mail-list--new[data-won-quotes-list] .rly-quote-mail-header,
	.rly-quote-mail-list--new[data-won-quotes-list] .rly-quote-mail-row--new {
		grid-template-columns: 46px minmax(145px, 1.2fr) minmax(175px, 1.25fr) minmax(105px, .82fr) minmax(92px, .66fr) minmax(105px, .76fr) minmax(105px, .76fr) minmax(105px, .75fr) 22px;
	}
	.rly-quote-mail-item[data-won-quote] .rly-quote-unread-slot { justify-self: end; }
}
.rly-won-quote-contact {
	display: grid;
	max-width: 100%;
	gap: 1px;
	margin-top: 5px;
}
.rly-won-quote-contact small {
	display: block;
	overflow: hidden;
	color: #526c62;
	font-size: 8px;
	font-weight: 700;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.rly-won-quote-detail-contact {
	padding: 12px 14px !important;
	background: #fff9dc !important;
	border: 1px solid #eedb8d !important;
	border-radius: 9px;
}
.rly-won-quote-detail-contact > strong { display: block; margin: 3px 0 5px; }
.rly-won-quote-detail-contact > small { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.rly-won-quote-detail-contact a { color: #235d49; font-weight: 800; text-decoration: none; }
.rly-won-quote-detail-contact a:hover { text-decoration: underline; }
.rly-quote-unread-slot { display: grid; width: 25px; height: 25px; place-items: center; }
.rly-quote-unread-dot,
.rly-notification-dot { display: inline-block; flex: 0 0 auto; width: 8px; height: 8px; background: #d94235; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px rgb(154 35 28 / 12%); box-sizing: content-box; }
.rly-quote-unread-dot[hidden],
.rly-notification-dot[hidden] { display: none !important; }
.rly-dashboard__sidebar nav > a { display: flex; align-items: center; gap: 8px; }
.rly-dashboard__sidebar a .rly-notification-dot { margin-left: auto; }
.rly-quote-mail-row--new {
	width: 100%; min-height: 76px; padding: 9px 12px; color: #52645d; font: inherit; text-align: left;
	background: transparent; border: 0; border-radius: 0; cursor: pointer; appearance: none;
}
.rly-quote-mail-item.is-unread { color: #213c33; background: #fff; }
.rly-quote-mail-item.is-unread .rly-quote-mail-row__marker { background: #c55746; }
.rly-quote-mail-item.is-unread .rly-quote-mail-row--new { font-weight: 700; }
.rly-quote-mail-item.is-read .rly-quote-mail-row--new { font-weight: 400; }
.rly-quote-mail-item:hover,
.rly-quote-mail-item:focus-within { z-index: 12; box-shadow: inset 3px 0 #2e765e, 0 3px 12px rgb(26 57 47 / 10%); }
.rly-quote-mail-item.is-cancelled:hover,
.rly-quote-mail-item.is-cancelled:focus-within { box-shadow: inset 3px 0 #c74336, 0 3px 12px rgb(104 39 32 / 12%); }
.rly-quote-mail-item.is-won,
.rly-quote-mail-item.is-won.is-unread {
	background: #f3faf6;
	box-shadow: inset 3px 0 #d5a62e;
}
.rly-quote-mail-item[data-won-quote].is-won,
.rly-quote-mail-item[data-won-quote].is-won.is-unread { box-shadow: none; }
.rly-quote-mail-item[data-won-quote]:hover,
.rly-quote-mail-item[data-won-quote]:focus-within { box-shadow: 0 3px 12px rgb(26 57 47 / 10%); }
.rly-quote-won-trophy,
.rly-quote-awarded-badge {
	display: inline-flex;
	min-height: 22px;
	padding: 3px 7px;
	margin-left: 7px;
	align-items: center;
	gap: 4px;
	color: #75550f;
	font-size: 9px;
	font-weight: 850;
	line-height: 1;
	background: #fff2c7;
	border: 1px solid #e8c968;
	border-radius: 999px;
	vertical-align: middle;
	white-space: nowrap;
}
.rly-quote-mail-row__traveler > .rly-quote-won-trophy,
.rly-traveler-offer-row__provider > .rly-quote-awarded-badge {
	display: flex;
	width: fit-content;
	max-width: 100%;
	margin: 5px 0 0;
	box-sizing: border-box;
}
.rly-quote-mail-row__traveler > .rly-quote-won-trophy + small { margin-top: 4px; }
.rly-traveler-offer-row__provider > .rly-quote-awarded-badge + .rly-traveler-offer-row__rating { margin-top: 5px !important; }
.rly-quote-won-trophy svg,
.rly-quote-awarded-badge svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rly-quote-mail-row--new:hover { box-shadow: none; }
.rly-quote-mail-row__traveler strong { font-size: 14px; }
.rly-quote-mail-row__traveler small { margin-top: 4px; font-size: 10px; }
.rly-quote-mail-row__trip { display: grid; min-width: 0; grid-template-columns: 54px 1fr; gap: 3px 9px; align-items: center; }
.rly-quote-mail-row__trip .rly-quote-mail-row__day-count { display: flex; grid-row: 1 / span 2; flex-direction: column; align-items: center; }
.rly-quote-mail-row__day-count b { color: #244d3f; font: 700 25px/1 Georgia, "Times New Roman", serif; }
.rly-quote-mail-row__day-count small { margin-top: 3px; color: #718079; font-size: 10px; font-weight: 700; white-space: nowrap; }
.rly-quote-mail-row__trip > span { display: flex; min-width: 0; color: #344d44; font-size: 12px; white-space: nowrap; }
.rly-quote-mail-row__trip i { width: 29px; color: #829089; font-size: 10px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.rly-quote-mail-row__vehicle { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; text-align: left; }
.rly-quote-mail-row__vehicle img { width: 40px; height: 24px; margin-bottom: 3px; object-fit: contain; mix-blend-mode: multiply; }
.rly-quote-mail-row__vehicle strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-mail-row__vehicle small { color: #74827c; font-size: 10px; }
.rly-quote-mail-list--sent .rly-quote-mail-row__vehicle strong {
	display: -webkit-box;
	line-height: 1.25;
	text-overflow: clip;
	white-space: normal;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.rly-quote-mail-row__quotes,
.rly-quote-mail-row__earning,
.rly-quote-mail-row__average { text-align: left; }
.rly-quote-mail-row__quotes strong { font-size: 15px; }
.rly-quote-mail-row__earning strong,
.rly-quote-mail-row__average strong { font-size: 13px; }
.rly-quote-mail-row__quotes small,
.rly-quote-mail-row__earning small,
.rly-quote-mail-row__average small { margin-top: 2px; font-size: 10px; }
.rly-quote-mail-row__quotes em { display: inline-flex; padding: 3px 6px; margin-top: 5px; color: #315f50; font-size: 9px; font-style: normal; font-weight: 800; background: #e4f0eb; border-radius: 999px; white-space: nowrap; }
.rly-quote-mail-row__quotes em.is-direct { color: #85493f; background: #fff0ec; }
.rly-quote-mail-row__submitted time,
.rly-quote-mail-row__submitted small { display: block; }
.rly-quote-mail-row__submitted time { color: #344d44; font-size: 12px; font-weight: 700; line-height: 1.25; }
.rly-quote-mail-row__submitted small { margin-top: 4px; color: #7c8a85; font-size: 10px; }
.rly-quote-mail-row__chevron { position: absolute; top: 49px; right: 14px; color: #66776f; font-size: 19px; line-height: 1; transition: transform .18s ease; }
.rly-quote-mail-item.is-expanded .rly-quote-mail-row__chevron { transform: rotate(180deg); }
.rly-inbox-tip { position: relative; }
.rly-inbox-tip::after {
	position: absolute; z-index: 15; bottom: calc(100% + 9px); left: 50%; width: max-content; max-width: 245px; padding: 7px 9px;
	color: #fff; font-size: 11px; font-weight: 600; line-height: 1.4; text-align: left; white-space: normal; content: attr(data-tooltip);
	background: #243b33; border-radius: 7px; box-shadow: 0 5px 14px rgb(24 48 40 / 22%); opacity: 0; pointer-events: none;
	transform: translate(-50%, 4px); transition: opacity .15s ease, transform .15s ease;
}
.rly-inbox-tip:hover::after { opacity: 1; transform: translate(-50%, 0); }
.rly-quote-mail-detail { display: grid; padding: 18px 44px 19px; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr) minmax(0, 1.22fr) minmax(0, .78fr); gap: 16px 22px; background: #fff; border-top: 1px solid #e3e8e5; }
.rly-quote-mail-detail[hidden] { display: none; }
.rly-quote-mail-detail > div { min-width: 0; }
.rly-quote-mail-detail > div > span,
.rly-quote-mail-detail > div > strong,
.rly-quote-mail-detail > div > small { display: block; }
.rly-quote-mail-detail > div > span { margin-bottom: 5px; color: #7a8983; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.rly-quote-mail-detail > div > strong { color: #28443a; font-size: 13px; line-height: 1.45; }
.rly-quote-mail-detail > div > small { margin-top: 4px; color: #718079; font-size: 11px; }
.rly-quote-mail-detail .is-wide { grid-column: 1 / -1; }
.rly-quote-mail-detail .rly-quote-mail-detail__special-notes {
	position: relative; padding: 14px 16px 14px 48px; color: #58451e; background: linear-gradient(135deg, #fff9dd, #fff2bd);
	border: 1px solid #e8d28b; border-radius: 10px; box-shadow: 0 4px 14px rgb(113 84 26 / 8%);
}
.rly-quote-mail-detail__special-notes::before { position: absolute; top: 14px; left: 17px; font-size: 20px; content: "✦"; }
.rly-quote-mail-detail .rly-quote-mail-detail__special-notes > span { color: #856522; }
.rly-quote-mail-detail .rly-quote-mail-detail__special-notes > strong { color: #58451e; font-weight: 650; }
.rly-quote-mail-detail__action { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 16px; padding-top: 11px; border-top: 1px solid #edf0ee; }
.rly-quote-mail-detail__action > span { margin: 0; text-transform: none; }
.rly-quote-mail-list--sent .rly-quote-mail-detail__action { justify-content: flex-end; }

.rly-account .rly-quote-mail-row__action {
	display: inline-flex;
	min-height: 34px;
	padding: 7px 10px;
	align-items: center;
	gap: 7px;
	color: #fff;
	font-size: 9px;
	font-weight: 850;
	text-decoration: none;
	white-space: nowrap;
	background: #245b49;
	border-radius: 8px;
}

.rly-account .rly-quote-mail-row__action:hover { color: #fff; background: #183f33; }
.rly-quote-mail-row__closed { color: #87938e; font-size: 9px; font-weight: 750; text-align: center; }
.rly-quote-status { display: inline-flex; width: fit-content; padding: 4px 7px; margin-left: auto; color: #315b4c; font-size: 8px; font-weight: 850; text-transform: uppercase; background: #e8f3ed; border-radius: 999px; }
.rly-quote-status.is-accepted { color: #225e46; background: #dff3e8; }
.rly-quote-status.is-declined { color: #8b4941; background: #f7e8e5; }
.rly-quote-inbox-empty { padding-right: 32px; padding-left: 32px; margin: 14px 14px 0; }
.rly-quote-inbox-empty .rly-button { display: inline-flex; margin-top: 16px; text-decoration: none; }
.rly-quote-pagination { display: flex; min-height: 48px; padding: 9px 12px; margin-top: 9px; align-items: center; justify-content: space-between; gap: 14px; color: #667970; background: #f6f8f7; border: 1px solid #dfe6e2; border-radius: 10px; }
.rly-quote-pagination > span { font-size: 11px; font-weight: 750; }
.rly-quote-pagination > div { display: flex; gap: 6px; }
.rly-quote-pagination button { display: grid; width: 34px; height: 30px; padding: 0; place-items: center; color: #31584a; font-size: 21px; line-height: 1; background: #fff; border: 1px solid #ccd8d2; border-radius: 7px; cursor: pointer; }
.rly-quote-pagination button:hover:not(:disabled) { color: #fff; background: #2e765e; border-color: #2e765e; }
.rly-quote-pagination button:disabled { color: #aab5b0; background: #eef1ef; cursor: default; }

/* Bottom quote composer: persistent, fast and review-first like an email draft. */
.rly-quote-compose-placeholder {
	padding: 34px 24px; color: #566b62; text-align: center; background: #f6f8f7; border: 1px dashed #cfd9d4; border-radius: 12px;
}
.rly-quote-compose-placeholder strong { display: block; color: #25473b; font-size: 15px; }
.rly-quote-compose-placeholder p { margin: 7px 0 0; font-size: 12px; }
.rly-quote-composer {
	position: fixed; z-index: 9996; right: clamp(14px, 3vw, 44px); bottom: 0; display: flex; width: min(840px, calc(100vw - 28px)); max-height: min(88vh, 920px);
	flex-direction: column; overflow: hidden; color: #243d34; background: #fff; border: 1px solid #cfd8d4; border-bottom: 0; border-radius: 15px 15px 0 0;
	box-shadow: 0 18px 65px rgb(16 39 31 / 28%); transform-origin: right bottom; animation: rly-compose-rise .2s ease-out;
}
@keyframes rly-compose-rise { from { opacity: 0; transform: translateY(28px) scale(.985); } }
.rly-quote-composer.is-minimized { width: min(390px, calc(100vw - 28px)); max-height: 58px; }
.rly-quote-composer.is-minimized .rly-quote-composer__body { display: none; }
.rly-quote-composer__header {
	display: flex; min-height: 58px; padding: 10px 12px 10px 18px; flex: 0 0 auto; align-items: center; justify-content: space-between; gap: 16px;
	color: #fff; background: #203f35; cursor: pointer;
}
.rly-quote-composer__header > div:first-child { display: flex; min-width: 0; flex-direction: column; }
.rly-quote-composer__header small { overflow: hidden; color: #b9d0c7; font: 700 9px ui-monospace, SFMono-Regular, Menlo, monospace; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-composer__header strong { margin-top: 3px; overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-composer__header > div:last-child { display: flex; gap: 3px; }
.rly-quote-composer__header button { display: grid; width: 34px; height: 34px; padding: 0; place-items: center; color: #fff; font: 400 21px/1 sans-serif; background: transparent; border: 0; border-radius: 7px; cursor: pointer; }
.rly-quote-composer__header button:hover { background: rgb(255 255 255 / 13%); }
.rly-quote-composer__body { min-height: 0; padding-bottom: 76px; overflow-y: auto; background: #eef3f0; overscroll-behavior: contain; }
.rly-quote-composer__request { padding: 18px 20px; background: linear-gradient(135deg, #f5f8f6, #fbfcfb); border-bottom: 1px solid #dfe6e2; }
.rly-quote-composer__request-title { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.rly-quote-composer__request-title span { color: #71837b; font-size: 9px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.rly-quote-composer__request-title h4 { margin: 3px 0 0; color: #203f35; font-size: 18px; }
.rly-quote-composer__request-title h4 span { font-size: 17px; }
.rly-quote-composer__request-title em { display: inline-flex; padding: 5px 8px; color: #356555; font-size: 9px; font-style: normal; font-weight: 850; background: #dfede7; border-radius: 999px; }
.rly-quote-composer__request-title em.is-direct { color: #874d43; background: #f9e9e5; }
.rly-quote-composer__trip-grid { display: grid; margin-top: 15px; grid-template-columns: minmax(0, .78fr) minmax(0, .78fr) minmax(0, 1.44fr); gap: 13px 18px; }
.rly-quote-composer__trip-grid > div { min-width: 0; }
.rly-quote-composer__trip-grid :is(span, strong, small) { display: block; }
.rly-quote-composer__trip-grid span { margin-bottom: 3px; color: #829089; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.rly-quote-composer__trip-grid strong { overflow: hidden; color: #29483e; font-size: 12px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-composer__trip-grid small { margin-top: 2px; overflow: hidden; color: #708078; font-size: 10px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-composer__trip-grid .is-route :is(strong, small) { overflow: visible; text-overflow: clip; white-space: normal; overflow-wrap: anywhere; }
.rly-quote-composer__trip-grid .is-route .is-same-location,
.rly-quote-mail-detail .is-same-location { color: #728079; font-style: italic; font-weight: 700; }
.rly-quote-composer__trip-grid .rly-quote-composer__preference { display: flex; align-items: center; gap: 8px; }
.rly-quote-composer__preference img { width: 43px; height: 25px; flex: 0 0 43px; object-fit: contain; mix-blend-mode: multiply; }
.rly-quote-composer__preference b { font: inherit; }
.rly-quote-composer__special-note { padding: 11px 13px; margin-top: 14px; color: #5d491f; background: #fff5cb; border: 1px solid #e9d58b; border-radius: 9px; }
.rly-quote-composer__special-note span { font-size: 9px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.rly-quote-composer__special-note p { margin: 4px 0 0; font-size: 11px; line-height: 1.5; }
.rly-provider-quote-form.rly-quote-composer__form { display: block; padding: 19px 20px 0; margin: 0; background: #eef3f0; border: 0; }
.rly-quote-composer--custom .rly-quote-composer__body > .rly-provider-request-card__summary,
.rly-quote-composer--custom .rly-quote-composer__body > p { margin-right: 20px; margin-left: 20px; }
.rly-quote-composer--custom .rly-quote-composer__body > .rly-provider-request-card__summary { padding-top: 18px; }
.rly-custom-offer-form__fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.rly-custom-offer-form__fields .is-wide { grid-column: 1 / -1; }
.rly-custom-offer__km-total { display: flex; min-height: 42px; padding: 8px 10px; align-items: center; color: #264b3f; font-size: 12px; font-weight: 850; background: #fff; border: 1px solid #c4d2cb; border-radius: 9px; box-sizing: border-box; }
.rly-quote-composer__offer-grid { display: grid; grid-template-columns: minmax(220px, 1.55fr) minmax(92px, .62fr) minmax(110px, .72fr) minmax(82px, .5fr) minmax(145px, .95fr); gap: 10px; }
.rly-quote-composer__offer-grid > label,
.rly-quote-composer__vehicle-offer { min-width: 0; }
.rly-quote-composer__vehicle-offer > label { display: block; }
.rly-quote-composer__vehicle-offer .rly-quote-composer__mileage { margin-top: 8px; }
.rly-quote-composer__offer-grid .is-double { grid-column: span 2; }
.rly-quote-composer__form label > span,
.rly-quote-composer__quick > span { display: block; margin-bottom: 6px; color: #314d43; font-size: 10px; font-weight: 850; }
.rly-quote-composer__form :is(input, select, textarea) { min-height: 42px; font-size: 12px; background: #fff; border-color: #c4d2cb; border-radius: 9px; }
.rly-quote-composer__offer-grid :is(input, select) { width: 100%; height: 42px !important; min-height: 42px !important; padding-top: 0; padding-bottom: 0; line-height: 40px; box-sizing: border-box; }
.rly-quote-composer__form :is(input, select, textarea):focus { outline: 2px solid rgb(46 118 94 / 18%); border-color: #2e765e; }
.rly-quote-service-picker { padding: 13px 14px; margin-top: 14px; background: #f7faf8; border: 1px solid #d8e3de; border-radius: 11px; }
.rly-quote-service-picker header strong { display: block; color: #29483e; font-size: 11px; }
.rly-quote-service-picker header small { display: block; margin-top: 3px; color: #718078; font-size: 9px; }
.rly-quote-service-picker__groups { display: grid; margin-top: 11px; grid-template-columns: 1fr 1fr; gap: 14px; }
.rly-quote-service-picker__group > span { display: block; margin-bottom: 6px; color: #315548; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.rly-quote-service-picker__group.is-exclusion > span { color: #98483d; }
.rly-quote-service-picker__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.rly-quote-service-picker__chips button { display: inline-flex; min-height: 29px; padding: 5px 9px; align-items: center; gap: 5px; color: #48655b; font-size: 9px; font-weight: 750; line-height: 1.25; text-align: left; background: #fff; border: 1px solid #d4e1db; border-radius: 999px; cursor: pointer; }
.rly-quote-service-picker__chips button b { font-size: 13px; line-height: 1; }
.rly-quote-service-picker__chips button:not(.is-exclusion):hover,
.rly-quote-service-picker__chips button:not(.is-exclusion).is-selected { color: #fff; background: #2e765e; border-color: #2e765e; }
.rly-quote-service-picker__chips button.is-exclusion:hover,
.rly-quote-service-picker__chips button.is-exclusion.is-selected { color: #fff; background: #b64f43; border-color: #b64f43; }
.rly-quote-service-picker__chips button.is-add-custom { color: #2e765e; background: transparent; border-style: dashed; }
.rly-quote-service-picker__chips button.is-add-custom.is-exclusion { color: #a14b40; background: transparent; border-color: #d9aaa3; }
.rly-quote-service-picker__custom { display: flex; margin-top: 8px; align-items: center; gap: 6px; }
.rly-quote-service-picker__custom[hidden] { display: none; }
.rly-quote-service-picker__custom input { flex: 1 1 auto; width: auto; height: 34px !important; min-height: 34px !important; }
.rly-quote-service-picker__custom button { min-height: 32px; padding: 5px 9px; color: #fff; font-size: 9px; font-weight: 800; background: #2e765e; border: 1px solid #2e765e; border-radius: 7px; cursor: pointer; }
.rly-quote-service-picker__custom button[data-quote-cancel-custom] { color: #61736c; background: transparent; border-color: transparent; }
.rly-quote-service-picker__custom.is-exclusion button[data-quote-save-custom] { background: #b64f43; border-color: #b64f43; }
.rly-quote-composer__message { display: flex; min-width: 0; margin-top: 14px; flex-direction: column; }
.rly-quote-composer__message-heading { display: flex !important; min-height: 30px; margin-bottom: 6px !important; align-items: center; justify-content: space-between; gap: 10px; }
.rly-quote-composer__message-heading label { color: #314d43; font-size: 10px; font-weight: 850; }
.rly-quote-composer__message-heading em { display: flex; gap: 6px; font-style: normal; }
.rly-quote-composer__message-heading button { padding: 5px 8px; color: #315d4e; font-size: 9px; font-weight: 800; background: #edf5f1; border: 1px solid #cfe1d9; border-radius: 999px; cursor: pointer; }
.rly-quote-composer__message-heading button:hover { color: #fff; background: #2e765e; border-color: #2e765e; }
.rly-quote-composer__message-heading button:disabled { opacity: .55; cursor: wait; }
.rly-quote-composer__message textarea { flex: 1 1 auto; width: 100%; min-height: 250px; resize: vertical; box-sizing: border-box; }
.rly-quote-composer__ai-feedback { display: block; min-height: 14px; margin-top: 4px; color: #718078; font-size: 9px; line-height: 1.35; }
.rly-quote-composer__ai-feedback.is-error { color: #a33f32; }
.rly-quote-standard-terms { display: grid; margin-top: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.rly-quote-standard-terms article { height: 100%; padding: 13px 14px; background: #fff; border: 1px solid #d4dfda; border-radius: 10px; box-sizing: border-box; }
.rly-quote-standard-terms h5 { margin: 0; color: #264b3f; font-size: 12px; }
.rly-quote-standard-terms ul { padding: 0 0 0 16px; margin: 8px 0 0; color: #5d6f68; font-size: 10px; line-height: 1.5; }
.rly-quote-standard-terms li + li { margin-top: 4px; }
.rly-quote-standard-terms p { margin: 8px 0 0; color: #5d6f68; font-size: 10px; line-height: 1.55; white-space: pre-line; }
.rly-quote-comparison__terms { display: grid; margin-top: 14px; gap: 12px; }
.rly-quote-comparison__terms > section { padding: 13px; background: #f6f9f7; border: 1px solid #dbe5e0; border-radius: 11px; }
.rly-quote-comparison__terms > section > h5 { margin: 0; color: #24483c; font-size: 12px; }
.rly-quote-comparison__terms .rly-quote-standard-terms { margin-top: 9px; }
.rly-quote-policy-editor { display: grid; margin-top: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.rly-quote-policy-editor > article { min-width: 0; height: 100%; padding: 14px 15px; background: #fff; border: 1px solid #d4dfda; border-radius: 10px; box-sizing: border-box; }
.rly-quote-policy-editor__toggle { display: flex !important; min-height: 22px; margin: 0; align-items: center; gap: 9px; color: #264b3f; font-size: 11px; font-weight: 850; line-height: 1.35; cursor: pointer; }
.rly-provider-quote-form .rly-quote-policy-editor__toggle input[type="checkbox"] { flex: 0 0 18px; width: 18px !important; min-width: 18px; height: 18px !important; min-height: 18px !important; padding: 0 !important; margin: 0; accent-color: #2e765e; box-sizing: border-box; }
.rly-provider-quote-form .rly-quote-policy-editor__toggle > span { display: inline; margin: 0; color: inherit; font: inherit; line-height: inherit; }
.rly-quote-policy-editor ul { padding: 0 0 0 16px; margin: 9px 0 0; color: #5d6f68; font-size: 10px; line-height: 1.5; }
.rly-quote-policy-editor__custom { display: block; min-width: 0; margin-top: 11px; }
.rly-provider-quote-form .rly-quote-policy-editor__custom > span { margin-bottom: 6px; line-height: 1.35; }
.rly-quote-policy-editor__custom textarea { display: block; width: 100%; height: 116px; min-height: 116px; line-height: 1.45; background: #fff; resize: none; box-sizing: border-box; }
.rly-quote-composer__review { padding-bottom: 8px; }
.rly-quote-composer__review-heading { padding: 3px 0 13px; border-bottom: 1px solid #e3e8e5; }
.rly-quote-composer__review-heading > span { color: #2e765e; font-size: 9px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.rly-quote-composer__review-heading h4 { margin: 4px 0 0; color: #223f35; font-size: 18px; }
.rly-quote-composer__review-heading p { margin: 4px 0 0; color: #718078; font-size: 11px; }
.rly-quote-composer__review dl { display: grid; margin: 15px 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 20px; }
.rly-quote-composer__review dl div { padding-bottom: 9px; border-bottom: 1px solid #edf0ee; }
.rly-quote-composer__review dl div.is-included { grid-column: 1; }
.rly-quote-composer__review dl div.is-excluded { grid-column: 2; }
.rly-quote-composer__review dt { color: #7a8982; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.rly-quote-composer__review dd { margin: 4px 0 0; color: #29483d; font-size: 12px; font-weight: 750; white-space: pre-line; }
.rly-quote-composer__review-message { padding: 14px; background: #fff; border: 1px solid #d8e2dd; border-radius: 10px; }
.rly-quote-composer__review-message span { color: #718078; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.rly-quote-composer__review-message p { margin: 7px 0 0; color: #2d473e; font-size: 12px; line-height: 1.55; white-space: pre-line; }

.rly-traveler-quote-inbox { min-width: 0; }
.rly-traveler-request-list { overflow: hidden; margin-top: 18px; background: #fff; border: 1px solid #dce5e1; border-radius: 12px; box-shadow: 0 8px 24px rgb(27 61 50 / 5%); }
.rly-traveler-request-list.rly-quote-mail-list--new { overflow: visible; }
.rly-traveler-request-list.rly-quote-mail-list--new > .rly-quote-mail-header,
.rly-traveler-request-list.rly-quote-mail-list--new > .rly-traveler-request-item > .rly-quote-mail-row--new { grid-template-columns: 27px minmax(128px, 1.2fr) minmax(155px, 1.25fr) minmax(90px, .82fr) minmax(70px, .6fr) minmax(90px, .72fr) minmax(75px, .62fr) minmax(90px, .72fr) 22px; gap: 8px; }
.rly-traveler-request-header,
.rly-traveler-request-row { display: grid; grid-template-columns: minmax(170px, 1.25fr) minmax(145px, 1fr) minmax(130px, .9fr) minmax(70px, .5fr) minmax(105px, .72fr) minmax(90px, .65fr) 22px; gap: 12px; align-items: center; }
.rly-traveler-request-header { min-height: 38px; padding: 7px 14px; color: #74827c; font-size: 9px; font-weight: 850; letter-spacing: .04em; background: #f1f5f3; text-transform: uppercase; box-sizing: border-box; }
.rly-traveler-request-item:not(.rly-quote-mail-item) { border-top: 1px solid #e2e8e5; }
.rly-traveler-request-item:not(.rly-quote-mail-item):first-of-type { border-top: 0; }
.rly-traveler-request-row { width: 100%; min-height: 74px; padding: 10px 14px; color: #385248; font: inherit; text-align: left; background: #fff; border: 0; cursor: pointer; box-sizing: border-box; }
.rly-traveler-request-row:hover { background: #f8fbf9; box-shadow: inset 3px 0 #2e765e; }
.rly-traveler-request-row > span { min-width: 0; }
.rly-traveler-request-row strong,
.rly-traveler-request-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rly-traveler-request-row strong { color: #24483c; font-size: 12px; }
.rly-traveler-request-row small { margin-top: 4px; color: #718078; font-size: 9px; font-weight: 650; }
.rly-traveler-request-row__reference strong { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.rly-traveler-request-row__responses strong { color: #2e765e; font-size: 17px; }
.rly-traveler-request-row__status strong { display: inline-flex; width: fit-content; padding: 4px 7px; color: #326450; font-size: 9px; background: #e6f2ed; border-radius: 999px; }
.rly-traveler-request-item.is-cancelled .rly-traveler-request-row__status strong { color: #97483d; background: #f9e9e6; }
.rly-traveler-request-row time { color: #54675f; font-size: 10px; }
.rly-traveler-request-row__chevron { color: #718078; font-size: 19px; transition: transform .16s ease; }
.rly-traveler-request-row[aria-expanded="true"] .rly-traveler-request-row__chevron { transform: rotate(180deg); }
.rly-traveler-request-detail { padding: 17px 18px 19px; background: #f7faf8; border-top: 1px solid #dfe7e3; }
.rly-traveler-request-facts { display: grid; margin-bottom: 15px; grid-template-columns: minmax(220px, 1.35fr) minmax(220px, 1.35fr) minmax(130px, .75fr) minmax(140px, .8fr); gap: 12px; }
.rly-traveler-request-facts > div { min-width: 0; padding: 10px 11px; background: #fff; border: 1px solid #e0e7e4; border-radius: 8px; }
.rly-traveler-request-facts span { display: block; color: #829089; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.rly-traveler-request-facts strong { display: block; margin-top: 4px; color: #2d4c41; font-size: 10px; line-height: 1.4; overflow-wrap: anywhere; }

.rly-traveler-offers { overflow: hidden; background: #fff; border: 1px solid #dae4df; border-radius: 10px; }
.rly-traveler-offers > header { display: flex; min-height: 44px; padding: 9px 12px; align-items: center; justify-content: space-between; gap: 12px; background: #edf4f0; box-sizing: border-box; }
.rly-traveler-offers > header strong { color: #294d40; font-size: 12px; }
.rly-traveler-offers > header span { color: #718078; font-size: 9px; }
.rly-traveler-offer-header,
.rly-traveler-offer-row { display: grid; grid-template-columns: 16px minmax(190px, 1.4fr) minmax(150px, 1.05fr) minmax(105px, .72fr) minmax(115px, .78fr) minmax(95px, .66fr) 22px; gap: 10px; align-items: center; }
.rly-traveler-offer-header { min-height: 32px; padding: 6px 12px; color: #7b8983; font-size: 8px; font-weight: 850; text-transform: uppercase; box-sizing: border-box; }
.rly-traveler-offer-item { position: relative; background: #f6f8f7; border-top: 1px solid #e6ebe9; }
.rly-traveler-offer-item.is-unread { background: #fff; }
.rly-traveler-offer-item.is-pinned { background: #eef6f2; box-shadow: inset 3px 0 #b1873e; }
.rly-traveler-offer-item.is-awarded,
.rly-traveler-offer-item.is-awarded.is-unread {
	background: #f5fbf7;
	box-shadow: inset 3px 0 #d4a62c;
}
.rly-traveler-offer-item.is-awarded:hover,
.rly-traveler-offer-item.is-awarded:focus-within { box-shadow: inset 3px 0 #d4a62c, 0 3px 12px rgb(95 74 20 / 10%); }
.rly-traveler-offer-item.is-cancelled,
.rly-traveler-offer-item.is-cancelled.is-pinned,
.rly-traveler-offer-item.is-cancelled.is-unread { background: #fff1ef; box-shadow: inset 3px 0 #c74336; }
.rly-traveler-offer-row { width: 100%; min-height: 74px; padding: 9px 38px 9px 12px; color: #40584f; font: inherit; text-align: left; background: transparent; border: 0; cursor: pointer; box-sizing: border-box; }
.rly-traveler-offer-row:hover { z-index: 1; background: #fbfdfc; box-shadow: inset 3px 0 #b1873e, 0 3px 12px rgb(27 61 50 / 8%); }
.rly-traveler-offer-row > span { min-width: 0; }
.rly-traveler-offer-row strong,
.rly-traveler-offer-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rly-traveler-offer-row strong { color: #29483e; font-size: 11px; }
.rly-traveler-offer-row small { margin-top: 3px; color: #75837d; font-size: 9px; }
.rly-traveler-offer-row__provider strong { display: flex; align-items: center; gap: 5px; font-size: 13px; }
.rly-traveler-offer-row__provider { display:flex; padding:6px 0; flex-direction:column; align-items:flex-start; }
.rly-traveler-offer-row__provider > strong { width:100%; line-height:1.25; }
.rly-traveler-offer-row__provider > .provider-external-review-badges { margin:7px 0 2px; }
.rly-traveler-offer-row__provider .external-review-badge { display:inline-flex; height:26px; min-height:26px; padding:4px 6px; overflow:visible; align-items:center; gap:4px; white-space:normal; }
.rly-traveler-offer-row__provider .external-review-badge strong { display:block; overflow:visible; color:#173f35; font-size:8px; line-height:1; text-overflow:clip; white-space:nowrap; }
.rly-traveler-offer-row__provider .external-review-badge small { display:block; overflow:visible; margin:0; color:#65776f; font-size:6px; line-height:1; text-overflow:clip; white-space:nowrap; }
.rly-traveler-offer-row__provider > .rly-traveler-offer-row__reference { margin-top:6px; }
.rly-provider-verified-badge { flex: 0 0 auto; min-height: 22px; padding: 3px 7px 3px 5px; font-size: 9px; }
.rly-provider-verified-badge svg { width: 14px; height: 14px; }
.rly-traveler-offer-row__rating { display: flex !important; margin-top: 5px !important; align-items: center; gap: 6px; overflow: visible !important; }
.rly-traveler-offer-row__rating > span:last-child { color: #677970; font-size: 9px; white-space: nowrap; }
.rly-traveler-offer-pin { position: absolute; z-index: 20; top: 5px; right: 8px; display: grid; width: 27px; height: 27px; padding: 0; place-items: center; color: #89968f; background: transparent; border: 0; border-radius: 6px; cursor: pointer; }
.rly-traveler-offer-pin svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linejoin: round; }
.rly-traveler-offer-item:not(.is-pinned) .rly-traveler-offer-pin { opacity: .28; transition: opacity .16s ease, color .16s ease, background-color .16s ease; }
.rly-traveler-offer-item:not(.is-pinned):hover .rly-traveler-offer-pin,
.rly-traveler-offer-item:not(.is-pinned):focus-within .rly-traveler-offer-pin { opacity: 1; }
.rly-traveler-offer-pin:hover { color: #76581f; background: #fff5d9; }
.rly-traveler-offer-pin[aria-pressed="true"] { color: #9a6b18; background: #ffefbd; }
.rly-traveler-offer-pin[aria-pressed="true"] svg { fill: currentColor; }
.rly-mini-stars { position: relative; display: inline-block !important; width: 70px; color: #d6d8d7; font-size: 13px; line-height: 1; letter-spacing: 1px; }
.rly-mini-stars i { color: #d6d8d7; font-style: normal; }
.rly-mini-stars b { position: absolute; top: 0; left: 0; overflow: hidden; color: #f3b51b; white-space: nowrap; }
.rly-traveler-offer-row__price strong { color: #1f5845; font-size: 14px; }
.rly-traveler-offer-row__status strong { display: inline-flex; width: fit-content; padding: 4px 7px; color: #356451; font-size: 8px; background: #e6f2ed; border-radius: 999px; }
.rly-traveler-offer-row__status.is-cancelled strong { color: #913a32; background: #ffe0dc; }
.rly-quote-accepted.is-cancelled { color: #973d34; background: #ffe7e3; border-color: #e4b3ad; }
.rly-traveler-offer-row__arrow { color: #9a7130; font-size: 18px; }

.rly-quote-review-backdrop { position: fixed; z-index: 100050; inset: 0; display: grid; padding: 24px; place-items: center; background: rgb(15 31 26 / 62%); backdrop-filter: blur(3px); }
.rly-modal-open .site-header { z-index: 0; }
.rly-quote-review-backdrop[hidden] { display: none; }
.rly-quote-review-modal { position: relative; display: flex; overflow: hidden; width: min(920px, 96vw); max-height: 92vh; flex-direction: column; background: #eef3f0; border: 1px solid #cfdad5; border-radius: 15px; box-shadow: 0 24px 70px rgb(8 24 19 / 35%); }
.rly-quote-review-modal > header { display: flex; flex: 0 0 auto; min-height: 50px; padding: 7px 14px 7px 17px; align-items: center; justify-content: space-between; color: #fff; background: #183e32; box-sizing: border-box; }
.rly-quote-review-modal > header small { color: #bcd0c8; font-size: 8px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.rly-quote-review-modal > header h3 { margin: 2px 0 0; color: #fff; font-size: 16px; line-height: 1.15; }
.rly-quote-review-modal > header button { display: flex; width: 30px; height: 30px; padding: 0 0 2px; align-items: center; justify-content: center; color: #fff; font: 400 22px/1 Arial, sans-serif; background: rgb(255 255 255 / 9%); border: 0; border-radius: 7px; cursor: pointer; box-sizing: border-box; }
.rly-quote-review-modal__body { overflow-y: auto; padding: 18px 20px 22px; }
.rly-quote-cancelled-banner { display: flex; padding: 11px 13px; margin: 0 0 13px; align-items: center; gap: 10px; color: #7f302a; background: #fff0ee; border: 1px solid #e7aaa4; border-radius: 9px; }
.rly-quote-cancelled-banner > span { display: grid; width: 24px; height: 24px; flex: 0 0 24px; place-items: center; color: #fff; font-size: 14px; font-weight: 900; background: #c74336; border-radius: 50%; }
.rly-quote-cancelled-banner div { display: grid; gap: 2px; }
.rly-quote-cancelled-banner strong { font-size: 12px; }
.rly-quote-cancelled-banner small { color: #92534d; font-size: 9px; }
.rly-quote-confirmed-banner { display: flex; padding: 11px 13px; margin: 0 0 13px; align-items: center; gap: 10px; color: #19533f; background: #eaf7f1; border: 1px solid #a9d8c3; border-radius: 9px; }
.rly-quote-confirmed-banner > span { display: grid; width: 24px; height: 24px; flex: 0 0 24px; place-items: center; color: #fff; font-size: 13px; font-weight: 900; background: #2f7b5f; border-radius: 50%; }
.rly-quote-confirmed-banner div { display: grid; gap: 2px; }
.rly-quote-confirmed-banner strong { font-size: 12px; }
.rly-quote-confirmed-banner small { color: #477463; font-size: 9px; }
.rly-confirmed-booking-contacts { padding: 12px 14px 14px; margin: 0 0 13px; color: #3f4634; background: #fffdf3; border: 1px solid #eadb9f; border-radius: 10px; box-shadow: 0 3px 10px rgb(104 84 21 / 6%); }
.rly-confirmed-booking-contacts > header { display: flex; margin-bottom: 10px; align-items: center; gap: 9px; }
.rly-confirmed-booking-contacts > header > span { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; color: #5a4a14; font-size: 13px; background: #ffe88b; border-radius: 50%; }
.rly-confirmed-booking-contacts > header div { display: grid; gap: 1px; }
.rly-confirmed-booking-contacts > header strong { color: #3a493e; font-size: 12px; }
.rly-confirmed-booking-contacts > header small { color: #77735d; font-size: 9px; }
.rly-confirmed-booking-contacts__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.rly-confirmed-booking-contacts__grid article { display: grid; min-width: 0; padding: 10px 11px; gap: 4px; background: #fff; border: 1px solid #eee6c6; border-radius: 8px; }
.rly-confirmed-booking-contacts__grid article > span { color: #867b55; font-size: 8px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.rly-confirmed-booking-contacts__grid article > strong { color: #29483e; font-size: 11px; }
.rly-confirmed-booking-contacts__grid mark { width: fit-content; max-width: 100%; padding: 1px 4px 2px; color: #3f422f; font-size: 10px; line-height: 1.35; background: linear-gradient(transparent 12%, #ffe77a 12%, #ffec9d 88%, transparent 88%); overflow-wrap: anywhere; }
.rly-confirmed-booking-contacts__grid mark a { color: inherit; font-weight: 750; text-decoration: none; }
.rly-confirmed-booking-contacts__grid mark a:hover { text-decoration: underline; }
.rly-book-confirmation { position: fixed; z-index: 100400; inset: 0; display: grid; padding: 18px; place-items: center; }
.rly-book-confirmation[hidden] { display: none; }
.rly-book-confirmation__backdrop { position: absolute; inset: 0; background: rgb(13 29 24 / 68%); border: 0; backdrop-filter: blur(3px); }
.rly-book-confirmation > section { position: relative; width: min(410px, calc(100vw - 30px)); padding: 25px 25px 20px; color: #315247; text-align: center; background: #fff; border: 1px solid #cbded5; border-radius: 16px; box-shadow: 0 25px 75px rgb(10 31 24 / 34%); }
.rly-book-confirmation small { color: #9a7130; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.rly-book-confirmation h3 { margin: 5px 0 8px; color: #193f33; font-size: 21px; }
.rly-book-confirmation p { margin: 0; color: #63766e; font-size: 12px; line-height: 1.55; }
.rly-book-confirmation footer { display: flex; margin-top: 20px; justify-content: center; gap: 9px; }
.rly-book-confirmation footer .rly-button { display: inline-flex !important; min-width: 112px; min-height: 42px; align-items: center; justify-content: center; gap: 6px; opacity: 1 !important; visibility: visible !important; }
.rly-book-confirmation footer [data-book-confirm-submit] { color: #fff !important; background: #2e765e !important; border: 1px solid #2e765e !important; }
.rly-book-confirmation footer [data-book-confirm-close] { color: #52615b !important; background: #e9edeb !important; border: 1px solid #d2d9d5 !important; }
.rly-book-confirmation [data-book-confirm-submit] .rly-reminder-modal__thumb { fill:none; stroke:currentcolor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; transform-origin:30% 80%; }
.rly-book-confirmation [data-book-confirm-submit].is-celebrating .rly-reminder-modal__thumb { animation:rly-reminder-thumbs-up .52s cubic-bezier(.2,.9,.3,1); }
.rly-provider-editor__external-reviews { grid-column: 1 / -1; overflow: hidden; background: #f7faf8; border: 1px solid #d8e3de; border-radius: 12px; }
.rly-provider-editor__external-reviews > summary { display: flex; min-height: 56px; padding: 0 16px; align-items: center; justify-content: space-between; color: #284b40; cursor: pointer; list-style: none; }
.rly-provider-editor__external-reviews > summary::-webkit-details-marker { display:none; }
.rly-provider-editor__external-reviews > summary span { display:flex; align-items:center; gap:8px; }
.rly-provider-editor__external-reviews > summary strong { font-size:12px; letter-spacing:.04em; text-transform:uppercase; }
.rly-provider-editor__external-reviews > summary small { padding:3px 7px; color:#687a73; font-size:8px; font-weight:850; background:#e8efeb; border-radius:999px; text-transform:uppercase; }
.rly-provider-editor__external-reviews > summary i::before { content:'+'; font-style:normal; font-size:20px; }
.rly-provider-editor__external-reviews[open] > summary i::before { content:'−'; }
.rly-provider-editor__external-reviews > div { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); padding:0 16px 16px; gap:14px; }
.rly-provider-editor__external-review { display:grid; grid-column:span 1; gap:6px; }
.rly-google-review-connect { position:relative; gap:12px; }
.rly-google-review-connect > label,.rly-google-place-picker > label { display:grid; gap:6px; }
.rly-google-place-picker { position:relative; display:grid; gap:6px; padding:11px; background:#fff; border:1px solid #dce6e1; border-radius:9px; }
.rly-google-place-picker__results { position:absolute; z-index:30; top:calc(100% - 5px); right:10px; left:10px; max-height:220px; padding:5px; overflow:auto; background:#fff; border:1px solid #cddbd4; border-radius:9px; box-shadow:0 12px 28px rgb(27 61 50 / 16%); }
.rly-google-place-picker__results button { display:block; width:100%; padding:9px 10px; color:#294b40; font-size:10px; line-height:1.35; text-align:left; background:#fff; border:0; border-radius:6px; cursor:pointer; }
.rly-google-place-picker__results button:hover,.rly-google-place-picker__results button:focus-visible { background:#edf6f2; outline:none; }
.rly-google-place-picker > small { color:#61766e; font-size:9px; line-height:1.4; }
.rly-external-review-sync-status { grid-column:1 / -1; display:flex; margin:0; padding:10px 12px; gap:7px; color:#577068; background:#fff; border:1px solid #dce6e1; border-radius:8px; font-size:10px; }
.rly-dashboard-review-qr__actions { display:flex; gap:5px; }
.rly-dashboard-review-qr__actions button { display:grid; width:28px; height:28px; padding:0; place-items:center; color:#2d6654; background:#f2f7f4; border:1px solid #c9ddd4; border-radius:50%; cursor:pointer; }
.rly-dashboard-review-qr__actions button:hover,.rly-dashboard-review-qr__actions button:focus-visible { color:#fff; background:#2d6654; outline:none; }
.rly-dashboard-review-qr__actions svg { width:14px; height:14px; fill:none; stroke:currentcolor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }
.rly-dashboard-review-qr > [data-review-qr-status] { width:100%; color:#537067; font-size:8px; text-align:right; }
.rly-quote-awarded-badge--request { width:fit-content; margin-top:3px; }
.rly-review-form__photos { display: grid; gap: 6px; }
.rly-review-delete { padding: 0; color: #a03f36; background: transparent; border: 0; cursor: pointer; }
.rly-quote-review-modal > footer { display: flex; flex: 0 0 auto; min-height: 58px; padding: 10px 18px; align-items: center; justify-content: flex-start; gap: 9px; background: #fff; border-top: 1px solid #dce4e0; box-sizing: border-box; }
.rly-quote-review-modal > footer form { margin: 0; }
.rly-quote-review-modal > footer .rly-button--ghost { color: #5f6f68 !important; background: #eef1ef !important; border-color: #d4dbd7 !important; box-shadow: none !important; }
.rly-quote-review-modal > footer .rly-button--secondary { color: #fff !important; background: #2e765e !important; border-color: #2e765e !important; text-decoration: none; }
.rly-quote-review-modal > footer .rly-button--danger { color: #9b3d34 !important; background: #fff !important; border-color: #dfaca6 !important; box-shadow: none !important; }
.rly-provider-quote-review__footer .rly-button--secondary { min-width: 104px; justify-content: center; }
.rly-quote-review-modal > footer.rly-provider-quote-review__footer .rly-provider-quote-review__close { min-width: 104px; color: #59665f !important; background: #e5e9e7 !important; border-color: #cbd2ce !important; box-shadow: none !important; }
.rly-quote-review-modal > footer.rly-provider-quote-review__footer .rly-provider-quote-review__close:hover,
.rly-quote-review-modal > footer.rly-provider-quote-review__footer .rly-provider-quote-review__close:focus-visible { color: #3f4d46 !important; background: #d7ddda !important; border-color: #bbc5c0 !important; }
.rly-quote-review-modal > footer.rly-provider-quote-review__footer .rly-button--danger { color: #fff !important; background: #b9463b !important; border-color: #b9463b !important; box-shadow: none !important; }
.rly-quote-review-modal > footer.rly-provider-quote-review__footer .rly-button--danger:hover,
.rly-quote-review-modal > footer.rly-provider-quote-review__footer .rly-button--danger:focus-visible { color: #fff !important; background: #96372f !important; border-color: #96372f !important; }
.rly-quote-review-modal > footer .rly-button--download-pdf {
	color: #245b49 !important;
	background: #eef7f3 !important;
	border-color: #b9d6ca !important;
	text-decoration: none;
}
.rly-quote-review-modal > footer .rly-button--download-pdf:hover,
.rly-quote-review-modal > footer .rly-button--download-pdf:focus-visible { color: #fff !important; background: #2e765e !important; border-color: #2e765e !important; }
.rly-quote-review-modal > footer .rly-button--cancel-trip {
	color: #a34037 !important;
	background: #fff8f7 !important;
	border-color: #e6b9b4 !important;
	box-shadow: none !important;
}
.rly-quote-review-modal > footer .rly-button--cancel-trip:hover,
.rly-quote-review-modal > footer .rly-button--cancel-trip:focus-visible { color: #fff !important; background: #b9463b !important; border-color: #b9463b !important; }
.rly-quote-review-modal a { color: #246b53; }
.rly-quote-modal-scroll-cue { position: absolute; z-index: 8; right: 22px; bottom: 72px; display: grid; width: 34px; height: 34px; padding: 0; place-items: center; color: #fff; background: #c8453b; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 5px 15px rgb(112 34 29 / 28%); cursor: pointer; }
.rly-quote-modal-scroll-cue[hidden] { display: none; }
.rly-quote-modal-scroll-cue svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; animation: rly-scroll-cue-pulse 1.8s ease-in-out infinite; }
.rly-quote-modal-scroll-cue:hover,
.rly-quote-modal-scroll-cue:focus-visible { background: #a9362e; }
.rly-quote-modal-scroll-cue:hover svg,
.rly-quote-modal-scroll-cue:focus-visible svg { animation: none; }
@keyframes rly-scroll-cue-pulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.rly-cancel-quote-confirmation { position: fixed; z-index: 100300; inset: 0; display: grid; padding: 18px; place-items: center; }
.rly-cancel-quote-confirmation[hidden] { display: none; }
.rly-cancel-quote-confirmation__backdrop { position: absolute; inset: 0; background: rgb(13 29 24 / 68%); backdrop-filter: blur(3px); }
.rly-cancel-quote-confirmation > section { position: relative; overflow: hidden; width: min(430px, calc(100vw - 30px)); background: #fff; border: 1px solid #dfc4c0; border-radius: 14px; box-shadow: 0 24px 70px rgb(12 30 24 / 35%); }
.rly-cancel-quote-confirmation header { display: flex; padding: 17px 18px 12px; align-items: center; gap: 11px; background: #fff5f3; border-bottom: 1px solid #eed7d3; }
.rly-cancel-quote-confirmation header > span { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; color: #fff; font-weight: 900; background: #bd493e; border-radius: 50%; }
.rly-cancel-quote-confirmation header small { color: #a04b42; font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.rly-cancel-quote-confirmation header h3 { margin: 2px 0 0; color: #65312c; font-size: 18px; }
.rly-cancel-quote-confirmation > section > p { padding: 18px; margin: 0; color: #5f6e68; font-size: 12px; line-height: 1.55; }
.rly-cancel-quote-confirmation footer { display: flex; padding: 11px 18px 16px; justify-content: flex-end; gap: 8px; }
.rly-cancel-quote-confirmation footer .rly-button--ghost { color: #52655d !important; background: #edf1ef !important; border-color: #d6ddda !important; }
.rly-cancel-quote-confirmation footer .rly-button--danger { color: #fff !important; background: #b9463b !important; border-color: #b9463b !important; }
body.rly-cancel-confirmation-open { overflow: hidden; }

.rly-quote-version-control { margin: 0 0 12px; }
.rly-quote-version-control > button { display: inline-flex; min-height: 29px; padding: 5px 9px; align-items: center; gap: 6px; color: #315d4e; font-size: 9px; font-weight: 850; background: #fff; border: 1px solid #cbdad3; border-radius: 999px; cursor: pointer; }
.rly-quote-version-control > button svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rly-quote-version-control > button:hover { color: #fff; background: #2e765e; border-color: #2e765e; }
.rly-quote-version-control > section { overflow: hidden; margin-top: 9px; background: #f8faf9; border: 1px solid #d5e0db; border-radius: 11px; }
.rly-quote-version-control > section[hidden] { display: none; }
.rly-quote-version-control > section > header { display: flex; min-height: 48px; padding: 9px 12px; align-items: center; justify-content: space-between; color: #fff; background: #294f42; box-sizing: border-box; }
.rly-quote-version-control > section > header small { color: #bed2ca; font-size: 8px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.rly-quote-version-control > section > header h4 { margin: 2px 0 0; color: #fff; font-size: 14px; }
.rly-quote-version-control > section > header button { display: grid; width: 28px; height: 28px; padding: 0 0 2px; place-items: center; color: #fff; font-size: 20px; background: rgb(255 255 255 / 9%); border: 0; border-radius: 6px; cursor: pointer; }
.rly-quote-version-control > section > p { padding: 9px 12px; margin: 0; color: #64766e; font-size: 9px; background: #eef4f1; border-bottom: 1px solid #dce5e1; }
.rly-quote-version-list { display: grid; padding: 10px; gap: 7px; }
.rly-quote-version { overflow: hidden; background: #fff; border: 1px solid #dce4e0; border-radius: 8px; }
.rly-quote-version.is-current { border-color: #a8cabc; box-shadow: inset 3px 0 #2e765e; }
.rly-quote-version > summary { display: grid; min-height: 48px; padding: 8px 10px 8px 13px; grid-template-columns: minmax(130px, 1fr) minmax(100px, auto) minmax(105px, auto) 16px; align-items: center; gap: 10px; color: #355046; cursor: pointer; list-style: none; }
.rly-quote-version > summary::-webkit-details-marker { display: none; }
.rly-quote-version > summary span:first-child strong,
.rly-quote-version > summary span:first-child small { display: block; }
.rly-quote-version > summary span:first-child strong { font-size: 11px; }
.rly-quote-version > summary span:first-child small { margin-top: 2px; color: #78877f; font-size: 8px; }
.rly-quote-version > summary time { color: #718079; font-size: 9px; text-align: right; }
.rly-quote-version > summary > b { color: #84928c; font-size: 15px; transition: transform .15s ease; }
.rly-quote-version[open] > summary > b { transform: rotate(180deg); }
.rly-quote-version__price { display: flex; align-items: center; justify-content: flex-end; gap: 7px; color: #205d48; font-size: 11px; font-weight: 850; }
.rly-quote-version__price em { padding: 3px 6px; font-size: 8px; font-style: normal; border-radius: 999px; }
.rly-quote-version__price em.is-reduced { color: #236344; background: #e1f3e8; }
.rly-quote-version__price em.is-increased { color: #98463d; background: #fbe5e2; }
.rly-quote-version__body { padding: 11px 13px 13px; border-top: 1px solid #e5ebe8; }
.rly-quote-version__changes { padding: 10px; margin-bottom: 10px; background: #fff9e8; border: 1px solid #ead9a4; border-radius: 7px; }
.rly-quote-version__changes > strong { color: #6d5626; font-size: 9px; text-transform: uppercase; }
.rly-quote-version__changes ul { padding: 0; margin: 7px 0 0; list-style: none; }
.rly-quote-version__changes li { display: grid; padding: 5px 0; grid-template-columns: minmax(100px, .7fr) minmax(0, 1fr) 14px minmax(0, 1fr); align-items: start; gap: 7px; color: #566860; font-size: 9px; border-top: 1px solid rgb(133 105 42 / 12%); }
.rly-quote-version__changes li:first-child { border-top: 0; }
.rly-quote-version__changes li > span { color: #735b27; font-weight: 800; }
.rly-quote-version__changes del { color: #99554d; white-space: pre-line; }
.rly-quote-version__changes ins { color: #236247; font-weight: 750; text-decoration: none; white-space: pre-line; }
.rly-quote-version__changes i { color: #9a8a65; font-style: normal; text-align: center; }
.rly-quote-version__body > dl { display: grid; padding: 10px; margin: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px 16px; background: #f7f9f8; border-radius: 7px; }
.rly-quote-version__body > dl > div { min-width: 0; }
.rly-quote-version__body > dl .is-wide { grid-column: 1 / -1; }
.rly-quote-version__body dt { color: #7b8983; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.rly-quote-version__body dd { margin: 3px 0 0; color: #344f45; font-size: 10px; font-weight: 700; line-height: 1.45; white-space: pre-line; }
.rly-quote-version__body dd small { display: block; margin-top: 3px; color: #73827b; font-size: 8px; }
.rly-quote-version__body dd.is-price { color: #1f634b; font-size: 16px; }
.rly-quote-version__original { padding: 8px 10px; margin: 0 0 10px; color: #5c7067; font-size: 9px; background: #edf4f1; border-radius: 6px; }
.rly-quote-version__chat-closed { display: flex; padding: 9px 10px; margin-top: 10px; align-items: center; gap: 8px; color: #765049; background: #f8efed; border-radius: 7px; }
.rly-quote-version__chat-closed > span { display: grid; width: 21px; height: 21px; flex: 0 0 21px; place-items: center; color: #fff; background: #aa5147; border-radius: 50%; }
.rly-quote-version__chat-closed p,
.rly-quote-version__chat-closed strong,
.rly-quote-version__chat-closed small { display: block; margin: 0; }
.rly-quote-version__chat-closed strong { font-size: 9px; }
.rly-quote-version__chat-closed small { margin-top: 2px; color: #906c66; font-size: 8px; }
.rly-quote-thread { overflow: hidden; padding: 0; margin-top: 14px; background: #d8f0e1; border: 1px solid #9fc8af; border-radius: 10px; }
.rly-quote-chat-separator { width:100%; height:1px; padding:0; margin:22px 0 0; background:#d8e2dd; border:0; }
.rly-quote-thread > header { display: flex; min-height: 43px; padding: 9px 13px; align-items: center; justify-content: space-between; gap: 10px; background: #34745d; box-sizing: border-box; }
.rly-quote-thread > header strong { color: #fff; font-size: 12px; }
.rly-quote-thread > header small { color: #d8eee5; font-size: 9px; }
.rly-quote-thread__conversation { position: relative; background: #e8f3ec url("../images/chat/tourdrivers-chat-pattern.webp") repeat; background-size: 600px 600px; }
.rly-quote-thread__items { display: grid; min-height: 150px; max-height: 340px; padding: 12px 20px 38px 12px; margin: 0; align-content: start; gap: 7px; overflow-y: auto; background: transparent; border-top: 1px solid rgb(255 255 255 / 45%); border-bottom: 0; scrollbar-gutter: stable; box-sizing: border-box; }
.rly-quote-thread__items article { position:relative; width:fit-content; max-width:min(76%,560px); padding:8px 10px; justify-self:start; overflow-wrap:anywhere; color:#344f45; background:#fff; border:1px solid rgb(46 94 75 / 10%); border-radius:9px; box-shadow:0 2px 5px rgb(33 74 57 / 7%); box-sizing:border-box; }
.rly-quote-thread__items article.is-mine { margin-left:0; justify-self:end; background:#fff; }
.rly-quote-thread__items article:has(.rly-quote-voice-message) { width:min(296px,76%); max-width:none; }
.rly-quote-thread__items article.is-speaker-start::before { position: absolute; top: 0; width: 10px; height: 13px; content: ""; background: #fff; }
.rly-quote-thread__items article.is-speaker-start:not(.is-mine)::before { left: -8px; clip-path: polygon(100% 0, 100% 100%, 0 0); }
.rly-quote-thread__items article.is-speaker-start.is-mine::before { right: -8px; clip-path: polygon(0 0, 100% 0, 0 100%); }
.rly-quote-thread__items article.is-continuation { margin-top: -4px; }
.rly-quote-thread__items article strong { font-size: 9px; }
.rly-quote-thread__items article > .rly-quote-message__sender { display: block; margin-bottom: 3px; }
.rly-quote-thread__items article p { margin: 3px 0 0; font-size: 11px; line-height: 1.45; white-space: pre-line; }
.rly-quote-thread__items article p img.emoji,
.rly-quote-thread__items article p img.wp-smiley { width: 20px !important; height: 20px !important; margin: 0 .08em !important; vertical-align: -.28em !important; }
.rly-quote-thread__items article time { display: block; margin-top: 4px; color: #7b8983; font-size: 8px; }
.rly-quote-thread__items article blockquote { padding: 6px 8px; margin: 0 0 6px; background: rgb(34 93 72 / 8%); border-left: 3px solid #4d8b74; border-radius: 4px; }
.rly-quote-thread__items article blockquote strong,
.rly-quote-thread__items article blockquote span { display: block; }
.rly-quote-thread__items article blockquote span { margin-top: 2px; overflow: hidden; color: #60746b; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-thread__items article > footer { display: flex; margin-top: 5px; align-items: center; gap: 5px; }
.rly-quote-thread__items article > footer time { margin: 0; }
.rly-quote-thread__items article > footer button { padding: 1px 3px; margin-left: auto; color: #4e6c61; font-size: 8px; background: transparent; border: 0; cursor: pointer; }
.rly-message-ticks { color: #87958f; font-size: 10px; font-weight: 900; letter-spacing: -3px; }
.rly-message-ticks.is-read { color: #1687d9; }
.rly-quote-thread__empty { justify-self: center; padding: 9px 13px; margin: 18px 0; color: #35594b; font-size: 11px; font-weight: 700; line-height: 1.4; text-align: center; background: rgb(255 255 255 / 88%); border: 1px solid rgb(65 111 92 / 16%); border-radius: 8px; box-shadow: 0 2px 7px rgb(37 76 59 / 7%); backdrop-filter: blur(2px); }
.rly-quote-typing { position: absolute; z-index: 2; bottom: 5px; left: 12px; display: flex; min-height: 26px; padding: 3px 8px; align-items: center; gap: 7px; color: #4f6f62; background: #e6f3eb; border: 0; border-radius: 6px; box-sizing: border-box; }
.rly-quote-typing[hidden] { display: none !important; }
.rly-quote-typing > span { display: inline-flex; min-width: 21px; height: 18px; align-items: center; justify-content: center; gap: 3px; background: transparent; border-radius: 0; box-shadow: none; }
.rly-quote-typing i { width: 4px; height: 4px; background: #4f806c; border-radius: 50%; animation: rly-chat-typing 1.1s infinite ease-in-out; }
.rly-quote-typing i:nth-child(2) { animation-delay: .14s; }
.rly-quote-typing i:nth-child(3) { animation-delay: .28s; }
.rly-quote-typing strong { font-size: 9px; font-weight: 750; }
@keyframes rly-chat-typing { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.rly-quote-thread form { padding: 12px 13px 13px; margin: 0; background: #f5f8f6; border-top: 1px solid #fff; }
.rly-quote-thread__closed { display: flex; min-height: 62px; padding: 11px 13px; align-items: center; gap: 10px; color: #70443f; background: #f7efed; border-top: 1px solid #dfc5c1; box-sizing: border-box; }
.rly-quote-thread__closed > span { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; color: #fff; font-size: 17px; line-height: 1; background: #aa5147; border-radius: 50%; }
.rly-quote-thread__closed div { display: grid; gap: 2px; }
.rly-quote-thread__closed strong { font-size: 11px; }
.rly-quote-thread__closed small { color: #8d625c; font-size: 9px; }
.rly-quote-reply-preview { display: flex; padding: 7px 9px; margin-bottom: 7px; align-items: center; justify-content: space-between; gap: 10px; background: #edf4f1; border-left: 3px solid #4d8b74; border-radius: 5px; }
.rly-quote-reply-preview[hidden] { display: none; }
.rly-quote-reply-preview span,
.rly-quote-reply-preview strong,
.rly-quote-reply-preview small { display: block; min-width: 0; }
.rly-quote-reply-preview small { overflow: hidden; margin-top: 2px; color: #697a73; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-reply-preview > button { padding: 2px 5px; color: #5f7069; font-size: 17px; background: transparent; border: 0; cursor: pointer; }
.rly-quote-thread form label > span { display: block; margin-bottom: 5px; color: #375348; font-size: 9px; font-weight: 850; }
.rly-chat-input-shell { position:relative; }
.rly-quote-thread form textarea { width: 100%; min-height: 74px; padding: 9px 10px; color: #263f36; font: inherit; font-size: 14px; line-height: 1.45; caret-color: #2e765e; background: #fff; border: 1px solid #cbd8d2; border-radius: 8px; box-sizing: border-box; resize: vertical; }
.rly-quote-thread form textarea:focus,
.rly-quote-thread form textarea:focus-visible { outline: 0; border-color: #5b917b; box-shadow: 0 0 0 3px rgb(46 118 94 / 14%); }
.rly-chat-translation { display:flex; min-height:34px; margin:0 0 9px; align-items:center; flex-wrap:wrap; gap:8px; color:#486359; font-size:10px; }
.rly-chat-translation > label { display:inline-flex; min-height:30px; padding:4px 9px; margin:0; align-items:center; gap:6px; background:#edf6f2; border:1px solid #c9ded5; border-radius:999px; cursor:pointer; }
.rly-chat-translation > label input { width:14px; height:14px; margin:0; accent-color:#286f58; }
.rly-chat-translation > label span { margin:0; color:#34715c; font-size:12px; }
.rly-chat-translation > label strong { font-size:10px; white-space:nowrap; }
.rly-chat-translation select { width:auto; min-width:105px; height:30px; padding:3px 28px 3px 9px; color:#36564b; font-size:10px; background-color:#fff; border:1px solid #cbd9d3; border-radius:8px; }
.rly-chat-translation select:disabled { opacity:.48; }
.rly-chat-voice-style { display:inline-flex; padding:2px; gap:2px; background:#e7f1ed; border:1px solid #cbded6; border-radius:999px; }
.rly-chat-voice-style button { display:flex; width:auto; min-width:53px; height:27px; padding:0 8px; align-items:center; justify-content:center; gap:4px; color:#60766e; background:transparent; border:0; border-radius:999px; cursor:pointer; }
.rly-chat-voice-style button[aria-pressed="true"] { color:#fff; background:#397a64; box-shadow:0 2px 7px rgb(32 92 72 / 20%); }
.rly-chat-voice-style button:disabled { opacity:.42; cursor:not-allowed; }
.rly-chat-voice-style svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.rly-chat-voice-style button > span { margin:0 !important; color:inherit !important; font-size:8px !important; font-weight:850; line-height:1; }
.rly-chat-translation > small { min-width:0; color:#71827b; font-size:9px; line-height:1.3; }
.rly-quote-voice-button { display:inline-flex; min-height:32px; padding:5px 9px; align-items:center; gap:6px; color:#36584c; background:#fff; border:1px solid #cbd8d2; border-radius:8px; cursor:pointer; }
.rly-quote-voice-button > span { color:#b84a43; font-size:10px; }
.rly-quote-voice-button > strong { font-size:10px; }
.rly-quote-voice-button.is-recording { color:#fff; background:#b94740; border-color:#b94740; animation:rly-voice-pulse 1.2s ease-in-out infinite; }
.rly-quote-voice-button.is-recording > span { color:#fff; }
@keyframes rly-voice-pulse { 50% { box-shadow:0 0 0 5px rgb(185 71 64 / 15%); } }
.rly-voice-waveform { position:absolute; z-index:2; inset:0; display:flex; min-height:74px; padding:10px 14px; align-items:center; gap:14px; color:#315b4c; background:#f5fbf8; border:1px solid #70a891; border-radius:8px; box-sizing:border-box; }
.rly-voice-waveform[hidden] { display:none !important; }
.rly-voice-waveform canvas { display:block; width:calc(100% - 180px); height:44px; min-width:100px; }
.rly-voice-waveform > span { display:grid !important; min-width:125px; margin:0 !important; gap:2px; color:#315b4c !important; }
.rly-voice-waveform strong { font-size:10px; white-space:nowrap; }
.rly-voice-waveform time { color:#b34740; font-size:12px; font-weight:850; font-variant-numeric:tabular-nums; }
.rly-voice-recording-counter { display:flex !important; margin:0 !important; align-items:baseline; gap:4px; }
.rly-voice-recording-counter small { color:#6c8178; font-size:9px; font-weight:750; white-space:nowrap; }
.rly-voice-recording-progress { display:block !important; width:100%; height:5px; overflow:hidden; margin:4px 0 0 !important; background:#d8e7e1; border-radius:999px; }
.rly-voice-recording-progress i { display:block; width:0; height:100%; background:linear-gradient(90deg,#397a64 0%,#6a947a 68%,#c6534b 100%); border-radius:inherit; transition:width .2s linear; }
.rly-voice-waveform.is-ready { background:#eef8f3; border-color:#4e9278; }
.rly-voice-waveform.is-limit-reached canvas { height:32px; margin-top:14px; animation:rly-voice-ready-wave 1.15s ease-in-out infinite; }
.rly-voice-waveform.is-limit-reached > span > strong { position:absolute; top:6px; left:14px; color:#28705a; font-size:10px; letter-spacing:.01em; animation:rly-voice-limit-blink 1.25s ease-in-out infinite; }
.rly-voice-waveform.is-limit-reached .rly-voice-recording-progress i { background:#397a64; }
@keyframes rly-voice-ready-wave { 50% { opacity:.5; transform:scaleY(.86); } }
@keyframes rly-voice-limit-blink { 50% { opacity:.38; } }
@media (prefers-reduced-motion:reduce) {
	.rly-voice-waveform.is-limit-reached canvas,
	.rly-voice-waveform.is-limit-reached > span > strong { animation:none; }
}
.rly-voice-waveform > button { display:grid; width:30px; height:30px; padding:0; flex:0 0 30px; place-items:center; color:#8e413b; font-size:20px; line-height:1; background:#fff; border:1px solid #dfbbb7; border-radius:50%; cursor:pointer; }
.rly-voice-waveform > button:hover,
.rly-voice-waveform > button:focus-visible { color:#fff; background:#aa4b44; border-color:#aa4b44; outline:0; }
.rly-ai-translation-badge { display:inline-flex; width:max-content; max-width:100%; padding:3px 7px; margin-top:5px; color:#416b5b; font-size:8px; font-weight:800; background:#edf7f2; border:1px solid #cbe2d7; border-radius:999px; }
.rly-quote-voice-message { display:grid; width:100%; max-width:100%; padding:7px 9px 6px; margin-top:7px; gap:5px; background:rgb(255 255 255 / 72%); border:1px solid rgb(66 112 94 / 16%); border-radius:10px; box-sizing:border-box; }
.rly-quote-voice-message > audio { position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }
.rly-voice-player__main { display:flex; min-width:0; align-items:center; gap:8px; }
.rly-voice-player__main > button { display:grid; width:31px; height:31px; padding:0; flex:0 0 31px; place-items:center; color:#fff; background:#397a64; border:0; border-radius:50%; cursor:pointer; }
.rly-voice-player__main > button span { margin-left:2px; font-size:11px; }
.rly-voice-player__main > button.is-playing span { margin-left:0; font-size:0; }
.rly-voice-player__main > button.is-playing span::after { content:'Ⅱ'; font-size:11px; font-weight:900; }
.rly-voice-player__main canvas { display:block; width:auto; min-width:0; height:34px; flex:1 1 auto; cursor:pointer; }
.rly-voice-player__speed { display:inline-flex; width:max-content; min-height:23px; padding:2px; align-items:center; gap:1px; color:#526d63; background:#edf4f1; border-radius:999px; }
.rly-voice-player__speed button { display:grid; width:20px; height:19px; padding:0; place-items:center; color:inherit; font-size:13px; font-weight:800; line-height:1; background:transparent; border:0; border-radius:50%; cursor:pointer; }
.rly-voice-player__speed button:hover:not(:disabled),
.rly-voice-player__speed button:focus-visible { color:#fff; background:#397a64; outline:0; }
.rly-voice-player__speed button:disabled { opacity:.32; cursor:not-allowed; }
.rly-voice-player__speed output { min-width:28px; color:#365c4e; font-size:8px; font-weight:850; text-align:center; font-variant-numeric:tabular-nums; }
.rly-voice-player__time { display:grid; min-width:34px; gap:0; text-align:right; font-variant-numeric:tabular-nums; }
.rly-voice-player__time time { color:#345a4c; font-size:9px; font-weight:800; }
.rly-voice-player__time small,
.rly-quote-voice-message small { color:#718079; font-size:8px; }
.rly-voice-player__footer { display:flex; min-width:0; align-items:center; justify-content:space-between; gap:8px; }
.rly-voice-player__versions { display:inline-flex; padding:2px; gap:2px; background:#e7f1ed; border-radius:999px; }
.rly-voice-player__versions button { padding:2px 6px; color:#587068; font-size:7px; font-weight:800; background:transparent; border:0; border-radius:999px; cursor:pointer; }
.rly-voice-player__versions button[aria-pressed="true"] { color:#fff; background:#397a64; }
.rly-ai-translate-message { display:inline-flex; width:max-content; max-width:100%; min-height:27px; padding:4px 8px; margin-top:6px; align-items:center; color:#2e6954; font-size:8px; font-weight:850; background:#eef8f3; border:1px solid #bcdccc; border-radius:999px; cursor:pointer; }
.rly-ai-translate-message:disabled { opacity:.62; cursor:wait; }
.rly-ai-translate-message[hidden] { display:none !important; }
.rly-quote-thread article.is-voice-sending { opacity:.9; }
.rly-voice-send-placeholder { display:grid; width:min(100%,340px); padding:10px 11px; gap:6px; color:#365c4e; background:rgb(255 255 255 / 78%); border:1px solid rgb(57 122 100 / 20%); border-radius:10px; box-sizing:border-box; }
.rly-voice-send-placeholder__wave { display:flex; height:27px; align-items:center; gap:3px; }
.rly-voice-send-placeholder__wave i { width:3px; height:9px; background:#6f9b8a; border-radius:99px; animation:rly-voice-sending-wave .9s ease-in-out infinite alternate; }
.rly-voice-send-placeholder__wave i:nth-child(2n) { height:18px; animation-delay:-.35s; }
.rly-voice-send-placeholder__wave i:nth-child(3n) { height:24px; animation-delay:-.6s; }
.rly-voice-send-placeholder strong { font-size:9px; }
.rly-voice-send-placeholder small { color:#74847e; font-size:8px; }
.rly-voice-send-placeholder__progress { height:4px; overflow:hidden; background:#dce9e3; border-radius:999px; }
.rly-voice-send-placeholder__progress span { display:block; width:8%; height:100%; background:linear-gradient(90deg,#397a64,#69a68e); border-radius:inherit; transition:width .18s ease; }
@keyframes rly-voice-sending-wave { from { transform:scaleY(.55); opacity:.58; } to { transform:scaleY(1); opacity:1; } }
@media (max-width:620px) {
	.rly-chat-translation > small { width:100%; }
	.rly-chat-translation select { min-width:96px; }
}
.rly-quote-message-toolbar { position: relative; display: flex; min-height: 34px; margin-top: 7px; align-items: center; gap: 7px; }
.rly-quote-message-status { margin-left: auto; }
.rly-quote-message-send { height: 34px; min-height: 34px !important; padding: 0 13px !important; line-height: 1 !important; }
.rly-quote-message-send:disabled { opacity:.58; cursor:wait; filter:saturate(.65); }
.rly-quote-emoji > button,
.rly-quote-attachment-button { display: inline-flex; width: auto; height: 34px; min-height: 34px; padding: 0 10px; margin: 0; align-items: center; justify-content: center; gap: 5px; color: #3e5d52; font-size: 11px; font-weight: 750; line-height: 1; background: #f5f8f6; border: 1px solid #cfdbd6; border-radius: 7px; cursor: pointer; box-sizing: border-box; }
.rly-quote-emoji > button { width: 34px; padding: 0; font-size: 18px; }
.rly-quote-emoji [data-quote-emoji-menu] { position: absolute; z-index: 8; bottom: 38px; left: 0; display: grid; padding: 7px; grid-template-columns: repeat(5, 32px); gap: 3px; background: #fff; border: 1px solid #d3ddd8; border-radius: 9px; box-shadow: 0 8px 24px rgb(21 52 42 / 18%); }
.rly-quote-emoji [data-quote-emoji-menu][hidden] { display: none; }
.rly-quote-emoji [data-quote-emoji-menu] button { display: grid; width: 32px; height: 32px; padding: 0; place-items: center; font-size: 18px; background: transparent; border: 0; border-radius: 5px; cursor: pointer; }
.rly-quote-emoji [data-quote-emoji-menu] button:hover { background: #edf5f1; }
.rly-quote-attachment-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.rly-quote-attachment-button input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.rly-quote-thread form .rly-quote-attachment-button > span { display: inline; margin: 0; line-height: 1; }
.rly-quote-attachment-name { max-width: 260px; overflow: hidden; color: #557067; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.rly-quote-attachment-clear { padding: 2px 5px; color: #805046; font-size: 17px; background: transparent; border: 0; cursor: pointer; }
.rly-quote-message-attachment { display: flex; width: fit-content; max-width: 100%; margin-top: 7px; align-items: center; gap: 7px; color: #28634f; font-size: 9px; font-weight: 750; text-decoration: none; }
.rly-quote-message-attachment img { display: block; width: 118px; height: 82px; object-fit: cover; border: 1px solid #cad8d2; border-radius: 7px; }
.rly-quote-message-attachment svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.rly-quote-review-trip { padding: 12px; background: #fff; border: 1px solid #d8e2dd; border-radius: 10px; }
.rly-quote-review-offer { padding: 13px; background: #fff; border: 1px solid #d8e2dd; border-radius: 10px; }
.rly-quote-composer__review dl.rly-quote-review-offer { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px 18px; }
.rly-quote-composer__review dl.rly-quote-composer__offer-review { padding: 14px; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 12px 16px; background: #fff; border: 1px solid #d8e2dd; border-radius: 10px; }
.rly-quote-composer__offer-review > div { padding-bottom: 0 !important; border-bottom: 0 !important; }
.rly-quote-composer__offer-review .rly-quote-review-provider { grid-column: span 2; }
.rly-quote-composer__offer-review .rly-quote-review-vehicle { grid-column: span 3; }
.rly-quote-composer__offer-review .rly-quote-review-validity { grid-column: span 1; }
.rly-quote-composer__offer-review .rly-quote-review-total { grid-column: span 2; }
.rly-quote-composer__offer-review .is-included { grid-column: 1 / span 4 !important; padding-top: 11px !important; border-top: 1px solid #e7ece9; }
.rly-quote-composer__offer-review .is-excluded { grid-column: 5 / span 4 !important; padding-top: 11px !important; border-top: 1px solid #e7ece9; }
.rly-quote-composer__offer-review .rly-quote-review-total dd strong { font-size: 25px; }
.rly-quote-composer__offer-review .rly-quote-review-validity dd { font-size: 13px; }
.rly-quote-review-provider { grid-column: 1 / span 2; }
.rly-quote-review-vehicle { grid-column: 3 / span 2; }
.rly-quote-review-total { grid-column: 5 / span 2; }
.rly-quote-review-provider__name { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.rly-quote-review-provider__name .rly-dashboard__verified-badge { min-height: 22px; padding: 3px 7px 3px 5px; font-size: 9px; }
.rly-quote-review-provider__name .rly-dashboard__verified-badge svg { width: 14px; height: 14px; }
.rly-quote-review-provider__rating { display: flex; margin-top: 7px; align-items: center; gap: 7px; color: #66786f; font-size: 10px; font-weight: 700; }
.rly-provider-rating-stack { display:grid; justify-items:start; gap:0; }
.rly-provider-rating-stack .rly-quote-review-provider__rating { margin-top:7px; }
.rly-quote-review-provider .provider-external-review-badges { margin-top:7px; }
.rly-quote-composer__offer-review .provider-external-review-badges { margin-top:8px; }
.rly-review-form-card > header .provider-external-review-badges { margin-top:7px; }
.rly-review-history article > div > .provider-external-review-badges { margin-right:auto; }
.rly-review-provider-rating-stack { display:grid; margin-top:6px; justify-items:start; gap:5px; }
.rly-review-provider-platform-rating { display:flex; align-items:center; gap:5px; color:#d7a43f; font-size:10px; letter-spacing:.02em; }
.rly-review-provider-platform-rating b { color:#36584c; }
.rly-review-provider-platform-rating small { color:#74847d; font-size:8px; letter-spacing:0; }
.rly-driver-preview-card .external-review-badge { pointer-events:none; }
.rly-quote-review-provider dd > small { display: block; margin-top: 6px; color: #829089; font-size: 9px; font-weight: 750; }
.rly-quote-review-total dd strong { display: block; color: #185c45; font-size: clamp(21px, 2.2vw, 28px); line-height: 1.05; white-space: nowrap; }
.rly-quote-review-total dd small { display: block; margin-top: 7px; color: #687a72; font-size: 10px; font-weight: 700; line-height: 1.35; }
.rly-quote-composer__review dl.rly-quote-review-offer div.is-included { grid-column: 1 / span 3; }
.rly-quote-composer__review dl.rly-quote-review-offer div.is-excluded { grid-column: 4 / span 3; }
.rly-quote-trip-vehicle { display: flex; align-items: center; gap: 9px; }
.rly-quote-trip-vehicle img { flex: 0 0 42px; width: 42px; height: 26px; object-fit: contain; }
.rly-quote-review-vehicle dd { display: flex; position: relative; align-items: center; gap: 10px; }
.rly-quote-review-vehicle__copy { white-space: pre-line; }
.rly-quote-vehicle-preview { position: relative; display: inline-flex; flex: 0 0 auto; }
.rly-quote-vehicle-preview > button { display: block; overflow: hidden; width: 78px; height: 54px; padding: 0; background: #edf2ef; border: 1px solid #cad7d1; border-radius: 8px; cursor: pointer; }
.rly-quote-vehicle-preview > button > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.rly-quote-vehicle-preview__panel { position: absolute; z-index: 30; bottom: calc(100% + 9px); left: 0; width: min(360px, calc(100vw - 70px)); padding: 8px; color: #29483d; background: #fff; border: 1px solid #d5dfda; border-radius: 12px; box-shadow: 0 18px 45px rgb(14 42 33 / 24%); }
.rly-quote-vehicle-preview__panel[hidden] { display: none; }
.rly-quote-vehicle-preview__panel::after { position: absolute; top: 100%; left: 28px; width: 11px; height: 11px; content: ""; background: #fff; border-right: 1px solid #d5dfda; border-bottom: 1px solid #d5dfda; transform: translateY(-6px) rotate(45deg); }
.rly-quote-vehicle-preview__stage { position: relative; display: block; height: 220px; overflow: hidden; background: #e8eeeb; border-radius: 9px; }
.rly-quote-vehicle-preview__stage figure { position: absolute; inset: 0; margin: 0; }
.rly-quote-vehicle-preview__stage figure[hidden] { display: none; }
.rly-quote-vehicle-preview__stage figure > button { display: block; width: 100%; height: 100%; padding: 0; background: transparent; border: 0; cursor: zoom-in; }
.rly-quote-vehicle-preview__stage figure img { display: block; width: 100%; height: 100%; object-fit: contain; background: #edf2ef; }
.rly-quote-vehicle-preview__stage figcaption { position: absolute; right: 8px; bottom: 8px; padding: 4px 7px; color: #fff; font-size: 9px; background: rgb(17 43 35 / 78%); border-radius: 999px; }
.rly-quote-vehicle-preview__stage > button { position: absolute; z-index: 2; top: 50%; display: flex; width: 30px; height: 30px; padding: 0 0 3px; align-items: center; justify-content: center; color: #fff; font: 400 22px/1 Arial, sans-serif; background: rgb(17 43 35 / 70%); border: 0; border-radius: 50%; transform: translateY(-50%); cursor: pointer; box-sizing: border-box; }
.rly-quote-vehicle-preview__stage > button.is-previous { left: 8px; }
.rly-quote-vehicle-preview__stage > button.is-next { right: 8px; }
.rly-quote-vehicle-preview__footer { display: flex; padding: 8px 3px 2px; align-items: center; justify-content: space-between; gap: 8px; font-size: 10px; }
.rly-quote-vehicle-viewer { position: fixed; z-index: 100200; inset: 0; display: grid; padding: 28px; place-items: center; }
body.rly-vehicle-viewer-open { overflow: hidden; }
.rly-quote-vehicle-viewer[hidden] { display: none; }
.rly-quote-vehicle-viewer__backdrop { position: absolute; inset: 0; background: rgb(10 24 20 / 82%); backdrop-filter: blur(4px); }
.rly-quote-vehicle-viewer__panel { position: relative; display: flex; overflow: hidden; width: min(920px, 94vw); height: min(720px, 90vh); flex-direction: column; background: #f4f7f5; border: 1px solid #cad7d1; border-radius: 15px; box-shadow: 0 26px 80px rgb(3 14 10 / 45%); }
.rly-quote-vehicle-viewer__panel > header { display: flex; min-height: 58px; padding: 10px 16px; align-items: center; justify-content: space-between; color: #fff; background: #173e32; box-sizing: border-box; }
.rly-quote-vehicle-viewer__panel > header small { color: #bcd0c8; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.rly-quote-vehicle-viewer__panel > header h4 { margin: 3px 0 0; color: #fff; font-size: 17px; }
.rly-quote-vehicle-viewer__panel > header button { display: flex; width: 31px; height: 31px; padding: 0 0 2px; align-items: center; justify-content: center; color: #fff; font: 400 22px/1 Arial, sans-serif; background: rgb(255 255 255 / 10%); border: 0; border-radius: 7px; cursor: pointer; }
.rly-quote-vehicle-viewer__panel > nav { display: flex; padding: 10px 14px; gap: 7px; background: #fff; border-bottom: 1px solid #dbe3df; }
.rly-quote-vehicle-viewer__panel > nav button { padding: 7px 12px; color: #53675f; font-size: 10px; font-weight: 800; background: #eef2f0; border: 1px solid #d4ddd9; border-radius: 999px; cursor: pointer; }
.rly-quote-vehicle-viewer__panel > nav button[aria-pressed="true"] { color: #fff; background: #286b54; border-color: #286b54; }
.rly-quote-vehicle-viewer__all { display: grid; overflow-y: auto; padding: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.rly-quote-vehicle-viewer__all button { overflow: hidden; padding: 0; text-align: left; background: #fff; border: 1px solid #d5dfda; border-radius: 10px; cursor: zoom-in; }
.rly-quote-vehicle-viewer__all img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #edf2ef; }
.rly-quote-vehicle-viewer__all span { display: block; padding: 7px 9px; color: #50645c; font-size: 9px; font-weight: 750; }
.rly-quote-vehicle-viewer__single { display: flex; min-height: 0; flex: 1; flex-direction: column; }
.rly-quote-vehicle-viewer__single[hidden] { display: none; }
.rly-quote-vehicle-viewer__single > div { display: grid; min-height: 0; flex: 1; padding: 16px; place-items: center; }
.rly-quote-vehicle-viewer__single img { display: block; width: 100%; height: 100%; max-height: 520px; object-fit: contain; }
.rly-quote-vehicle-viewer__single footer { display: flex; min-height: 54px; padding: 8px 14px; align-items: center; justify-content: center; gap: 18px; background: #fff; border-top: 1px solid #d9e2de; }
.rly-quote-vehicle-viewer__single footer button { display: grid; width: 34px; height: 34px; padding: 0; place-items: center; color: #fff; background: #286b54; border: 0; border-radius: 50%; cursor: pointer; }
.rly-quote-vehicle-viewer__single footer span { min-width: 60px; color: #50645c; font-size: 11px; font-weight: 800; text-align: center; }
.rly-quote-thread [data-quote-message-status] { color: #567066; font-size: 9px; }
.rly-quote-mail-row__review { padding: 7px 10px; color: #fff; background: #2e765e; border: 0; border-radius: 7px; cursor: pointer; }
.rly-quote-composer__footer { position: absolute; z-index: 8; right: 0; bottom: 0; left: 0; display: flex; min-height: 64px; padding: 12px 20px; margin: 0; align-items: center; justify-content: space-between; gap: 14px; background: #fff; border-top: 1px solid #dfe6e2; box-shadow: 0 -8px 20px rgb(28 59 48 / 8%); box-sizing: border-box; }
.rly-quote-composer__footer > span { color: #728079; font-size: 10px; }
.rly-quote-composer__footer > div { display: flex; gap: 8px; }
.rly-quote-composer .rly-quote-composer__footer .rly-button { min-height: 38px; padding: 8px 14px; color: #fff !important; background: #245b49 !important; border: 1px solid #245b49; box-shadow: 0 3px 9px rgb(29 74 59 / 16%); }
.rly-quote-composer .rly-quote-composer__footer .rly-button:hover,
.rly-quote-composer .rly-quote-composer__footer .rly-button:focus-visible { color: #fff !important; background: #173a30 !important; border-color: #173a30; }
.rly-quote-composer .rly-quote-composer__footer .rly-button--ghost { color: #31584a !important; background: #edf4f0 !important; border-color: #cfddd7; box-shadow: none; }
.rly-quote-composer .rly-quote-composer__footer .rly-button--ghost:hover,
.rly-quote-composer .rly-quote-composer__footer .rly-button--ghost:focus-visible { color: #fff !important; background: #31584a !important; border-color: #31584a; }

@media (max-width: 760px) {
	.rly-traveler-request-list.rly-quote-mail-list--new > .rly-traveler-request-item > .rly-quote-mail-row--new { grid-template-columns: 27px minmax(0, 1fr) minmax(105px, .65fr) 18px; gap: 10px; }
	.rly-traveler-request-header,
	.rly-traveler-offer-header { display: none; }
	.rly-traveler-request-row { grid-template-columns: 1fr 1fr 22px; gap: 9px 12px; }
	.rly-traveler-request-row__reference,
	.rly-traveler-request-row__dates { grid-column: span 1; }
	.rly-traveler-request-row__journey { grid-column: 1; }
	.rly-traveler-request-row__responses { grid-column: 2; }
	.rly-traveler-request-row__chevron { grid-column: 3; grid-row: 1 / span 3; }
	.rly-traveler-request-facts { grid-template-columns: 1fr 1fr; }
	.rly-traveler-offer-row { grid-template-columns: 16px 1fr 1fr 22px; gap: 8px 12px; }
	.rly-traveler-offer-row .rly-quote-unread-slot { grid-column: 1; grid-row: 1 / span 3; }
	.rly-traveler-offer-row__provider { grid-column: 2 / span 2; }
	.rly-traveler-offer-row__arrow { grid-column: 4; grid-row: 1 / span 3; }
	.rly-quote-review-backdrop { padding: 8px; }
	.rly-quote-review-modal { width: calc(100vw - 16px); max-height: 96vh; }
	.rly-provider-quote-market .rly-quote-mail-list { min-height: 520px; }
	.rly-quote-composer { right: 7px; width: calc(100vw - 14px); max-height: 92vh; }
	.rly-quote-composer__request { padding: 15px; }
	.rly-quote-composer__trip-grid { grid-template-columns: 1fr 1fr; }
	.rly-quote-composer__trip-grid .is-route { grid-column: 1 / -1; }
	.rly-provider-quote-form.rly-quote-composer__form { padding-right: 15px; padding-left: 15px; }
	.rly-quote-composer__message-layout { grid-template-columns: 1fr; }
	.rly-quote-standard-terms { grid-template-columns: 1fr; }
	.rly-quote-policy-editor { grid-template-columns: 1fr; }
	.rly-quote-composer__offer-grid,
	.rly-custom-offer-form__fields { grid-template-columns: 1fr 1fr; }
	.rly-quote-composer__offer-grid .is-double { grid-column: span 2; }
	.rly-quote-composer__footer { align-items: flex-start; flex-direction: column; }
	.rly-quote-composer__footer > div { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
	.rly-traveler-request-list.rly-quote-mail-list--new > .rly-traveler-request-item > .rly-quote-mail-row--new { grid-template-columns: 27px minmax(0, 1fr) 18px; }
	.rly-traveler-request-row { grid-template-columns: 1fr 22px; }
	.rly-traveler-offer-row { grid-template-columns: 16px 1fr 22px; }
	.rly-traveler-request-row > :not(.rly-traveler-request-row__chevron),
	.rly-traveler-offer-row > :not(.rly-traveler-offer-row__arrow, .rly-quote-unread-slot) { grid-column: 2; }
	.rly-traveler-request-row__chevron,
	.rly-traveler-offer-row__arrow { grid-column: 3; grid-row: 1 / span 6; }
	.rly-traveler-offer-row .rly-quote-unread-slot { grid-column: 1; grid-row: 1 / span 6; }
	.rly-traveler-request-facts { grid-template-columns: 1fr; }
	.rly-quote-review-modal__body { padding: 14px; }
	.rly-quote-review-modal > footer { align-items: stretch; flex-direction: column; }
	.rly-quote-review-modal > footer form,
	.rly-quote-review-modal > footer .rly-button { width: 100%; }
	.rly-quote-composer__trip-grid,
	.rly-quote-composer__offer-grid,
	.rly-custom-offer-form__fields,
	.rly-quote-composer__message-layout,
	.rly-quote-composer__review dl { grid-template-columns: 1fr; }
	.rly-quote-composer__message-heading { align-items: flex-start; flex-direction: column; }
	.rly-quote-composer__trip-grid .is-route { grid-column: auto; }
	.rly-quote-composer__message-heading em { flex-wrap: wrap; }
	.rly-quote-service-picker__groups { grid-template-columns: 1fr; }
	.rly-quote-composer__review dl div:is(.is-included, .is-excluded) { grid-column: auto; }
	.rly-quote-composer__review dl.rly-quote-review-offer { grid-template-columns: 1fr; }
	.rly-quote-composer__review dl.rly-quote-review-offer > div { grid-column: auto; }
	.rly-quote-composer__review dl.rly-quote-review-offer div:is(.is-included, .is-excluded) { grid-column: auto; }
	.rly-quote-composer__review dl.rly-quote-composer__offer-review > div,
	.rly-quote-composer__review dl.rly-quote-composer__offer-review div:is(.is-included, .is-excluded) { grid-column: auto !important; }
	.rly-quote-version > summary { grid-template-columns: 1fr auto 16px; }
	.rly-quote-version > summary time { display: none; }
	.rly-quote-version__changes li { grid-template-columns: 1fr; gap: 3px; }
	.rly-quote-version__changes li i { display: none; }
	.rly-quote-version__body > dl { grid-template-columns: 1fr; }
	.rly-quote-version__body > dl .is-wide { grid-column: auto; }
	.rly-quote-vehicle-viewer { padding: 8px; }
	.rly-quote-vehicle-viewer__panel { width: calc(100vw - 16px); height: calc(100vh - 16px); }
	.rly-quote-vehicle-viewer__all { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 10px; gap: 8px; }
	.rly-quote-composer__service-columns { grid-template-columns: 1fr; }
	.rly-quote-composer__offer-grid .is-double { grid-column: auto; }
}

.rly-provider-request-list {
	display: grid;
	gap: 16px;
}

.rly-provider-request-card {
	padding: 20px;
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 14px;
	box-shadow: 0 10px 30px rgb(23 53 45 / 6%);
}

.rly-provider-request-card__summary,
.rly-provider-request-card__facts {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.rly-provider-request-card__summary span {
	color: var(--rly-account-green);
	font: 800 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.rly-provider-request-card__summary h4 {
	margin: 4px 0 0;
	font: 400 24px/1.1 Georgia, "Times New Roman", serif;
}

.rly-provider-request-card__summary > strong {
	padding: 6px 9px;
	color: var(--rly-account-green);
	font-size: 10px;
	background: #eaf4ee;
	border-radius: 999px;
}

.rly-provider-request-card__facts {
	justify-content: flex-start;
	margin: 14px 0;
}

.rly-provider-request-card__facts span {
	padding: 5px 8px;
	color: #425b52;
	font-size: 10px;
	font-weight: 750;
	background: var(--rly-account-cream);
	border-radius: 7px;
}

.rly-provider-quote-form {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid var(--rly-account-border);
}

.rly-provider-quote-form label {
	display: block;
}

.rly-provider-quote-form label > span {
	display: block;
	margin-bottom: 5px;
	color: var(--rly-account-ink);
	font-size: 10px;
	font-weight: 800;
}

.rly-provider-quote-form :is(input, select, textarea) {
	width: 100%;
	padding: 9px 10px;
	color: var(--rly-account-ink);
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 8px;
	box-sizing: border-box;
}

.rly-provider-quote-form .is-wide {
	grid-column: 1 / -1;
}

.rly-provider-quote-form .rly-button {
	width: fit-content;
}

.rly-custom-offer-card > p {
	margin: 12px 0 0;
	color: var(--rly-account-muted);
	font-size: 11px;
}

.rly-quote-comparison {
	margin-top: 14px;
}

.rly-quote-comparison h4 {
	margin: 0 0 8px;
	font-size: 13px;
}

.rly-quote-comparison__scroll {
	overflow-x: auto;
	border: 1px solid var(--rly-account-border);
	border-radius: 10px;
}

.rly-quote-comparison table {
	width: 100%;
	min-width: 900px;
	border-collapse: collapse;
	font-size: 10px;
}

.rly-quote-comparison :is(th, td) {
	padding: 9px 10px;
	text-align: left;
	vertical-align: top;
	border-right: 1px solid #e7e6df;
	border-bottom: 1px solid #e7e6df;
}

.rly-quote-comparison th {
	color: var(--rly-account-muted);
	background: #faf9f4;
}

.rly-quote-comparison td b {
	color: var(--rly-account-green);
	font-size: 12px;
	white-space: nowrap;
}

.rly-quote-comparison td a {
	color: inherit;
}

.rly-quote-comparison-empty {
	padding: 12px;
	margin-top: 14px;
	color: var(--rly-account-muted);
	font-size: 11px;
	text-align: center;
	background: #faf9f4;
	border: 1px dashed var(--rly-account-border);
	border-radius: 9px;
}

.rly-dashboard-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--rly-account-border);
	border-radius: 12px;
}

.rly-dashboard-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}

.rly-dashboard-table :is(th, td) {
	padding: 13px 14px;
	text-align: left;
	border-bottom: 1px solid #e7e6df;
}

.rly-dashboard-table th {
	color: var(--rly-account-muted);
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: #faf9f4;
}

.rly-dashboard-sort {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

.rly-dashboard-sort:hover,
.rly-dashboard-sort:focus-visible {
	color: var(--rly-account-green);
}

.rly-dashboard-sort span {
	font-size: 12px;
	line-height: 1;
}

.rly-quote-requests-table th > strong {
	display: block;
	color: var(--rly-account-ink);
	font-size: 9px;
}

.rly-dashboard-sort-options {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 10px;
	margin-top: 6px;
}

.rly-dashboard-sort-options .rly-dashboard-sort {
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.rly-dashboard-sort-options .rly-dashboard-sort.is-active {
	color: var(--rly-account-green);
}

.rly-dashboard-table tr:last-child td {
	border-bottom: 0;
}

.rly-quote-requests-table {
	min-width: 800px;
	table-layout: fixed;
}

.rly-quote-col-provider {
	width: 39%;
}

.rly-quote-col-journey {
	width: 39%;
}

.rly-quote-col-status {
	width: 22%;
}

.rly-quote-requests-table td {
	padding-block: 12px;
	vertical-align: top;
}

.rly-quote-requests-table tbody > tr[data-quote-request-row] > td {
	background: #fff;
	vertical-align: middle;
}

.rly-quote-requests-table tbody > tr[data-quote-request-row]:nth-child(4n + 3) > td {
	background: #f5f8f5;
}

.rly-quote-provider-cell,
.rly-quote-journey-cell,
.rly-quote-status-cell {
	line-height: 1.45;
}

.rly-quote-provider-cell > :is(strong, span),
.rly-quote-journey-cell > :is(strong, span),
.rly-quote-status-cell > :is(span, small) {
	display: block;
	margin-bottom: 5px;
}

.rly-quote-provider-cell > :last-child,
.rly-quote-journey-cell > :last-child,
.rly-quote-status-cell > :last-child {
	margin-bottom: 0;
}

.rly-quote-provider-cell > span,
.rly-quote-journey-cell > span {
	color: var(--rly-account-ink);
	font-size: 11px;
	font-weight: 700;
}

.rly-quote-provider-link {
	display: block;
	width: fit-content;
	margin-bottom: 4px;
	color: var(--rly-account-ink);
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
}

.rly-quote-provider-link:hover,
.rly-quote-provider-link:focus-visible,
.rly-quote-request-details dd a:hover,
.rly-quote-request-details dd a:focus-visible {
	color: var(--rly-account-green);
	text-decoration: underline;
}

.rly-quote-journey-cell > span {
	color: var(--rly-account-muted);
	font-weight: 500;
}

.rly-quote-requests-table td > small,
.rly-quote-status-cell > small {
	display: block;
	margin-top: 4px;
	color: var(--rly-account-muted);
	font-size: 10px;
	white-space: nowrap;
}

.rly-quote-journey-cell > small b {
	color: var(--rly-account-ink);
	font-weight: 800;
}

.rly-quote-journey-cell > small i {
	margin: 0 3px;
	font-style: normal;
}

.rly-quote-requested-date {
	margin: 0 0 8px;
	color: var(--rly-account-ink);
	font-weight: 750;
}

.rly-quote-status-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	align-items: center;
}

.rly-quote-status-tags .rly-dashboard-status,
.rly-quote-status-tags .rly-quote-read-status {
	width: fit-content;
	margin: 0;
}

.rly-quote-reference {
	color: var(--rly-account-green);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 11px;
	white-space: nowrap;
}

.rly-quote-request-toggle {
	display: inline-flex;
	min-height: 36px;
	padding: 7px 2px;
	align-items: center;
	gap: 7px;
	width: max-content;
	margin-top: 0;
	color: var(--rly-account-green);
	background: transparent;
	border: 0;
	cursor: pointer;
	font-size: 11px;
	font-weight: 800;
	scroll-margin-block: 140px;
}

.rly-quote-request-toggle__icon {
	display: block;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 7px solid var(--rly-account-green);
	transform-origin: 40% 50%;
	transition: transform 0.2s ease;
}

.rly-quote-request-toggle strong {
	font-weight: 900;
}

.rly-quote-request-toggle:hover .rly-quote-request-toggle__icon,
.rly-quote-request-toggle:focus-visible .rly-quote-request-toggle__icon {
	filter: brightness(0.8);
}

.rly-quote-request-toggle[aria-expanded="true"] .rly-quote-request-toggle__icon {
	transform: rotate(90deg);
}

.rly-quote-request-details-row > td {
	padding: 14px;
	background: #fff;
}

.rly-quote-request-details-row > td:last-child {
	background: #fff;
	border-bottom-color: #e7e6df;
}

.rly-quote-request-details {
	width: 100%;
}

.rly-quote-request-details dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 100%;
	padding: 13px;
	margin: 0;
	gap: 9px;
	background: var(--rly-account-cream);
	border: 1px solid var(--rly-account-border);
	border-radius: 10px;
	box-sizing: border-box;
}

.rly-quote-request-details dl > div {
	display: grid;
	grid-template-columns: 115px minmax(0, 1fr);
	gap: 8px;
}

.rly-quote-request-details :is(dt, dd) {
	margin: 0;
	font-size: 10px;
	line-height: 1.45;
}

.rly-quote-request-details dt {
	color: var(--rly-account-muted);
	font-weight: 700;
}

.rly-quote-request-details dd {
	color: var(--rly-account-ink);
	font-weight: 700;
}

.rly-quote-request-details dd a {
	color: inherit;
	text-decoration: none;
}

.rly-quote-read-status {
	width: fit-content;
	padding: 3px 7px;
	font-size: 9px;
	font-weight: 800;
	border-radius: 999px;
}

.rly-quote-read-status.is-read {
	color: #245947;
	background: #ddf1e6;
}

.rly-quote-read-status.is-unread {
	color: #735f31;
	background: #f5edcf;
}

.rly-quote-request-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.rly-quote-request-actions form {
	margin: 0;
}

.rly-quote-reminder-status {
	display: block;
	max-width: 300px;
	margin-top: 6px;
	color: var(--rly-account-muted);
	font-size: 10px;
	font-weight: 650;
	line-height: 1.4;
}

.rly-quote-reminder-status[data-state="success"] {
	color: var(--rly-account-green);
}

.rly-quote-reminder-status[data-state="error"] {
	color: #8a332e;
}

body.rly-reminder-modal-open {
	overflow: hidden;
}

.rly-reminder-modal-backdrop {
	position: fixed;
	z-index: 100000;
	inset: 0;
	display: grid;
	padding: 20px;
	place-items: center;
	background: rgb(12 32 26 / 62%);
	backdrop-filter: blur(5px);
}

.rly-reminder-modal-backdrop[hidden] {
	display: none;
}

.rly-reminder-modal {
	width: min(480px, 100%);
	padding: clamp(34px, 6vw, 52px);
	text-align: center;
	background: #fff;
	border: 1px solid rgb(255 255 255 / 72%);
	border-radius: 24px;
	box-shadow: 0 28px 80px rgb(10 35 27 / 28%);
}

.rly-reminder-modal__icon {
	display: grid;
	width: 58px;
	height: 58px;
	margin: 0 auto 18px;
	place-items: center;
	color: #fff;
	background: var(--rly-account-green);
	border-radius: 50%;
}

.rly-reminder-modal__icon svg {
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
}

.rly-account .rly-reminder-modal h2 {
	margin-bottom: 14px;
	font: 400 clamp(28px, 5vw, 38px) / 1.1 Georgia, "Times New Roman", serif;
}

.rly-reminder-modal p {
	max-width: 390px;
	margin: 0 auto 26px;
	color: var(--rly-account-muted);
	font-size: 15px;
	line-height: 1.65;
}

.rly-reminder-modal > button {
	display: inline-flex;
	padding: 13px 30px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #fff;
	font-weight: 800;
	background: var(--rly-account-green);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
}

.rly-reminder-modal__thumb {
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transform-origin: 30% 80%;
}

.rly-reminder-modal > button.is-celebrating .rly-reminder-modal__thumb {
	animation: rly-reminder-thumbs-up 0.52s cubic-bezier(0.2, 0.9, 0.3, 1);
}

@keyframes rly-reminder-thumbs-up {
	0% {
		opacity: 0.4;
		transform: scale(0.7) rotate(-16deg) translateY(3px);
	}

	55% {
		opacity: 1;
		transform: scale(1.35) rotate(10deg) translateY(-3px);
	}

	100% {
		opacity: 1;
		transform: scale(1) rotate(0) translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.rly-reminder-modal > button.is-celebrating .rly-reminder-modal__thumb {
		animation: none;
	}
}

.rly-quote-action {
	padding: 8px 12px;
	font-size: 10px;
	font-weight: 800;
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 999px;
	cursor: pointer;
}

.rly-quote-action--remind {
	color: var(--rly-account-green);
}

.rly-quote-action--cancel {
	color: #8a332e;
	border-color: #e1b9b5;
}

.rly-quote-action:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.rly-dashboard-status {
	display: inline-flex;
	padding: 5px 8px;
	color: #315f50;
	font-size: 9px;
	font-weight: 800;
	background: #eaf4ee;
	border-radius: 999px;
	white-space: nowrap;
}

.rly-dashboard-profile {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.rly-dashboard-profile > div {
	padding: 18px;
	background: var(--rly-account-cream);
	border-radius: 12px;
}

.rly-dashboard-profile :is(span, strong) {
	display: block;
}

.rly-dashboard-profile span {
	margin-bottom: 5px;
	color: var(--rly-account-muted);
	font-size: 10px;
}

.rly-dashboard-profile strong {
	overflow-wrap: anywhere;
}

.rly-dashboard-panel__privacy {
	padding: 16px 18px;
	margin: 16px 0 0;
	color: #53675f;
	font-size: 12px;
	line-height: 1.6;
	background: #eef4f0;
	border-radius: 10px;
}

.rly-quote-comparison__action form,
.rly-quote-comparison__action {
	display: grid;
	gap: 7px;
	min-width: 150px;
}

.rly-quote-comparison__action small {
	color: var(--rly-account-muted);
	font-size: 10px;
}

.rly-button--small {
	min-height: 38px;
	padding: 8px 14px;
	font-size: 12px;
}

.rly-quote-accepted {
	display: inline-flex;
	width: fit-content;
	padding: 6px 10px;
	color: #1c5d47;
	background: #e9f6ef;
	border-radius: 999px;
	font-size: 11px;
}

.rly-review-form-card,
.rly-review-history article {
	padding: 22px;
	margin-top: 20px;
	background: #fffdf8;
	border: 1px solid var(--rly-account-border);
	border-radius: 14px;
}

.rly-review-form-card > header,
.rly-review-history article > div,
.rly-traveler-profile-form__avatar {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
}

.rly-review-form-card h4,
.rly-review-history h4 {
	margin: 4px 0 0;
}

.rly-review-form {
	display: grid;
	gap: 18px;
	margin-top: 20px;
}

.rly-review-ratings,
.rly-traveler-profile-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.rly-review-form label > span,
.rly-traveler-profile-form label > span {
	display: block;
	margin-bottom: 7px;
	font-size: 12px;
	font-weight: 800;
}

.rly-review-form :is(select, textarea),
.rly-traveler-profile-form :is(input, textarea) {
	width: 100%;
	padding: 12px 13px;
	color: var(--rly-account-ink);
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 9px;
}

.rly-review-form :is(select, textarea):focus,
.rly-traveler-profile-form :is(input, textarea):focus {
	border-color: #9a6d35;
	outline: 3px solid rgba(211, 166, 94, 0.18);
}

.rly-review-history {
	margin-top: 28px;
}

.rly-review-history article > div {
	justify-content: flex-start;
}

.rly-review-history article p {
	margin: 12px 0 0;
	color: #435a52;
	line-height: 1.6;
}

.rly-traveler-profile-form {
	display: grid;
	gap: 22px;
}

.rly-traveler-profile-form__avatar {
	justify-content: flex-start;
}

.rly-traveler-profile-form__avatar img {
	width: 96px;
	height: 96px;
	object-fit: cover;
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 5px 18px rgba(23, 53, 45, 0.16);
}

.rly-traveler-profile-form__avatar label {
	flex: 1;
}

.rly-traveler-profile-form small {
	display: block;
	margin-top: 6px;
	color: var(--rly-account-muted);
	font-size: 10px;
}

@media (max-width: 680px) {
	.rly-review-ratings,
	.rly-traveler-profile-form__grid {
		grid-template-columns: 1fr;
	}

	.rly-traveler-profile-form__avatar {
		align-items: flex-start;
		flex-direction: column;
	}
}

.rly-provider-list {
	display: grid;
	gap: 9px;
	margin-bottom: 22px;
}

.rly-provider-list article {
	display: flex;
	gap: 18px;
	padding: 14px 16px;
	align-items: center;
	justify-content: space-between;
	background: var(--rly-account-cream);
	border-radius: 11px;
}

.rly-provider-list article > div {
	display: grid;
	gap: 3px;
}

.rly-provider-list span,
.rly-provider-list small {
	color: var(--rly-account-muted);
	font-size: 10px;
}

.rly-provider-list a {
	color: #8c612f;
	font-size: 12px;
	font-weight: 800;
}

.rly-provider-editor {
	padding: 22px;
	background: #faf9f4;
	border: 1px solid var(--rly-account-border);
	border-radius: 14px;
}

.rly-provider-editor h4 {
	margin: 0 0 18px;
	color: var(--rly-account-ink);
	font: 400 25px Georgia, "Times New Roman", serif;
}

.rly-provider-editor__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px;
}

.rly-provider-editor[data-driver-profile-form] .rly-provider-editor__grid {
	width: 100%;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rly-provider-editor[data-driver-profile-form] .rly-provider-editor__actions {
	width: 66.6667%;
}

.rly-provider-editor__full {
	grid-column: 1 / -1;
}

.rly-provider-editor__two-thirds {
	grid-column: 1 / span 2;
}

.rly-provider-editor__country,
.rly-provider-editor__years {
	grid-column: 1;
}

.rly-provider-editor__city,
.rly-provider-editor__languages {
	grid-column: 2;
}

.rly-provider-editor[data-driver-profile-form] {
	display: grid;
	gap: 22px;
	padding: 22px;
	background: #fff;
	border: 1px solid #dde6e0;
	border-radius: 16px;
}

.rly-provider-editor[data-driver-profile-form] h4 {
	margin: 0;
}

.rly-provider-editor[data-driver-profile-form] label > span,
.rly-provider-editor[data-driver-profile-form] .rly-provider-country-picker .country-picker__label,
.rly-provider-editor[data-driver-profile-form] .rly-profile-gallery__label {
	margin-bottom: 7px;
	font-size: 12px;
	font-weight: 800;
}

.rly-provider-editor[data-driver-profile-form] :is(input:not([type="file"]), select) {
	height: 48px;
	min-height: 48px;
	padding: 10px 13px;
	font-size: 14px;
	border-color: #cedbd4;
	border-radius: 10px;
}

.rly-provider-editor[data-driver-profile-form] textarea {
	padding: 12px 13px;
	font-size: 14px;
	line-height: 1.55;
	border-color: #cedbd4;
	border-radius: 10px;
}

.rly-provider-editor[data-driver-profile-form] :is(label > small, .rly-ai-bio__context, .rly-profile-gallery > small, .rly-profile-gallery__feedback) {
	font-size: 12px;
	line-height: 1.5;
}

.rly-provider-editor label > span {
	display: block;
	margin-bottom: 6px;
	color: var(--rly-account-ink);
	font-size: 10px;
	font-weight: 800;
}

.rly-provider-editor :is(input, select, textarea) {
	width: 100%;
	padding: 11px 12px;
	color: var(--rly-account-ink);
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 9px;
}

.rly-provider-editor :is(input:not([type="file"]), select) {
	height: 44px;
	min-height: 44px;
}

.rly-provider-editor input[type="text"]::-webkit-contacts-auto-fill-button {
	display: none !important;
	width: 0 !important;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	-webkit-appearance: none;
}

.rly-provider-editor input[type="text"]::-webkit-credentials-auto-fill-button {
	display: none !important;
	width: 0 !important;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	-webkit-appearance: none;
}

.rly-provider-editor textarea {
	box-sizing: border-box;
	min-width: 0;
	max-width: 100%;
	resize: vertical;
}

.rly-provider-editor label > small {
	display: block;
	margin-top: 6px;
	color: var(--rly-account-muted);
	font-size: 9px;
	line-height: 1.45;
}

.rly-provider-editor label > .rly-provider-editor__counter {
	font-variant-numeric: tabular-nums;
	text-align: right;
}

.rly-provider-country-picker {
	position: relative;
}

.rly-provider-editor .rly-provider-country-picker .country-picker__label {
	display: block;
	margin-bottom: 6px;
	color: var(--rly-account-ink);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
}

.rly-provider-editor .rly-provider-country-picker .country-picker__input {
	padding-right: 40px;
}

.rly-provider-editor .rly-provider-country-picker .country-picker__listbox {
	top: calc(100% + 6px);
	width: 100%;
}

.rly-provider-country-picker__search {
	position: absolute;
	top: 50%;
	right: 13px;
	color: #667b73;
	pointer-events: none;
	transform: translateY(-50%);
}

.rly-provider-editor__bio {
	grid-column: 1 / -1;
}

.rly-profile-gallery__label {
	display: block;
	margin-bottom: 7px;
	color: var(--rly-account-ink);
	font-size: 10px;
	font-weight: 800;
}

.rly-profile-gallery__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
	margin: 0 0 10px;
	border-radius: 10px;
}

@media (max-width: 1100px) and (min-width: 721px) {
	.rly-profile-gallery__grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.rly-profile-gallery__grid.is-file-dragging {
	box-shadow: 0 0 0 4px rgba(82, 126, 112, .2);
}

.rly-profile-gallery__grid[hidden],
.rly-profile-gallery [data-gallery-url-store][hidden],
.rly-profile-gallery-modal[hidden],
.rly-profile-gallery-modal [data-gallery-view][hidden] {
	display: none !important;
}

.rly-profile-gallery__tile {
	position: relative;
	min-width: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e8eeea;
	border: 1px solid #d6dfda;
	border-radius: 9px;
	cursor: grab;
	transition: border-color .16s ease, box-shadow .16s ease, opacity .16s ease, transform .16s ease;
}

.rly-profile-gallery__tile.is-dragging {
	cursor: grabbing;
	opacity: .42;
	transform: scale(.96);
}

.rly-profile-gallery__tile.is-drag-target {
	border-color: #b47a2f;
	box-shadow: 0 0 0 3px rgba(180, 122, 47, .22);
}

.rly-profile-gallery__view {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: grab;
}

.rly-profile-gallery__view:active {
	cursor: grabbing;
}

.rly-profile-gallery__view img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .2s ease;
}

.rly-profile-gallery__view:hover img,
.rly-profile-gallery__view:focus-visible img {
	transform: scale(1.035);
}

.rly-profile-gallery__remove {
	position: absolute;
	top: 3px;
	right: 3px;
	display: grid;
	width: 18px;
	height: 18px;
	padding: 0;
	place-items: center;
	color: #fff;
	font: 800 14px/1 Arial, sans-serif;
	background: rgba(18, 31, 27, .82);
	border: 1px solid rgba(255, 255, 255, .78);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .22);
	cursor: pointer;
}

.rly-profile-gallery__remove:hover,
.rly-profile-gallery__remove:focus-visible {
	background: #a33b37;
}

.rly-profile-gallery__more {
	position: absolute;
	inset: 0;
	display: grid;
	padding: 6px;
	place-items: center;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	text-align: center;
	background: rgba(17, 34, 29, .68);
}

.rly-profile-gallery__url-entry {
	display: block;
}

.rly-provider-editor .rly-profile-gallery__url-entry textarea {
	min-height: 76px;
	resize: vertical;
}

.rly-profile-gallery > small {
	display: block;
	margin-top: 6px;
	color: var(--rly-account-muted);
	font-size: 9px;
	line-height: 1.45;
}

.rly-profile-gallery__upload {
	display: block;
	margin-top: 13px;
	padding: 13px;
	background: #f5f8f6;
	border: 1px dashed #adc1b8;
	border-radius: 10px;
	transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.rly-profile-gallery__upload > strong {
	display: block;
	margin-bottom: 9px;
	color: #537067;
	font-size: 10px;
	font-weight: 700;
}

.rly-profile-gallery__upload.is-file-dragging {
	background: #eaf4ef;
	border-color: #527e70;
	box-shadow: 0 0 0 3px rgba(82, 126, 112, .14);
}

.rly-profile-gallery__feedback {
	min-height: 16px;
	margin: 6px 0 0;
	color: #48675e;
	font-size: 10px;
}

.rly-profile-gallery__feedback[data-state="error"] {
	color: #9b3936;
}

.rly-profile-gallery-modal {
	position: fixed;
	z-index: 100010;
	inset: 0;
	display: grid;
	padding: 28px;
	place-items: center;
}

.rly-profile-gallery-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 18, 16, .76);
	backdrop-filter: blur(4px);
}

.rly-profile-gallery-modal__panel {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: auto auto minmax(0, 1fr);
	width: min(980px, 94vw);
	height: min(760px, calc(100vh - 56px));
	overflow: hidden;
	background: #f8faf8;
	border: 1px solid #d5dfda;
	border-radius: 16px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.rly-profile-gallery-modal__panel > header {
	display: flex;
	gap: 20px;
	padding: 18px 20px 16px;
	align-items: start;
	justify-content: space-between;
	background: #fff;
	border-bottom: 1px solid #dde5e1;
}

.rly-profile-gallery-modal__panel > header span {
	color: #9a6930;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.rly-profile-gallery-modal__panel > header h4 {
	margin: 3px 0 4px;
	color: var(--rly-account-ink);
	font: 400 23px/1.1 Georgia, "Times New Roman", serif;
}

.rly-profile-gallery-modal__panel > header p {
	margin: 0;
	color: var(--rly-account-muted);
	font-size: 10px;
}

.rly-profile-gallery-modal__panel > header button {
	display: grid;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	padding: 0;
	place-items: center;
	color: #29463d;
	font: 400 25px/1 Arial, sans-serif;
	background: #edf2ef;
	border: 1px solid #d5dfda;
	border-radius: 50%;
	cursor: pointer;
}

.rly-profile-gallery-modal__switcher {
	display: flex;
	gap: 6px;
	padding: 9px 14px;
	background: #f1f5f2;
	border-bottom: 1px solid #dce5e0;
}

.rly-profile-gallery-modal__switcher button {
	min-height: 34px;
	padding: 7px 13px;
	color: #536960;
	font: inherit;
	font-size: 10px;
	font-weight: 850;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
}

.rly-profile-gallery-modal__switcher button[aria-pressed="true"] {
	color: #254d40;
	background: #fff;
	border-color: #cad8d2;
	box-shadow: 0 2px 7px rgba(29, 62, 51, .08);
}

.rly-profile-gallery-modal__organizer {
	height: 100%;
	min-height: 0;
	overflow: hidden;
}

.rly-profile-gallery-modal__scroll {
	position: relative;
	height: 100%;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 14px;
	scrollbar-gutter: stable;
}

.rly-profile-gallery-modal__drop-overlay {
	position: sticky;
	z-index: 4;
	top: 0;
	display: grid;
	height: 76px;
	margin-bottom: -76px;
	place-items: center;
	color: #244f41;
	font-size: 13px;
	font-weight: 900;
	background: rgba(228, 241, 234, .95);
	border: 2px dashed #5e8b7b;
	border-radius: 10px;
	pointer-events: none;
}

.rly-profile-gallery-modal__drop-overlay[hidden] {
	display: none;
}

.rly-profile-gallery-modal__scroll.is-file-dragging {
	background: #eff7f3;
}

.rly-profile-gallery-modal__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	grid-auto-rows: 104px;
	gap: 10px;
}

.rly-profile-gallery-modal__grid .rly-profile-gallery__tile {
	height: 104px;
	aspect-ratio: auto;
}

.rly-profile-gallery-modal__single {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	height: 100%;
	min-height: 0;
	background: #101713;
}

.rly-profile-gallery-modal__image {
	display: grid;
	min-height: 0;
	padding: 16px;
	place-items: center;
}

.rly-profile-gallery-modal__image img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.rly-profile-gallery-modal__controls {
	display: grid;
	grid-template-columns: 42px minmax(70px, auto) auto 42px;
	gap: 10px;
	padding: 12px 16px;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #18231f;
}

.rly-profile-gallery-modal__controls button {
	min-height: 38px;
	padding: 8px 12px;
	color: #fff;
	font: inherit;
	font-size: 11px;
	font-weight: 800;
	background: #2b3c36;
	border: 1px solid #43574f;
	border-radius: 9px;
	cursor: pointer;
}

.rly-profile-gallery-modal__controls button:disabled {
	opacity: .35;
	cursor: default;
}

.rly-profile-gallery-modal__controls button.is-delete {
	color: #ffd9d7;
	background: #71332f;
	border-color: #9b4944;
}

.rly-profile-gallery-modal__controls span {
	font-size: 11px;
	font-weight: 800;
	text-align: center;
}

.rly-ai-bio__heading {
	display: flex;
	gap: 12px;
	margin-bottom: 6px;
	align-items: center;
	justify-content: space-between;
}

.rly-ai-bio__heading label {
	color: var(--rly-account-ink);
	font-size: 10px;
	font-weight: 800;
}

.rly-ai-bio__trigger,
.rly-ai-bio__secondary {
	display: inline-flex;
	min-height: 32px;
	padding: 6px 10px;
	gap: 6px;
	align-items: center;
	color: #285b4c;
	font-size: 11px;
	font-weight: 800;
	background: #fff;
	border: 1px solid #a9c5ba;
	border-radius: 999px;
	cursor: pointer;
}

.rly-ai-bio__trigger:hover,
.rly-ai-bio__trigger:focus-visible,
.rly-ai-bio__secondary:hover,
.rly-ai-bio__secondary:focus-visible {
	background: #edf5f1;
	border-color: #285b4c;
}

.rly-ai-bio__trigger:disabled,
.rly-ai-bio__secondary:disabled {
	opacity: 0.55;
	cursor: wait;
}

.rly-ai-bio__context,
.rly-ai-bio__feedback {
	margin: 7px 0 0;
	color: var(--rly-account-muted);
	font-size: 10px;
	line-height: 1.5;
}

.rly-ai-bio__feedback {
	min-height: 16px;
}

.rly-ai-bio__feedback[data-state="error"] { color: #9a2f35; }
.rly-ai-bio__feedback[data-state="pending"] { color: #8b6509; }
.rly-ai-bio__feedback[data-state="success"] { color: #23694f; font-weight: 700; }

.rly-ai-bio__result {
	padding: 14px;
	margin-top: 12px;
	background: #f0f6f2;
	border: 1px solid #bad2c8;
	border-radius: 11px;
}

.rly-ai-bio__result[hidden] { display: none !important; }

.rly-ai-bio__result > span {
	color: #285b4c;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rly-ai-bio__result > p {
	margin: 8px 0 12px;
	color: var(--rly-account-ink);
	font-size: 13px;
	line-height: 1.65;
	white-space: pre-line;
}

.rly-ai-bio__result > div {
	display: flex;
	gap: 9px;
	align-items: center;
	flex-wrap: wrap;
}

.rly-ai-bio__result .rly-button {
	min-height: 34px;
	padding: 7px 12px;
	font-size: 11px;
}

.rly-provider-editor__actions {
	display: flex;
	gap: 14px;
	margin-top: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.rly-provider-editor__actions a {
	color: #8c612f;
	font-size: 12px;
	font-weight: 800;
}

.rly-provider-editor__actions button:disabled {
	opacity: .48;
	filter: grayscale(.25);
	cursor: not-allowed;
	box-shadow: none;
}

.rly-profile-unsaved-modal {
	position: fixed;
	z-index: 100040;
	inset: 0;
	display: grid;
	padding: 22px;
	place-items: center;
}

.rly-profile-unsaved-modal[hidden] {
	display: none !important;
}

.rly-profile-unsaved-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(13, 27, 23, .72);
	backdrop-filter: blur(4px);
}

.rly-profile-unsaved-modal__panel {
	position: relative;
	z-index: 1;
	width: min(440px, calc(100vw - 32px));
	padding: 27px;
	text-align: center;
	background: #fff;
	border: 1px solid #d7e1dc;
	border-radius: 17px;
	box-shadow: 0 26px 72px rgba(8, 25, 19, .34);
	animation: rly-delete-modal-in .2s ease both;
}

.rly-profile-unsaved-modal__icon {
	display: grid;
	width: 44px;
	height: 44px;
	margin: 0 auto 13px;
	place-items: center;
	color: #76531f;
	font: 900 23px/1 Georgia, serif;
	background: #fff4dc;
	border: 1px solid #e8cb91;
	border-radius: 50%;
}

.rly-provider-editor .rly-profile-unsaved-modal__panel h4 {
	margin: 0 0 8px;
	font-size: 25px;
}

.rly-profile-unsaved-modal__panel p {
	margin: 0 auto 20px;
	color: #61726c;
	font-size: 12px;
	line-height: 1.6;
}

.rly-profile-unsaved-modal__panel > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.rly-profile-unsaved-modal__panel button {
	min-height: 42px;
	padding: 9px 12px;
	color: #285246;
	font: inherit;
	font-size: 10px;
	font-weight: 850;
	background: #eff4f1;
	border: 1px solid #d1ded8;
	border-radius: 10px;
	cursor: pointer;
}

.rly-profile-unsaved-modal__panel button.is-leave {
	color: #fff;
	background: #8d3d38;
	border-color: #8d3d38;
}

@media (max-width: 520px) {
	.rly-profile-unsaved-modal__panel {
		padding: 23px 18px;
	}

	.rly-profile-unsaved-modal__panel > div {
		grid-template-columns: 1fr;
	}
}

.rly-vehicle-delete-button {
	min-height: 38px;
	margin-left: auto;
	padding: 8px 13px;
	color: #a13a36;
	font-size: 11px;
	font-weight: 850;
	background: #fff7f6;
	border: 1px solid #e4b8b5;
	border-radius: 9px;
	cursor: pointer;
}

.rly-vehicle-delete-button:hover { color: #fff; background: #a13a36; border-color: #a13a36; }

body.rly-modal-open { overflow: hidden; }
.rly-vehicle-delete-modal {
	position: fixed;
	z-index: 10020;
	inset: 0;
	display: grid;
	padding: 20px;
	place-items: center;
}
.rly-vehicle-delete-modal[hidden] { display: none; }
.rly-vehicle-delete-modal__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; background: rgb(13 29 24 / 58%); border: 0; cursor: default; backdrop-filter: blur(3px); }
.rly-vehicle-delete-modal__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 470px);
	box-sizing: border-box;
	padding: 28px;
	color: #183d31;
	text-align: center;
	background: #fff;
	border: 1px solid #e5ded9;
	border-radius: 18px;
	box-shadow: 0 28px 80px rgb(9 25 20 / 30%);
	animation: rly-delete-modal-in .18s ease-out;
}
.rly-vehicle-delete-modal__icon { display: grid; width: 42px; height: 42px; margin: 0 auto 13px; place-items: center; color: #a13a36; font-size: 22px; font-weight: 900; background: #fff0ef; border-radius: 50%; }
.rly-vehicle-delete-modal__panel h4 { margin: 0; font-size: 22px; }
.rly-vehicle-delete-modal__panel > p { margin: 9px auto 18px; color: #65746e; font-size: 12px; line-height: 1.55; }
.rly-vehicle-delete-modal__vehicle { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 13px; padding: 10px; align-items: center; text-align: left; background: #f6f8f6; border: 1px solid #dfe7e2; border-radius: 12px; }
.rly-vehicle-delete-modal__vehicle img { display: block; width: 92px; height: 62px; object-fit: cover; background: #eef2ef; border-radius: 8px; }
.rly-vehicle-delete-modal__vehicle div { display: grid; min-width: 0; gap: 4px; }
.rly-vehicle-delete-modal__vehicle strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.rly-vehicle-delete-modal__vehicle span { color: #65746e; font-size: 10px; }
.rly-vehicle-delete-modal__warning { margin: 14px 0 18px; color: #943631; font-size: 11px; font-weight: 850; }
.rly-vehicle-delete-modal form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rly-vehicle-delete-modal form button { min-height: 42px; padding: 9px 13px; color: #264d41; font-size: 11px; font-weight: 850; background: #f2f5f3; border: 1px solid #d7e1dc; border-radius: 10px; cursor: pointer; }
.rly-vehicle-delete-modal form button.is-delete { color: #fff; background: #a13a36; border-color: #a13a36; }
.rly-vehicle-delete-modal form button:hover { filter: brightness(.96); }

@keyframes rly-delete-modal-in {
	from { opacity: 0; transform: translateY(8px) scale(.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 520px) {
	.rly-vehicle-delete-modal__panel { padding: 22px 18px; }
	.rly-vehicle-delete-modal__vehicle { grid-template-columns: 76px minmax(0, 1fr); }
	.rly-vehicle-delete-modal__vehicle img { width: 76px; height: 56px; }
}

.rly-driver-profile-workspace {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.rly-driver-profile-tabs {
	display: flex;
	width: fit-content;
	padding: 4px;
	gap: 4px;
	background: #ecefe9;
	border: 1px solid #d9e0da;
	border-radius: 11px;
}

.rly-driver-profile-tabs button {
	min-height: 38px;
	padding: 9px 18px;
	color: #5d7069;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	background: transparent;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
}

.rly-driver-profile-tabs button[aria-selected="true"] {
	color: #fff;
	background: var(--rly-account-green);
	box-shadow: 0 4px 12px rgba(23, 53, 45, 0.18);
}

.rly-driver-profile-tabs button:focus-visible {
	outline: 2px solid #b77a2d;
	outline-offset: 2px;
}

.rly-driver-profile-workspace > [role="tabpanel"][hidden] {
	display: none !important;
}

.rly-driver-preview {
	position: static;
	min-width: 0;
	padding: 20px;
	background: #f1f5f2;
	border: 1px solid #d8e2dc;
	border-radius: 16px;
}

.rly-driver-preview > header {
	margin-bottom: 14px;
}

.rly-driver-preview > header > span {
	color: #9a6930;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.rly-driver-preview > header h4 {
	margin: 4px 0 5px;
	font: 400 23px/1.15 Georgia, "Times New Roman", serif;
}

.rly-driver-preview > header p {
	margin: 0;
	color: var(--rly-account-muted);
	font-size: 11px;
	line-height: 1.55;
}

.rly-driver-preview > header small {
	display: inline-block;
	padding: 4px 8px;
	margin-top: 9px;
	color: #49655c;
	font-size: 9px;
	font-weight: 800;
	background: #e2ebe6;
	border-radius: 999px;
}

.rly-driver-preview > header small[data-state="changed"] {
	color: #7c531e;
	background: #f8e8cd;
}

.rly-driver-preview-card .driver-visual {
	position: relative;
}

.rly-driver-preview-card :is([data-preview-carousel-previous], [data-preview-carousel-next], [data-preview-carousel-count]) {
	z-index: 5;
}

.rly-driver-preview-card [data-preview-slide][hidden],
.rly-driver-preview-card .driver-visual > span[data-preview-initials][hidden] {
	display: none;
}

.rly-preview-rating {
	color: #e0a321;
	font-size: 10px;
	white-space: nowrap;
}

.rly-preview-rating b {
	color: var(--rly-account-ink);
}

.rly-preview-future-value,
.rly-driver-preview-card [data-preview-years-placeholder],
.driver-card-price [data-preview-price-placeholder] {
	color: #89958f;
	font-size: 9px;
	font-style: italic;
}

.rly-preview-only-modal[hidden] {
	display: none !important;
}

.rly-preview-only-modal {
	position: fixed;
	z-index: 100050;
	inset: 0;
	display: grid;
	padding: 20px;
	place-items: center;
}

.rly-preview-only-modal__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: rgba(12, 31, 26, 0.58);
	border: 0;
	cursor: default;
}

.rly-preview-only-modal__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 430px);
	padding: 28px;
	color: #17352d;
	text-align: center;
	background: #fff;
	border: 1px solid #dce5e0;
	border-radius: 18px;
	box-shadow: 0 26px 75px rgba(9, 37, 30, 0.28);
}

.rly-preview-only-modal__panel > span {
	display: grid;
	width: 44px;
	height: 44px;
	margin: 0 auto 13px;
	place-items: center;
	color: #fff;
	font-size: 19px;
	font-weight: 900;
	background: var(--rly-account-green);
	border-radius: 50%;
}

.rly-preview-only-modal__panel h4 {
	margin: 0;
	font: 24px/1.15 Georgia, "Times New Roman", serif;
}

.rly-preview-only-modal__panel p {
	margin: 10px 0 20px;
	color: #667a72;
	font-size: 12px;
	line-height: 1.6;
}

.rly-preview-only-modal__panel button {
	min-width: 110px;
	min-height: 42px;
	padding: 10px 18px;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	background: var(--rly-account-green);
	border: 0;
	border-radius: 9px;
	cursor: pointer;
}

aside.rly-driver-preview > p.rly-driver-preview__notice {
	display: block;
	margin: 24px 0 0;
	color: #78877f;
	font-size: 9px;
	text-align: center;
}

@media (max-width: 620px) {
	.rly-driver-preview-card.driver-directory-card {
		grid-template-columns: 1fr;
	}

	.rly-driver-preview-card .driver-visual {
		min-height: 190px;
	}
}

.rly-vehicle-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 15px;
	margin: 24px 0;
}

.rly-vehicle-tile {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 205px;
	overflow: hidden;
	color: #183d31;
	background: #fff;
	border: 1px solid #dce6e0;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgb(24 61 49 / 7%);
	flex-direction: column;
}

.rly-vehicle-tile.is-selected {
	border-color: #2b6b57;
	box-shadow: 0 0 0 2px rgb(43 107 87 / 13%), 0 8px 22px rgb(24 61 49 / 8%);
}

.rly-vehicle-tile--add {
	align-items: center;
	justify-content: center;
	gap: 9px;
	color: #fff;
	text-decoration: none;
	background: #17221f;
	border-color: #17221f;
}

.rly-vehicle-tile--add:hover { color: #fff; background: #22322d; }
.rly-vehicle-tile--add > span { font-size: 52px; font-weight: 300; line-height: .8; }
.rly-vehicle-tile--add > strong { font-size: 12px; letter-spacing: .03em; }

.rly-vehicle-tile__image {
	height: 130px;
	overflow: hidden;
	background: #eef2ef;
}

.rly-vehicle-tile__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rly-vehicle-tile__copy { display: grid; padding: 13px 14px 14px; gap: 4px; }
.rly-vehicle-tile__copy strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.rly-vehicle-tile__copy span { color: #65746e; font-size: 10px; line-height: 1.4; }

.rly-vehicle-tile__edit {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	color: #183d31;
	background: rgb(255 255 255 / 92%);
	border: 1px solid rgb(24 61 49 / 14%);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgb(20 49 40 / 15%);
}

.rly-vehicle-tile__edit:hover { color: #fff; background: #205b49; }
.rly-vehicle-tile__edit svg { width: 17px; height: 17px; fill: currentColor; }

.rly-vehicle-gallery + .rly-vehicle-editor { margin-top: 24px; }

@media (max-width: 520px) {
	.rly-vehicle-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.rly-vehicle-tile { min-height: 175px; }
	.rly-vehicle-tile__image { height: 105px; }
}

.rly-vehicle-editor {
	display: grid;
	gap: 22px;
	padding: 22px;
	background: #fff;
	border: 1px solid #dde6e0;
	border-radius: 16px;
}

.rly-vehicle-editor h4 { margin: 0; }

.rly-vehicle-editor .rly-provider-editor__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rly-vehicle-editor label > span {
	display: block;
	margin-bottom: 7px;
	font-size: 12px;
	font-weight: 800;
}

.rly-vehicle-editor :is(input, select) {
	box-sizing: border-box;
	width: 100%;
	height: 48px;
	min-height: 48px;
	padding: 10px 13px;
	background: #fff;
	border: 1px solid #cedbd4;
	border-radius: 10px;
	font-size: 14px;
}

.rly-vehicle-type-picker {
	position: relative;
}

.rly-vehicle-type-picker__control { position: relative; }
.rly-vehicle-type-picker__control > input { width: 100%; }
.rly-vehicle-type-picker__selected-icon {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 10px;
	display: block;
	width: 48px;
	height: 28px;
	object-fit: contain;
	background: #fbf8f1;
	border-radius: 5px;
	transform: translateY(-50%);
	pointer-events: none;
}
.rly-vehicle-type-picker__selected-icon:not([hidden]) + input { padding-left: 68px; }
.rly-vehicle-type-picker__selected-icon[hidden] { display: none; }

.rly-vehicle-catalog-field { position: relative; }
.rly-vehicle-catalog-field label > span { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.rly-vehicle-catalog-field > small {
	display: none;
}
.rly-vehicle-catalog-field > small[hidden] { display: none; }
.rly-vehicle-catalog-options {
	position: absolute;
	z-index: 26;
	top: 75px;
	left: 0;
	display: grid;
	width: 100%;
	max-height: 285px;
	padding: 7px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #d3dfd8;
	border-radius: 13px;
	box-shadow: 0 16px 35px rgb(21 61 48 / 14%);
}
.rly-vehicle-catalog-options[hidden] { display: none; }
.rly-vehicle-catalog-options button { padding: 9px 10px; color: #183d31; font-size: 12px; font-weight: 750; text-align: left; background: transparent; border: 0; border-radius: 8px; cursor: pointer; }
.rly-vehicle-catalog-options button:hover { background: #edf5f0; }
.rly-vehicle-catalog-options p { margin: 4px; padding: 8px; color: #687a72; font-size: 11px; line-height: 1.45; }

.rly-vehicle-type-picker label > span {
	display: block;
	margin-bottom: 7px;
	font-size: 12px;
	font-weight: 800;
}

.rly-vehicle-type-options {
	position: absolute;
	z-index: 25;
	top: 75px;
	left: 0;
	display: grid;
	width: 100%;
	max-height: 310px;
	padding: 7px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #d3dfd8;
	border-radius: 13px;
	box-shadow: 0 16px 35px rgb(21 61 48 / 14%);
}

.rly-vehicle-type-options[hidden] { display: none; }

.rly-vehicle-type-options button {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 11px;
	min-height: 56px;
	padding: 8px 10px;
	align-items: center;
	color: #183d31;
	text-align: left;
	background: transparent;
	border: 0;
	border-radius: 9px;
	cursor: pointer;
}

.rly-vehicle-type-options button:hover,
.rly-vehicle-type-options button[aria-selected="true"] { background: #edf5f0; }
.rly-vehicle-type-options button[hidden] { display: none; }
.rly-vehicle-type-option__icon {
	display: block;
	width: 64px;
	height: 36px;
	object-fit: contain;
	background: #fbf8f1;
	border-radius: 6px;
}
.rly-vehicle-type-option__copy { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
.rly-vehicle-type-options button strong { font-size: 13px; }
.rly-vehicle-type-options button small { color: #6a7b74; font-size: 10px; }

.rly-luggage-fields {
	grid-column: 1 / -1;
	width: calc(66.6667% - 5px);
	overflow: hidden;
	background: #fff;
	border: 1px solid #d9e4de;
	border-radius: 12px;
	transition: background-color .2s ease, border-color .2s ease;
}
.rly-luggage-fields[open] { background: #f3f7f4; border-color: #c9dbd1; }
.rly-luggage-fields summary {
	display: flex;
	min-height: 48px;
	padding: 10px 14px;
	gap: 10px;
	align-items: center;
	color: #183d31;
	font-size: 12px;
	font-weight: 850;
	cursor: pointer;
	list-style: none;
}
.rly-luggage-fields summary::-webkit-details-marker { display: none; }
.rly-luggage-fields summary::before { content: "+"; display: grid; width: 22px; height: 22px; place-items: center; color: #285b4c; background: #e5efe9; border-radius: 50%; font-size: 16px; line-height: 1; }
.rly-luggage-fields[open] summary::before { content: "−"; }
.rly-luggage-fields summary small { padding: 4px 8px; color: #6b7c75; font-size: 9px; font-weight: 800; background: #eef2ef; border-radius: 999px; text-transform: uppercase; }
.rly-luggage-fields > div { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 4px 14px 16px; border-top: 1px solid #dbe6df; }
.rly-luggage-fields > div label { padding-top: 13px; }

.rly-vehicle-pricing-fields { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.rly-vehicle-currency-control { position: relative; }
.rly-vehicle-currency-control select {
	padding-right: 42px;
	appearance: none;
	-webkit-appearance: none;
}
.rly-vehicle-currency-control::after {
	position: absolute;
	top: 50%;
	right: 16px;
	width: 7px;
	height: 7px;
	content: "";
	border-right: 2px solid #40534c;
	border-bottom: 2px solid #40534c;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}

.rly-vehicle-photo-carousel {
	min-width: 0;
	padding: 20px;
	border: 1px solid #d9e4de;
	border-radius: 16px;
}

.rly-vehicle-photo-carousel legend {
	padding: 0 8px;
	font-weight: 900;
}

.rly-vehicle-photo-carousel > p {
	margin: 0 0 16px;
	color: #687a72;
	font-size: 12px;
}

.rly-vehicle-photo-carousel__stage {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	gap: 12px;
	align-items: center;
}

.rly-vehicle-photo-carousel__slides { min-width: 0; }

.rly-vehicle-photo-slide {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
	min-height: 350px;
	overflow: hidden;
	background: #f9faf9;
	border: 1px solid #e0e8e3;
	border-radius: 15px;
}

.rly-vehicle-photo-slide[hidden] { display: none; }
.rly-vehicle-photo-slide.is-active { animation: rly-vehicle-slide-reveal .18s ease-out; }
.rly-vehicle-photo-slide__visual { position: relative; display: grid; min-width: 0; background: #f3f6f4; place-items: center; }
.rly-vehicle-photo-slide__visual :is(img, svg) {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 390px;
	object-fit: cover;
}
.rly-vehicle-photo-slide__visual :is(img, svg)[hidden] { display: none; }
.rly-vehicle-photo-slide__visual .rly-vehicle-photo-guide { object-fit: contain; background: var(--rly-guide-bg, #fbf8f1); }
.rly-vehicle-photo-slide__visual svg { padding: 22px; object-fit: contain; }

.rly-vehicle-photo-slide__copy { display: flex; padding: 28px; flex-direction: column; justify-content: center; }
.rly-vehicle-photo-slide__copy > span { color: #8b5e35; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.rly-vehicle-photo-slide__copy h5 { margin: 7px 0 8px; color: #183d31; font-size: 21px; }
.rly-vehicle-photo-slide__copy p { margin: 0 0 18px; color: #65766f; font-size: 12px; line-height: 1.6; }

.rly-vehicle-photo-upload { position: relative; display: inline-flex; align-self: flex-start; overflow: hidden; cursor: pointer; }
.rly-vehicle-photo-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.rly-vehicle-editor .rly-vehicle-photo-upload > span {
	display: inline-grid;
	width: auto;
	height: 42px;
	min-height: 42px;
	box-sizing: border-box;
	margin: 0;
	padding: 0 15px;
	place-items: center;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	background: #205b49;
	border-radius: 10px;
}

.rly-vehicle-photo-carousel__arrow {
	display: grid;
	width: 40px;
	height: 40px;
	padding: 0;
	place-items: center;
	color: #205b49;
	font-size: 29px;
	line-height: 1;
	background: #fff;
	border: 1px solid #d4e0d9;
	border-radius: 50%;
	cursor: pointer;
}

.rly-vehicle-photo-carousel__dots { display: flex; gap: 9px; margin-top: 17px; justify-content: center; }
.rly-vehicle-photo-carousel__dots button { width: 10px; height: 10px; padding: 0; background: #1f755b; border: 2px solid transparent; border-radius: 50%; cursor: pointer; }
.rly-vehicle-photo-carousel__dots button.is-missing { background: #d84c48; }
.rly-vehicle-photo-carousel__dots button.is-current { outline: 3px solid rgb(31 117 91 / 20%); outline-offset: 2px; }

@keyframes rly-vehicle-slide-reveal {
	from { opacity: .55; }
	to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.rly-vehicle-photo-slide.is-active { animation: none; }
}

@media (max-width: 760px) {
	.rly-vehicle-editor .rly-provider-editor__grid { grid-template-columns: 1fr; }
	.rly-luggage-fields > div { grid-template-columns: 1fr; }
	.rly-luggage-fields { width: 100%; }
	.rly-vehicle-pricing-fields { grid-template-columns: 1fr; }
	.rly-vehicle-photo-carousel { padding: 14px; }
	.rly-vehicle-photo-carousel__stage { grid-template-columns: 32px minmax(0, 1fr) 32px; gap: 6px; }
	.rly-vehicle-photo-carousel__arrow { width: 32px; height: 32px; font-size: 23px; }
	.rly-vehicle-photo-slide { grid-template-columns: 1fr; }
	.rly-vehicle-photo-slide__visual { min-height: 230px; }
	.rly-vehicle-photo-slide__copy { padding: 20px; }
	.rly-vehicle-type-options button { grid-template-columns: 48px minmax(0, 1fr); }
	.rly-vehicle-type-option__icon { width: 48px; height: 30px; }
	.rly-vehicle-type-options button small { display: none; }
}

.rly-provider-remove {
	padding-top: 16px;
	text-align: right;
}

.rly-provider-remove button {
	padding: 0;
	color: #9a3f35;
	font-size: 11px;
	font-weight: 800;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-decoration: underline;
}

.rly-messages__layout {
	display: grid;
	grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1.7fr);
	min-height: 520px;
	overflow: hidden;
	border: 1px solid var(--rly-account-border);
	border-radius: 14px;
}

.rly-messages__conversations {
	padding: 10px;
	background: #f7f4ec;
	border-right: 1px solid var(--rly-account-border);
}

.rly-messages__conversations a {
	display: grid;
	gap: 4px;
	padding: 12px;
	color: var(--rly-account-ink);
	text-decoration: none;
	border-radius: 9px;
}

.rly-messages__conversations a.is-current {
	background: #fff;
	box-shadow: 0 6px 18px rgba(23, 53, 45, 0.08);
}

.rly-messages__conversations span {
	color: var(--rly-account-muted);
	font-size: 10px;
	line-height: 1.4;
}

.rly-messages__thread {
	display: grid;
	grid-template-rows: auto minmax(250px, 1fr) auto;
	min-width: 0;
}

.rly-messages__thread-head {
	display: flex;
	padding: 15px 18px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--rly-account-border);
}

.rly-messages__thread-head span {
	color: #315f50;
	font-size: 10px;
	font-weight: 800;
}

.rly-messages__custom-quote {
	padding: 6px 9px;
	color: #fff;
	font-size: 9px;
	font-weight: 850;
	text-decoration: none;
	background: #245b49;
	border-radius: 7px;
}

.rly-messages__items {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-height: 520px;
	padding: 18px;
	overflow-y: auto;
	background: #fcfbf7;
}

.rly-messages__items article {
	width: fit-content;
	max-width: min(82%, 620px);
	align-self: flex-start;
	padding: 11px 13px;
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 12px 12px 12px 3px;
}

.rly-messages__items article.is-mine {
	align-self: flex-end;
	color: #fff;
	background: var(--rly-account-green);
	border-color: var(--rly-account-green);
	border-radius: 12px 12px 3px 12px;
}

.rly-messages__items article :is(strong, time) {
	display: block;
	font-size: 9px;
}

.rly-messages__items article p {
	margin: 5px 0;
	font-size: 12px;
	line-height: 1.5;
}

.rly-messages__items article time {
	opacity: 0.65;
}

.rly-messages__empty {
	margin: auto;
	color: var(--rly-account-muted);
	font-size: 12px;
}

.rly-messages__composer {
	display: grid;
	gap: 9px;
	padding: 14px;
	border-top: 1px solid var(--rly-account-border);
}

.rly-messages__composer label {
	font-size: 10px;
	font-weight: 800;
}

.rly-messages__composer textarea {
	width: 100%;
	min-height: 86px;
	padding: 11px;
	border: 1px solid var(--rly-account-border);
	border-radius: 9px;
	resize: vertical;
}

.rly-messages__composer .rly-button {
	justify-self: end;
}

.rly-dashboard__primary {
	background: var(--rly-account-green);
	border-color: var(--rly-account-green);
	color: #fff;
}

.rly-dashboard__primary .rly-dashboard__step {
	color: #ebc98f;
}

.rly-dashboard__primary h3 {
	color: #fff;
	font: 400 clamp(28px, 4vw, 39px) / 1.1 Georgia, "Times New Roman", serif;
}

.rly-dashboard__primary p {
	max-width: 590px;
	color: rgba(255, 255, 255, 0.72);
}

.rly-dashboard__primary .rly-button {
	margin-top: 8px;
	color: var(--rly-account-ink) !important;
	background: #fff;
}

.rly-dashboard__secondary {
	box-shadow: none;
}

.rly-dashboard__secondary h3 {
	color: var(--rly-account-ink);
	font: 400 24px Georgia, "Times New Roman", serif;
}

.rly-dashboard__secondary p {
	color: var(--rly-account-muted);
	font-size: 13px;
	line-height: 1.6;
}

.rly-dashboard__secondary a {
	display: block;
	margin-top: 12px;
}

.rly-availability {
	position: relative;
	padding: clamp(24px, 4vw, 42px);
	margin-top: 24px;
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(23, 53, 45, 0.08);
}

.rly-availability.is-ajax-loading {
	pointer-events: none;
}

.rly-availability.is-ajax-loading::before {
	position: absolute;
	z-index: 5;
	inset: 0;
	content: "";
	background: rgb(255 255 255 / 68%);
	border-radius: inherit;
}

.rly-availability.is-ajax-loading::after {
	position: absolute;
	z-index: 6;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 26px;
	margin: -13px;
	content: "";
	border: 3px solid #dce8e3;
	border-top-color: var(--rly-account-green);
	border-radius: 50%;
	animation: rly-availability-spin 0.75s linear infinite;
}

@keyframes rly-availability-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 560px) {
	.rly-availability-calendar-modal {
		padding: 14px;
	}

	.rly-availability-calendar-modal > section {
		padding: 26px 20px 20px;
	}

	.rly-availability-calendar-modal footer {
		flex-direction: column-reverse;
	}

	.rly-availability-calendar-modal footer .rly-button {
		width: 100%;
	}
}

.rly-availability__header {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
	align-items: start;
	justify-content: space-between;
}

.rly-availability__header h3 {
	margin-bottom: 8px;
	color: var(--rly-account-ink);
	font: 400 clamp(25px, 3vw, 34px) / 1.15 Georgia, "Times New Roman", serif;
}

.rly-availability__header p,
.rly-availability__empty {
	margin-bottom: 0;
	color: var(--rly-account-muted);
	font-size: 13px;
	line-height: 1.6;
}

.rly-availability__form {
	display: grid;
	grid-template-columns: repeat(2, minmax(135px, 180px)) minmax(220px, 1fr) auto;
	gap: 14px;
	padding: 20px;
	align-items: end;
	background: var(--rly-account-cream);
	border-radius: 12px;
}

.rly-availability__form label > span {
	display: block;
	margin-bottom: 7px;
	color: var(--rly-account-ink);
	font-size: 11px;
	font-weight: 800;
}

.rly-availability__form label > span small {
	color: var(--rly-account-muted);
	font-weight: 500;
}

.rly-availability__form :is(input, select) {
	width: 100%;
	height: 40px;
	min-height: 40px;
	padding: 7px 10px;
	box-sizing: border-box;
	color: var(--rly-account-ink);
	font: inherit;
	font-size: 11px;
	background: #fff;
	border: 1px solid var(--rly-account-border);
	border-radius: 8px;
}

.rly-availability__form :is(input, select):focus {
	border-color: #9a6d35;
	box-shadow: 0 0 0 3px rgba(211, 166, 94, 0.18);
	outline: none;
}

.rly-availability__note {
	grid-column: auto;
}

.rly-availability__form .rly-button {
	min-height: 40px;
	align-self: end;
}

.rly-availability__list {
	margin-top: 28px;
}

.rly-availability__list h4 {
	margin: 0 0 12px;
	color: var(--rly-account-ink);
	font-size: 14px;
}

.rly-availability__list ul {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rly-availability__list li {
	display: flex;
	gap: 18px;
	padding: 14px 16px;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--rly-account-border);
	border-radius: 10px;
}

.rly-availability__list li :is(strong, span, small) {
	display: block;
}

.rly-availability__list li strong {
	margin-bottom: 3px;
	font-size: 13px;
}

.rly-availability__list li span {
	color: #435a52;
	font-size: 12px;
}

.rly-availability__list li small {
	margin-top: 4px;
	color: var(--rly-account-muted);
	font-size: 10px;
}

.rly-availability__delete {
	padding: 7px 11px;
	color: #762e28;
	background: #fff0ee;
	border: 1px solid #e9b4ae;
	border-radius: 999px;
	cursor: pointer;
	font-size: 11px;
	font-weight: 800;
}

.rly-account--compact {
	max-width: 620px;
	margin: 0 auto;
}

.rly-account--compact .rly-alert {
	margin: 0;
	text-align: center;
}

.rly-account--compact .rly-button {
	margin-top: 10px;
}

@media (max-width: 820px) {
	.rly-won-quotes-tools__filters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rly-won-quotes-tools__filters label:first-child,
	.rly-won-quotes-tools__filters .rly-won-quotes-tools__clear { grid-column: 1 / -1; }
	.rly-won-quotes-tools__actions { align-items: flex-start; flex-wrap: wrap; }
	.rly-won-quotes-tools__actions > small { flex: 1 1 auto; }

	.rly-booking-calendar > .rly-booking-calendar__intro {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.rly-booking-calendar__summary {
		align-self: stretch;
		justify-content: center;
	}

	.rly-verification-grid {
		grid-template-columns: 1fr;
	}

	.rly-driver-onboarding__journey {
		height: 112px;
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-color: rgba(235, 201, 143, 0.5) transparent;
		scrollbar-width: thin;
	}

	.rly-driver-onboarding__progress,
	.rly-driver-onboarding__timeline {
		min-width: 650px;
	}
	.rly-dashboard__content,
	.rly-dashboard-panel,
	.rly-dashboard-table-wrap {
		min-width: 0;
		max-width: 100%;
	}

	.rly-dashboard-table-wrap {
		position: relative;
		overscroll-behavior-inline: contain;
	}

	.rly-account--register {
		grid-template-columns: 1fr;
	}

	.rly-account__intro {
		position: static;
		padding-top: 0;
	}

	.rly-dashboard__header {
		margin-bottom: 26px;
	}

	.rly-dashboard__grid {
		grid-template-columns: 1fr;
	}

	.rly-dashboard__shell {
		grid-template-columns: 1fr;
	}

	.rly-dashboard__sidebar {
		position: static;
	}

	.rly-dashboard__sidebar nav {
		display: flex;
		overflow-x: auto;
		padding-bottom: 3px;
	}

	.rly-dashboard__sidebar :is(a, nav > span) {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	.rly-quote-request-toggle {
		min-height: 44px;
		padding: 10px 2px;
	}

	.rly-traveler-quotes__header,
	.rly-provider-request-card__summary {
		align-items: flex-start;
		flex-direction: column;
	}

	.rly-quote-inbox-tabs a,
	.rly-driver-bookings-tabs a {
		min-height: 66px;
		padding: 10px 8px 12px;
		grid-template-columns: 20px minmax(0, 1fr);
		gap: 7px;
	}

	.rly-quote-inbox-tabs a > b,
	.rly-quote-inbox-tabs small,
	.rly-driver-bookings-tabs small {
		display: none;
	}

	.rly-quote-inbox-tabs strong,
	.rly-driver-bookings-tabs strong { font-size: 10px; }

	.rly-quote-mail-row {
		grid-template-columns: 9px minmax(0, 1fr) auto;
		gap: 9px;
	}

	.rly-quote-mail-row__sender { grid-column: 2; }
	.rly-quote-mail-row__subject { grid-column: 2 / -1; }
	.rly-quote-mail-row__meta { grid-column: 2; text-align: left; }
	.rly-quote-mail-row__meta .rly-quote-status { margin-left: 0; }
	.rly-quote-mail-row__action,
	.rly-quote-mail-row__closed { grid-column: 3; grid-row: 1 / span 2; }

	.rly-quote-mail-header { display: none; }
	.rly-quote-mail-list--new .rly-quote-mail-row--new { grid-template-columns: 27px minmax(0, 1fr) minmax(105px, .65fr) 18px; gap: 10px; }
	.rly-quote-mail-row--new .rly-quote-mail-row__marker { grid-column: 1; grid-row: 1; }
	.rly-quote-mail-row--new .rly-quote-mail-row__traveler { grid-column: 2 / span 2; grid-row: 1; }
	.rly-quote-mail-row--new .rly-quote-mail-row__trip { grid-column: 2 / -1; }
	.rly-quote-mail-row--new .rly-quote-mail-row__quotes { grid-column: 2; }
	.rly-quote-mail-row--new .rly-quote-mail-row__vehicle,
	.rly-quote-mail-row--new .rly-quote-mail-row__earning,
	.rly-quote-mail-row--new .rly-quote-mail-row__average { grid-column: 3; text-align: left; }
	.rly-quote-mail-row--new .rly-quote-mail-row__submitted { grid-column: 2; }
	.rly-quote-mail-row--new .rly-quote-mail-row__chevron { grid-column: 4; grid-row: 1; }
	.rly-quote-mail-detail { padding: 16px 20px; grid-template-columns: 1fr 1fr; }

	.rly-provider-quote-form {
		grid-template-columns: 1fr;
	}

	.rly-provider-quote-form .is-wide {
		grid-column: auto;
	}

	.rly-dashboard__tiles-header {
		flex-direction: column;
		align-items: start;
	}

	.rly-dashboard__tile-grid {
		grid-template-columns: 1fr;
	}

	.rly-dashboard-profile {
		grid-template-columns: 1fr;
	}

	.rly-provider-editor__grid {
		grid-template-columns: 1fr;
	}

	.rly-provider-editor[data-driver-profile-form] .rly-provider-editor__grid,
	.rly-provider-editor[data-driver-profile-form] .rly-provider-editor__actions {
		width: 100%;
	}

	.rly-provider-editor[data-driver-profile-form] .rly-provider-editor__grid {
		grid-template-columns: 1fr;
	}

	.rly-provider-editor__two-thirds,
	.rly-provider-editor__country,
	.rly-provider-editor__city,
	.rly-provider-editor__years,
	.rly-provider-editor__languages {
		grid-column: 1;
	}

	.rly-provider-editor__bio {
		grid-column: auto;
	}

	.rly-messages__layout {
		grid-template-columns: 1fr;
	}

	.rly-messages__conversations {
		display: flex;
		overflow-x: auto;
		border-right: 0;
		border-bottom: 1px solid var(--rly-account-border);
	}

	.rly-messages__conversations a {
		flex: 0 0 210px;
	}

	.rly-availability__form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rly-availability__note {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.rly-account__panel,
	.rly-dashboard__primary,
	.rly-dashboard__secondary,
	.rly-dashboard__tile,
	.rly-account__signed-in,
	.rly-account--compact .rly-alert,
	.rly-availability {
		padding: 22px;
		border-radius: 13px;
	}

	.rly-role-options,
	.rly-account-form__row {
		grid-template-columns: 1fr;
	}

	.rly-role-option > span {
		min-height: 0;
	}

	.rly-availability__form {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.rly-dashboard__tiles {
		margin-top: 18px;
	}

	.rly-availability__note {
		grid-column: auto;
	}

	.rly-availability__list li {
		align-items: start;
		flex-direction: column;
	}
}

.rly-saved-drivers {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.rly-saved-driver {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding: 15px;
	border: 1px solid var(--rly-account-border);
	border-radius: 16px;
	background: #fff;
}

.rly-saved-driver__image {
	display: grid;
	overflow: hidden;
	height: 104px;
	place-items: center;
	color: #fff;
	font-size: 32px;
	font-weight: 800;
	background: #6f9187;
	border-radius: 12px;
	text-decoration: none;
}

.rly-saved-driver__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rly-saved-driver__details > span {
	color: var(--rly-account-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.rly-saved-driver__details h4 {
	margin: 4px 0;
	font-size: 20px;
}

.rly-saved-driver__details h4 a {
	color: var(--rly-account-ink);
	text-decoration: none;
}

.rly-saved-driver__details p {
	margin: 0;
	color: var(--rly-account-muted);
}

.rly-saved-driver__fleet {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}

.rly-saved-driver__fleet span {
	padding: 5px 8px;
	color: #31584d;
	font-size: 11px;
	font-weight: 700;
	background: #edf5f2;
	border-radius: 999px;
}

.rly-saved-driver__actions {
	display: grid;
	justify-items: end;
	gap: 9px;
}

.rly-saved-driver__actions > strong {
	color: #a66b00;
}

.rly-saved-driver__actions button {
	padding: 0;
	color: #8c3445;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	background: transparent;
	border: 0;
	cursor: pointer;
}

@media (max-width: 720px) {
	.rly-dashboard__header { align-items: stretch; flex-direction: column; }
	.rly-dashboard-review-qr { width: fit-content; }
	.rly-confirmed-booking-contacts__grid {
		grid-template-columns: 1fr;
	}

	.rly-profile-gallery__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.rly-profile-gallery-modal {
		padding: 10px;
	}

	.rly-profile-gallery-modal__panel {
		width: calc(100vw - 20px);
		height: calc(100vh - 20px);
	}

	.rly-profile-gallery-modal__panel > header {
		padding: 15px;
	}

	.rly-profile-gallery-modal__scroll {
		height: 100%;
		padding: 10px;
	}

	.rly-profile-gallery-modal__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-auto-rows: 100px;
		gap: 8px;
	}

	.rly-profile-gallery-modal__grid .rly-profile-gallery__tile {
		height: 100px;
	}

	.rly-profile-gallery-modal__image {
		height: min(58vh, 520px);
		padding: 10px;
	}

	.rly-profile-gallery-modal__controls {
		grid-template-columns: 40px 1fr 40px;
	}

	.rly-profile-gallery-modal__controls .is-delete {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.rly-saved-driver {
		grid-template-columns: 84px minmax(0, 1fr);
	}

	.rly-saved-driver__image {
		height: 84px;
	}

	.rly-saved-driver__actions {
		grid-column: 1 / -1;
		grid-template-columns: auto auto auto;
		align-items: center;
		justify-content: start;
		justify-items: start;
	}
}
