/*** BEGIN Normalize.css ***/
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: -webkit-linear-gradient(top, #f2f2f2, #e6e6e6);
    background-image: linear-gradient(to top, #f2f2f2, #e6e6e6);
}

main {
    display: block;
}


.mfirstbrowserbox {
    margin: 10px 10px 10px 0px;
}

.mbrowserbox {
    margin: 10px;
}

.mlastbrowserbox {
    margin: 10px 0px 10px 10px;
}

.fl {
    flex: 1 1 auto;
    line-height: 1;
}

a {
    text-decoration: underline;
    background-color: transparent;
}

.browsertext {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 5px;
}

.browserbg {
    height: 90px;
    width: auto;
    min-width: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80px;
}

.desaturate {
    opacity: 0.3;
}

.ff {
    background-image: url('../img/Logo_Firefox.png');
}

.chrome {
    background-image: url('../img/Logo_Chrome.png');
}

.edge {
    background-image: url('../img/Logo_Edge.png');
}

.safari {
    background-image: url('../img/Logo_Safari.png');
}

.mb0 {
    margin-bottom: 0;
}

.mb30 {
    margin-bottom: 30px;
}

.mt30 {
    margin-top: 30px;
}

.fs11 {
    font-size: 11px;
}

.marginhack {
    padding: 0 !important;
    margin: 20px 52px 4px 12px !important;
    width: 95% !important;
}

.flexcontainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}


h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace;
    font-size: 1em;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

    button::-moz-focus-inner,
    [type="button"]::-moz-focus-inner,
    [type="reset"]::-moz-focus-inner,
    [type="submit"]::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    button:-moz-focusring,
    [type="button"]:-moz-focusring,
    [type="reset"]:-moz-focusring,
    [type="submit"]:-moz-focusring {
        outline: 1px dotted ButtonText;
    }

fieldset {
    padding: 8px !important;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
    margin: 0;
    font-size: 0;
    line-height: 0;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

    [type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}
/*** END Normalize.css ***/



html, body {
    font-size: 14px;
    font-family: Roboto, 'Calibri', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.overlay--dark {
    background: rgba(0,0,0,.48);
}

.overlay--light {
    background: rgba(255,255,255,.64);
}

.spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
}

.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

.highlight--red {
    color: #d32f2f;
    padding-left: 2px;
}

.logo {
    margin: 0 0 2rem;
}

.logo__img {
    max-width: 100%;
    width: 256px;
}

.logo_IAQG__img {
    max-width: 100%;
    width: 160px;
}

.form__group {
    margin: 1rem 0 2rem;
}

    .form__group + .submit {
        margin-bottom: 4rem;
    }

    .form__group.submit > div > div {
        margin: 0 auto;
    }

.form__wrapper li {
    padding: 1.4rem 2rem;
    text-align: left;
}

.form__wrapper {
    position: relative;
    max-width: 512px;
    margin: 48px auto;
    padding: 1.4rem 2rem;
    background: #fff;
    border-radius: 1px;
    width: 512px;
}


.spangroup {
    line-height: 1.0;
    padding-bottom: 5px;
    padding-top: 5px;
}

.mrg10 {
    margin: 10px;
}

.subpage {
    max-width: 960px;
    width: 960px;
}

    .subpage div:last-child, p {
        text-align: left;
    }

@media (max-width: 960px) {
    .subpage {
        width: 100vw;
    }
}

@media (max-width: 608px) {
    .form__wrapper {
        margin-top: calc((100vw - 512px) / 2);
        margin-bottom: calc((100vw - 512px) / 2);
        width: 100vw;
    }

    .subpage {
        width: 100vw;
    }
}

@media (max-width: 512px) {
    .form__wrapper {
        margin: 0;
    }

    .subpage {
        width: 100vw;
    }
}

.form__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-transition: -webkit-transform 0.28s ease-in-out;
    transition: -webkit-transform 0.28s ease-in-out;
    transition: transform 0.28s ease-in-out;
    transition: transform 0.28s ease-in-out, -webkit-transform 0.28s ease-in-out;
    z-index: -1;
}

.form__wrapper:hover::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form__title {
    text-align: center;
}

    .form__title h1 {
        font-size: 2rem;
        text-align: center;
        margin: 0 0 2rem;
    }

.form__header h2 {
    font-size: 1.4rem;
    text-align: left;
    margin: 1rem 0 .8rem;
}

.form-input__container {
    margin-top: .5rem;
    margin-bottom: 1rem;
}

.form-input__container--relative {
    position: relative;
}

.form__input {
    position: relative;
    background: #f5f5f5;
    border-radius: 4px 4px 0 0;
    height: 48px;
    overflow: hidden;
}

    .form__input.form__input--autoheight {
        height: auto;
        min-height: 48px;
    }

    .form__input.form__input--dropdown {
        padding-right: 28px;
        position: relative;
    }

        .form__input.form__input--dropdown::before {
            content: '';
            display: block;
            height: 100%;
            width: 28px;
            position: absolute;
            right: 0;
            top: 0;
            background-color: transparent;
            background-repeat: no-repeat;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px;height:24px' viewBox='0 0 24 24'%3E%3Cpath fill='%23212529' d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z' /%3E%3C/svg%3E");
            background-size: 24px;
            background-position: right 4px center;
            transition: transform linear .2s;
        }

.form-input__container.focus .form__input.form__input--dropdown::before {
    transform: rotate(180deg);
}

.form__input > .invalid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px;height:24px' viewBox='0 0 24 24'%3E%3Cpath fill='%23d32f2f' d='M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z' /%3E%3C/svg%3E");
}

.form__input > select.modified.valid,
.form__input > .has-value.valid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px;height:24px' viewBox='0 0 24 24'%3E%3Cpath fill='%234caf50' d='M20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4C12.76,4 13.5,4.11 14.2,4.31L15.77,2.74C14.61,2.26 13.34,2 12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12M7.91,10.08L6.5,11.5L11,16L21,6L19.59,4.58L11,13.17L7.91,10.08Z' /%3E%3C/svg%3E");
}

.form-inline > .form__input,
.form-inline > .btn {
    display: inline-block;
    margin-bottom: 0;
}

.form__input--helper-line {
    font-size: 0.8rem;
    padding: 0 0;
}

.input-helper {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    color: #b3b3b3;
    display: inline-block;
}

.validation-message {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    color: #d32f2f;
}

    .validation-message ~ .input-helper {
        display: none;
    }

.form__input input {
    height: 48px;
}

.form__input .input {
    min-height: 48px;
    display: inline-block;
    vertical-align: text-top;
    line-height: 24px;
    cursor: pointer;
}

.form__input textarea {
    resize: none;
}

.form__input input,
.form__input .input,
.form__input textarea {
    display: block;
    background: none transparent no-repeat;
    padding: 20px 32px 4px 12px;
    min-height: 48px;
    font-size: 1rem;
    border-width: 0;
    border-color: transparent;
    line-height: 1.9;
    width: 100%;
    color: transparent;
    -webkit-transition: all 0.28s ease;
    transition: all 0.28s ease;
    box-shadow: none;
    background-size: 24px;
    background-position: right 4px center;
}

/* Force color on autofill to ensure text is visible */
.form__input input:-webkit-autofill,
.form__input input:-webkit-autofill:hover,
.form__input input:-webkit-autofill:focus,
.form__input input:-webkit-autofill:active {
    -webkit-text-fill-color: #333 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form__input input:autofill,
.form__input input:autofill:hover,
.form__input input:autofill:focus,
.form__input input:autofill:active {
    color: #333 !important;
}

.form__input select {
    width: 100%;
    font-size: 1rem;
    height: 1.6rem;
    padding: 20px 52px 4px 12px;
    min-height: 48px;
    background: none transparent no-repeat;
    border: none;
    line-height: 1.6;
    box-shadow: none;
    background-size: 24px;
    background-position: right 24px center;
}

.form__input label {
    position: absolute;
    top: 50%;
    pointer-events: none;
    padding: 12px 32px 12px 12px;
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 1;
    color: #b3b3b3;
    font-size: 1rem;
    font-weight: normal;
    -webkit-transition: all 0.28s ease;
    transition: all 0.28s ease;
    transform: translateY(-50%);
    white-space: nowrap;
}

.form__input .bar {
    position: absolute;
    border-bottom: 0.0625rem solid rgba(0,0,0,.12);
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
}

    .form__input .bar::before {
        content: '';
        height: 0.125rem;
        width: 0;
        left: 50%;
        bottom: -0.0625rem;
        position: absolute;
        background: #337ab7;
        -webkit-transition: left 0.28s ease, width 0.28s ease;
        transition: left 0.28s ease, width 0.28s ease;
        z-index: 2;
    }

.form__input.form__input--error .bar::before {
    content: '';
    height: 0.125rem;
    width: 0;
    left: 50%;
    bottom: -0.0625rem;
    position: absolute;
    background: red;
    -webkit-transition: left 0.28s ease, width 0.28s ease;
    transition: left 0.28s ease, width 0.28s ease;
    z-index: 2;
}

.form__input input[type="file"] {
    line-height: 1;
}

    .form__input input[type="file"] ~ .bar {
        display: none;
    }

.form__input select,
.form__input input:focus,
.form__input input.has-value,
.form-input__container--focus.focus .form__input .input,
.form-input__container--focus:focus .form__input .input,
.form__input .input.has-value,
.form__input textarea:focus,
.form__input textarea.has-value {
    color: #333;
}

    .form__input select ~ label,
    .form__input input:focus ~ label,
    .form__input input.has-value ~ label,
    .form-input__container--focus.focus .form__input .input ~ label,
    .form-input__container--focus:focus .form__input .input ~ label,
    .form__input .input.has-value ~ label,
    .form__input textarea:focus ~ label,
    .form__input textarea.has-value ~ label {
        font-size: 0.8rem;
        color: gray;
        top: -4px;
        left: 0;
        transform: translateY(0);
    }
/* Handle autofilled inputs - move label up and show validation icon */
.form__input input:-webkit-autofill,
.form__input input:autofill {
    color: #333;
}

    .form__input input:-webkit-autofill ~ label,
    .form__input input:autofill ~ label {
        font-size: 0.8rem;
        color: gray;
        top: -4px;
        left: 0;
        transform: translateY(0);
    }
.form__select-container {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 99;
    bottom: 100%;
    height: auto;
    max-height: 240px;
    overflow: auto;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
}

    .form__select-container.show {
        display: block;
    }

    .form__select-container label {
        display: block;
        height: 36px;
        line-height: 36px;
        margin: 0 8px;
        position: relative;
    }

        .form__select-container label > input {
            z-index: -1;
            margin: 0;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.6);
            box-shadow: none;
            outline: none;
            opacity: 0;
            appearance: none;
            -moz-appearance: none;
            -webkit-appearance: none;
            position: absolute;
            left: -10px;
            top: -3px;
            display: block;
            transform: scale(1);
            pointer-events: none;
            transition: opacity 0.3s, transform 0.2s;
        }

        .form__select-container label > span {
            display: inline-block;
            width: 100%;
            cursor: pointer;
            position: relative;
            white-space: nowrap;
        }

            .form__select-container label > span::before {
                content: "";
                display: inline-block;
                box-sizing: border-box;
                margin: 7px 8px 7px 0px;
                border: solid 2px; /* Safari */
                border-color: rgba(0, 0, 0, 0.6);
                border-radius: 2px;
                width: 20px;
                height: 20px;
                vertical-align: top;
                transition: border-color 0.2s, background-color 0.2s;
            }

            .form__select-container label > span::after {
                content: "";
                display: block;
                position: absolute;
                top: 8px;
                left: 1px;
                width: 12px;
                height: 6px;
                border: solid 2px transparent;
                border-right: none;
                border-top: none;
                transform: translate(3px, 4px) rotate(-45deg);
            }


        /* Checked, Indeterminate */
        .form__select-container label > input:checked,
        .form__select-container label > input:indeterminate {
            background-color: rgb(51,122,183);
        }

            .form__select-container label > input:checked + span::before,
            .form__select-container label > input:indeterminate + span::before {
                border-color: rgb(51,122,183);
                background-color: rgb(51,122,183);
            }

            .form__select-container label > input:checked + span::after,
            .form__select-container label > input:indeterminate + span::after {
                border-color: rgb(255, 255, 255);
            }

            .form__select-container label > input:indeterminate + span::after {
                border-left: none;
                transform: translate(4px, 3px);
            }

        /* Hover, Focus */
        .form__select-container label:hover > input {
            opacity: 0.08;
        }

        .form__select-container label > input:focus {
            opacity: 0.16;
        }

        .form__select-container label:hover > input:focus {
            opacity: 0.20;
        }

        /* Active */
        .form__select-container label > input:active {
            opacity: 1;
            transform: scale(0);
            transition: transform 0s, opacity 0s;
        }

            .form__select-container label > input:active + span::before {
                border-color: rgb(51,122,183);
            }

        .form__select-container label > input:checked:active + span::before {
            border-color: transparent;
            background-color: rgba(0, 0, 0, 0.6);
        }


.form__element--submit {
    height: 36px;
    padding: 0 16px;
    border: none;
    margin: 1rem auto 0;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
}

    .form__element--submit:not(:disabled) {
        background-color: #337ab7;
        color: #fff;
        -webkit-box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
        box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
        -webkit-transition: -webkit-box-shadow .28s cubic-bezier(.4,0,.2,1);
        -o-transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
        transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
    }

    .form__element--submit:disabled {
        background-color: #ccc;
        color: #212529;
        opacity: .7;
    }

    .form__element--submit:not(:disabled):hover {
        cursor: pointer;
    }

    .form__element--submit:not(:disabled):focus,
    .form__element--submit:not(:disabled):hover {
        -webkit-box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
        box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
    }

.form__element--mailchange {
    height: 36px;
    padding: 0 16px;
    border: none;
    display: initial;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
}

    .form__element--mailchange:not(:disabled) {
        background-color: #337ab7;
        color: #fff;
        -webkit-box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
        box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
        -webkit-transition: -webkit-box-shadow .28s cubic-bezier(.4,0,.2,1);
        -o-transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
        transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
    }

    .form__element--mailchange:disabled {
        background-color: #ccc;
        color: #212529;
        opacity: .7;
    }

    .form__element--mailchange:not(:disabled):hover {
        cursor: pointer;
    }

    .form__element--mailchange:not(:disabled):focus,
    .form__element--mailchange:not(:disabled):hover {
        -webkit-box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
        box-shadow: 0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12);
    }

.validation__message {
    border-radius: 2px;
    min-height: 48px;
    padding: 12px 12px 12px 48px;
    background: #ccc none no-repeat 8px center;
    background-size: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.validation-message span {
    line-height: 16px;
    vertical-align: middle;
}

.validation__message--success {
    background-color: #E8F5E9;
    color: #1E4620;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px;height:24px' viewBox='0 0 24 24'%3E%3Cpath fill='%234CAF50' d='M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z' /%3E%3C/svg%3E");
}

.validation__message--error {
    background-color: #FEEBEE;
    color: #611A15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px;height:24px' viewBox='0 0 24 24'%3E%3Cpath fill='%23F44336' d='M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z' /%3E%3C/svg%3E");
}

#blazor-error-ui {
    min-height: 48px;
    padding: 12px 12px 12px 48px;
    display: none;
    background: #e27c79 none no-repeat 8px center;
    color: #fff;
    background-size: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px;height:24px' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z' /%3E%3C/svg%3E");
}

.CheckboxControl {
    height: 25px;
    min-height: 25px;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 25px;
}

    .CheckboxControl > label {
        cursor: pointer;
        padding-left: 0;
        padding-right: 0;
        vertical-align: middle;
        margin-bottom: 0;
        height: 25px;
    }

        .CheckboxControl > label > input {
            position: absolute;
            z-index: -999;
            opacity: 0;
        }

        .CheckboxControl > label:hover {
            box-shadow: 0 0 18px rgba(0,0,0,.21);
        }

        .CheckboxControl > label > span {
            border-radius: 2px;
            display: inline-block;
            background: #FFF;
            width: 25px;
            height: 25px;
            border: 2px solid #A4A4A4;
            box-sizing: border-box;
        }

.privacy {
    float: right;
    margin-top: -18px;
}

.privacysuccess {
    font-size: 10px;
}

.center {
    text-align: center;
}


.CheckboxControl > label > input[type="checkbox"]:checked + .checkmark {
    background-color: #A4A4A4;
    border-color: #A4A4A4;
}

.checkmark::after {
    content: '';
    display: block;
    background: inherit;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: transparent #FFF #FFF transparent;
    width: 25%;
    height: 50%;
    transform: rotate(45deg);
    transform-origin: 50% 160%;
}



/* roboto-regular - latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-regular.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-italic - latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-italic.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-italic.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-italic.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-italic.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500 - latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500italic - latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500italic.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500italic.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500italic.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-500italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700italic - latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700italic.eot'); /* IE9 Compat Modes */
    src: local(''), url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700italic.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700italic.woff') format('woff'), /* Modern Browsers */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/roboto-v27-latin-ext_latin_cyrillic-ext_cyrillic-700italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
