iframe.iframe__imprint {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 2; }

iframe.iframe__privacyNotice {
  height: 95%;
  position: relative;
  width: 100%;
  z-index: 2; }

.modal__privacyNotice,
.modal__imprint {
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  height: 100%;
  left: 0;
  overflow: auto;
  padding: 50px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3; }

.modal__content {
  background-color: #fff;
  border: 1px solid #000;
  height: 100%;
  margin: auto;
  max-width: 700px;
  padding: 40px 30px;
  position: relative;
  width: 90%; }

.spinner-container-privacyNotice,
.spinner-container {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1; }

.modal__close {
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 34px;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 5px;
  top: 5px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 34px;
  z-index: 3; }

.modal__privacyNotice__i18n {
  float: right;
  margin-right: 30px;
  margin-left: 30px;
  display: inline;
  margin-bottom: 30px; }

.footer {
  border-top: 1px solid #D9DCDD;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 90px;
  padding: 40px;
  text-transform: uppercase;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none; }

.footer__left {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .footer__left * {
    margin-right: 24px; }
    .footer__left *:last-child {
      margin-right: 0; }

.footer__right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .footer__right * {
    margin-left: 24px; }
    .footer__right *:first-child {
      margin-left: 0; }
  .footer__right .imprint,
  .footer__right .privacy__notice {
    cursor: pointer; }

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .footer__links li {
    display: inline-block;
    margin: 0 10px 5px 10px; }
    .footer__links li:last-child {
      margin-right: 0; }

.footer__copyright {
  text-align: right; }

@media only screen and (max-width: 960px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center; }
  .footer__left {
    margin-bottom: 18px;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .footer__right {
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .footer__copyright {
    text-align: center; }
  .footer__links {
    text-align: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .footer__links li:last-child {
      margin-right: 10px; } }

#full-page-spinner {
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: 100%;
  z-index: 2; }
  #full-page-spinner.with-header {
    top: 90px; }
  #full-page-spinner.no-header {
    top: 0; }

.spinner {
  -webkit-animation: loader 1.3s infinite linear;
          animation: loader 1.3s infinite linear;
  background: 0 0;
  border-color: transparent transparent transparent #000;
  border-radius: 50%;
  border-style: solid;
  border-width: 4px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  content: '';
  display: inline-block;
  height: 90px;
  position: relative;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  vertical-align: middle;
  width: 90px; }

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.lang-select {
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  height: 50px;
  margin: 0;
  padding: 0 35px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  width: 245px; }
  .lang-select__label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .lang-select__chevron {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 16px;
    margin-left: 7px;
    -webkit-transition: -webkit-transform .1s ease-in;
    transition: -webkit-transform .1s ease-in;
    transition: transform .1s ease-in;
    transition: transform .1s ease-in, -webkit-transform .1s ease-in;
    width: 16px; }
    .lang-select__chevron svg {
      fill: #fff; }
  .lang-select select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1; }

.lang-label {
  text-transform: none;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500; }

@font-face {
  font-family: adihaus;
  src: url(../fonts/adineuePRO-LightWeb.woff) format("woff");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: adihaus;
  src: url(../fonts/AdihausDIN-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: adihaus;
  src: url(../fonts/AdihausDIN-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: adihaus;
  src: url(../fonts/AdihausDIN-Bold.woff) format("woff");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: adihaus;
  src: url(../fonts/adineuePRO-BlackWeb.woff) format("woff");
  font-weight: 800;
  font-style: normal; }

@font-face {
  font-family: AdidasETailing;
  src: url(../fonts/adidas-eTailing.woff) format("woff");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: adiNeuePRO;
  src: url(../fonts/adineuePRO-Regular.woff2) format("woff2"), url(../fonts/adineuePRO-Regular.woff) format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: reefontregular;
  src: url(../fonts/Reefont-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: reefontbold;
  src: url(../fonts/Reefont-Bold.woff) format("woff");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: reefontcondensed;
  src: url(../fonts/Reefont-Condensed.woff) format("woff");
  font-weight: 400;
  font-style: normal; }

.site-header {
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #d9dcdd;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 50px;
  padding: 0 35px;
  width: 100%; }
  .site-header__brand-logo {
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 15px; }

.logo svg {
  display: block; }

.site-footer {
  background-color: black;
  color: white;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px; }
  .site-footer__container {
    -webkit-box-align: start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-top: 1px solid rgba(152, 152, 154, 0.5);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 19px 50px 20px; }
  .site-footer__language-selector {
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0; }
  .site-footer__links {
    -webkit-box-flex: 2;
       -moz-box-flex: 2;
        -ms-flex: 2 0 0px;
            flex: 2 0 0; }
  .site-footer__items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .site-footer__link {
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 500;
    padding: 5px;
    text-decoration: none;
    text-transform: none;
    -webkit-transition: color 0.1s cubic-bezier(0.3, 0, 0.45, 1);
    transition: color 0.1s cubic-bezier(0.3, 0, 0.45, 1); }
  .site-footer__link-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 7px;
    margin-top: -3px; }
    .site-footer__link-icon svg {
      fill: #fff; }
  .site-footer__notice {
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    padding: 5px 0;
    text-align: right; }

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

body,
html {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #fff;
  color: #000;
  font-family: adihaus, Helvetica, Arial, sans-serif;
  font-size: 14px;
  height: 100%;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility; }

.wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%; }

a {
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: #000; }

[class^="icon-"],
[class*=" icon-"] {
  font-family: AdidasETailing;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-eye-crossed:before {
  content: "\E90B"; }

.icon-eye:before {
  content: "\E90C"; }

.icon-externallink:before {
  content: "\E91C"; }

.links {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 30px;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .links .left-link {
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 4px;
    text-align: left; }
  .links .right-link {
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 4px;
    text-align: right; }
    .links .right-link a {
      text-align: right; }

.separator {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center; }

.separator::before,
.separator::after {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid #000;
  content: ''; }

.separator::before {
  margin: 0 10px 0 0; }

.separator::after {
  margin: 0 0 0 10px; }

form {
  background-color: #fff;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px;
  position: relative;
  width: 570px; }

.form__title {
  color: #000;
  font-family: adihaus, Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 28px;
  margin: 0 0 30px 0;
  text-transform: uppercase; }
  .form__title.center {
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center; }

.form__intro {
  margin: 0 0 20px; }

.form__row {
  margin-bottom: 20px;
  position: relative; }
  .form__row label {
    color: #98989A;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    left: 21px;
    letter-spacing: 1px;
    pointer-events: none;
    position: absolute;
    text-transform: capitalize;
    top: 19px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 1; }

.form__container {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  padding: 35px 35px 25px; }
  .form__container fieldset {
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 0;
    padding: 0; }
  .form__container legend {
    border: 0;
    line-height: 30px;
    padding: 0 0 10px;
    width: 100%; }
    .form__container legend:after {
      content: "";
      display: block;
      width: 100%; }

.form .required-fields {
  font-size: 11px;
  line-height: 16px;
  margin-top: 10px; }

.language-selector {
  margin: -13px -35px 0;
  width: 245px; }

.button {
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  border-radius: 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: adihaus, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  height: 50px;
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  letter-spacing: 2px;
  line-height: 50px;
  min-height: 50px;
  outline: none;
  overflow: visible;
  padding: 0 21px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
  -webkit-transition: color 0.1s cubic-bezier(0.3, 0, 0.45, 1), border 0.1s cubic-bezier(0.3, 0, 0.45, 1), background 0.1s cubic-bezier(0.3, 0, 0.45, 1), -webkit-transform 0.1s cubic-bezier(0.3, 0, 0.45, 1);
  transition: color 0.1s cubic-bezier(0.3, 0, 0.45, 1), border 0.1s cubic-bezier(0.3, 0, 0.45, 1), background 0.1s cubic-bezier(0.3, 0, 0.45, 1), -webkit-transform 0.1s cubic-bezier(0.3, 0, 0.45, 1);
  transition: transform 0.1s cubic-bezier(0.3, 0, 0.45, 1), color 0.1s cubic-bezier(0.3, 0, 0.45, 1), border 0.1s cubic-bezier(0.3, 0, 0.45, 1), background 0.1s cubic-bezier(0.3, 0, 0.45, 1);
  transition: transform 0.1s cubic-bezier(0.3, 0, 0.45, 1), color 0.1s cubic-bezier(0.3, 0, 0.45, 1), border 0.1s cubic-bezier(0.3, 0, 0.45, 1), background 0.1s cubic-bezier(0.3, 0, 0.45, 1), -webkit-transform 0.1s cubic-bezier(0.3, 0, 0.45, 1);
  white-space: nowrap; }
  .button:after {
    -webkit-box-shadow: inset 0 0 0 1px #000;
            box-shadow: inset 0 0 0 1px #000;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translate(3px, 3px);
            transform: translate(3px, 3px);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.3, 0, 0.45, 1);
    transition: -webkit-transform 0.1s cubic-bezier(0.3, 0, 0.45, 1);
    transition: transform 0.1s cubic-bezier(0.3, 0, 0.45, 1);
    transition: transform 0.1s cubic-bezier(0.3, 0, 0.45, 1), -webkit-transform 0.1s cubic-bezier(0.3, 0, 0.45, 1);
    width: 100%; }
  .button:hover:not(:active):not(:disabled) {
    color: #98989A;
    text-decoration: none; }
  .button:active {
    -webkit-transform: translate(0);
            transform: translate(0); }
    .button:active:after {
      -webkit-transform: translate(0);
              transform: translate(0); }
  .button:disabled {
    background-color: #98989A;
    cursor: not-allowed; }
    .button:disabled:after {
      -webkit-box-shadow: inset 0 0 0 1px #98989A;
              box-shadow: inset 0 0 0 1px #98989A; }
  .button--secondary {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
    .button--secondary::after {
      content: normal; }
  .button svg {
    display: inline-block;
    fill: currentColor;
    height: 24px;
    margin-left: 20px;
    vertical-align: text-top;
    width: 24px; }

.button-link {
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  color: #000;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  -webkit-box-pack: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  letter-spacing: 2px;
  line-height: 13px;
  max-width: 100%;
  min-height: 0;
  padding: 2px 2px 3px;
  position: relative;
  text-align: left;
  text-decoration: underline;
  text-transform: uppercase;
  white-space: unset;
  -webkit-transition: color 0.1s cubic-bezier(0.3, 0, 0.45, 1), background 0.1s cubic-bezier(0.3, 0, 0.45, 1);
  transition: color 0.1s cubic-bezier(0.3, 0, 0.45, 1), background 0.1s cubic-bezier(0.3, 0, 0.45, 1); }
  .button-link:hover:not(:active) {
    color: #fff;
    background-color: #000; }
    .button-link:hover:not(:active):before {
      border-color: #fff; }

input[type='text'],
input[type='password'],
input[type='email'] {
  background: #fff;
  border: 1px solid #98989A;
  color: #000;
  font-family: adihaus, Helvetica, Arial, sans-serif;
  font-size: 14px;
  height: 50px;
  max-width: 100%;
  padding: 0 50px 0 18px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  width: 100%; }
  input[type='text'] ~ .form-hint,
  input[type='password'] ~ .form-hint,
  input[type='email'] ~ .form-hint {
    color: #98989A;
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
    padding-left: 21px; }
  input[type='text'].focus,
  input[type='password'].focus,
  input[type='email'].focus {
    outline: 0; }
    input[type='text'].focus + label,
    input[type='password'].focus + label,
    input[type='email'].focus + label {
      font-size: 12px;
      top: -8px;
      left: 17px;
      margin-top: 0;
      padding: 2px 5px 1px;
      background-color: #fff; }
  input[type='text'].error,
  input[type='password'].error,
  input[type='email'].error {
    border-bottom-color: #e63f3f !important;
    -webkit-box-shadow: 0 1px 0 0 #e63f3f;
            box-shadow: 0 1px 0 0 #e63f3f; }
    input[type='text'].error ~ .form-hint,
    input[type='password'].error ~ .form-hint,
    input[type='email'].error ~ .form-hint {
      color: #e63f3f;
      font-weight: 600; }
  input[type='text'].valid,
  input[type='password'].valid,
  input[type='email'].valid {
    background: #fff !important;
    border-bottom-color: #007934 !important;
    -webkit-box-shadow: 0 1px 0 0 #659f13;
            box-shadow: 0 1px 0 0 #659f13; }
    input[type='text'].valid ~ .form-hint,
    input[type='password'].valid ~ .form-hint,
    input[type='email'].valid ~ .form-hint {
      color: #0a5;
      font-weight: 600; }
  input[type='text']::-webkit-input-placeholder,
  input[type='password']::-webkit-input-placeholder,
  input[type='email']::-webkit-input-placeholder {
    font-size: 14px;
    color: #98989A;
    text-transform: uppercase; }
  input[type='text']::-moz-placeholder,
  input[type='password']::-moz-placeholder,
  input[type='email']::-moz-placeholder {
    font-size: 14px;
    color: #98989A;
    text-transform: uppercase; }
  input[type='text']:-ms-input-placeholder,
  input[type='password']:-ms-input-placeholder,
  input[type='email']:-ms-input-placeholder {
    font-size: 14px;
    color: #98989A;
    text-transform: uppercase; }
  input[type='text']::-ms-input-placeholder,
  input[type='password']::-ms-input-placeholder,
  input[type='email']::-ms-input-placeholder {
    font-size: 14px;
    color: #98989A;
    text-transform: uppercase; }
  input[type='text']::placeholder,
  input[type='password']::placeholder,
  input[type='email']::placeholder {
    font-size: 14px;
    color: #98989A;
    text-transform: uppercase; }

.checkbox-container {
  position: relative;
  margin: 30px 0;
  height: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .checkbox-container .checkox-label {
    cursor: pointer;
    display: inline-block;
    padding-left: 20px;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }

input[type=checkbox] {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 2px solid #d9dcdd;
  cursor: pointer;
  height: 24px;
  margin: 0;
  width: 24px;
  pointer-events: all;
  opacity: 0; }
  input[type=checkbox]:hover ~ .checkbox-icon {
    -webkit-box-shadow: inset 0 0 0 2px #000;
            box-shadow: inset 0 0 0 2px #000; }
  input[type=checkbox] ~ .checkbox-icon {
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    color: #fff;
    background-color: #fff;
    pointer-events: none;
    -webkit-box-shadow: inset 0 0 0 2px #98989a;
            box-shadow: inset 0 0 0 2px #98989a;
    -webkit-transition: -webkit-box-shadow 0.1s cubic-bezier(0.3, 0, 0.45, 1);
    transition: -webkit-box-shadow 0.1s cubic-bezier(0.3, 0, 0.45, 1);
    transition: box-shadow 0.1s cubic-bezier(0.3, 0, 0.45, 1);
    transition: box-shadow 0.1s cubic-bezier(0.3, 0, 0.45, 1), -webkit-box-shadow 0.1s cubic-bezier(0.3, 0, 0.45, 1); }
  input[type=checkbox]:checked {
    background: #000;
    border: #000; }
    input[type=checkbox]:checked ~ .checkbox-icon {
      background-color: #000;
      -webkit-box-shadow: inset 0 0 0 2px #000;
              box-shadow: inset 0 0 0 2px #000; }

.alert {
  line-height: 18px;
  margin: 15px 0 30px;
  padding: 20px;
  position: relative; }
  .alert .error, .alert.error {
    background: #000;
    color: #fff; }
    .alert .error .link, .alert.error .link {
      font-weight: unset;
      text-transform: unset;
      text-decoration: underline; }
  .alert.success {
    background: #EBEDEE;
    color: #000; }

.wrapper > section {
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #EBEDEE;
  background-size: cover;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .wrapper > section.with-bg-img {
    background-position: center;
    background-image: url(../images/LoginBackground.jpg); }

input::-ms-clear, input::-ms-reveal {
  display: none; }


