.rollo-srr {
	--rollo-purple: #6c13f9;
	--rollo-green: #24c746;
	--rollo-pin: #ae81f9;
	font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #18181b;
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.3;
}

.rollo-srr *,
.rollo-srr *::before,
.rollo-srr *::after {
	box-sizing: border-box;
}

.rollo-srr__screen[hidden] {
	display: none;
}

.rollo-srr input:focus,
.rollo-srr select:focus,
.rollo-srr__tab:focus,
.rollo-srr__unit:focus,
.rollo-srr__pack:focus,
.rollo-srr__back:focus {
	outline: none;
}

.rollo-srr input::placeholder {
	color: #b9b9c0;
}

/* Hide the native number-input spinner arrows. */
.rollo-srr input[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}

.rollo-srr input[type="number"]::-webkit-outer-spin-button,
.rollo-srr input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Numeric / text field values use Lato; everything else Nunito. */
.rollo-srr__zip,
.rollo-srr__dim-input input {
	font-family: "Lato", "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Unconfigured notice */
.rollo-srr__notice {
	background: #fff;
	border: 1px solid #ececef;
	border-radius: 16px;
	padding: 20px 24px;
	color: #71717a;
	font-weight: 600;
	margin: 0;
}

/* --- Card --------------------------------------------------------------- */
.rollo-srr__card {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 8px 30px rgba( 0, 0, 0, 0.06 );
	padding: 34px 40px 30px;
}

/* --- Address rows (form) ------------------------------------------------ */
.rollo-srr__addr-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 0;
	border-bottom: 1px solid #ececef;
}

.rollo-srr__addr-row:first-child {
	padding-top: 6px;
}

.rollo-srr__pin {
	width: 24px;
	height: 24px;
	flex: none;
	display: flex;
}

.rollo-srr__pin svg {
	width: 24px;
	height: 24px;
}

.rollo-srr__pin--from {
	color: var( --rollo-green );
}

.rollo-srr__pin--to {
	color: var( --rollo-pin );
}

/* --- Country combobox --------------------------------------------------- */
.rollo-srr__country {
	position: relative;
	flex: none;
	width: 76px;
}

.rollo-srr__country-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border: 1px solid #e4e4e8;
	border-radius: 10px;
	padding: 10px 12px 10px 14px;
	font-family: inherit;
	font-weight: 600;
	font-size: 18px;
	color: #18181b;
	background-color: #fff;
	cursor: pointer;
}

.rollo-srr__country-caret {
	color: #a1a1aa;
	font-size: 12px;
	line-height: 1;
	margin-left: 4px;
}

.rollo-srr__country-pop {
	position: absolute;
	z-index: 50;
	top: calc( 100% + 8px );
	left: 0;
	width: 300px;
	max-width: 78vw;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba( 30, 27, 38, 0.08 ), 0 20px 56px rgba( 123, 47, 242, 0.14 );
	padding: 8px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* The explicit display above would otherwise override the `hidden` attribute. */
.rollo-srr__country-pop[hidden] {
	display: none;
}

.rollo-srr__country-search {
	width: 100%;
	box-sizing: border-box;
	border: none;
	outline: none;
	border-radius: 10px;
	padding: 10px 12px;
	font-family: inherit;
	font-size: 15px;
	color: #1e1b26;
	background: #f5f3fa;
}

.rollo-srr__country-list {
	list-style: none;
	margin: 0;
	padding: 0 14px 0 0;
	max-height: 264px;
	overflow-y: auto;
}

.rollo-srr__country-opt {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0; /* themes space bare `ul li` (e.g. Salient's 20px) */
	border-radius: 10px;
	padding: 9px 12px;
	cursor: pointer;
}

/* The explicit display above would otherwise override the `hidden` attribute
   used to filter the list, so restore it for filtered-out rows. */
.rollo-srr__country-opt[hidden] {
	display: none;
}

.rollo-srr__country-opt:hover,
.rollo-srr__country-opt.is-active {
	background: #f7f4fd;
}

.rollo-srr__country-name {
	flex: 1;
	font-size: 14px;
	font-weight: 700;
	color: #1e1b26;
}

.rollo-srr__country-abbr {
	font-size: 12px;
	font-weight: 700;
	color: #a9a4b5;
}

.rollo-srr__zip {
	border: none;
	width: 100%;
	background: transparent;
	font-size: 28px;
	font-weight: 500;
	color: #3f3f46;
}

/* --- Package header + units toggle -------------------------------------- */
.rollo-srr__pkg-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
}

.rollo-srr__pkg-title {
	font-size: 24px;
	font-weight: 600;
}

.rollo-srr__units {
	display: flex;
	border: 1px solid #e4e4e8;
	border-radius: 12px;
	background: #fff;
}

.rollo-srr__unit {
	padding: 10px 18px;
	margin: -1px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	color: #3f3f46;
	cursor: pointer;
	background: transparent;
	border: 1.5px solid transparent;
	border-radius: 12px;
}

/* Only color/background change on toggle — geometry stays constant (no shift). */
.rollo-srr__unit.is-active {
	color: #18181b;
	background: #fff;
	border-color: var( --rollo-purple );
	position: relative;
	z-index: 1;
}

/* --- Package type tiles -------------------------------------------------- */
.rollo-srr__packtypes {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	margin-top: 22px;
}

.rollo-srr__pack {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 12px;
	font-family: inherit;
	font-size: 18px;
	font-weight: 600;
	color: #27272a;
	cursor: pointer;
	background: #fff;
	border: 1.5px solid #e4e4e8;
}

.rollo-srr__pack.is-active {
	border-color: var( --rollo-purple );
}

.rollo-srr__pack-icon {
	width: 32px;
	height: 32px;
	flex: none;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.rollo-srr__pack[data-value="PACKAGE"] .rollo-srr__pack-icon {
	background-image: url("https://media.live.rollo-app.com/package-types/PACKAGE_small.png");
}

.rollo-srr__pack[data-value="LETTER"] .rollo-srr__pack-icon {
	background-image: url("https://media.live.rollo-app.com/package-types/LETTER_small.png");
}

.rollo-srr__pack[data-value="SOFT_PACK"] .rollo-srr__pack-icon {
	background-image: url("https://media.live.rollo-app.com/package-types/SOFT_PACK_small.png");
}

/* --- Dimensions + weight ------------------------------------------------- */
.rollo-srr__dims-grid,
.rollo-srr__weight-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 28px;
}

.rollo-srr__dims-grid {
	margin-top: 30px;
}

.rollo-srr__weight-block {
	margin-top: 26px;
}

.rollo-srr__weight-group[hidden] {
	display: none;
}

.rollo-srr__dim-label {
	font-weight: 600;
	font-size: 19px;
	color: #27272a;
	margin-bottom: 10px;
}

.rollo-srr__dim-input {
	display: flex;
	align-items: baseline;
	gap: 6px;
	border-bottom: 1px solid #d9d9de;
	padding-bottom: 6px;
}

.rollo-srr__dim-input input {
	border: none;
	width: 100%;
	min-width: 0;
	background: transparent;
	font-size: 28px;
	font-weight: 500;
	color: #3f3f46;
}

.rollo-srr__unit-label {
	flex: none;
	color: #71717a;
	font-size: 17px;
	font-weight: 600;
}

/* --- Signature / insurance ---------------------------------------------- */
.rollo-srr__parcel-options {
	display: flex;
	gap: 22px;
	margin-top: 22px;
}

.rollo-srr__parcel-options label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: #27272a;
	cursor: pointer;
}

.rollo-srr__parcel-options input {
	width: 16px;
	height: 16px;
	accent-color: var( --rollo-purple );
	cursor: pointer;
}

/* --- Submit (black) ------------------------------------------------------ */
.rollo-srr__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 34px;
	padding: 17px 0;
	border: none;
	border-radius: 999px;
	background: #0a0a0a;
	color: #fff;
	font-family: inherit;
	font-size: 19px;
	font-weight: 600;
	cursor: pointer;
}

.rollo-srr__submit:hover:not( :disabled ) {
	background: #27272a;
}

.rollo-srr__submit:disabled {
	cursor: default;
	opacity: 0.85;
}

.rollo-srr__submit-loading:not( [hidden] ) {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.rollo-srr__spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba( 255, 255, 255, 0.35 );
	border-top-color: #fff;
	border-radius: 50%;
	animation: rollo-srr-spin 0.7s linear infinite;
}

@keyframes rollo-srr-spin {
	to {
		transform: rotate( 360deg );
	}
}

/* Error status (below the form card) */
.rollo-srr__status {
	margin-top: 14px;
	text-align: center;
	color: #d63638;
	font-size: 14px;
	font-weight: 600;
}

.rollo-srr__status:empty {
	display: none;
}

/* --- Results screen ------------------------------------------------------ */
.rollo-srr__card--rates {
	display: flex;
	flex-direction: column;
	padding: 30px 40px 26px;
}

.rollo-srr__rates-head {
	display: flex;
	align-items: center;
	gap: 14px;
}

.rollo-srr__back {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-left: -6px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: none;
	cursor: pointer;
}

.rollo-srr__back svg {
	width: 24px;
	height: 24px;
	fill: #18181b;
}

.rollo-srr__back:hover {
	background: #f4f4f5;
}

.rollo-srr__rates-title {
	font-size: 25px;
	font-weight: 600;
}

.rollo-srr__tabs {
	display: flex;
	gap: 26px;
	margin-top: 20px;
	border-bottom: 1px solid #ececef;
}

.rollo-srr__tab {
	padding: 0 2px 12px;
	margin-bottom: -1px;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	font-family: inherit;
	font-size: 18px;
	font-weight: 600;
	color: #3f3f46;
	cursor: pointer;
}

.rollo-srr__tab.is-active {
	font-weight: 700;
	color: var( --rollo-purple );
	border-bottom-color: var( --rollo-purple );
}

.rollo-srr__list-wrap {
	position: relative;
}

.rollo-srr__list {
	max-height: 430px;
	overflow-y: auto;
}

/* Fade the bottom of the scrollable list into the card. */
.rollo-srr__list-fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 64px;
	background: linear-gradient( to bottom, rgba( 255, 255, 255, 0 ), #fff );
	pointer-events: none;
}

.rollo-srr__rate {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 10px 15px 10px 0px;
	border-bottom: 1px solid #f1f1f3;
}

.rollo-srr__rate:hover {
	background: #fafafa;
}

.rollo-srr__icon {
	width: 50px;
	height: 50px;
	object-fit: contain;
	object-position: left center;
	flex: none;
	margin-right: -10px;
}

.rollo-srr__icon--chip {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: #f1f1f3;
	color: #3f3f46;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.rollo-srr__service {
	flex: 1;
	min-width: 0;
	font-size: 15px;
	font-weight: 700;
	color: #27272a;
	text-box: trim-both cap alphabetic;
}

.rollo-srr__delivery {
	flex: none;
	text-align: right;
	white-space: nowrap;
}

.rollo-srr__days {
	font-size: 15px;
	font-weight: 700;
	color: #18181b;
}

.rollo-srr__eta {
	font-size: 13px;
	font-weight: 700;
	color: #a1a1aa;
}

.rollo-srr__price {
	flex: none;
	min-width: 74px;
	text-align: right;
	white-space: nowrap;
}

.rollo-srr__now {
	font-size: 15px;
	font-weight: 700;
	color: #18181b;
}

.rollo-srr__was {
	font-size: 13px;
	font-weight: 700;
	color: #b9b9c0;
	text-decoration: line-through;
}

.rollo-srr__empty {
	padding: 28px 4px;
	text-align: center;
	color: #71717a;
	font-weight: 600;
}

.rollo-srr__alert {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-radius: 8px;
	padding: 8px 12px;
	margin-top: 12px;
	color: #7a5c00;
	font-size: 13px;
	line-height: 1.4;
}

.rollo-srr__alert-icon {
	width: 32px;
	height: 32px;
	flex: none;
	object-fit: contain;
	object-position: center;
}

.rollo-srr__alert-icon--chip {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: #ffe082;
	color: #7a5c00;
	font-size: 11px;
	font-weight: 700;
}

.rollo-srr__alert-body {
	flex: 1;
	min-width: 0;
	padding-top: 8px;
}

.rollo-srr__alert-msg {
	margin: 0;
}

.rollo-srr__alert-msg + .rollo-srr__alert-msg {
	margin-top: 6px;
}

.rollo-srr__cta-bottom {
	display: block;
	margin-top: 18px;
	padding: 17px 0;
	border-radius: 999px;
	background: var( --rollo-purple );
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 19px;
	font-weight: 600;
}

.rollo-srr__cta-bottom:hover {
	color: #fff;
	opacity: 0.95;
}

.rollo-srr__disclaimer {
	max-width: 420px;
	margin: 14px auto 0;
	text-align: center;
	color: #a1a1aa;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

/* --- Mobile -------------------------------------------------------------- */
@media ( max-width: 560px ) {
	.rollo-srr__card,
	.rollo-srr__card--rates {
		padding: 24px 20px;
	}

	.rollo-srr__zip {
		font-size: 22px;
	}

	.rollo-srr__dims-grid,
	.rollo-srr__weight-grid {
		gap: 16px;
	}

	.rollo-srr__dim-input input {
		font-size: 22px;
	}

	.rollo-srr__packtypes {
		gap: 10px;
	}

	.rollo-srr__pack {
		flex-direction: column;
		gap: 6px;
		font-size: 14px;
		padding: 12px 6px;
	}

	.rollo-srr__tabs {
		gap: 18px;
	}

	/* Rate rows: reclaim room so the service name and delivery date don't collide. */
	.rollo-srr__rate {
		gap: 10px;
	}

	.rollo-srr__icon {
		width: 38px;
		height: 38px;
		margin-right: -4px;
	}

	.rollo-srr__service,
	.rollo-srr__days,
	.rollo-srr__now {
		font-size: 14px;
	}

	.rollo-srr__eta,
	.rollo-srr__was {
		font-size: 12px;
	}

	.rollo-srr__price {
		min-width: 64px;
	}
}

/* --- "Save More" limit screen -------------------------------------------- */
.rollo-srr__limit-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 32px 36px;
}

.rollo-srr__limit-visual {
	position: relative;
	width: 100%;
	max-width: 400px;
	height: 230px;
}

.rollo-srr__limit-mini {
	position: absolute;
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
}

.rollo-srr__limit-mini--ups {
	left: 12px;
	top: 22px;
	width: 190px;
	box-shadow: 0 10px 30px rgba( 0, 0, 0, 0.14 );
	transform: rotate( 9deg );
}

.rollo-srr__limit-mini--usps {
	right: 4px;
	top: 56px;
	width: 200px;
	box-shadow: 0 14px 34px rgba( 0, 0, 0, 0.18 );
	transform: rotate( -7deg );
}

.rollo-srr__limit-mini-head {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rollo-srr__limit-mini-head--ups {
	background: #351c15;
	height: 52px;
}

.rollo-srr__limit-mini-head--ups img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.rollo-srr__limit-mini-head--usps {
	background: #2f3064;
	height: 56px;
}

.rollo-srr__limit-mini-head--usps img {
	width: 58px;
	height: 40px;
	object-fit: contain;
}

.rollo-srr__limit-mini-body {
	padding: 10px 14px 14px;
	text-align: center;
}

.rollo-srr__limit-mini-route {
	font-weight: 800;
	font-size: 14px;
	color: #17131f;
}

.rollo-srr__limit-mini-parcel {
	font-size: 11.5px;
	color: #9b97a3;
	margin-top: 1px;
}

.rollo-srr__limit-mini-quote {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 10px;
	margin-top: 8px;
	text-align: left;
}

.rollo-srr__limit-mini-pct {
	font-weight: 900;
	font-size: 24px;
	color: var( --rollo-purple );
}

.rollo-srr__limit-mini-price {
	font-weight: 800;
	font-size: 15px;
	color: #17131f;
}

.rollo-srr__limit-mini-was {
	font-size: 12px;
	color: #b3aebc;
	text-decoration: line-through;
}

.rollo-srr__limit-title-wrap {
	width: 100%;
	text-align: center;
	margin-top: 18px;
	padding: 10px 0;
	border-radius: 999px;
	background: linear-gradient( 90deg, rgba( 0, 0, 0, 0 ) 0%, rgba( 0, 0, 0, 0.035 ) 50%, rgba( 0, 0, 0, 0 ) 100% );
}

.rollo-srr__limit-title {
	font-weight: 800;
	font-size: 22px;
	color: #17131f;
}

.rollo-srr__limit-copy {
	font-size: 14.5px;
	line-height: 1.55;
	color: #6f6b78;
	text-align: center;
	margin-top: 14px;
	max-width: 340px;
}

.rollo-srr__limit-cta {
	display: block;
	width: 100%;
	margin-top: 26px;
	padding: 15px 0;
	border-radius: 999px;
	background: #0a0a0a;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 15.5px;
}

.rollo-srr__limit-cta:hover {
	background: #27272a;
}

.rollo-srr__limit-stats {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 8px;
	width: 100%;
	margin-top: 32px;
}

.rollo-srr__limit-stat {
	text-align: center;
}

.rollo-srr__limit-stat-value {
	font-weight: 800;
	font-size: 17px;
	color: #17131f;
}

.rollo-srr__limit-stat-label {
	font-size: 12.5px;
	color: #6f6b78;
	margin-top: 2px;
}

@media ( max-width: 560px ) {
	.rollo-srr__limit-card {
		padding: 28px 20px 26px;
	}

	.rollo-srr__limit-visual {
		height: 222px;
	}

	.rollo-srr__limit-mini--ups {
		left: 0;
		width: 160px;
	}

	.rollo-srr__limit-mini--usps {
		right: 0;
		width: 172px;
	}
}

/* --- Theme-conflict armor ------------------------------------------------- */
/*
 * The widget is embedded into arbitrary themes whose global form styles can
 * out-rank our flat BEM selectors. E.g. Salient (rollo.com) ships:
 *   input[type=text],input[type=number],…{padding:10px;font-size:14px;
 *     background-color:#f1f1f1;line-height:24px;color:#555;…}      (0,1,1)
 *   .container-wrap input[type=text]{font-size:14px}               (0,2,1)
 *   button[type=submit]{width:auto;padding:7px 11px;font-size:14px;…}
 *   body[…] .container-wrap button[type=submit]{padding:15px 22px!important}
 *   .original[data-form-style=default] input[type=text]:focus{
 *     background-color:#ebebeb}                                    (0,4,1)
 * These rules re-assert every property such theme resets touch, at a
 * specificity above them. The `!important` on the submit padding is required
 * to counter the theme's own `!important`. Keep values in sync with the base
 * rules above.
 */
.rollo-srr .rollo-srr__addr-row input[type="text"].rollo-srr__zip {
	border: none;
	width: 100%;
	padding: 0;
	background: transparent;
	font-family: "Lato", "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	color: #3f3f46;
	transition: none;
}

.rollo-srr .rollo-srr__dim-input input[type="number"] {
	border: none;
	width: 100%;
	min-width: 0;
	padding: 0;
	background: transparent;
	font-family: "Lato", "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	color: #3f3f46;
	transition: none;
}

.rollo-srr input[type="text"].rollo-srr__country-search {
	width: 100%;
	border: none;
	border-radius: 10px;
	padding: 10px 12px;
	font-family: inherit;
	font-size: 15px;
	line-height: normal;
	color: #1e1b26;
	background: #f5f3fa;
	transition: none;
}

.rollo-srr .rollo-srr__addr-row input[type="text"].rollo-srr__zip:focus,
.rollo-srr .rollo-srr__dim-input input[type="number"]:focus {
	background: transparent;
}

.rollo-srr input[type="text"].rollo-srr__country-search:focus {
	background: #f5f3fa;
}

.rollo-srr form.rollo-srr__form button.rollo-srr__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 34px;
	padding: 17px 0 !important;
	border: none;
	border-radius: 999px !important;
	background: #0a0a0a;
	color: #fff;
	font-family: inherit;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	transition: none;
}

.rollo-srr form.rollo-srr__form button.rollo-srr__submit:hover:not( :disabled ) {
	background: #27272a;
	opacity: 1;
}

.rollo-srr form.rollo-srr__form button.rollo-srr__submit:disabled {
	background: #0a0a0a;
	cursor: default;
	opacity: 0.85;
}

/* Themes style bare anchors (color/underline/transition, e.g. Salient's
   `a`, `.container-wrap a:hover`) — keep the sign-up pill white-on-black. */
.rollo-srr .rollo-srr__limit-card a.rollo-srr__limit-cta,
.rollo-srr .rollo-srr__limit-card a.rollo-srr__limit-cta:hover,
.rollo-srr .rollo-srr__limit-card a.rollo-srr__limit-cta:focus {
	color: #fff;
	text-decoration: none;
	box-shadow: none;
	border-bottom: none;
}

/* Salient sizes every content image via
   `.row .col img:not([srcset]){width:auto}` (0,3,1), reverting our fixed icon
   boxes to the image's intrinsic width — carrier logos from the API can be
   hundreds of pixels wide. Chasing the specificity is brittle (the widget's
   ancestor chain varies per page builder), so pin the widths. */
.rollo-srr img.rollo-srr__icon {
	width: 50px !important;
}

.rollo-srr img.rollo-srr__alert-icon {
	width: 32px !important;
}

.rollo-srr .rollo-srr__limit-mini-head--ups img {
	width: 44px !important;
}

.rollo-srr .rollo-srr__limit-mini-head--usps img {
	width: 58px !important;
}

/* Salient pill-rounds every <button> via
   `body[data-button-style^=rounded] … button{border-radius:200px!important}`
   — its own `!important` forces one here. Re-assert the designed radii; the
   tabs are underline-style, so any radius bends the 3px bottom border into
   an arc. */
.rollo-srr button.rollo-srr__tab {
	border-radius: 0 !important;
}

.rollo-srr button.rollo-srr__pack,
.rollo-srr button.rollo-srr__unit {
	border-radius: 12px !important;
}

.rollo-srr button.rollo-srr__country-toggle {
	border-radius: 10px !important;
}

.rollo-srr button.rollo-srr__back {
	border-radius: 50% !important;
}

@media ( max-width: 560px ) {
	.rollo-srr .rollo-srr__addr-row input[type="text"].rollo-srr__zip,
	.rollo-srr .rollo-srr__dim-input input[type="number"] {
		font-size: 22px;
	}

	.rollo-srr img.rollo-srr__icon {
		width: 38px !important;
	}
}
