/*
	primary color: #013366
	squash:        #fdd051
	charcoal:      #131211
	chimney:       #AB2535
	newsletter-element-max-width: 526px
*/

@keyframes pulse-primary-300 {
	0% {
		box-shadow: 0 0 0 0 rgba(111, 196, 255, .7);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(111, 196, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(111, 196, 255, 0);
	}
}

.inxform {
	background-color: #fff;
	color: #131211;
	display: flex;
	flex-direction: column;
	font-family: "Source Sans 3", Helvetica, sans-serif;
	font-size: 18px;
	gap: 24px;
	margin-inline: auto;

	@media screen and (max-width: 480px) {
		font-size: 16px;
		gap: 16px;
	}
}

.inxform > * {
	margin-block: 0;
	width: 100%;
}

.disclaimer {
	color: #131211;
	font-size: 14px;
	margin-top: 24px;

	@media screen and (max-width: 480px) {
		font-size: 12px;
		margin-top: 16px;
	}
}

.frc-banner {
    margin-bottom: 4px;
}

.frc-captcha {
	background-color: #e8e6e5;
	border: none;
	margin-top: 16px;
}

.heading {
	line-height: 1.5;

	@media screen and (max-width: 480px) {
		font-size: 14px;
	}
}

.message_missing {
	background-color: #AB2535;
	color: #FFFFFF;
	margin-top: 16px;
	padding: 4px 8px;
}

.missing {
	color: #AB2535;
}

#subscription_6 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;

	@media screen and (max-width: 480px) {
		align-items: center;
	}
}

#subscription_6 label.label {
	font-size: 32px;
	font-weight: bold;

	@media screen and (max-width: 480px) {
		font-size: 22px;
	}
}

#subscription_6:after {
	display: none;
}

font[size="5"] {
	font-size: 32px;

	@media screen and (max-width: 480px) {
		font-size: 22px;
	}
}

.subscription input.checkbox {
	align-self: center;
	appearance: none;
	-webkit-appearance: none;
	background-color: #b5aeab;
	border-radius: 24px;
	cursor: pointer;
	flex: 1;
	height: 24px;
	max-width: 44px;
	min-width: 44px;
	position: relative;
	transition: background-color 0.3s;
	width: 44px;
}

.subscription input.checkbox:before {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	left: 3px;
	top: 3px;
	background-color: #fff;
	border-radius: 50%;
	transition: transform 0.3s;
}

.subscription input.checkbox:hover {
	animation: pulse-primary-300 2s infinite
}

.subscription input.checkbox:checked {
	background-color: #013366;
}

.subscription input.checkbox:checked:before {
	transform: translateX(19px);
}

.listfield {
	position: relative;
}

.listfield select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 20px;
	position: relative;
	cursor: pointer;
}

.listfield:after {
	content: "" !important;
	display: block !important;
	position: absolute;
	right: 10px;
	bottom: 12px;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 6px;
	border-right: 2px solid #131211;
	border-bottom: 2px solid #131211;
	pointer-events: none;
}

.textfield:has(.missing) input.text,
.textfield:has(.missing) select {
	border: 1px solid #AB2535;
}

div.submit input.submit_button,
div.submit input.reset_button {
	align-items: center;
	background-color: #013366;
    border: 1px solid #013366;
	border-radius: 3px;
    box-shadow: none;
	color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
	font-weight: 700;
    gap: 16px;
	margin: 0 5px 0 0;
    min-height: 24px;
    padding: 10px 16px;
    outline: 0;
    text-decoration: none;
    user-select: none;
}

div.submit input.submit_button:hover,
div.submit input.reset_button:hover {
	animation: pulse-primary-300 2s infinite;
	background-color: #004993;
}

div.submit input.submit_button:focus-visible,
div.submit input.reset_button:focus-visible {
	background-color: #004993;
    outline: 0.2rem solid #008bff;
    outline-offset: 0.3rem;
}

div.textfield input.text,
div.listfield select {
	background-color: #f6f5f5;
    border: 1px solid #013366;
	border-radius: 3px;
	color: #131211;
	float: unset;
	margin-bottom: 0;
	margin-right: 0;
	padding: 10px;
	width: 100%;
}

div.textfield input.text {
	max-width: calc(100% - 22px);
}

label.label {
	color: #131211;
	display: block;
	float: unset;
	font-size: 16px;
	font-weight: normal;
	width: 100%;

	@media screen and (max-width: 480px) {
		font-size: 14px;
	}
}

a {
	color: #131211;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: all 0.3s ease;
}

a:hover {
	text-decoration-color: transparent;
}

br {
	display: none;
}

body {
	margin: 0;
}