﻿@import url(/content/css/normalize.css);
.page-width {
  max-width: 640px; }

.form-width {
  max-width: 360px; }


.ml-no-cookies {
    background: #faa;
    color: #b40000;
    border-radius: 8px;
    padding: 8px; }

.ml-helplinks {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  font-size: 13px;
  align-items: stretch;
  margin: 5px 0 10px 0; }

.ml-helplink-item {
  display: flex;
  flex-grow: 100;
  flex-shrink: 100;
  text-align: center; }

@media (max-width: 360px) {
  .ml-helplinks {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; }
  .ml-helplink-item {
    padding: 0;
    border-right: none;
    margin: 0 auto 0 auto; } }

.ml-form-wrapper {
  margin: 15px auto 20px auto;
  width: 90%; }

@media (min-width: 360px) {
  .ml-form-wrapper {
    margin: 15px auto 20px auto;
    max-width: 360px; } }

img.ml-flipH {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH"; }

/**
* Brand specific css vars
**/
/*
:root {
  --brand-link-color
  --brand-header-background
  --brand-header-color
  --brand-header-link-color
  --brand-loginbox-background
  --brand-loginbox-color
  --brand-submit-background
  --brand-submit-color
  --brand-submit-hover-background
  --brand-submit-hover-color
}
*/
/**
* Structure
**/
a {
  color: #999;
  font-weight: normal;
  text-decoration: none; }

body {
  font-family: Arial, sans-serif; }

.ml-page {
  font-size: 15px;
  display: flex;
  display: -ms-flexbox;
  align-items: stretch;
  min-height: 100vh;
  flex-direction: column;
  -ms-flex-direction: column;
  -ms-flex-align: stretch;
  margin: auto;
  width: 100%; }

.ml-form--error {
  text-align: center;
  display: block; }

.ml-errorpage-icon {
  color: #b40000;
  font-size: 46px; }

.ml-errorpage-text {
  padding: 0; }

.ml-email-exists {
  display: none; }

.ml-email-invalid {
  display: none; }

.ml-existing-email ~ .ml-email-exists {
  display: block;
  font-size: 12px;
  color: #b40000; }

.ml-invalid-email ~ .ml-email-invalid {
  display: block;
  font-size: 12px;
  color: #b40000; }

/**
* Header
**/
.ml-header {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  width: 100%; }

.ml-header a.right img {
  margin-left: 10px; }

.ml-header a.left img {
  margin-right: 10px; }

.ml-header-brand-logo::before {
  clear: both; }

.ml-header a {
  color: #999; }

/**
* Form
**/
.ml-form-header {
  padding: 0;
  text-align: left;
  color: #666;
  line-height: 18px;
  font-size: 16px; }

.ml-form-header .ml-form-title {
  font-size: 18px;
  font-style: italic;
  font-weight: normal;
  margin: 0; }

.ml-logo-small {
  vertical-align: text-bottom;
  height: 15px;
  width: 14px; }

.ml-form {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 0px;
  padding: 0; }

.ml-fieldset {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
  width: 100%; }

.ml-fieldset a {
  font-size: 15px; }

.ml-fieldset--row {
  flex-direction: row;
  margin: 10px 0 10px; }

.ml-fieldset--separator {
  width: 100%;
  display: none; }

.ml-subfieldset + .ml-subfieldset {
  margin-left: 10px; }

.ml-input-container {
  width: 100%;
  margin: 0;
  padding: 0; }

.ml-input-container::before,
.ml-input-container::after {
  clear: both;
  color: transparent;
  display: block;
  font-size: .1em;
  height: 0;
  line-height: 0;
  text-indent: -99999em; }

.ml-gender-container {
  margin: 0 auto;
  width: 80%; }

.ml-label {
  display: block;
  font-size: 12px;
  overflow: hidden;
  padding: 0 0 2px 5px;
  white-space: nowrap; }

.ml-input {
  background: #fff;
  border: 1px solid #ccc;
  color: #999;
  border-radius: 3px;
  box-sizing: border-box;
  min-height: 30px;
  padding: 14px 0 14px 10px;
  width: 100%;
  font-size: 15px;
  font-family: Arial, sans-serif; }

.ml-input--required {
  float: left;
  color: #999; }

.ml-status {
  display: none;
  float: right;
  height: 16px;
  margin-top: -23px;
  margin-right: 5px; }

.ml-input--required ~ .ml-status--required {
  /*display: block;*/ }

.ml-input--error ~ .ml-status--required {
  display: none; }

.ml-input--error {
  border-color: #b40000; }

.ml-input--error ~ .ml-status--invalid {
  color: #b40000;
  /*display: block;*/ }

.ml-error-base, .ml-input--required:required:valid ~ .ml-error-text,
.ml-error-text, .ml-server-side-error {
  color: #b40000;
  clear: both;
  max-height: 0;
  font-size: 12px;
  overflow: hidden;
  font-weight: bold;
  padding: 6px 5px 0;
  transition: max-height 300ms; }

.ml-input--required:required:valid ~ .ml-error-text,
.ml-error-text {
  display: none; }

.ml-server-side-error {
  display: inline; }

.field-validation-error.ml-error-text {
  max-height: 100px;
  display: block;
  padding: 6px 0 5px 0; }

.ml-input--error ~ .ml-error-text {
  max-height: 100px;
  display: block; }

.ml-input--required:required:valid ~ .ml-status--valid {
  color: green;
  /*display: block;*/ }

.ml-input--required:required:valid ~ .ml-status--required,
.ml-input--required:required:valid ~ .ml-status--invalid {
  display: none; }

.ml-input + .ml-input {
  margin-left: 10px; }

.ml-fieldset--submit {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px 0 10px; }

.ml-submit {
  align-content: center;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-weight: normal;
  line-height: 26px;
  justify-content: center;
  margin: 0 auto;
  min-height: 40px;
  white-space: nowrap;
  width: 100%;
  -webkit-appearance: none;
  font-size: 15px; }

.ml-submit-logo {
  display: inline-block;
  height: 26px;
  margin-bottom: -7px;
  margin-left: 5px;
  width: 130px; }

/**
* Select
**/
.ml-select {
  background: #fff;
  border: 1px solid #999;
  min-height: 30px;
  min-width: 60px; }

.ml-select + .ml-select {
  margin-left: 10px; }

.ml-select--month {
  flex-grow: 1; }

/**
* Checkbox
**/
.ml-checkbox-container {
  font-size: 15px;
  min-width: 25px;
  position: relative; }

.ml-checkbox-container--toggle ~ .ml-label,
.ml-checkbox-container--toggle ~ .ml-checkbox-label,
.ml-checkbox-container--toggle ~ a {
  padding-top: 0px; }

.ml-checkbox:checked {
  background-image: url(/content/svg/checkmark.svg);
  background-repeat: no-repeat;
  background-position: center; }

.ml-checkbox {
  float: left;
  height: 15px;
  width: 15px;
  -webkit-appearance: none; }

.ml-checkbox--checked,
.ml-checkbox--unchecked {
  float: left; }

.ml-checkbox ~ .ml-checkbox--checked {
  display: none; }

.ml-checkbox:checked ~ .ml-checkbox--checked {
  display: block; }

.ml-checkbox ~ .ml-checkbox--unchecked {
  display: block; }

.ml-checkbox:checked ~ .ml-checkbox--unchecked {
  display: none; }

.ml-checkbox-label {
  flex-grow: 1;
  font-size: 13px;
  color: #666; }

.ml-inline-logo {
  /*background: url(/content/svg/medielogin-black.svg);
    width: 96px;
    height: 20px;
    display: inline-block;
    color: transparent;
    vertical-align: middle; */
  margin-left: 5px; }

.ml-inline-logo-wrapper {
  /*height: 38px;
    margin-top: 15px;*/ }

label.ml-checkbox-label {
  font-size: 13px;
  display: block; }

.ml-branded-checkbox {
  border: 1px solid #ccc;
  margin-right: 8px; }

.ml-checkbox-label :first-child {
  margin-top: 0; }

.ml-radio:focus ~ .ml-label--gender {
  outline: 1px dotted #ccc; }

.ml-label--gender .fa {
  color: #999;
  font-size: 20px; }

.ml-radio:focus ~ .ml-label--gender {
  outline: 1px dotted #999; }

.ml-label--gender .fa {
  color: #ccc; }

.ml-radio--gender:checked ~ .ml-label--gender .fa {
  color: #999; }

.ml-radio--gender:checked ~ .ml-label--gender .fa {
  color: #999; }

.ml-gender-text {
  font-size: 15px; }

/**
* Navigation
**/
.ml-nav {
  display: block;
  text-align: justify;
  margin: auto;
  font-size: 15px;
  width: 100%;
  padding-bottom: 1px; }

.ml-nav-item:last-child::after {
  content: "";
  margin: 0; }

.ml-forgot {
  display: block;
  text-align: center;
  white-space: nowrap;
  text-decoration: underline; }

/**
* Footer
**/
.ml-footer {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
  margin-right: auto;
  margin-left: auto;
  width: 90vw; }

.ml-footer-intro {
  border-bottom: 1px solid #e5e5e5;
  color: #484848;
  font-style: italic;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-align: center; }

.ml-logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0; }

.ml-footer-logo {
  height: 39px;
  margin: 0 5px 10px;
  max-width: 120px;
  width: 120px; }

/**
* permissions 
*/
.ml-permission {
  font-size: 13px;
  color: #666; }

label.ml-permission {
  margin-left: 35px; }

.ml-fieldset.ml-permission {
  margin: 10px 0 10px; }

.ml-permission-collapse .ml-permission,
.ml-permission-collapse .ml-permission-collapse,
.ml-permission-expand .ml-permission-expand {
  display: none; }

.ml-permission.ml-permission-collapse,
.ml-permission.ml-permission-expand {
  margin: 3px 0 0 35px; }

.ml-permission-expand .ml-permission,
.ml-permission-expand .ml-permission-collapse,
.ml-permission-collapse .ml-permission-expand {
  display: block; }

a.ml-permission-expand,
.ml-permission-expand a,
.ml-permission-collapse a,
a.ml-permission-collapse {
  font-weight: normal;
  font-size: 13px; }

a.ml-permission-expand:after {
  margin-left: 10px;
  content: url(Arrow);
  display: inline-block;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg); }

a.ml-permission-collapse:after {
  margin-left: 10px;
  content: url(Arrow);
  display: inline-block;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg); }

/**
* HELPERS
**/
.d-block {
  display: block; }

.left {
  float: left; }

.right {
  float: right; }

.clear {
  clear: both; }

.ta-right {
  text-align: right; }

.size1of3 {
  width: 33.33333%; }

.size1of4 {
  width: 25%; }

.size3of4 {
  width: 75%; }

.size1of2 {
  width: 50%; }

.ml-flex {
  display: flex; }

.ml-flex--around {
  justify-content: space-around; }

@media (min-width: 767px) {
  .ml-errorpage-icon {
    font-size: 75px; }
  .ml-fieldset--separator {
    max-width: 360px; }
  .ml-label {
    padding: 0 0 5px 10px; }
  .ml-brand-logo {
    flex-grow: 1;
    text-align: center;
    max-height: 90px;
    margin: auto; } }

