body,html {
  height: 100%;
}
.box {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.navbar {
  flex: 0 1 auto;
  margin-bottom: 4rem;
  background-image: linear-gradient(to bottom, #E34C5B 0, #A73743 100%);
}
@media screen and (max-width: 991px) {
  .navbar {
    margin-bottom: 1.5rem;
  }
}
.navbar-brand img {
  width: 50px;
}
.content {
  flex: 1 1 auto;
}
footer {
  flex: 0 1 auto;
  margin-top: 5em;
  padding: 3em 0 2em;
  background-image: linear-gradient(to bottom, transparent 0, #787878 2px, #787878 4px,
    white 5px, white 8px, #787878 9px, #2d2d2d 100%);
  color: white;
  font-size: 80%;
}
.lds-dual-ring { display: inline-block; width: 80px; height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #9cf;
  border-color: #9cf transparent #9cf transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-frame {
  background: white;
  border: 1px solid #eee;
  box-shadow: 0 .3em 1.1em #aaa;
  padding: 1em;
  position: relative;
  min-height: 20em;
  padding-top: 7rem;
}
.form-frame:after {
  content: " ";
  position: absolute;
  left: .7em;
  right: .7em;
  top: 2em;
  height: 7em;
  z-index: -1;
  background: transparent;
  box-shadow: 0 0 1.6em #777;
  transform: perspective(30vw) rotateX(-7deg);
}
@media screen and (min-width: 992px) {
  .form-frame:before {
    content: " ";
    position: absolute;
    width: 128px;
    height: 128px;
    left: 10px;
    top: -50px;
    background: url(/img/doc.png);
  }
 
}
.form-frame h2 {
  z-index: 1;
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
}
.form-control {
  border-radius: 0;
  border-style: none none solid none;
}
.header {
  font-size: 120%;
}
.header.small {
  font-size: 110%;
}
.header > * {
  margin: 0 .2em;
}
.header .form-control {
  font-size: 100%;
  font-weight: 400;
}
.form-control.error {
  border-style: solid;
  border-color: rgba(200, 0, 0, 0.1) rgba(200, 0, 0, 0.1) rgba(200, 0, 0, 1) rgba(200, 0, 0, 0.1);
}
.form-control.error:focus {
  box-shadow: 0 0 0 0.25rem rgb(200 0 0 / 15%)
}
label.error {
  color: #c00;
  position: absolute;
  width: calc(100% + .75rem);
  top: 2.5rem;
  transform: none!important;
  font-size: .9rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.form-floating label.error {
  left: -.75rem;
}
.form-check {
  position: relative;
}
.form-check label.error {
  top: 1.3rem;
}
.form-check input.error {
  border: 1px solid #c00;
}
.info-icon::before {
  content: "i";
  display: block;
  position: absolute;
  bottom: calc(50% + .3rem);
  right: .2rem;
  width: .9rem;
  height: .9rem;
  text-align: center;
  font-weight: bold;
  font-size: .7rem;
  line-height: .85rem;
  border-radius: 50%;
  color: grey;
  border: 1px solid grey;
  pointer-events: none;
}
.padded {
  padding: 0.5rem 1.5rem;
}
.table-list-header {
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.table-list-header > div {
  padding-left: 1.25rem;
  font-weight: bold;
}