.account-login-shell {
	min-height: 100%;
	margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
	margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	--account-map-scale: 1.06;
	--account-accent-rgb: 67, 140, 122;
	--account-accent-hover-rgb: 31, 81, 69;
	--bs-primary-rgb: var(--account-accent-rgb);
	--bs-link-color-rgb: var(--account-accent-rgb);
	--bs-link-hover-color-rgb: var(--account-accent-hover-rgb);
}

.account-login-shell::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('/img/oddcollworld_light.svg') center center / contain no-repeat;
	opacity: 0.3;
	z-index: 0;
	transform: scale(var(--account-map-scale));
	transform-origin: center center;
}

html[data-bs-theme="dark"] .account-login-shell::before {
	opacity: 0.1;
}

.account-map-beacons {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	overflow: visible;
	transform: scale(var(--account-map-scale));
	transform-origin: center center;
}

.account-map-beacon {
	filter: drop-shadow(0 0 3px rgba(177, 214, 203, 0.45));
	opacity: 1;
	transition: opacity 340ms ease-out;
	will-change: opacity;
}

.account-map-beacon.is-fading-out {
	opacity: 0;
}

.account-map-beacon__core {
	fill: rgba(177, 214, 203, 1);
	stroke: rgba(255, 255, 255, 0.72);
	stroke-width: 0.85;
	animation-name: account-map-beacon-core;
	animation-duration: var(--beacon-duration-ms, 3200ms);
	animation-delay: var(--beacon-delay-ms, 0ms);
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

.account-map-beacon__pulse {
	fill: rgba(177, 214, 203, 0.2);
	stroke: rgba(177, 214, 203, 0.9);
	stroke-width: 1;
	transform-origin: center;
	animation-name: account-map-beacon-pulse;
	animation-duration: var(--beacon-duration-ms, 3200ms);
	animation-delay: var(--beacon-delay-ms, 0ms);
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

html[data-bs-theme="dark"] .account-map-beacon__core {
	fill: rgba(177, 214, 203, 1);
	stroke: rgba(255, 255, 255, 0.42);
}

html[data-bs-theme="dark"] .account-map-beacon__pulse {
	fill: rgba(177, 214, 203, 0.14);
	stroke: rgba(177, 214, 203, 0.78);
}

@keyframes account-map-beacon-pulse {
	0% {
		opacity: 0;
		r: 0.6;
	}
	10% {
		opacity: 1;
	}
	80% {
		opacity: 0.28;
		r: var(--beacon-pulse-radius, 12);
	}
	100% {
		opacity: 0;
		r: var(--beacon-pulse-radius, 12);
	}
}

@keyframes account-map-beacon-core {
	0% {
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	80% {
		opacity: 0.22;
	}
	100% {
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.account-map-beacon__core {
		animation: none;
		opacity: 1;
	}

	.account-map-beacon__pulse {
		animation: none;
		display: none;
	}

	.account-login-claims,
	.account-login-claims__value,
	.account-login-claims__country {
		transition: none;
	}

	.account-login-claims__dot {
		animation: none;
	}

	.account-login-claims__boot-spinner {
		animation: none;
	}

	.account-auth-track {
		transition: none;
	}
}

@media (max-width: 767.98px) {
	.account-login-shell {
		/* Slightly enlarge the "contain" map on mobile so the card doesn't hide all of it. */
		--account-map-scale: 1.14;
	}
}

html[data-bs-theme="dark"] .account-login-shell .form-control:-webkit-autofill,
html[data-bs-theme="dark"] .account-login-shell .form-control:-webkit-autofill:hover,
html[data-bs-theme="dark"] .account-login-shell .form-control:-webkit-autofill:focus,
html[data-bs-theme="dark"] .account-login-shell .form-control:-webkit-autofill:active {
	-webkit-text-fill-color: var(--bs-body-color);
	caret-color: var(--bs-body-color);
	-webkit-box-shadow: 0 0 0 1000px var(--bs-body-bg) inset;
	box-shadow: 0 0 0 1000px var(--bs-body-bg) inset;
	border-color: var(--bs-border-color);
	transition: background-color 5000s ease-in-out 0s;
}

.account-login-shell > .container {
	position: relative;
	z-index: 1;
}

.account-header-cta {
	--account-header-cta-rgb: 67, 140, 122;
	--account-header-cta-hover-rgb: 31, 81, 69;
	--bs-btn-font-weight: 700;
	--bs-btn-border-radius: 999px;
	--bs-btn-padding-y: 0.3rem;
	--bs-btn-padding-x: 0.8rem;
	--bs-btn-font-size: 0.85rem;
	color: rgb(var(--account-header-cta-hover-rgb));
	border-color: rgba(var(--account-header-cta-rgb), 0.42);
	background-color: rgba(var(--account-header-cta-rgb), 0.08);
}

.account-header-cta:hover,
.account-header-cta:focus {
	color: #fff;
	border-color: rgb(var(--account-header-cta-hover-rgb));
	background-color: rgb(var(--account-header-cta-hover-rgb));
}

.account-header-cta:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(67, 140, 122, 0.25);
}

html[data-bs-theme="dark"] .account-header-cta {
	color: rgb(198, 229, 219);
	border-color: rgba(177, 214, 203, 0.3);
	background-color: rgba(177, 214, 203, 0.08);
}

html[data-bs-theme="dark"] .account-header-cta:hover,
html[data-bs-theme="dark"] .account-header-cta:focus {
	color: rgb(14, 24, 21);
	border-color: rgb(177, 214, 203);
	background-color: rgb(177, 214, 203);
}

.account-login-shell .btn-primary {
	--bs-btn-bg: rgb(var(--account-accent-rgb));
	--bs-btn-border-color: rgb(var(--account-accent-rgb));
	--bs-btn-hover-bg: rgb(var(--account-accent-hover-rgb));
	--bs-btn-hover-border-color: rgb(var(--account-accent-hover-rgb));
	--bs-btn-active-bg: rgb(var(--account-accent-hover-rgb));
	--bs-btn-active-border-color: rgb(var(--account-accent-hover-rgb));
	--bs-btn-focus-shadow-rgb: var(--account-accent-rgb);
}

.account-login-shell .link-primary {
	color: rgb(var(--account-accent-rgb)) !important;
}

.account-login-shell .link-primary:hover,
.account-login-shell .link-primary:focus {
	color: rgb(var(--account-accent-hover-rgb)) !important;
}

.account-auth-slider {
	overflow: hidden;
}

.account-auth-track {
	display: flex;
	align-items: flex-start;
	width: 100%;
	transform: translateX(0);
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.account-auth-slider.is-forgot .account-auth-track {
	transform: translateX(-100%);
}

.account-auth-panel {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
}

.account-auth-panel[aria-hidden="true"] {
	pointer-events: none;
}

.account-auth-panel-back {
	font-size: 0.9rem;
	color: var(--bs-secondary-color);
}

.account-auth-panel-back:hover {
	color: var(--bs-body-color);
}

.account-auth-panel-back:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
	border-radius: 0.375rem;
}

.account-auth-inline-alert {
	border-radius: 0.75rem;
}

.account-login-claims {
	position: relative;
	padding: 0.9rem 1rem;
	border-radius: 1rem;
	border: 1px solid rgba(23, 40, 35, 0.08);
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: 0 10px 28px rgba(12, 21, 19, 0.07);
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.account-login-claims.is-updating {
	transform: translateY(-1px);
	border-color: rgba(177, 214, 203, 0.45);
}

.account-login-claims__meta {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(22, 33, 29, 0.72);
}

.account-login-claims__boot-spinner {
	width: 0.85rem;
	height: 0.85rem;
	border-radius: 999px;
	border: 2px solid rgba(177, 214, 203, 0.28);
	border-top-color: rgba(177, 214, 203, 0.95);
	animation: account-claims-boot-spin 0.8s linear infinite;
	transition: opacity 160ms ease, transform 160ms ease;
}

.account-login-claims.is-ready .account-login-claims__boot-spinner {
	opacity: 0;
	transform: scale(0.85);
	width: 0;
	margin-left: -0.2rem;
	border-width: 0;
	overflow: hidden;
}

.account-login-claims__dot {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: rgb(177, 214, 203);
	box-shadow: 0 0 0 0 rgba(177, 214, 203, 0.65);
	animation: account-claims-dot-pulse 2.1s ease-out infinite;
}

.account-login-claims__line {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45rem 0.65rem;
	margin-top: 0.45rem;
}

.account-login-claims:not(.is-ready) .account-login-claims__line,
.account-login-claims:not(.is-ready) .account-login-claims__country {
	visibility: hidden;
}

.account-login-claims__label {
	font-size: 0.88rem;
	color: rgba(22, 33, 29, 0.78);
}

.account-login-claims__value {
	font-size: clamp(1.35rem, 1.05rem + 1vw, 1.9rem);
	font-weight: 700;
	line-height: 1;
	color: #14372e;
	font-variant-numeric: tabular-nums;
	transition: opacity 220ms ease;
}

.account-login-claims__country {
	margin-top: 0.3rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: #1f5145;
	transition: opacity 220ms ease, transform 220ms ease;
}

.account-login-claims.is-updating .account-login-claims__country,
.account-login-claims.is-updating .account-login-claims__value {
	opacity: 0.82;
}

.account-login-claims__prefix {
	font-weight: 500;
	color: rgba(22, 33, 29, 0.65);
}

html[data-bs-theme="dark"] .account-login-claims {
	border-color: rgba(177, 214, 203, 0.16);
	background: rgba(18, 24, 22, 0.7);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .account-login-claims__meta {
	color: rgba(232, 241, 238, 0.72);
}

html[data-bs-theme="dark"] .account-login-claims__boot-spinner {
	border-color: rgba(177, 214, 203, 0.2);
	border-top-color: rgba(198, 229, 219, 0.95);
}

html[data-bs-theme="dark"] .account-login-claims__label {
	color: rgba(232, 241, 238, 0.74);
}

html[data-bs-theme="dark"] .account-login-claims__value {
	color: rgb(198, 229, 219);
}

html[data-bs-theme="dark"] .account-login-claims__country {
	color: rgb(177, 214, 203);
}

html[data-bs-theme="dark"] .account-login-claims__prefix {
	color: rgba(232, 241, 238, 0.6);
}

@keyframes account-claims-dot-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(177, 214, 203, 0.5);
	}

	70% {
		box-shadow: 0 0 0 0.5rem rgba(177, 214, 203, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(177, 214, 203, 0);
	}
}

@keyframes account-claims-boot-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 575.98px) {
	.account-login-claims {
		padding: 0.85rem 0.9rem;
	}

	.account-login-claims__line {
		gap: 0.2rem 0.45rem;
	}

	.account-login-claims__country {
		font-size: 0.88rem;
	}
}

.account-login-title {
	font-weight: 700;
}

.account-password-field {
	position: relative;
}

.account-password-input {
	padding-right: 3rem;
}

.account-password-field.form-floating > label {
	padding-right: 3rem;
}

.account-password-toggle {
	position: absolute;
	top: 50%;
	right: 0.625rem;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
	border: 0;
	background: transparent;
	color: var(--bs-secondary-color);
	line-height: 1;
	z-index: 2;
}

.account-password-toggle:hover {
	color: var(--bs-body-color);
}

.account-password-toggle:focus-visible {
	outline: 0;
	color: var(--bs-body-color);
	box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
	border-radius: 0.25rem;
}

.account-login-submit {
	--bs-btn-border-radius: 50px;
	font-size: 1.2rem;
	padding: 15px 28px;
}

.account-wizard-progress {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.5rem;
}

.account-wizard-progress-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.6rem 0.35rem;
	border: 1px solid var(--bs-border-color);
	border-radius: 0.75rem;
	background-color: rgba(var(--bs-body-color-rgb), 0.02);
	color: var(--bs-secondary-color);
	text-align: center;
}

.account-wizard-progress-item.is-active {
	border-color: rgba(var(--bs-primary-rgb), 0.45);
	background-color: rgba(var(--bs-primary-rgb), 0.08);
	color: var(--bs-body-color);
}

.account-wizard-progress-item.is-complete {
	border-color: rgba(var(--bs-success-rgb), 0.35);
	background-color: rgba(var(--bs-success-rgb), 0.08);
	color: var(--bs-body-color);
}

.account-wizard-progress-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 50%;
	background-color: var(--bs-body-bg);
	border: 1px solid var(--bs-border-color);
	font-weight: 700;
	font-size: 0.9rem;
}

.account-wizard-progress-item.is-active .account-wizard-progress-number {
	border-color: rgba(var(--bs-primary-rgb), 0.5);
	color: var(--bs-primary);
}

.account-wizard-progress-item.is-complete .account-wizard-progress-number {
	border-color: rgba(var(--bs-success-rgb), 0.5);
	color: var(--bs-success);
}

.account-wizard-progress-label {
	font-size: 0.75rem;
	line-height: 1.15;
}

.account-wizard-panels {
	position: relative;
	overflow: hidden;
}

.account-wizard-step[hidden] {
	display: none !important;
}

.account-wizard-step.is-entering-next {
	animation: account-wizard-enter-next 220ms ease-out;
}

.account-wizard-step.is-entering-prev {
	animation: account-wizard-enter-prev 220ms ease-out;
}

.account-wizard-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 1rem;
}

.account-wizard-actions .account-login-submit {
	font-size: 1rem;
	margin-left: auto;
}

@keyframes account-wizard-enter-next {
	from {
		opacity: 0;
		transform: translateX(22px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes account-wizard-enter-prev {
	from {
		opacity: 0;
		transform: translateX(-22px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (max-width: 575.98px) {
	.account-wizard-progress {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.account-wizard-actions {
		flex-wrap: wrap;
	}

	.account-wizard-actions > .btn {
		width: 100%;
	}

	.account-wizard-actions .account-login-submit {
		margin-left: 0;
	}
}

.account-auth-card .form-group {
	margin-bottom: 1rem;
}

.account-auth-card .help-block {
	display: block;
	margin-top: 0.375rem;
	color: var(--bs-secondary-color);
}

.account-login-shell label.error {
	display: block;
	margin-top: -0.75rem;
	margin-bottom: 1rem;
	color: var(--bs-danger);
	font-size: 0.875rem;
}

.account-login-shell .field-validation-valid {
	display: none !important;
}

.account-login-shell .field-validation-error {
	display: block;
	margin-top: -0.75rem !important;
	margin-bottom: 1rem;
	color: var(--bs-danger);
	font-size: 0.875rem;
}

.account-auth-card .account-wizard label.error,
.account-auth-card .account-wizard .field-validation-error {
	margin-top: 0.375rem !important;
	margin-bottom: 0;
}

.account-auth-card .validation-summary-errors > ul {
	margin-top: 0.5rem;
	margin-bottom: 0;
	padding-left: 1.1rem;
}

.account-auth-card .validation-summary-errors li + li {
	margin-top: 0.25rem;
}

.account-auth-card textarea.form-control {
	min-height: 6rem;
}

.account-auth-card .select2-container,
.account-invoice-register-shell .select2-container {
	width: 100% !important;
}

.account-auth-card .select2-container--default .select2-selection--single,
.account-invoice-register-shell .select2-container--default .select2-selection--single {
	height: calc(3.5rem + 2px);
	border: 1px solid var(--bs-border-color);
	border-radius: 0.375rem;
	background-color: var(--bs-body-bg);
}

.account-auth-card .select2-container--default .select2-selection--single .select2-selection__rendered,
.account-invoice-register-shell .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: calc(3.5rem + 2px);
	padding-left: 0.75rem;
	padding-right: 2rem;
	color: var(--bs-body-color);
}

.account-auth-card .select2-container--default .select2-selection--single .select2-selection__arrow,
.account-invoice-register-shell .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: calc(3.5rem + 2px);
	right: 0.5rem;
}

.account-select-floating {
	position: relative;
}

.account-select-floating > label {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding: 1rem 0.75rem;
	color: var(--bs-secondary-color);
	pointer-events: none;
	transform-origin: 0 0;
	transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, color 0.1s ease-in-out;
	z-index: 3;
}

.account-select-floating .select2-container--default .select2-selection--single {
	padding-top: 0.75rem;
}

.account-select-floating .select2-container--default .select2-selection--single .select2-selection__rendered {
	display: block;
	line-height: 1.25rem;
	padding-top: 1.1rem;
	padding-bottom: 0.15rem;
}

.account-select-floating .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: transparent;
}

.account-select-floating.is-focused:not(.is-filled) > label {
	opacity: 0.65;
	transform: scale(0.85) translateY(0.5rem) translateX(0.15rem);
}

.account-select-floating.is-filled > label {
	opacity: 0;
}

.account-select-floating.is-focused:not(.is-filled) > label {
	color: rgba(var(--bs-primary-rgb), 1);
}

.account-select-floating.is-filled .select2-container--default .select2-selection--single {
	padding-top: 0;
}

.account-select-floating.is-filled .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: calc(3.5rem + 2px);
	padding-top: 0;
	padding-bottom: 0;
}

.account-select-floating.is-focused .select2-container--default .select2-selection--single {
	border-color: rgba(var(--bs-primary-rgb), 0.7);
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.account-select-floating > select.input-validation-error + .select2 .select2-selection--single {
	border-color: var(--bs-danger);
}

.account-select-floating .select2-selection--single.is-invalid {
	border-color: var(--bs-danger);
}

.account-select-floating.is-focused .select2-selection--single.is-invalid {
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.account-select-floating > select.input-validation-error + .select2 + label,
.account-select-floating > select.input-validation-error ~ label {
	color: var(--bs-danger);
}

html[data-bs-theme="dark"] .select2-container--default .select2-dropdown {
	background-color: var(--bs-body-bg);
	border-color: var(--bs-border-color);
}

html[data-bs-theme="dark"] .select2-container--default .select2-search--dropdown .select2-search__field {
	background-color: var(--bs-body-bg);
	color: var(--bs-body-color);
	border-color: var(--bs-border-color);
}

html[data-bs-theme="dark"] .select2-container--default .select2-results__option {
	color: var(--bs-body-color);
}

html[data-bs-theme="dark"] .select2-container--default .select2-results__option[aria-selected="true"] {
	background-color: rgba(var(--bs-primary-rgb), 0.15);
}

html[data-bs-theme="dark"] .select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: var(--bs-primary);
	color: #fff;
}

.account-auth-message p:last-child {
	margin-bottom: 0;
}

.account-invoice-register-shell .box-typical {
	background-color: var(--bs-body-bg);
	color: var(--bs-body-color);
	border: 1px solid var(--bs-border-color);
	border-radius: 1rem;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}

.account-invoice-register-shell .steps-numeric-block {
	padding-bottom: 1rem;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header {
	border-bottom: none;
	padding: 0 2rem;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in {
	display: block;
	width: 100%;
	margin: 0;
	color: inherit;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.35rem;
	margin: 0;
	padding: 0 0 0.45rem;
	list-style: none;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	width: 100%;
	min-height: 3.6rem;
	height: auto;
	line-height: 1.15;
	overflow: visible;
	padding: 0.6rem 0.35rem;
	font-size: 0.75rem;
	border: 1px solid var(--bs-border-color);
	border-bottom-width: 1px;
	border-radius: 0.75rem;
	background-color: rgba(var(--bs-body-color-rgb), 0.02);
	color: var(--bs-secondary-color);
	text-align: center;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in .account-wizard-progress-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.7rem;
	margin: 0;
	border-radius: 50%;
	border: 1px solid var(--bs-border-color);
	background-color: var(--bs-body-bg);
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1;
	position: static;
	top: auto;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in li.active {
	color: var(--bs-body-color);
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in li.account-wizard-progress-item.active {
	border-color: rgba(var(--bs-primary-rgb), 0.45);
	background-color: rgba(var(--bs-primary-rgb), 0.08);
	color: var(--bs-body-color);
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in li.account-wizard-progress-item.active .account-wizard-progress-number {
	border-color: rgba(var(--bs-primary-rgb), 0.5);
	color: var(--bs-primary);
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in li.active .item {
	border-color: rgba(var(--bs-primary-rgb), 0.45);
	background-color: rgba(var(--bs-primary-rgb), 0.08);
	color: var(--bs-body-color);
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in li.active .num,
.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in li.active .account-wizard-progress-number {
	border-color: rgba(var(--bs-primary-rgb), 0.5);
	color: var(--bs-primary);
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-footer {
	border-top: none;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-inner {
	padding: 0.35rem 2rem 2rem;
}

.account-invoice-register-shell .steps-numeric-inner label.error,
.account-invoice-register-shell .steps-numeric-inner .field-validation-error {
	margin-top: 0.375rem !important;
}

html[data-bs-theme="dark"] .account-invoice-register-shell .box-typical {
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
}

@media (max-width: 575.98px) {
	.account-invoice-register-shell .steps-numeric-block .steps-numeric-header-in ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.account-invoice-register-shell .steps-numeric-block .steps-numeric-header {
		padding-left: 3rem;
		padding-right: 3rem;
	}

	.account-invoice-register-shell .steps-numeric-block .steps-numeric-inner {
		padding: 0.5rem 3rem 2.5rem;
	}

	.account-invoice-register-shell .steps-numeric-block .steps-numeric-footer .tbl-cell:first-child {
		padding-left: 3rem;
	}

	.account-invoice-register-shell .steps-numeric-block .steps-numeric-footer .tbl-cell:last-child {
		padding-right: 3rem;
	}
}

.account-invoice-register-shell .tbl {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.account-invoice-register-shell .tbl-row {
	display: table-row;
}

.account-invoice-register-shell .tbl-cell {
	display: table-cell;
	vertical-align: middle;
	padding: 0.5rem;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-footer .tbl-cell {
	border-left: none;
	padding: 0.5rem;
	text-align: left;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-footer .tbl-cell:first-child {
	padding-left: 2.25rem;
}

.account-invoice-register-shell .steps-numeric-block .steps-numeric-footer .tbl-cell:last-child {
	padding-right: 2.25rem;
}

@media (min-width: 992px) {
	.account-invoice-register-shell .steps-numeric-block .steps-numeric-footer .tbl-cell:first-child {
		padding-left: 3rem;
	}

	.account-invoice-register-shell .steps-numeric-block .steps-numeric-footer .tbl-cell:last-child {
		padding-right: 3rem;
	}
}

.account-invoice-register-shell .steps-numeric-footer .tbl-row .tbl-cell:only-child {
	text-align: right;
}

.account-invoice-register-shell .steps-numeric-footer .tbl-row .tbl-cell:last-child:not(:only-child) {
	text-align: right;
}

.account-invoice-register-shell .tbl-cell a,
.account-invoice-register-shell .tbl-cell button {
	display: block;
	width: 100%;
	text-align: center;
	text-decoration: none;
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--bs-border-color);
	background: none;
	color: inherit;
}

.account-invoice-register-shell .tbl-cell button.btnRegisterClientInvoice {
	line-height: 1.25;
}

.account-invoice-register-shell .tbl-cell a:not(.bg-success),
.account-invoice-register-shell .tbl-cell button:not(.bg-success) {
	background-color: var(--bs-body-bg);
	color: var(--bs-body-color);
}

.account-invoice-register-shell .tbl-cell .bg-success {
	background-color: var(--bs-success) !important;
	border-color: var(--bs-success);
	color: #fff !important;
}

.account-invoice-register-shell .tbl-cell a.btn-outline-secondary,
.account-invoice-register-shell .tbl-cell button.btn-outline-secondary {
	display: inline-block;
	width: auto;
	padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
	border-radius: var(--bs-btn-border-radius);
	font-size: var(--bs-btn-font-size);
	font-weight: var(--bs-btn-font-weight);
	line-height: var(--bs-btn-line-height);
	background-color: var(--bs-btn-bg);
	border-color: var(--bs-btn-border-color);
	color: var(--bs-btn-color);
}

.account-invoice-register-shell .tbl-cell a.btn-outline-secondary:hover,
.account-invoice-register-shell .tbl-cell a.btn-outline-secondary:focus,
.account-invoice-register-shell .tbl-cell button.btn-outline-secondary:hover,
.account-invoice-register-shell .tbl-cell button.btn-outline-secondary:focus {
	background-color: var(--bs-btn-hover-bg);
	border-color: var(--bs-btn-hover-border-color);
	color: var(--bs-btn-hover-color);
}

.account-invoice-register-shell .tbl-cell a.account-login-submit,
.account-invoice-register-shell .tbl-cell button.account-login-submit {
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	padding: 15px 28px;
	background-color: var(--bs-btn-bg);
	border-color: var(--bs-btn-border-color);
	color: var(--bs-btn-color);
	display: inline-block;
	width: auto;
}

.account-invoice-register-shell .tbl-cell a.account-login-submit:hover,
.account-invoice-register-shell .tbl-cell a.account-login-submit:focus,
.account-invoice-register-shell .tbl-cell button.account-login-submit:hover,
.account-invoice-register-shell .tbl-cell button.account-login-submit:focus {
	background-color: var(--bs-btn-hover-bg);
	border-color: var(--bs-btn-hover-border-color);
	color: var(--bs-btn-hover-color);
}

.account-invoice-register-shell .spinner {
	margin: 2rem auto;
	width: 70px;
	text-align: center;
}

.account-invoice-register-shell .spinner > div {
	width: 14px;
	height: 14px;
	background-color: var(--bs-primary);
	border-radius: 100%;
	display: inline-block;
	animation: account-spinner-bouncedelay 1.4s infinite ease-in-out both;
}

.account-invoice-register-shell .spinner .bounce1 {
	animation-delay: -0.32s;
}

.account-invoice-register-shell .spinner .bounce2 {
	animation-delay: -0.16s;
}

@keyframes account-spinner-bouncedelay {
	0%, 80%, 100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}
