﻿.mwf-message {
	padding: 18px;
}
.autocomplete-suggestions {
	background: #fff;
	border: 1px solid #999;
	overflow: auto;
}
.autocomplete-suggestions strong {
	font-weight: bolder;
}
.autocomplete-suggestion {
	font-size: 12px;
	overflow: hidden;
	padding: 2px 5px;
	white-space: nowrap;
}
.autocomplete-selected {
	background: #c3c3c3;
}
@media screen and (prefers-reduced-motion: reduce) {
	.mwf-button {
		transition: none;
	}
}
.mwf-button {
	background: none;
	border: 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	outline: none;
	padding: 1em 1.5em;
	transition: 250ms ease;
}
.mwf-button--next:not([disabled]),
.mwf-button--submit:not([disabled]) {
	background: #ffc500;
	color: #000;
	font-weight: bold;
}
.mwf-button--back,
.mwf-button--cancel {
	background: #fff;
	color: #000;
	font-weight: bold;
	outline: 1px solid #333;
	outline-offset: -1px;
}
.mwf-button:hover,
.mwf-button:focus {
	background: #2d3748;
	color: #fff;
}
.mwf-button:focus {
	outline: 1px solid #fff;
	outline-offset: -4px;
}
.mwf-button.is-disabled,
.mwf-button[disabled~='disabled'] {
	cursor: not-allowed;
	outline: none;
	padding: 15px 60px;
	background: gray;
	color: fff;
	min-height: 50px;
	border-radius: 2px;
	font-size: 1rem;
	font-weight: 600;
}
.mwf-calculatedvalue__label {
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 8px;
}
.mwf-calculatedvalue__value {
	color: #4a5568;
	margin: 0;
}
.mwf-captcha {
	display: flex;
	flex: 0 0 auto;
	flex-flow: row wrap;
	justify-content: flex-start;
}
.mwf-captcha > * {
	flex: 1 100%;
	margin-bottom: 0.5em;
}
.mwf-captcha__label {
	font-size: 1.4em;
	font-weight: bold;
	order: 1;
}
.mwf-captcha__error {
	color: #f56565;
	font-weight: bold;
	order: 4;
}
.mwf-captcha__hint {
	color: #4a5568;
	order: 3;
}
.mwf-captcha__wrapper {
	order: 2;
}
.mwf-captcha__img {
	border-radius: 3px;
	box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
	display: block;
	margin-bottom: 8px;
}
.mwf-captcha__input {
	border: 2px solid #1a202c;
	border-radius: 2px;
	font-size: 1.25em;
	padding: 0.5rem;
	display: block;
}
.mwf-captcha__input:hover {
	outline: 2px solid #999;
	outline-offset: -3px;
}
.mwf-captcha__input:focus {
	outline: 3px solid #999;
	outline-offset: -4px;
}
.has-error .mwf-captcha__input {
	border: 2px solid #f56565;
}
.mwf-checkboxgroup {
	border: 0;
	margin: 0;
	padding: 0;
}
.mwf-checkboxgroup > * {
	margin-bottom: 0.5em;
}
.mwf-checkboxgroup__legend {
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 8px;
	padding: 0;
}
.mwf-checkboxgroup__hint {
	color: #4a5568;
}
.mwf-checkboxgroup__error {
	color: #f56565;
	font-weight: bold;
}
.mwf-checkboxgroup__options {
	display: flex;
	flex-direction: column;
	margin: 0.5rem -0.75rem 1.5rem;
}
.mwf-checkboxgroup__options > * {
	margin: 0.75rem;
}
.mwf-horizontal .mwf-checkboxgroup__options {
	flex-flow: row wrap;
}
.mwf-checkboxgroup__img {
	border-radius: 3px;
	box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
}
.mwf-checkbox > *:not(:last-child) {
	margin-bottom: 0.5em;
}
.mwf-checkbox__label {
	display: inline-flex;
	flex-direction: column;
	position: relative;
}
.mwf-checkbox__text {
	align-items: center;
	display: flex;
	position: relative;
}
.mwf-checkbox__text::before {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #1a202c;
	border-radius: 2px;
	content: '';
	display: inline-block;
	height: 1em;
	margin-right: 0.3em;
	width: 1em;
}
.mwf-no-toggle .mwf-checkbox__text::before {
	content: unset;
}
.mwf-checkbox__input:hover + .mwf-checkbox__label .mwf-checkbox__text::before {
	outline: 1px solid #2d3748;
	outline-offset: -2px;
}
.mwf-checkbox__input:focus + .mwf-checkbox__label .mwf-checkbox__text::before {
	outline: 2px solid #ed8936;
	outline-offset: -3px;
}
.mwf-checkbox__img {
	border-radius: 3px;
	max-height: 100px;
	max-width: 100px;
}
.mwf-checkbox__img-wrapper {
	font-size: 0;
	margin-left: 22px;
	margin-top: 10px;
	position: relative;
}
.mwf-checkbox__input:checked ~ .mwf-checkbox__label .mwf-checkbox__text::before {
	background-color: #1a202c;
	box-shadow: inset 0 0 0 3px #fff;
}
.mwf-image-only .mwf-checkbox__text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}
.mwf-no-toggle .mwf-checkbox__text {
	color: #fff;
	font-size: large;
	left: 8px;
	position: relative;
	text-shadow: 1px 1px 2px #1a202c;
	top: 5px;
}
.mwf-checkbox__input {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}
.mwf-no-toggle .mwf-checkbox__input ~ .mwf-checkbox__label .mwf-checkbox__img-wrapper {
	margin: 0;
	top: -20px;
	z-index: -1;
}
.mwf-no-toggle .mwf-checkbox__input:checked ~ .mwf-checkbox__label .mwf-checkbox__img-wrapper::after {
	border: 1px solid #1a202c;
	border-radius: 2px;
	bottom: 0;
	box-shadow: #ed8936 0 0 2px 2px inset;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.mwf-image-only .mwf-checkbox__input ~ .mwf-checkbox__label .mwf-checkbox__img-wrapper {
	margin: 0;
}
.mwf-image-only .mwf-checkbox__input ~ .mwf-checkbox__label .mwf-checkbox__img-wrapper::before {
	border: 2px solid rgba(128, 128, 128, 0.795);
	border-radius: 2px;
	box-shadow: rgba(128, 128, 128, 0.3) 0 0 1px 1px;
	content: '';
	height: 20px;
	left: 5px;
	position: absolute;
	top: 5px;
	width: 20px;
}
.mwf-image-only .mwf-checkbox__input:checked ~ .mwf-checkbox__label .mwf-checkbox__img-wrapper::before {
	background-color: #ed8936;
	border: 2px solid #ed8936;
}
.mwf-image-only .mwf-checkbox__input:checked ~ .mwf-checkbox__label .mwf-checkbox__img-wrapper::after {
	background: #fff;
	box-shadow:
		2px 0 0 #fff,
		4px 0 0 #fff,
		4px -2px 0 #fff,
		4px -4px 0 #fff,
		4px -6px 0 #fff,
		4px -8px 0 #fff;
	content: '';
	height: 2px;
	left: 10px;
	position: absolute;
	top: 14px;
	width: 2px;
}
.mwf-select {
	display: flex;
	flex-flow: column nowrap;
}
.mwf-select > * {
	margin-bottom: 0.5em;
}
.mwf-select__img {
	border-radius: 3px;
	box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
}
.mwf-select__label {
	font-size: 1.4em;
	font-weight: bold;
	order: 0;
}
.mwf-select > .select2-container {
	order: 1;
}
.mwf-select__hint {
	color: #4a5568;
	order: 3;
}
.mwf-select__error {
	color: #f56565;
	font-weight: bold;
	order: 4;
}
.mwf-select__select {
	border: 2px solid #1a202c;
	border-radius: 2px;
	font-size: 1.25em;
	padding: 0.5rem;
	font-size: 1rem;
	max-width: 100%;
	min-width: -webkit-min-content;
	min-width: -moz-min-content;
	min-width: min-content;
	order: 2;
	width: -webkit-min-content;
	width: -moz-min-content;
	width: min-content;
}
.mwf-select__select:hover {
	outline: 2px solid #999;
	outline-offset: -3px;
}
.mwf-select__select:focus {
	outline: 3px solid #999;
	outline-offset: -4px;
}
.has-error .mwf-select__select {
	border: 2px solid #f56565;
}
.mwf-select--s .mwf-select__select {
	width: 150px;
}
.mwf-select--m .mwf-select__select {
	width: 300px;
}
.mwf-select--l .mwf-select__select {
	width: 100%;
}
.mwf-fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}
.mwf-fieldset__legend {
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 8px;
	padding: 0;
}
.mwf-fieldset__content {
	border: 1px solid #a0aec0;
	padding: 1rem;
}
.mwf-fieldset--rounded .mwf-fieldset__content {
	border-radius: 5px;
}
.mwf-fieldset--inset .mwf-fieldset__content {
	box-shadow: inset 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
.mwf-fieldset--background .mwf-fieldset__content {
	background: #e0f2fe;
}
.mwf-file__legend {
	display: flex;
	flex-flow: column;
}
.mwf-file__label {
	font-size: 1.4em;
	font-weight: bold;
	flex: 1 100%;
	margin: 0;
}
.mwf-file__hint {
	color: #4a5568;
	flex: 1 100%;
	margin-top: 0.5em;
}
.mwf-file__error {
	color: #f56565;
	font-weight: bold;
	flex: 1 100%;
	margin-top: 0.5em;
}
.mwf-file__uploaded-heading {
	font-size: 1.2em;
	padding: 0 8px;
	text-align: right;
}
.mwf-file__uploaded-actions {
	margin-bottom: 1em;
}
@media screen and (prefers-reduced-motion: reduce) {
	.mwf-file__uploaded-button {
		transition: none;
	}
}
.mwf-file__uploaded-button {
	background: rgba(0, 0, 0, 0);
	border: 1px solid #1a202c;
	border-radius: 3px;
	cursor: pointer;
	font-size: 14px;
	padding: 0.5em 1em;
	transition: 200ms ease;
}
.mwf-file__uploaded-button:hover,
.mwf-file__uploaded-button:focus {
	background: #2d3748;
	border-color: rgba(0, 0, 0, 0);
	color: #fff;
}
.mwf-file__ul {
	list-style: none;
	padding: 0;
}
.mwf-file__li {
	background: #f1f1f1;
	border-radius: 3px;
	display: flex;
	flex-flow: row wrap;
	margin: 8px 0;
	padding: 16px;
}
.mwf-file__li > * {
	margin: 0.5em 0;
}
.mwf-file__img {
	border-radius: 3px;
	box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
	display: block;
	max-height: 120px;
	max-width: 120px;
	width: 100%;
}
.mwf-file__file-progress {
	background-color: #e0e0e0;
	border-radius: 3px;
	margin: 8px 0;
	width: 100%;
}
.mwf-file__file-progress div {
	background: #ed8936;
	border-radius: 3px;
	color: #fff;
	padding: 6px;
	text-align: right;
}
.mwf-file__file-info {
	display: flex;
	flex: 1;
	flex-flow: column nowrap;
	margin: 0.5em;
	padding: 8px;
}
.mwf-file__file-info > div {
	display: flex;
	flex-direction: column;
}
.mwf-file__file-info .mwf-file__file-size {
	color: rgba(0, 0, 0, 0.5);
	margin: 4px 0 12px;
}
.mwf-file__file-error {
	color: #f56565;
	font-weight: bold;
}
.mwf-file__file-actions {
	flex: 0;
}
@media screen and (prefers-reduced-motion: reduce) {
	.mwf-file__file-button {
		transition: none;
	}
}
.mwf-file__file-button {
	background: rgba(0, 0, 0, 0);
	border: 1px solid #1a202c;
	border-radius: 3px;
	cursor: pointer;
	font-size: 14px;
	padding: 0.5em 1em;
	transition: 200ms ease;
}
.mwf-file__file-button:hover,
.mwf-file__file-button:focus {
	background: #2d3748;
	border-color: rgba(0, 0, 0, 0);
	color: #fff;
}
.mwf-file__dropzone {
	align-items: center;
	border: 2px dashed #8b9bba;
	display: flex;
	justify-content: center;
	padding: 3em 1em;
	width: 100%;
}
@media screen and (prefers-reduced-motion: reduce) {
	.mwf-file__button {
		transition: none;
	}
}
.mwf-file__button {
	background: #4299e1;
	border-radius: 3px;
	color: #fff;
	display: block;
	padding: 1em 1.5em;
	transition: 300ms ease;
}
.mwf-file__button:hover,
.mwf-file__button:focus-within {
	background: #2d3748;
	color: #fff;
	cursor: pointer;
}
.mwf-file__input {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}
.mwf-form {
	box-sizing: border-box;
	overflow: hidden;
}
.mwf-form *,
.mwf-form *::before,
.mwf-form *::after {
	box-sizing: inherit;
}
.mwf-form__heading {
	font-size: 2em;
	margin-bottom: 8px;
}
.mwf-form__errors {
	color: #f56565;
	font-weight: bold;
}
.mwf-form__actions {
	display: flex;
	justify-content: space-between;
	margin: 2em 0;
}
.mwf-hidden {
	display: none !important;
}
.mwf-textinput {
	display: flex;
	flex: 0 0 auto;
	flex-flow: row wrap;
	justify-content: flex-start;
}
.mwf-textinput > * {
	flex: 1 100%;
	margin-bottom: 0.5em;
}
.mwf-textinput__label {
	font-size: 1.4em;
	font-weight: bold;
	order: 1;
	width: 100%;
}
.mwf-textinput__error {
	color: #f56565;
	font-weight: bold;
	order: 4;
}
.mwf-textinput__hint {
	color: #4a5568;
	order: 3;
}
.mwf-textinput__input {
	border: 2px solid #1a202c;
	border-radius: 2px;
	font-size: 1.25em;
	padding: 0.5rem;
	flex-grow: 0;
	flex-shrink: 1;
	order: 2;
	width: 100%;
}
.mwf-textinput__input:hover {
	outline: 2px solid #999;
	outline-offset: -3px;
}
.mwf-textinput__input:focus {
	outline: 3px solid #999;
	outline-offset: -4px;
}
.has-error .mwf-textinput__input {
	border: 2px solid #f56565;
}
.mwf-layout--stacked .mwf-textinput__input {
	flex: 1;
}
.mwf-layout--default .mwf-textinput__input {
	min-width: 50px;
}
.mwf-layout--default .mwf-textinput--xs .mwf-textinput__input {
	flex-basis: 50px;
}
.mwf-layout--default .mwf-textinput--s .mwf-textinput__input {
	flex-basis: 100px;
}
.mwf-layout--default .mwf-textinput--m .mwf-textinput__input {
	flex-basis: 150px;
}
.mwf-layout--default .mwf-textinput--l .mwf-textinput__input {
	flex-basis: 200px;
}
.mwf-layout--default .mwf-textinput--xl .mwf-textinput__input {
	flex-basis: 250px;
}
.mwf-layout--default .mwf-textinput--xxl .mwf-textinput__input {
	flex-basis: 300px;
}
.mwf-layout--stacked .mwf-textinput--xs {
	flex: 1 0 50px;
}
.mwf-layout--stacked .mwf-textinput--xs .mwf-textinput__input {
	min-width: 50px;
}
.mwf-layout--stacked .mwf-textinput--s {
	flex: 2 0 100px;
}
.mwf-layout--stacked .mwf-textinput--s .mwf-textinput__input {
	min-width: 100px;
}
.mwf-layout--stacked .mwf-textinput--m {
	flex: 3 0 150px;
}
.mwf-layout--stacked .mwf-textinput--m .mwf-textinput__input {
	min-width: 150px;
}
.mwf-layout--stacked .mwf-textinput--l {
	flex: 4 0 200px;
}
.mwf-layout--stacked .mwf-textinput--l .mwf-textinput__input {
	min-width: 200px;
}
.mwf-layout--stacked .mwf-textinput--xl {
	flex: 5 0 250px;
}
.mwf-layout--stacked .mwf-textinput--xl .mwf-textinput__input {
	min-width: 250px;
}
.mwf-layout--stacked .mwf-textinput--xxl {
	flex: 6 0 300px;
}
.mwf-layout--stacked .mwf-textinput--xxl .mwf-textinput__input {
	min-width: 300px;
}
.mwf-break {
	flex-basis: 100%;
	height: 0;
	margin: 0;
}
.mwf-form-steps {
	margin-bottom: 1.5em;
}
.mwf-form-steps__heading {
	margin-bottom: 32px;
}
.mwf-form-steps__list {
	counter-reset: form-step;
	display: flex;
	overflow: auto;
	text-align: center;
	justify-content: space-between;
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
}
@media only screen and (min-width: 600px) {
	.mwf-form-steps__list {
		align-items: center;
		flex-direction: row;
	}
}
.mwf-form-steps__list::before {
	background-color: #e7e7e7;
	content: '';
	height: 3px;
	position: absolute;
	width: 100%;
	z-index: -1;
}
@media only screen and (max-width: 600px) {
	.mwf-form-steps__list::before {
		display: none;
	}
}
.mwf-form-steps__item {
	align-items: center;
	background-color: #2d3748;
	border-radius: 2px;
	color: #fff;
	display: flex;
	max-width: 400px;
	padding: 14px 20px;
}
@media only screen and (max-width: 600px) {
	.mwf-form-steps__item {
		margin-bottom: 8px;
	}
}
.mwf-form-steps__item::before {
	align-items: center;
	content: counter(form-step);
	counter-increment: form-step;
	display: flex;
	height: 20px;
	justify-content: center;
	margin-right: 8px;
}
.mwf-form-steps__item--completed {
	background-color: #4299e1;
	cursor: pointer;
	list-style-type: none;
}
.mwf-form-steps__item--completed span {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}
.mwf-form-steps__item--completed::before {
	content: '✓';
}
.mwf-form-steps__item--current {
	background-color: #4299e1;
}
.mwf-form-steps__item--current span {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}
.mwf-radiogroup {
	border: 0;
	margin: 0;
	padding: 0;
}
.mwf-radiogroup > * {
	margin-bottom: 0.5em;
}
.mwf-radiogroup__legend {
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 8px;
	padding: 0;
}
.mwf-radiogroup__hint {
	color: #4a5568;
}
.mwf-radiogroup__error {
	color: #f56565;
	font-weight: bold;
}
.mwf-radiogroup__options {
	display: flex;
	flex-direction: column;
	margin: 0.5rem -0.75rem 1.5rem;
}
.mwf-radiogroup__options > * {
	margin: 0.75rem;
}
.mwf-horizontal .mwf-radiogroup__options {
	flex-flow: row wrap;
}
.mwf-radiogroup__img {
	border-radius: 3px;
	box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
}
.mwf-radio > *:not(:last-child) {
	margin-bottom: 0.5em;
}
.mwf-radio__label {
	display: inline-flex;
	flex-flow: row;
	flex-direction: column;
	position: relative;
}
.mwf-radio__text {
	line-height: 1;
	position: relative;
}
.mwf-radio__text::before {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #1a202c;
	border-radius: 50%;
	content: '';
	display: inline-block;
	height: 1em;
	margin-right: 0.3em;
	position: relative;
	top: 2px;
	width: 1em;
}
.mwf-no-toggle .mwf-radio__text::before {
	content: unset;
}
.mwf-radio__input:hover + .mwf-radio__label .mwf-radio__text::before {
	box-shadow: inset 0 0 2px 1px #2d3748;
}
.mwf-radio__input:focus + .mwf-radio__label .mwf-radio__text::before {
	box-shadow: inset 0 0 3px 2px #ed8936;
}
.mwf-radio__img {
	border-radius: 3px;
	max-height: 100px;
	max-width: 100px;
}
.mwf-radio__img-wrapper {
	font-size: 0;
	margin-left: 22px;
	margin-top: 10px;
	position: relative;
}
.mwf-radio__input:checked ~ .mwf-radio__label .mwf-radio__text::before {
	background-color: #1a202c;
	box-shadow: inset 0 0 0 3px #fff;
}
.mwf-image-only .mwf-radio__text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}
.mwf-no-toggle .mwf-radio__text {
	color: #fff;
	font-size: large;
	left: 8px;
	position: relative;
	text-shadow: 1px 1px 2px #1a202c;
	top: 5px;
}
.mwf-radio__input {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}
.mwf-no-toggle .mwf-radio__input ~ .mwf-radio__label .mwf-radio__img-wrapper {
	margin: 0;
	top: -20px;
	z-index: -1;
}
.mwf-no-toggle .mwf-radio__input:checked ~ .mwf-radio__label .mwf-radio__img-wrapper::after {
	border: 1px solid #1a202c;
	border-radius: 3px;
	bottom: 0;
	box-shadow: #ed8936 0 0 2px 2px inset;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.mwf-image-only .mwf-radio__input ~ .mwf-radio__label .mwf-radio__img-wrapper {
	margin: 0;
}
.mwf-image-only .mwf-radio__input ~ .mwf-radio__label .mwf-radio__img-wrapper::before {
	border: 2px solid rgba(128, 128, 128, 0.795);
	border-radius: 50%;
	box-shadow: rgba(128, 128, 128, 0.3) 0 0 1px 1px;
	content: '';
	height: 20px;
	left: 5px;
	position: absolute;
	top: 5px;
	width: 20px;
}
.mwf-image-only .mwf-radio__input:checked ~ .mwf-radio__label .mwf-radio__img-wrapper::before {
	background-color: #ed8936;
	border: 2px solid #ed8936;
}
.mwf-summary__label {
	font-size: 1.4em;
	font-weight: bold;
}
.mwf-summary__list {
	list-style: none;
	padding-left: 0;
}
.mwf-summary-item__label {
	font-weight: bold;
}
.mwf-summary-item__label::after {
	content: ':';
}
.mwf-textarea {
	display: flex;
	flex: 0 0 auto;
	flex-flow: row wrap;
	justify-content: flex-start;
	width: 100%;
}
.mwf-textarea > * {
	flex: 1 100%;
	margin-bottom: 0.5em;
}
.mwf-textarea__label {
	font-size: 1.4em;
	font-weight: bold;
	order: 1;
}
.mwf-textarea__error {
	color: #f56565;
	font-weight: bold;
	order: 4;
}
.mwf-textarea__hint {
	color: #4a5568;
	order: 3;
}
.mwf-textarea__textarea {
	border: 2px solid #1a202c;
	border-radius: 2px;
	font-size: 1.25em;
	padding: 0.5rem;
	flex: 0 50%;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
		'Helvetica Neue', sans-serif;
	min-height: 120px;
	min-width: 100px;
	order: 2;
}
.mwf-textarea__textarea:hover {
	outline: 2px solid #999;
	outline-offset: -3px;
}
.mwf-textarea__textarea:focus {
	outline: 3px solid #999;
	outline-offset: -4px;
}
.has-error .mwf-textarea__textarea {
	border: 2px solid #f56565;
}
.mwf-textarea__textarea[cols] {
	flex-basis: auto;
}
.mwf-textarea--s .mwf-textarea__textarea {
	flex-basis: 150px;
}
.mwf-textarea--m .mwf-textarea__textarea {
	flex-basis: 300px;
}
.mwf-textarea--l .mwf-textarea__textarea {
	flex-basis: 100%;
}
.mwf-layout {
	margin: 0 -1rem;
}
.mwf-layout > * {
	margin: 1rem;
}
.mwf-layout--stacked {
	display: flex;
	flex-flow: row wrap;
}
.mwf-layout--stacked > * {
	flex: 1 1 100%;
}
.mwf-form {
	background-color: #fff;
}
.mwf-form form {
	padding: 36px 16px;
}
@media (min-width: 768px) {
	.mwf-form form {
		padding: 36px 32px;
	}
}
@media (min-width: 1340px) {
	.mwf-form form {
		margin: auto;
		max-width: 800px;
	}
}
.mwf-form .mwf-form__heading {
	position: relative;
	padding-bottom: 0.5rem;
	font-weight: 300;
	font-size: 1.875rem;
}
.mwf-form .mwf-form__heading:after {
	content: '';
	position: absolute;
	width: 120px;
	max-width: 100%;
	height: 4px;
	left: 0;
	bottom: 0;
	background-color: #ffc500;
}
.mwf-form .mwf-radiogroup__legend {
	font-size: 1.25rem;
	font-weight: 400;
}
.mwf-form .mwf-radiogroup__options .mwf-radio .mwf-radio__label {
	cursor: pointer;
}
.mwf-form .mwf-radiogroup__options .mwf-radio .mwf-radio__label .mwf-radio__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	display: flex;
	gap: 0.3em;
}
.mwf-form .mwf-radiogroup__options .mwf-radio .mwf-radio__label .mwf-radio__text::before {
	flex-shrink: 0;
	margin-right: 0;
	top: 5px;
}
.mwf-form .mwf-checkboxgroup .mwf-checkbox__input:checked ~ .mwf-checkbox__label .mwf-checkbox__text::before {
	background-color: #fff;
	content: '✓';
	color: #ffc500;
	line-height: 1;
}
.mwf-form .mwf-checkboxgroup .mwf-checkboxgroup__options .mwf-checkbox .mwf-checkbox__label {
	cursor: pointer;
}
.mwf-form .mwf-checkboxgroup .mwf-checkboxgroup__options .mwf-checkbox .mwf-checkbox__label .mwf-checkbox__text {
	align-items: flex-start;
	gap: 0.3em;
}
.mwf-form
	.mwf-checkboxgroup
	.mwf-checkboxgroup__options
	.mwf-checkbox
	.mwf-checkbox__label
	.mwf-checkbox__text::before {
	flex-shrink: 0;
	margin-right: 0;
	margin-top: 5px;
}
.mwf-form .mwf-form-steps .mwf-form-steps__list .mwf-form-steps__item {
	color: #000;
	background-color: rgba(0, 0, 0, 0);
	font-size: 12px;
	font-weight: 400;
	flex-direction: column;
	gap: 8px;
	z-index: 10;
}
.mwf-form .mwf-form-steps .mwf-form-steps__list .mwf-form-steps__item:before {
	align-items: center;
	content: counter(form-step);
	counter-increment: form-step;
	display: flex;
	height: 20px;
	justify-content: center;
	margin-right: 0;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	border: 1px solid #000;
	background-color: #fff;
	z-index: 10;
}
.mwf-form .mwf-form-steps .mwf-form-steps__list .mwf-form-steps__item--completed {
	color: #ffc500;
	font-weight: 600;
}
.mwf-form .mwf-form-steps .mwf-form-steps__list .mwf-form-steps__item--completed:before {
	color: #fff;
	border: 2px double #fff;
	box-shadow: 0 0 0 1px #ffc500;
	background: #ffc500;
	z-index: 10;
}
.mwf-form .mwf-form-steps .mwf-form-steps__list .mwf-form-steps__item--current {
	opacity: 1;
	color: #000;
	font-size: 12px;
	font-weight: 600;
}
.mwf-form .mwf-form-steps .mwf-form-steps__list .mwf-form-steps__item--current:before {
	color: #fff;
	border: 2px double #fff;
	box-shadow: 0 0 0 1px #ffc500;
	background: #ffc500;
}
@media (min-width: 600px) {
	.mwf-form .mwf-form-steps .mwf-form-steps__list .mwf-form-steps__item:not(:last-child):after {
		background-image: linear-gradient(90deg, #b1b4b5, #b1b4b5);
		content: '';
		height: 1px;
		position: absolute;
		top: 30px;
		width: 23%;
		margin-left: 23%;
	}
	.mwf-form .mwf-form-steps .mwf-form-steps__list .mwf-form-steps__item--current:not(:last-child):after {
		background-image: linear-gradient(90deg, #ffc500, #b1b4b5);
	}
	.mwf-form .mwf-form-steps .mwf-form-steps__list .mwf-form-steps__item--completed:not(:last-child):after {
		background-image: linear-gradient(90deg, #ffc500, #ffc500);
	}
}
@media (min-width: 600px) {
	.mwf-form .mwf-form-steps .mwf-form-steps__list::before {
		background-color: #b1b4b5;
		top: 30px;
		z-index: 3;
		height: 1px;
		left: 70px;
		width: calc(100% - 140px);
	}
}
.mwf-form .mwf-layout {
	display: flex;
	flex-direction: column;
}
.mwf-form .mwf-layout .mwf-textinput input {
	outline-style: none;
	width: 100%;
	height: 3.125rem;
	background-color: #fff;
	box-shadow: 0 1px 1px 0 #f6f6f6 inset;
	border-radius: 0;
	border: 1px solid #000;
	padding: 8px 10px;
	font-size: 1.25rem;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #000;
	margin: 0;
}
.mwf-form .mwf-layout .mwf-textinput input:focus {
	outline: 1px solid #999;
	outline-offset: 1px;
}
.mwf-form .mwf-layout .mwf-textinput .mwf-textinput__label {
	color: #000;
	cursor: pointer;
	font-weight: 400;
	font-size: 1.25rem;
}
.mwf-form .mwf-layout .mwf-textinput .mwf-textinput__label .mwf-textinput__required.mwf-required {
	font-size: 14px;
}
.mwf-form .mwf-layout.mwf-horizontal {
	flex-direction: column;
	gap: 16px;
}
@media (min-width: 576px) {
	.mwf-form .mwf-layout.mwf-horizontal {
		flex-direction: row;
		gap: 20px;
		margin: 1rem 0;
	}
	.mwf-form .mwf-layout.mwf-horizontal .mwf-textinput {
		margin: 0;
	}
	.mwf-form .mwf-layout.mwf-horizontal .mwf-s {
		flex: 1;
	}
	.mwf-form .mwf-layout.mwf-horizontal .mwf-m {
		flex: 1;
	}
	.mwf-form .mwf-layout.mwf-horizontal .mwf-l {
		flex: 2;
	}
}
.mwf-form .mwf-textinput.has-error .mwf-textinput__input {
	border-color: #d00101;
}
.mwf-form .mwf-textinput.has-error .mwf-textinput__label {
	color: #d00101;
}
.mwf-form .mwf-textinput.has-error .mwf-errormsg {
	display: block;
	color: #d00101;
	font-size: 14px;
	font-weight: 400;
	padding-top: 5px;
	margin-top: 5px;
}
.mwf-form .mwf-button.mwf-button--cancel {
	display: none;
}
.mwf-form .mwf-button.mwf-button--back {
	position: absolute;
	background: none;
	font-weight: 300;
	font-size: 1.875rem;
	padding: 0 8px 0 0;
	outline: none;
}
.mwf-form .mwf-button.mwf-button--back:after {
	content: '';
	position: absolute;
	width: 120px;
	max-width: 100%;
	height: 4px;
	left: 0;
	bottom: 0;
	background-color: #ffc500;
}
.mwf-form .mwf-button.mwf-button--back:hover {
	color: #000;
}
.mwf-form .mwf-button.mwf-button--next:not([disabled]),
.mwf-form .mwf-button.mwf-button--submit:not([disabled]) {
	padding: 15px 60px;
	background: #ffc500;
	color: #000;
	min-height: 50px;
	border-radius: 2px;
	font-size: 1rem;
	font-weight: 600;
}
.mwf-form .mwf-button.mwf-button--next:not([disabled]):hover,
.mwf-form .mwf-button.mwf-button--submit:not([disabled]):hover {
	transform: scale(1.05);
	transition:
		transform var(--transition-time) ease-in-out,
		background-color var(--transition-time) ease-in-out;
}
.mwf-form select {
	width: 100%;
}
.mwf-form .mwf-select .mwf-select__select {
	outline-style: none;
	align-items: center;
	border-radius: 0px;
	min-height: 50px;
	position: relative;
	box-sizing: border-box;
	border: 1px solid #000;
}
.mwf-form .mwf-select .mwf-select__select:focus {
	outline: 1px solid #999;
	outline-offset: 1px;
}
.mwf-form .mwf-select .mwf-select__label {
	color: #000;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 400;
}
.mwf-form .mwf-select .mwf-select__error {
	display: block;
	color: #d00101;
	font-size: 14px;
	font-weight: 400;
	padding-top: 5px;
	margin-top: 5px;
}
.mwf-form .mwf-select .mwf-select__select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: url('data:image/svg+xml;utf8,<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="rgb(255, 197, 0)"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>')
		no-repeat right 10px center/18px;
	transition: background 150ms ease 0s;
}
.mwf-form .mwf-select .mwf-select__select:hover {
	background: url('data:image/svg+xml;utf8,<svg width="20" height="20" fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="rgb(177, 180, 181)"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>')
		no-repeat right 10px center/18px;
	transition: background 150ms ease 0s;
}
.mwf-form .mwf-select__select option {
	color: #333;
	margin-left: 2px;
	margin-right: 2px;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	box-sizing: border-box;
	font-size: 1.25rem;
}
.mwf-form .mwf-file__dropzone .mwf-file__button {
	background: #ffc500;
	color: #000;
	border-radius: 2px;
	font-size: 1rem;
	font-weight: 600;
}
.mwf-form .mwf-file__dropzone .mwf-file__button:hover {
	transform: scale(1.05);
	transition:
		transform var(--transition-time) ease-in-out,
		background-color var(--transition-time) ease-in-out;
}
.mwf-form .mwf-file__uploaded-actions .mwf-file__uploaded-button {
	background: #ffc500;
}
.mwf-form .mwf-file__uploaded-actions .mwf-file__uploaded-button:hover {
	background: #2d3748;
}
.mwf-form .mwf-textarea {
	width: auto;
}
.mwf-form .mwf-textarea .mwf-textarea__textarea {
	outline-style: none;
	box-sizing: border-box;
	border: 1px solid #000;
	line-height: 22px;
	font-family: Arial;
	height: auto;
	width: 100%;
}
.mwf-form .mwf-textarea .mwf-textarea__textarea:focus {
	outline: 1px solid #999;
	outline-offset: 1px;
}
.mwf-form .mwf-textarea .mwf-textarea__label {
	color: #000;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 400;
}
.mwf-form .mwf-summary .mwf-summary__label {
	line-height: 32px;
	margin-bottom: 20px;
	font-size: 1.5rem;
	font-weight: 300;
}
.mwf-form .mwf-summary .mwf-summary__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mwf-form .mwf-summary .mwf-summary__list .mwf-summary__item {
	display: flex;
	gap: 20px;
}
.mwf-form .mwf-summary .mwf-summary__list .mwf-summary__item .mwf-summary-item__label {
	color: #000;
	text-align: left;
	font-size: 1.25rem;
	font-weight: normal;
	line-height: inherit;
	white-space: inherit;
	display: inline-block;
	width: 50%;
}
.mwf-form .mwf-summary .mwf-summary__list .mwf-summary__item .mwf-summary-item__label:after {
	content: '';
}
.mwf-form .mwf-summary .mwf-summary__list .mwf-summary__item .mwf-summary-item__value {
	align-self: flex-end;
	font-weight: 600;
	font-size: 1.25rem;
	color: #000;
	text-align: left;
	width: 50%;
}
.mwf-form .mwf-form__actions-next:not([disabled]) .mwf-button.mwf-button--submit:not([disabled]) {
	padding: 15px 60px;
	background: #ffc500;
	color: #000;
	min-height: 50px;
	border-radius: 2px;
	font-size: 1rem;
	font-weight: 600;
}
.mwf-form .mwf-form__actions-next:not([disabled]) .mwf-button.mwf-button--submit:not([disabled]):hover {
	transform: scale(1.05);
	transition:
		transform var(--transition-time) ease-in-out,
		background-color var(--transition-time) ease-in-out;
}

