:root {
  --color-dark: #152028;
  --color-light: #ffffff;
  --color-border: rgba(51, 51, 51, 0.12);
}

.app-store-btn img,
.app-store-btn svg {
  height: 48px;
}

/*
	Hides the vue components and templates from showing until
	Vue is initialized.
*/
[v-cloak] {
  display: none;
}

.mfa-container {
  max-width: 300px;
  margin: 0 auto;
}
.code-label, .code-hint {
  display: block;
  transform: translateX(-32px) scale(0.75);
}

.logo{
  display: inline-block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  background: none;
  border: none !important;
  border-radius: 0 !important;
  margin-left: 1em;
  margin-top: 1em;
}

.logo-sm{
  height: 80px;
  width: 200px;
  object-fit: contain;
  object-position: 0;
}

.logo-lg{
  height: 137px;
  width: 240px;
  object-fit: contain;
}

.footer .powered-by img{
  height: 32px;
}

.footer>.row{
  justify-content: end;
}

.footer .powered-by{
  display: flex;
  align-items: center;
  justify-content: end;
}

.u2f-color-change-animation {
  color: none;
}
.u2f-color-change-animation.loading {
  -webkit-animation: u2f-loading 2s infinite ease-in-out;
  -moz-animation: u2f-loading 2s infinite ease-in-out;
  animation: u2f-loading 2s infinite ease-in-out;
}

@-webkit-keyframes u2f-loading {
  0% {
    color: none;
  }
  50% {
    color: var(--v-warning-base);
  }
  100% {
    color: none;
  }
}
@-moz-keyframes u2f-loading {
  0% {
    color: none;
  }
  50% {
    color: var(--v-warning-base);
  }
  100% {
    color: none;
  }
}
@keyframes u2f-loading {
  0% {
    color: none;
  }
  50% {
    color: var(--v-warning-base);
  }
  100% {
    color: none;
  }
}

.ovd-section:nth-child(n+2) {
  margin-top: 64px;
}
.ovd-section .ovd-section-title {
  background-color: transparent;
  color: var(--color-dark);
  text-transform: capitalize;
  min-height: 60px;
}
.ovd-section .ovd-section-title.touched {
  background-color: var(--color-dark);
  color: var(--color-light);
  border-radius: 4px 4px 0 0;
}
.ovd-section .ovd-section-body {
  display: flex;
  flex-direction: column;
  overflow: clip;
  border-width: 2px;
  border-color: var(--color-border);
}
.ovd-section .ovd-section-body.touched {
  border-radius: 0 0 4px 4px;
  border-color: var(--color-dark);
}

.no-text-select{
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
   user-select:none;
}