* {
    font-family: MavenProRegular, Tahoma, Arial;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

body {
    line-height: 1.5;
    font-size: 1rem;
}

form {
    width: 100%;
    color: #000548;
}
h2 {
    margin: 1rem 0;
    font-size: 1.5em;
    line-height: 1.5;
    font-family: MavenProBold, Tahoma, Arial;
}
label {
    color: #000548;
    position: relative;
    display: inline-block;
    padding-left: 2rem;
    margin-bottom: 0.25rem;
    cursor: pointer;
}

label::before {
    content: '';
    border-radius: 50%;
    background-color: #fff;
    border-color: #000548;
    border: 1px solid;
    height: 1.25rem;
    width: 1.25rem;
    top: calc((1.5rem - 1.25rem)/2);
    left: 0;
    position: absolute;
}
input[type=radio]:checked+label::before {
    background: #000548;
}
input[type=radio]:checked+label::after {
    content: "";
    display: inline-block;
    position: absolute;
    height: 10px;
    left: calc((1.4rem - 10px)/2);
    top: calc((1.5rem - 10px)/2);
    width: 10px;
    background: #fff;
    border-radius: 50%;
}

input[type=radio] {
    position: absolute;
    top: calc((1.5rem - 1.25rem)/2);
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    opacity: 0;
}

.c-form__checkfields {
    position: relative;
}
button.button-next
{
    font-family: MavenProMedium, Tahoma, Arial;
    margin: 1rem 0.5rem 1rem 0.5rem;
    background: #000548;
    border: 2px solid #000548;
    border-radius: 8px;
    color: #fff;
    line-height: 2.3;
    padding: 0 1em;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: inherit;
    transition: all ease .3s;
}
button.button-next:hover
{
    background: transparent;
    color: #000548;
}

















/* input, select {
    width: 100%;
    padding: 0.75em 1em;
    font-size: 1em;
    background-color: #F0F0F0;
    border: none;
    margin: 0;
    color: #000548;
    cursor: auto;
    font: inherit;
}

.select-box {
    position: relative;
    width: 100%;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    border-radius: 0;
    margin: 0;
}
.select-arrow {
    pointer-events: none;
    position: absolute;
    right: 0.5rem;
    top: 20%;
    border-bottom: 2px solid #EB003C;
    border-left: 2px solid #EB003C;
    -webkit-transform: rotate(-45deg) translateY(-100%);
    transform: rotate(-45deg) translate(-100%);
    height: 0.5rem;
    width: 0.5rem;
}
.form-checkfields {
    position: relative;
    margin-bottom: 0.5rem;
}
.form-checkfields input[type=checkbox] {
    position: absolute;
    left: 0;
    top: calc((1.5rem - 1.25rem)/2);
    height: 1.25rem;
    width: 1.25rem;
    opacity: 0;
}
.form-checkfields label {
    cursor: pointer;
    display: inline-block;
    margin-bottom: 0.25rem;
    padding-left: 2rem;
    position: relative;
}
.form-checkfields input[type=checkbox]+label::before {
    background-color: #FFF;
    border: 1px solid #000548;
    content: "";
    height: 1.25rem;
    left: 0;
    top: calc((1.5rem - 1.25rem)/2);
    width: 1.25rem;
    display: inline-block;
    position: absolute;
}
.form-checkfields input[type=checkbox]+label::after {
    border-bottom: 2px solid #FFF;
    border-left: 2px solid #FFF;
    height: 0.3rem;
    left: calc((1.25rem - 10px)/2);
    top: calc((1.5rem - 10px)/2);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 0.6rem;
    position: absolute;
    display: inline-block;
}
.form-checkfields input:checked+label::before {
    background-color: #000548;
}

.form-checkfields input:checked+label::after {
    content: "";
}

label a:visited,
label a:active {
    color: #000548;
}
label a:hover {
    text-decoration: none;
}

.requiredFields {
    padding: 0;
    margin-top: -20px;
    font-size: 0.8rem;
}


button {
    background-color: #000548;
    border: 2px solid #000548;
    border-radius: 8px;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    line-height: 2.3;
    padding: 0 1em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: inherit;
    transition: all ease 0.3s;
}

button:hover {
    background-color: #FFF;
    color: #000548;
}

.errorClass {
    background-color: rgba(232, 0, 60, 0.2);
    width: 100%;
}
.load {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: solid 10px #fff;
    border-top: solid 10px #EB003C;
    animation: loading 1s linear infinite;
    position: absolute;
    left: 50%;
    bottom: 10%;
}

@keyframes loading{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 960px) {
    .half-width {
        flex-basis: 50%;
        max-width: 50%;
    }
} */