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

body {
  background: #e4e4e4;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #333;
}
body,
form {
  margin: 0;
}

p,
label {
  line-height: 20px;
  margin-bottom: 8px;
  display: block;
}

.full-height-without-navbar {
  min-height: calc(100vh - 58px);
}

.default-padding {
  padding: 24px;
}

.default-padding-left {
  padding-left: 16px;
}

.default-margin-top {
  margin-top: 16px;
}

.huge-margin-top {
  margin-top: 48px;
}

.strong {
  font-family: Roboto-Bold, Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.flex-centerer {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.max-width {
  max-width: 500px;
  width: 100%;
}

.relative {
  position: relative;
}

.white {
  color: #fff;
}

.blue-background {
  background: #0d4cc3;
}

.large-icon {
  font-size: 1.5em !important;
}

.error {
  background: #ffd6e2;
  border: 2px solid #cf003d;
}

.code {
  white-space: pre-wrap;
}

.box {
  border: 1px solid #ccc;
  font-size: 1.6em;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
}

.inline {
  display: inline;
}

img {
  display: block;
}

.error-wrapper {
  margin-bottom: -48px;
  width: 320px;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkbox input {
  width: initial;
  height: initial;
}

.checkbox label {
  padding-left: 8px;
}

.header-large img {
  max-height: 100px;
  max-width: 75vw;
  width: 368px;
}

.header {
  position: relative;
  background: #0d4cc3;
  color: #fff;
  height: 150px;
}

.header img {
  max-height: 50px;
}

.content-wrapper {
  background: #fff;
  min-width: calc(100% - 32px);
}

.content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav-bar {
  height: 58px;
  background: #093588;
  font-size: 16px;
  text-transform: uppercase;
}

.button {
  -webkit-appearance: none;
  border-radius: 4px;
  background: #0d4cc3;
  outline: none;
  border: none;
  height: 32px;
  min-height: 32px;
}

.button[disabled] {
  background-color: #edeef4;
  color: #c3c5cc;
  border: 1px solid #c3c5cc;
}

.button.button-inverted {
  background: #fff;
  color: #0a94d6;
  border: 1px solid #0a94d6;
}

.back-button {
  -webkit-appearance: none;
  position: absolute;
  background: none;
  outline: none;
  border: none;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 16px;
  cursor: pointer;
}

.link-button {
  background: #fff;
  color: #0d4cc3;
  display: block;
  padding: 16px;
  text-align: center;
}

.link-button.blue-link-button {
  background: #0d4cc3;
  color: #fff;
}

.verification {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 16px;
}

a {
  text-decoration: none;
}

progress[value] {
  border: none;
  outline: none;
  width: 100%;
}

ol {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0px;
  margin-top: 0px;
}

ol li {
  margin-left: 0px;
  margin-bottom: 16px;
  padding-right: 0px;
  list-style-type: none;
  counter-increment: step-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

ol li::before {
  border-radius: 50%;
  content: counter(step-counter);
  margin-right: 12px;
  border: 1px solid #ccc;
  font-weight: bold;
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

ol li span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
}

select,
input,
button {
  width: 100%;
  border: 1px solid #ccc;
  padding: 6px;
  background: white;
  border-radius: 4px;
  height: 36px;
  font-size: inherit;
}

select {
  color: #333;
}

.login-wrapper {
  position: relative;
  margin: 0 16px;
  top: -40px;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.header {
  height: 33vh;
}

.border-bottom {
  border-bottom: 1px solid #ccc;
}

.line-text {
  position: relative;
  top: 10px;
  background: white;
  padding: 0 10px;
  color: #999;
  text-transform: uppercase;
}

@media (min-width: 602px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
  .content-wrapper {
    min-width: 368px;
  }
  .error-wrapper {
    min-width: 368px;
  }
}
.auto-margin {
  margin: auto;
}
.fullscreen {
  position: fixed;
  overflow: auto;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}
.lightgrey-background {
  background: #e4e4e4;
}
.center-logo {
  padding: 20px;
}
i.fa-spin {
  display: inline-block;
}
.dialog-background {
  background: rgba(0, 0, 0, 0.5);
}
.fingerprint-dialog {
  max-width: 80%;
  background: #fff;
  padding: 20px;
}
.fingerprint-dialog h3, .fingerprint-dialog p {
  text-align: center;
}
.fingerprint-icon {
  display: block;
  width: 80px;
  height: 80px;
  margin: 20px auto;
}
.fingerprint-button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.fingerprint-button-icon-container {
  margin-right: 10px;
}
.fingerprint-button-icon-container img {
  height: 100%;
}
.default-padding .link-button {
  padding-bottom: 0;
}

.hidden {
  display: none !important;
}

.spaced-top {
  margin-top: 16px;
}

.registration-selection-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 45vh;
  overflow: auto;
}

.registration-selection-item .registration-text {
  flex: 1 1 auto;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
}

.registration-selection-item button {
  height: initial;
  padding: 20px;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  text-align: left;
}

.registration-selection-item:last-child button {
  border: none;
}

.icon {
  height: 24px;
}

.icon-group {
  margin-left: 10px;
  flex: 0 0 auto;
}

.icon-group i {
  margin-right: 10px;
}

.icon-group i:last-child {
  margin-right: 0;
}

.flex-columns {
  display: flex;
  flex-direction: column;
}

.flex-columns .flex-column-item {
  border-bottom: 1px solid #ccc;
}

.flex-columns .flex-column-item:last-child {
  border-bottom: none;
}

.warning {
  display: flex;
  background-color: #fad4ab;
  padding: 7px 10px;
  align-items: center;
  border: 1px solid #e6c29c;
}

.warning i {
  margin-right: 5px;
}
