.abm-banner-grid {
	--abm-columns: 1;
	display: grid;
	grid-template-columns: repeat(var(--abm-columns), minmax(0, 1fr));
	gap: 5px;
	align-items: start;
	width: 100%;
}

.abm-columns-1 {
	--abm-columns: 1;
}

.abm-columns-2 {
	--abm-columns: 2;
}

.abm-columns-3 {
	--abm-columns: 3;
}

.abm-columns-4 {
	--abm-columns: 4;
}

.abm-columns-5 {
	--abm-columns: 5;
}

.abm-columns-6 {
	--abm-columns: 6;
}

.abm-banner-grid > .abm-banner-item {
	min-width: 0;
}

.abm-banner-grid > .abm-banner-item > a {
	display: block;
}

.abm-banner-grid > .abm-banner-item img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

@media (max-width: 1024px) {
	.abm-columns-4,
	.abm-columns-5,
	.abm-columns-6 {
		--abm-columns: 3;
	}
}

@media (max-width: 782px) {
	.abm-columns-3,
	.abm-columns-4,
	.abm-columns-5,
	.abm-columns-6 {
		--abm-columns: 2;
	}
}

@media (max-width: 600px) {
	.abm-banner-grid {
		--abm-columns: 1;
	}
}

.abm-application {
	--abm-application-border: #d9dde3;
	--abm-application-muted: #5f6670;
	--abm-application-accent: #1769aa;
	max-width: 980px;
	margin-inline: auto;
	color: inherit;
}

.abm-application__section {
	box-sizing: border-box;
	margin-block: 0 24px;
	padding: clamp(18px, 3vw, 30px);
	border: 1px solid var(--abm-application-border);
	border-radius: 8px;
	background: #fff;
}

.abm-application__section > :first-child,
.abm-payment-card > :first-child {
	margin-top: 0;
}

.abm-application__section > :last-child,
.abm-payment-card > :last-child {
	margin-bottom: 0;
}

.abm-application-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 20px;
}

.abm-application-field {
	min-width: 0;
}

.abm-application-field--full {
	grid-column: 1 / -1;
}

.abm-application-field > label {
	display: block;
	margin-bottom: 7px;
	font-weight: 650;
}

.abm-application-field input[type="text"],
.abm-application-field input[type="email"],
.abm-application-field input[type="url"],
.abm-application-field input[type="date"],
.abm-application-field input[type="file"],
.abm-application-field select,
.abm-application-field textarea {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	border: 1px solid #aeb4bc;
	border-radius: 4px;
	background: #fff;
	color: inherit;
	font: inherit;
}

.abm-application-field textarea {
	min-height: 110px;
	resize: vertical;
}

.abm-application-field input:focus,
.abm-application-field select:focus,
.abm-application-field textarea:focus {
	outline: 2px solid rgba(23, 105, 170, 0.35);
	outline-offset: 1px;
	border-color: var(--abm-application-accent);
}

.abm-application-field__help,
.abm-application-help {
	margin: 6px 0 0;
	color: var(--abm-application-muted);
	font-size: 0.9em;
}

.abm-application-form__actions {
	margin-top: 20px;
}

.abm-application-form__submit,
.abm-application-submit {
	box-sizing: border-box;
	min-height: 44px;
	padding: 10px 20px;
	border: 1px solid var(--abm-application-accent);
	border-radius: 4px;
	background: var(--abm-application-accent);
	color: #fff;
	font: inherit;
	font-weight: 650;
	cursor: pointer;
}

.abm-application-form__submit:hover,
.abm-application-form__submit:focus,
.abm-application-submit:hover,
.abm-application-submit:focus {
	filter: brightness(0.9);
}

.abm-application-message {
	box-sizing: border-box;
	margin: 0 0 20px;
	padding: 13px 15px;
	border: 1px solid #8c8f94;
	border-left-width: 4px;
	border-radius: 4px;
	background: #f6f7f7;
}

.abm-application-message--success {
	border-color: #46b450;
	background: #f0f8f1;
}

.abm-application-message--error {
	border-color: #d63638;
	background: #fcf0f1;
}

.abm-application-message--info {
	border-color: #72aee6;
	background: #f0f6fc;
}

.abm-payment-card {
	box-sizing: border-box;
	margin: 0 0 24px;
	padding: clamp(18px, 3vw, 28px);
	border: 2px solid #72aee6;
	border-radius: 8px;
	background: #f7fbff;
}

.abm-payment-card__details {
	display: grid;
	grid-template-columns: minmax(130px, 0.4fr) minmax(0, 1fr);
	gap: 9px 16px;
	margin: 18px 0;
}

.abm-payment-card > dl {
	display: grid;
	gap: 9px;
	margin: 18px 0;
}

.abm-payment-card > dl > div {
	display: grid;
	grid-template-columns: minmax(130px, 0.4fr) minmax(0, 1fr);
	gap: 8px 16px;
}

.abm-payment-card__details dt {
	font-weight: 650;
}

.abm-payment-card > dl dt {
	font-weight: 650;
}

.abm-payment-card__details dd {
	min-width: 0;
	margin: 0;
	overflow-wrap: anywhere;
}

.abm-payment-card > dl dd {
	min-width: 0;
	margin: 0;
	overflow-wrap: anywhere;
}

.abm-payment-card__number,
.abm-payment-card__amount,
.abm-payment-card__wallet {
	font-weight: 700;
	overflow-wrap: anywhere;
}

.abm-payment-card__number,
.abm-payment-card__amount {
	font-size: 1.12em;
}

.abm-payment-card__wallet {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.abm-payment-card__warning {
	padding: 11px 13px;
	border-left: 4px solid #dba617;
	background: #fff8e5;
	font-weight: 650;
}

.abm-payment-card__instructions {
	margin: 18px 0;
	padding: 13px 15px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	background: #fff;
}

.abm-payment-card__instructions h3 {
	margin: 0 0 8px;
}

.abm-payment-card__instructions p {
	margin: 0;
}

.abm-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 680px) {
	.abm-application-fields,
	.abm-payment-card__details {
		grid-template-columns: 1fr;
	}

	.abm-payment-card > dl > div {
		grid-template-columns: 1fr;
	}

	.abm-payment-card__details dd + dt {
		margin-top: 6px;
	}
}
