* { box-sizing: content-box; }

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: "area-normal", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}
ul {
    list-style: none;
}
button,
input,
select,
textarea {
    margin: 0;
}
html {
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}
img,
embed,
object,
audio,
video {
    height: auto;
    max-width: 100%;
    border: none;
}

#mainbodywrapper {
	/* display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh; */
}
#mainbody {
	display: block;
	width: 100%;
	max-width: 450px;
	padding-top: 25px;
	padding-bottom: 25px;
	margin-left: auto;
	margin-right: auto;
}
#mainbody.withfooter {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	padding-bottom: 100px;
}
#mainbody .footer {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

iframe {
    max-width: 100%;
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
    text-align: left;
}

@font-face {
    font-family: 'Optima';
    src: url('fonts/Optima.woff2') format('woff2'),
        url('fonts/Optima.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* @font-face {
    font-family: 'Avenir';
    src: url('fonts/AvenirLTStd-Book.woff2') format('woff2'),
        url('fonts/AvenirLTStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

body {
    min-height: 100%;
    background: #000;
    color: #fff;
    font-family: "area-normal", sans-serif;
    font-size: 12px;
}
a {
    color: #fff;
}

.bt1 {
	display: block;
	padding: 15px;
	font-size: 14px;
	text-align: center;
	border-width: 1px;
	border-color: #FFF;
	border-style: solid;
	background-color: #FFF;
	color: #000;
	text-decoration: none;
	margin-bottom: 20px;
}
.bt1:hover {
	background: #000;
	color: #FFF;
}
.bt2 {
	display: block;
	padding: 15px;
	font-size: 14px;
	text-align: center;
	border-width: 1px;
	border-color: #FFF;
	border-style: solid;
	text-decoration: none;
}
.bt2:hover {
	background: #FFF;
	color: #000;
}
.header {
	display: block;
    margin: 0 auto;
    margin: 20px auto;
    padding: 0 20px;
	text-align: center;
}
.header__logo__image {
    height: 80px;
}
.header__nav {
    position: relative;
    top: -4px;
}
.header__nav__link {
    text-decoration: none;
    border-bottom: 2px #fff solid;
    margin-left: 10px;
}
.content {
	display: flex;
	align-items: center;
	justify-content: center;
    margin: 0 auto;
    max-width: 500px;
    padding: 0 20px;
	min-height: 80vh;
	min-height: calc( 100vh - 130px );
	position: relative;
}
#mainbody.withfooter .content {
	min-height: 70vh;
	min-height: calc( 100vh - 200px );
	min-height: calc( 100svh - 200px );
	/*min-height: -webkit-fill-available; */
}
.content.withfooter {
	padding-bottom: 80px;
}
.content .footer {
    display: block;
    position: absolute;
    bottom: 0px;
    left: 20px;
    right: 20px;
}
form {
	display: block;
	width: 100%;
}
.form__intro {
    margin: 1.5em 0;
}
.form__intro h1 {
    font-size: 21px;
    font-family: "area-normal", sans-serif;
}
.form__intro p {
    margin-top: 1em;
}
.form__success {
	display: block;
    /* margin: 1.5em 0;
    background: #e7ffe3;
    color: #418b35;
    border: none; */
    padding: 10px;
    font-family: "area-normal", sans-serif;
}
.form__error {
	display: block;
    margin: 1.5em 0;
    background: #ffe0e0;
    color: #920e0e;
    border: 2px #920e0e solid;
    padding: 10px;
    font-family: "area-normal", sans-serif;
}
.form__section {
	display: block;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px #fff dashed;
    border-bottom: 1px #fff dashed;
}
.form__group {
    margin-top: 1em;
	padding-bottom: 10px;
}
.form__label {
    display: block;
    margin-bottom: 8px;
	font-size: 12px;
}
.form__label--tooltip {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form__label .required {
    color: #ff9595;
    margin-left: 1px;
}
.form__label__tooltip {
    position: relative;
    display: block;
    border-bottom: 1px dashed #fff;
    font-size: 13px;
    cursor: pointer;
}
.form__label__tooltip:before {
    content: attr(aria-label);
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    margin-right: 15px;
    width: 200px;
    padding: 8px;
    background: #fff;
    color: #000;
    text-align: center;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    opacity: 0;
    transition: 0.3s opacity;
}
.form__label__tooltip:after {
    content: "";
    display: block;
    position: absolute;
    right: 100%;
    margin-right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid #fff;
    border-color: transparent transparent transparent #fff;
    opacity: 0;
    transition: 0.3s opacity;
    pointer-events: none;
}
.form__label__tooltip:hover:before,
.form__label__tooltip:hover:after,
.form__label__tooltip:focus:before,
.form__label__tooltip:focus:after {
    opacity: 1;
    pointer-events: none;
}
.form__input {
    border: none;
    outline: none;
    background: #000;
    color: #fff;
    padding: 10px;
    display: block;
    width: 100%;
    font-size: 16px;
    border-radius: 0;
	border-color: #FFF;
	border-width: 1px;
	border-style: solid;
}
.form__group--error .form__input,
.form__input.dirty:invalid:not(:focus) {
    background: #ffe0e0;
    color: #920e0e;
    font-family: "area-normal", sans-serif;
    /* padding: 8px 10px; */
}
.form__select {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    margin: 0;
    width: 100%;
    cursor: inherit;
    line-height: inherit;
    font-size: 12px;
    border-radius: 0;
    background: #fff url(images/select-arrow.svg) no-repeat 97% 50%;
    background-size: 12px 9px;
    color: #000;
    padding: 10px 30px 10px 5px;
}
.form__group--error .form__select,
.form__select.dirty:invalid {
    background-color: #ffe0e0;
    color: #920e0e;
    font-family: "area-normal", sans-serif;
    padding: 8px 30px 8px 5px;
}
.form__input-help {
    display: inline-block;
    margin-top: 5px;
    color: #fff;
    font-size: 13px;
    position: relative;
    padding-left: 19px;
}
.form__input-help:before {
    content: "i";
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    font-family: "area-normal", sans-serif;
    font-size: 13px;
    line-height: 1;
    background: #fff;
    color: #000;
    text-align: center;
}
.form__input-error {
    display: inline-block;
    margin-top: 5px;
    color: #ffe0e0;
    font-size: 13px;
    font-family: "area-normal", sans-serif;
}
.form__checkboxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 3px;
    margin-bottom: 25px;
}
.form__checkboxes__item {
    flex-basis: 50%;
    padding-right: 10px;
    margin-bottom: 6px;
    position: relative;
}
.form__checkboxes__input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.form__checkboxes__label {
    padding-left: 25px;
    display: block;
    position: relative;
}
.form__checkboxes__label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #fff;
}
.form__checkboxes__input:checked + .form__checkboxes__label:before {
    background: #ccfac6 url(images/tick.svg) no-repeat 2px 2px;
    background-size: 12px 12px;
}
.form__checkboxwrapper {
	display: block;
	padding-top: 10px;
	padding-bottom: 25px;
}
.form__checkbox {
	display: block;
	box-sizing: border-box;
    position: relative;
	padding: 0px;
	margin: 0px;
	/* border: 1px solid #ff6550; */
}
.form__checkbox__input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.form__checkbox__label {
	display: block;
	padding: 0px;
	padding-left: 30px;
	padding-top: 0px;
	line-height: 16px;
}
.form__checkbox__label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 16px;
    height: 16px;
    background: #fff;
}
.form__checkbox__input:checked + .form__checkbox__label:before {
    background: #FFF url(images/tick.svg) no-repeat 2px 2px;
    background-size: 12px 12px;
}
.form__additional-fields input {
    display: none;
}
.form__actions {

    margin-top: 1.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form__actions__button {
    display: inline-block;
    outline: none;
    border: none;
    background: #fff;
    color: #000;
    padding: 15px 38px;
    font-family: "area-normal", sans-serif;
    font-size: 14px;
	line-height: 14px;
    cursor: pointer;
}
.account-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px #fff solid;
}
.success {
    height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.success__intro {
    text-align: center;
}
.success__intro h1 {
    font-family: "area-normal", sans-serif;
    font-size: 24px;
}
.success__intro p {
    margin-top: 1.5em;
}
.success__intro + .success__check {
    margin-top: 20px;
}
.success__check {
    margin: 0 auto;
    width: 92px;
    height: 92px;
    background: transparent url(images/tick.svg) no-repeat 0 0;
}
.success__check + .success__intro {
    margin-top: 20px;
}
.success__followup {
    margin-top: 40px;
    font-size: 18px;
    text-align: center;
}
.success__followup button {
    display: inline-block;
    outline: none;
    border: none;
    background: #fff;
    color: #000;
    padding: 10px 50px;
    font-family: "area-normal", sans-serif;;
    font-size: 16px;
    cursor: pointer;
}
.success__followup__intro {
    margin-bottom: 20px;
}

/* ************************************ */

.dnone {
	display: none!important;
	opacity: 0!important;
}

/* ************************************ */
