html {
  height: 100%;
  min-height: 100%;
}

body {
  position: relative;

  font-size: 14px;
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  min-height: 100%;
}

.bg-img {
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-image: url(img/bg.jpg);
  @supports (background-image: url(img/bg.webp)) {
    background-image: url(img/bg.webp);
  }
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-position: center center;
}

.bg-mask {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 50;
}

.container-fluid {
  position: absolute;
  z-index: 100;
  margin: 0px;
  padding: 0px;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.logo {
  width: 100%;
  max-width: 150px;
}

.main {
  position: relative;
  flex: 1 0 auto;
  padding: 15px 10px 25px 10px;
}

.container {
  background-color: #fff;
}

.form-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
}

.block-form-start .title {
  font-weight: bold;
}

.block-form-end .title {
  font-weight: bold;
}

.block-form-end .msg {
  text-align: center;
}

footer {
  flex-shrink: 0;
  /*background: #265687;*/
  background: #530007;
  color: #e1dfd9;
  text-align: center;
}

footer .address {
  font-size: 0.75rem;
  line-height: 1.5em;
}

footer .address a {
  color: #e1dfd9;
}

footer .copyright {
  color: #999;
  font-size: 0.75rem;
  line-height: 1.5em;
}

.sticky.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.error_message {
  min-height: 380px;
  font-weight: bold;
  font-size: 16px;
}

.disabled {
  color: #999;
  cursor: not-allowed;
}
