.doc-val-wrapper {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.doc-val-form {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.doc-val-form input[type=text] {
  width: 100%;
  padding: 10px;
  margin: 5px 0 12px 0;
  border: none;
  background: #f1f1f1;
}

.invalid-input {
  color: red;
  display: none;
}

.popupOpener {
  cursor: pointer;
  color: black;
}

svg {
  max-width: 2rem !important;
  font-size: 4rem;
  stroke-width: 15px;
}

.popupDocValidation-content {
  border: 1px solid black !important;
  border-radius: 0px !important;
}

.popupBodyValidation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: stretch;
}

.message {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 5%;
}

.lexicon-icon-check, .lexicon-icon-order-arrow-right {
  fill: var(--secondary-color);
}

.formDocVal {
  width: 100%;
  text-align: left !important;
}

.btn.btn-secondary {
  float: unset;
}

.doc-val-info-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  text-align: left;
  max-height: 50px;
}

.doc-val-info-container p {
  line-height: 1.8em;
}

.vertical-separator {
  width: 5px;
  background-color: rgba(0, 0, 0, 0.16);
  height: auto;
  align-self: stretch;
}

.doc-val-wrapper:first-of-type {
  margin-right: 10px;
}

.validationDiv {
  justify-content: space-evenly !important;
  align-items: stretch !important;
  flex-direction: column !important;
  height: auto;
  overflow: visible;
  margin-left: 10px;
  border: 1px solid;
  width: fit-content;
}

.verificationDropZone {
  border: none !important;
  padding-top: 0px !important;
}

.borderRightOfDiv {
  margin-left: 15px;
  border-right: 2px solid darkgrey;
}

.invalidCode {
  background-color: #D71C54;
  color: white;
  justify-content: center;
  align-items: center;
}

.validDoc {
  background-color: #009AC8;
  color: white;
  justify-content: center;
  align-items: center;
}

.divFixedPosition {
  position: fixed;
  height: 40px;
  margin-top: 86px;
  width: 542px;
  margin-left: -1px;
  border: 1px solid black !important;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-icon {
  display: inline-block;
  animation: spin 5s linear infinite;
}

input::placeholder {
  font-size: 16px;
}