﻿@media screen and (max-width: 992px) {
  .mobile-menu-open {
    height: 100dvh;
  }
}
/*Step-wise progress bar*/
.steps {
  width: 25px;
  height: 25px;
  justify-content: center;
  border-radius: 50%;
}
.border-center {
  content: '';
  position: absolute;
  top: 12.5px;
  width: 100%;
  border-bottom: 5px #00348a solid;
  z-index: -10;
  border-radius: 5px / 5px;
}
/*file drop area *Requires JS*/
.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px;
  border: 1px dashed rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  transition: 0.2s;
}
.choose-file-button {
  flex-shrink: 0;
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
}
.file-message {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.text-preline {
  white-space: pre-line;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}