




/*** BEGIN Normalize.css ***/
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, 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: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

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: '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;
}

body {
    background-image: -webkit-linear-gradient(top, #f2f2f2, #e6e6e6);
    background-image: linear-gradient(top, #f2f2f2, #e6e6e6);
}

.logo {
    margin: 0 0 2rem;
}
.logo__img {
    max-width: 100%;
    width: 256px;
}

.form__group {
    margin: 1rem 0 2rem;
}
.form__group.submit > div > div {
    margin: 0 auto;
}

.form__wrapper {
    position: relative;
    max-width: 512px;
    margin: 48px auto;
    padding: 1.4rem 2rem;
    background: #fff;
    border-radius: 1px;
}
@media (max-width: 608px) {
    .form__wrapper {
        margin-top: calc((100vw - 512px) / 2);
        margin-bottom: calc((100vw - 512px) / 2);
    }
}
@media (max-width: 512px) {
    .form__wrapper {
        margin: 0;
    }
}

.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;
}
.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;
}

.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;
}

.form__input .input {
    display: inline-block;
    vertical-align: text-top;
    line-height: 24px;
}


    .form__input .input{
        cursor: pointer;
    }

    .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);
}

.form__input select:focus,
.form__input input:focus,
.form-input__container--focus:focus,
.form-input__container--focus .form__input .input:focus,
.form__input textarea:focus {
    outline: none;
}

.form__input select:focus ~ label,
.form__input input:focus ~ label,
.form-input__container--focus.focus .form__input .input ~ label,
.form-input__container--focus:focus .form__input .input ~ label,
.form__input textarea:focus ~ label {
    color: #337ab7;
}

.form__input.form__input--error select ~ label,
.form__input.form__input--error input ~ label,
.form__input.form__input--error textarea ~ label {
    color: #d32f2f;
}

.form__input select:focus ~ .bar::before,
.form__input input:focus ~ .bar::before,
.form-input__container--focus.focus .form__input .input ~ .bar::before,
.form-input__container--focus:focus .form__input .input ~ .bar::before,
.form__input textarea:focus ~ .bar::before {
    width: 100%;
    left: 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;
}

fieldset {
    padding: 8px !important;
}

legend {
    padding: 0;
    margin: 0;
    font-size: 0;
    line-height: 0;
}

.form__select-container label {
    display: block;
    height: 36px;
    line-height: 36px;
    margin: 0 8px;
    position: relative;
}

.form__select-container label > input {
    z-index: -1;
    display: none;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
}

.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 > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -3px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

.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;
    min-width: 200px;
}

.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);
    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);
    transition: box-shadow .28s cubic-bezier(.4,0,.2,1),-webkit-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);
}

.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: #91cf91;
    color: #fff;
    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='M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z' /%3E%3C/svg%3E");
}
.validation__message--error {
    background-color: #e27c79;
    color: #fff;
    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");
}

#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");
}

