/* Mark input boxes that gets an error on validation: */


/* Hide all steps by default: */
.tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #04aa6d;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.2;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04aa6d;
}

@media (min-width: 1200px) {
  #calculateForm {
    width: 100%;
  }
}
#accordion {
  padding: 0;
}

.box_input {
  all: unset;
  box-sizing: border-box;
  display: inline-block;
  padding: 0;
  width: auto;
  border: none;
}

.border {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 5px solid red;
  box-sizing: border-box;
  pointer-events: none;
}
.scale {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  width: 25px;
  height: 100px;
  background: repeating-linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5) 10px,
    rgba(255, 255, 255, 0.5) 10px,
    rgba(255, 255, 255, 0.5) 20px
  );
  border: 1px solid rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
video {
  width: 100%;
  height: auto;
  display: block;
}
canvas {
  display: none;
}
img {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.span-button-1 {
  display: inline-block;
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--primary);
  padding: 12px 20px;
  cursor: pointer;
}

.span-button-2,
.reserve-button {
  display: block;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background-color: var(--primary);
  color: #fff;
  padding: 12px 0;
  margin: 0 15px;
  cursor: pointer;
}

#camera-result {
  display: none;
}

#camera-upload-clean {
  display: none;
}
.form-op {
  opacity: 0;
  margin-top: -10px;
}
textarea {
  padding: 12px !important;
  overflow: hidden;
}

#camera-upload-processed {
  height: 200px;
  width: 200px;
  object-fit: contain;
}
