.ra-rpp-tool,
.ra-rpp-tool * {
	box-sizing: border-box;
}

.ra-rpp-tool {
	--ra-purple: #992bff;
	--ra-purple-dark: #7e1ad8;
	--ra-lilac: #d6abff;
	--ra-blue: #0200c4;
	--ra-ink: #09072a;
	--ra-muted: #676779;
	width: 100%;
	color: var(--ra-ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.ra-rpp-shell {
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	padding: 26px 16px 48px;
}

.ra-rpp-heading {
	width: 100%;
	max-width: 560px;
	margin: 0 auto 16px;
	padding-left: 58px;
	text-align: left;
}

.ra-rpp-brand {
	display: inline-block;
	margin: 0;
	background: linear-gradient(90deg, #5170ff 0%, #cb6ce6 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 23px;
	font-weight: 700;
	line-height: 1;
}

.ra-rpp-heading h2 {
	margin: -1px 0 0;
	padding: 0;
	background: linear-gradient(180deg, #000026 5%, #0200f4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -3px;
	line-height: 1.02;
	white-space: nowrap;
}

.ra-rpp-dropzone {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	max-width: 500px;
	min-height: 160px;
	margin: 0 auto;
	padding: 24px;
	overflow: hidden;
	background-color: #000026;
	background-image: url('../images/pdf-panel-gradient.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border: 2px solid transparent;
	border-radius: 27px;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ra-rpp-dropzone::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(153, 43, 255, 0);
	content: '';
	pointer-events: none;
	transition: background 160ms ease;
}

.ra-rpp-dropzone.is-dragover {
	border-color: #d6abff;
	box-shadow: 0 0 0 5px rgba(153, 43, 255, 0.16);
	transform: translateY(-2px);
}

.ra-rpp-dropzone.is-dragover::after {
	background: rgba(153, 43, 255, 0.12);
}

.ra-rpp-gradient-button,
.ra-rpp-secondary-button,
.ra-rpp-text-button,
.ra-rpp-order-button,
.ra-rpp-remove-button {
	-webkit-appearance: none;
	appearance: none;
	width: fit-content;
	max-width: 100%;
	font: inherit;
	cursor: pointer;
	white-space: nowrap;
}

.ra-rpp-gradient-button {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: auto;
	max-width: 100%;
	min-height: 36px;
	padding: 7px 18px;
	background: linear-gradient(90deg, #7e1ad8 0%, #d6abff 100%);
	border: 2px solid var(--ra-purple);
	border-radius: 11px;
	box-shadow: none;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: filter 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.ra-rpp-gradient-button:hover,
.ra-rpp-gradient-button:focus-visible {
	color: #fff;
	filter: saturate(1.08) brightness(1.05);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(92, 25, 190, 0.2);
}

.ra-rpp-gradient-button:focus-visible,
.ra-rpp-secondary-button:focus-visible,
.ra-rpp-text-button:focus-visible,
.ra-rpp-order-button:focus-visible,
.ra-rpp-remove-button:focus-visible,
.ra-rpp-field select:focus-visible,
.ra-rpp-field input:focus-visible {
	outline: 3px solid rgba(81, 112, 255, 0.35);
	outline-offset: 2px;
}

.ra-rpp-gradient-button:disabled,
.ra-rpp-secondary-button:disabled,
.ra-rpp-order-button:disabled,
.ra-rpp-remove-button:disabled {
	cursor: wait;
	filter: grayscale(0.35);
	opacity: 0.68;
	transform: none;
}

.ra-rpp-drop-button {
	width: auto;
	min-height: 36px;
}

.ra-rpp-arrow {
	display: inline-block;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	line-height: 1;
}

.ra-rpp-file-input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.ra-rpp-file-details {
	position: relative;
	z-index: 1;
	max-width: 90%;
	margin-top: 13px;
	color: #fff;
	text-align: center;
}

.ra-rpp-file-details strong,
.ra-rpp-file-details span {
	display: block;
}

.ra-rpp-file-details strong {
	overflow: hidden;
	font-size: 14px;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ra-rpp-file-details span {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 12px;
}

.ra-rpp-primary-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
	width: 100%;
	max-width: 500px;
	margin: 15px auto 0;
}

.ra-rpp-main-button {
	width: auto;
	min-height: 36px;
	padding-inline: 18px;
}

.ra-rpp-notice {
	width: 100%;
	max-width: 720px;
	margin: 20px auto 0;
	padding: 11px 14px;
	background: #f4efff;
	border: 1px solid #dfcaff;
	border-radius: 10px;
	color: #4c1b7c;
	font-size: 14px;
	text-align: center;
}

.ra-rpp-notice.is-error {
	background: #fff1f1;
	border-color: #ffc7c7;
	color: #a51c1c;
}

.ra-rpp-notice.is-success {
	background: #effbf4;
	border-color: #b9ebcd;
	color: #17643a;
}

.ra-rpp-files-panel,
.ra-rpp-progress-panel,
.ra-rpp-results {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.ra-rpp-files-panel {
	max-width: 920px;
	margin-top: 24px;
	padding: 20px;
	background: #fff;
	border: 1px solid #e8e4f0;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(16, 10, 57, 0.07);
}

.ra-rpp-document-list {
	display: grid;
	gap: 18px;
}

.ra-rpp-document-card {
	padding: 17px;
	background: #faf9fd;
	border: 1px solid #e2dceb;
	border-radius: 14px;
}

.ra-rpp-document-header {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
}

.ra-rpp-pdf-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 44px;
	height: 50px;
	background: linear-gradient(180deg, #992bff 0%, #0200c4 100%);
	border-radius: 8px;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.ra-rpp-document-copy {
	min-width: 0;
}

.ra-rpp-document-copy h4,
.ra-rpp-document-copy p {
	margin: 0;
}

.ra-rpp-document-copy h4 {
	overflow: hidden;
	color: #171431;
	font-size: 15px;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ra-rpp-document-copy p {
	margin-top: 3px;
	color: var(--ra-muted);
	font-size: 11px;
}

.ra-rpp-remove-file,
.ra-rpp-small-button {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: 100%;
	min-height: 34px;
	padding: 6px 11px;
	background: #fff;
	border: 1px solid #d8d2e2;
	border-radius: 8px;
	color: #4b425d;
	font: 700 11px/1 Arial, Helvetica, sans-serif;
	cursor: pointer;
	white-space: nowrap;
}

.ra-rpp-remove-file {
	color: #8b2552;
}

.ra-rpp-remove-file:hover,
.ra-rpp-remove-file:focus-visible,
.ra-rpp-small-button:hover,
.ra-rpp-small-button:focus-visible {
	background: #f4efff;
	border-color: #b98de0;
}

.ra-rpp-selection-controls {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) auto;
	align-items: end;
	gap: 14px;
	margin-top: 15px;
	padding-top: 14px;
	border-top: 1px solid #e7e1ec;
}

.ra-rpp-range-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	color: var(--ra-ink);
	font-size: 12px;
	font-weight: 700;
}

.ra-rpp-range-row {
	display: flex;
	align-items: stretch;
	gap: 7px;
}

.ra-rpp-range-row input {
	width: 100%;
	min-width: 0;
	min-height: 38px;
	margin: 0;
	padding: 7px 10px;
	background: #fff;
	border: 1px solid #d9d4e5;
	border-radius: 8px;
	color: #252235;
	font: 400 13px/1.2 Arial, Helvetica, sans-serif;
}

.ra-rpp-quick-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 7px;
}

.ra-rpp-selection-summary {
	margin: 12px 0 0;
	padding: 7px 9px;
	background: #f1edf6;
	border-radius: 8px;
	color: #61596c;
	font-size: 11px;
}

.ra-rpp-selection-summary.has-selection {
	background: #f0e5ff;
	color: #5f2195;
	font-weight: 700;
}

.ra-rpp-page-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
	gap: 12px;
	margin-top: 13px;
}

.ra-rpp-page-button {
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	width: 100%;
	min-width: 0;
	padding: 7px 7px 8px;
	overflow: hidden;
	background: #fff;
	border: 2px solid #e2dceb;
	border-radius: 10px;
	color: #39324c;
	font: inherit;
	cursor: pointer;
	white-space: normal;
	transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.ra-rpp-page-button:hover,
.ra-rpp-page-button:focus-visible {
	border-color: #b98de0;
	box-shadow: 0 6px 16px rgba(72, 25, 119, 0.1);
	transform: translateY(-1px);
}

.ra-rpp-page-button:focus-visible,
.ra-rpp-remove-file:focus-visible,
.ra-rpp-small-button:focus-visible,
.ra-rpp-range-row input:focus-visible {
	outline: 3px solid rgba(81, 112, 255, 0.35);
	outline-offset: 2px;
}

.ra-rpp-page-button.is-selected {
	background: #f5eaff;
	border-color: #992bff;
	box-shadow: 0 0 0 3px rgba(153, 43, 255, 0.12);
}

.ra-rpp-page-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 166px;
	overflow: hidden;
	background: #edeaf1;
	border-radius: 6px;
}

.ra-rpp-page-preview canvas {
	display: block;
	max-width: 100%;
	max-height: 100%;
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
}

.ra-rpp-thumbnail-loader,
.ra-rpp-thumbnail-error {
	padding: 7px;
	color: #7d7488;
	font-size: 10px;
	line-height: 1.25;
	text-align: center;
}

.ra-rpp-page-number {
	display: block;
	margin-top: 7px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.ra-rpp-remove-mark {
	position: absolute;
	top: 11px;
	right: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	background: rgba(153, 43, 255, 0.94);
	border-radius: 50%;
	box-shadow: 0 3px 9px rgba(45, 4, 87, 0.24);
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	opacity: 0;
	transform: scale(0.78);
	transition: opacity 140ms ease, transform 140ms ease;
}

.ra-rpp-page-button.is-selected .ra-rpp-remove-mark {
	opacity: 1;
	transform: scale(1);
}

.ra-rpp-load-more {
	display: table;
	width: auto;
	margin: 14px auto 0;
}

.ra-rpp-panel-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.ra-rpp-panel-heading h3,
.ra-rpp-panel-heading p {
	margin: 0;
}

.ra-rpp-panel-heading h3 {
	color: #171431;
	font-size: 20px;
	line-height: 1.2;
}

.ra-rpp-panel-heading p {
	margin-top: 3px;
	color: var(--ra-muted);
	font-size: 12px;
}

.ra-rpp-file-list {
	display: grid;
	gap: 9px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.ra-rpp-file-item {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-height: 62px;
	padding: 9px 10px;
	background: #faf9fd;
	border: 1px solid #e2dceb;
	border-radius: 11px;
	cursor: grab;
	transition: border-color 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.ra-rpp-file-item.is-drag-target {
	border-color: var(--ra-purple);
	box-shadow: 0 0 0 3px rgba(153, 43, 255, 0.13);
}

.ra-rpp-file-item.is-dragging {
	opacity: 0.48;
}

.ra-rpp-drag-handle {
	color: #8e829e;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -4px;
	line-height: 1;
}

.ra-rpp-order-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: linear-gradient(180deg, #992bff 0%, #0200c4 100%);
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.ra-rpp-file-copy {
	min-width: 0;
}

.ra-rpp-file-copy strong,
.ra-rpp-file-copy span {
	display: block;
}

.ra-rpp-file-copy strong {
	overflow: hidden;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ra-rpp-file-copy span {
	margin-top: 2px;
	color: var(--ra-muted);
	font-size: 11px;
}

.ra-rpp-file-controls {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 5px;
}

.ra-rpp-order-button,
.ra-rpp-remove-button {
	min-height: 30px;
	padding: 5px 9px;
	background: #fff;
	border: 1px solid #d8d2e2;
	border-radius: 7px;
	color: #4b425d;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.ra-rpp-remove-button {
	color: #8b2552;
}

.ra-rpp-option-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.ra-rpp-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0;
	color: var(--ra-ink);
	font-size: 13px;
	font-weight: 700;
}

.ra-rpp-field select,
.ra-rpp-field input[type='text'] {
	width: 100%;
	min-height: 42px;
	margin: 0;
	padding: 8px 11px;
	background: #faf9fd;
	border: 1px solid #d9d4e5;
	border-radius: 8px;
	color: #252235;
	font: 400 14px/1.2 Arial, Helvetica, sans-serif;
}

.ra-rpp-field input[type='range'] {
	width: 100%;
	margin: 9px 0 0;
	accent-color: var(--ra-purple);
}

.ra-rpp-privacy {
	margin: 16px 0 0;
	color: var(--ra-muted);
	font-size: 12px;
	text-align: center;
}

.ra-rpp-progress-panel {
	max-width: 720px;
	margin-top: 24px;
	padding: 18px 20px;
	background: #f8f6fc;
	border: 1px solid #e2dceb;
	border-radius: 14px;
}

.ra-rpp-progress-copy {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
}

.ra-rpp-progress-track {
	height: 8px;
	margin-top: 10px;
	overflow: hidden;
	background: #e5dded;
	border-radius: 999px;
}

.ra-rpp-progress-track span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, #5170ff 0%, #992bff 58%, #cb6ce6 100%);
	border-radius: inherit;
	transition: width 160ms ease;
}

.ra-rpp-text-button {
	display: table;
	margin: 12px auto 0;
	padding: 0;
	background: transparent;
	border: 0;
	color: #6b2baa;
	font-size: 12px;
	text-decoration: underline;
}

.ra-rpp-results {
	max-width: 920px;
	margin-top: 34px;
}

.ra-rpp-result-list {
	display: grid;
	gap: 11px;
}

.ra-rpp-result-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 13px;
	padding: 14px;
	background: #fff;
	border: 1px solid #e3deeb;
	border-radius: 13px;
	box-shadow: 0 8px 22px rgba(16, 10, 57, 0.06);
}

.ra-rpp-result-copy {
	min-width: 0;
}

.ra-rpp-result-copy strong,
.ra-rpp-result-copy span,
.ra-rpp-result-copy small {
	display: block;
}

.ra-rpp-result-copy strong {
	overflow: hidden;
	font-size: 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ra-rpp-result-copy span {
	margin-top: 3px;
	color: var(--ra-muted);
	font-size: 11px;
}

.ra-rpp-result-copy small {
	margin-top: 3px;
	color: #6b2baa;
	font-size: 10px;
}

.ra-rpp-result-download,
.ra-rpp-download-all {
	width: auto;
	font-size: 12px;
}

.ra-rpp-results-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.ra-rpp-results-header h3 {
	margin: 0;
	color: #171431;
	font-size: 24px;
	line-height: 1.2;
}

.ra-rpp-results-header p {
	margin: 4px 0 0;
	color: var(--ra-muted);
	font-size: 13px;
}

.ra-rpp-result-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.ra-rpp-secondary-button {
	min-height: 38px;
	padding: 8px 14px;
	background: #fff;
	border: 1px solid #d8d2e2;
	border-radius: 9px;
	color: #39324c;
	font-size: 13px;
	font-weight: 700;
}

.ra-rpp-download-button {
	min-height: 38px;
	padding-inline: 16px;
	font-size: 13px;
}

.ra-rpp-output-file {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 520px;
	padding: 16px;
	background: #fff;
	border: 1px solid #e3deeb;
	border-radius: 13px;
	box-shadow: 0 8px 22px rgba(16, 10, 57, 0.06);
}

.ra-rpp-pdf-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 52px;
	height: 58px;
	background: linear-gradient(180deg, #992bff 0%, #0200c4 100%);
	border-radius: 8px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.ra-rpp-output-file strong,
.ra-rpp-output-file span {
	display: block;
}

.ra-rpp-output-file strong {
	font-size: 15px;
}

.ra-rpp-output-file span {
	margin-top: 3px;
	color: var(--ra-muted);
	font-size: 12px;
}

.ra-rpp-combined-preview {
	margin-top: 24px;
	padding: 18px;
	background: #fff;
	border: 1px solid #e3deeb;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(16, 10, 57, 0.06);
}

.ra-rpp-combined-preview h4 {
	margin: 0;
	color: #171431;
	font-size: 17px;
}

.ra-rpp-combined-preview ol {
	display: grid;
	gap: 7px;
	margin: 12px 0 0;
	padding-left: 28px;
}

.ra-rpp-combined-preview li {
	padding: 8px 10px;
	background: #faf9fd;
	border: 1px solid #e8e4f0;
	border-radius: 8px;
	font-size: 12px;
}

.ra-rpp-combined-preview li strong,
.ra-rpp-combined-preview li span {
	display: block;
}

.ra-rpp-combined-preview li span {
	margin-top: 2px;
	color: var(--ra-muted);
	font-size: 11px;
}

.ra-rpp-tool [hidden] {
	display: none !important;
}

@media (max-width: 620px) {
	.ra-rpp-shell {
		padding: 22px 12px 38px;
	}

	.ra-rpp-heading {
		padding-left: 0;
		text-align: center;
	}

	.ra-rpp-brand {
		font-size: 19px;
	}

	.ra-rpp-heading h2 {
		font-size: clamp(31px, 8.5vw, 46px);
		letter-spacing: -2px;
	}

	.ra-rpp-dropzone {
		min-height: 160px;
		border-radius: 23px;
	}

	.ra-rpp-primary-actions {
		gap: 10px;
	}

	.ra-rpp-main-button {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
		padding-inline: 16px;
		font-size: 14px;
	}

	.ra-rpp-option-grid {
		grid-template-columns: 1fr;
	}

	.ra-rpp-panel-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.ra-rpp-document-card {
		padding: 14px;
	}

	.ra-rpp-selection-controls {
		grid-template-columns: 1fr;
	}

	.ra-rpp-quick-actions {
		justify-content: flex-start;
	}

	.ra-rpp-page-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ra-rpp-result-item {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.ra-rpp-result-download {
		grid-column: 2;
	}

	.ra-rpp-file-item {
		grid-template-columns: auto auto minmax(0, 1fr);
	}

	.ra-rpp-file-controls {
		grid-column: 2 / -1;
		justify-content: flex-start;
	}

	.ra-rpp-results-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.ra-rpp-result-actions {
		width: 100%;
	}

	.ra-rpp-result-actions button {
		flex: 0 0 auto;
	}

}

@media (max-width: 380px) {
	.ra-rpp-heading h2 {
		font-size: 29px;
		letter-spacing: -1.4px;
	}

	.ra-rpp-dropzone {
		min-height: 145px;
		padding: 18px;
	}

	.ra-rpp-primary-actions {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.ra-rpp-main-button {
		width: auto;
		max-width: 100%;
	}

	.ra-rpp-document-header {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.ra-rpp-remove-file {
		grid-column: 2;
	}

	.ra-rpp-page-preview {
		height: 142px;
	}
}
