html {
  height: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
}

#root {
  height: 100%;
  overflow: auto;
  display: flex;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#root * ::-webkit-scrollbar {
  display: none;
}

#root * {
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Disabling the spinners that Firefox adds on inputs with type number */
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

.loader-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000000;
  background-color: black;
  opacity: 0.9;
}

.hidden {
  display: none;
}

.MuiCircularProgress-root-18015 {
  display: inline-block;
  line-height: 1;
}
.MuiCircularProgress-static-18016 {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.MuiCircularProgress-indeterminate-18017 {
  animation: mui-progress-circular-rotate 1.4s linear infinite;
  animation-name: $mui-progress-circular-rotate;
}
.MuiCircularProgress-colorPrimary-18018 {
  color: #228ae6;
}
.MuiCircularProgress-colorSecondary-18019 {
  color: #777777;
}
.MuiCircularProgress-circle-18021 {
  stroke: currentColor;
}
.MuiCircularProgress-circleStatic-18022 {
  transition: stroke-dashoffset 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.MuiCircularProgress-circleIndeterminate-18023 {
  animation: mui-progress-circular-dash 1.4s ease-in-out infinite;
  animation-name: $mui-progress-circular-dash;
  stroke-dasharray: 80px, 200px;
  stroke-dashoffset: 0px;
}
@-webkit-keyframes mui-progress-circular-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes mui-progress-circular-dash {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0px;
  }
  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -125px;
  }
}
.MuiCircularProgress-circleDisableShrink-18024 {
  animation: none;
}

.Translate-LoadingDialog--loader-17471 {
  opacity: 0.8;
  z-index: 2;
}
.Translate-LoadingDialog--secondaryText-17472 {
  color: white;
  margin-top: 16px;
  font-size: 1.25rem;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.0075em;
}
.Translate-LoadingDialog--progress-17473 {
  margin-top: 300px;
}
.Translate-LoadingDialog--content-17474 {
  background-color: black;
}
.MuiTooltip-tooltip {
  white-space: pre-line;
}

/* REDESING STYLES */
div[class*=' FormDatePicker-formControl'] .MuiFormControl-root .MuiFormLabel-root {
  opacity: 0.5;
}

div[class*=' FormDecimalFormat-formControl'] .MuiFormControl-root .MuiFormLabel-root {
  opacity: 0.5;
}

div[class*=' FormDecimalFormat-formControl'] .MuiInputAdornment-positionEnd {
  margin-right: 0.6rem;
  padding-top: 0.4rem;
}

div[class*=' FormDecimalFormat-formControl'] .MuiInputAdornment-root > p {
  font-size: 1.4rem;
  color: #001e47;
}

/* Disables colored background on autofill fields on Chrome and Edge */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

/* Mitek styles */
#demoCancelButton {
  border-radius: 50%;
  padding: 0.5em;
  width: 30px;
  height: 30px;
  border: 2px solid rgb(31, 31, 31);
  color: rgb(31, 31, 31);
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 100;
}

#demoCancelButton::before {
  content: ' ';
  position: absolute;
  display: block;
  background-color: rgb(31, 31, 31);
  width: 2px;
  left: 12px;
  top: 5px;
  bottom: 5px;
  transform: rotate(45deg);
}
#demoCancelButton:hover {
  border: 2px solid rgb(31, 31, 31);
  background-color: rgb(192, 192, 192);
  color: #ffffff;
}
#demoCancelButton::after {
  content: ' ';
  position: absolute;
  display: block;
  background-color: rgb(31, 31, 31);
  height: 2px;
  top: 12px;
  left: 5px;
  right: 5px;
  transform: rotate(45deg);
}

#mitekDisplayContainer {
  z-index: 99999;
}

#captureButton {
  padding: 0.5em;

  color: rgb(31, 31, 31);
  position: absolute;
  right: 25px;
  top: 150px;
  z-index: 100;
}
