body {
  font-family: "DM Sans", sans-serif;
  color: #626262;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 500;
}

*:focus {
  outline: none;
}


h1 {
  margin-top: 2rem;
  margin-bottom: 0rem;
  color: #212121;
  font-size: 2rem;
  line-height: 44px;
  font-weight: 700;
}

h2 {
  margin-top: 0.25rem;
  margin-bottom: 0px;
  color: #212121;
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 700;
}

.divider {
  height: 1px;
  background-color: #dbdbdb;
}

.card {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-right: 1rem;
  padding-left: 1rem;
  border-radius: 1rem;
  background-color: #f0f2f5;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.card__icon {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  padding: 1.1rem 1rem;
  border-radius: 0.5rem;
  background-color: #fff;
}

.indicator {
  height: 0.5rem;
  margin-right: 1vw;
  margin-left: 1vw;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 1rem;
  background-color: #f0f2f5;
  -webkit-transition: background-color .2s ease;
  -moz-transition: background-color .2s ease;
  transition: background-color .2s ease;
}

.indicator.live {
  background-color: #0a84ff;
}

.indicator-container {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.indicator-container.flex-container {
  margin-right: -1vw;
  margin-left: -1vw;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding-right: 1rem;
  padding-left: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.button {
  display: block;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #0a84ff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
}

.button.field__button {
  margin-bottom: 0;
  font-size: 1rem;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
}

.button.secondary {
  background-color: #D5EAFF;
  color: #0a84ff;
}

.button.inactive {
  background-color: #E2E2E2;
  color: #ADADAD;
  cursor: not-allowed;
}

.button:hover {
  opacity: 0.9;
  scale: 1.05;
}

.button:active {
  opacity: 0.5;
}

._100 {
  width: 100%;
  height: 100%;
}

.span-regular {
  color: #626262;
  font-size: 1rem;
  font-weight: 500;
}

.zero__text {
  margin-top: 1rem;
  color: #c0c4c9;
  font-weight: 700;
}

.video__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  aspect-ratio: 16 / 9;
}

@media only screen and (max-device-width: 768px) {
  .video__wrapper {
    aspect-ratio: 3 / 4;
  }
}

.video__feed {
  z-index: 1;
  max-width: 100%;
  border-radius: 1rem;
}

.card__video {
  padding-right: 0;
  padding-left: 0;
}

.scan-region-highlight {
  z-index: 2;
}

.zero__wrapper {
  position: absolute;
  text-align: center;
  z-index: 0;
}

.form__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.field__wrapper {
  margin-bottom: 1rem;
  margin-top: 0.25rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  border-radius: 1rem;
  background-color: #f0f2f5;
  justify-content: space-around;
  min-height: 3.5rem;
  border-color: #f0f2f5;
  border-width: 2px;
  border-style: solid;
  -webkit-transition: border-color .2s ease;
  -moz-transition: border-color .2s ease;
  transition: border-color .2s ease;
}

.field__wrapper.active {
  border-color: #0a84ff;
}

.field__input {
  border: 0;
  appearance: none;
  width: 100%;
  background-color: transparent;
}

.field__label {
  font-weight: bold;
}