.form_controls_container {
  display: grid;
  align-items: center;
  gap: 0.5em;
}
.modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  text-align: left;
  padding: 35px 20px 20px 20px;
  z-index: 8001;
  background-color: #EFEFEF;
  color: #000;
  -webkit-box-shadow: 0 8px 64px #000;
  -moz-box-shadow: 0 0 64px #000;
  box-shadow: 0 0 64px #000;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  max-width: 75%;
  max-height: 75%;
}
.modal a.modal-close {
  background: url(../images/x.png) no-repeat;
  width: 25px;
  height: 29px;
  display: inline;
  z-index: 3200;
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
}
.modal .modal-caption {
  font: bold 100% "Lucida Grande", Arial, sans-serif;
  text-shadow: #FFF 0 1px 0;
  padding: 0.5em 0 0.5em 0;
  margin: 0;
  text-align: left;
  background-color: #DDD;
  border-bottom: 1px solid #CCC;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  -webkit-border-radius: 7px 7px 0 0 ;
  -moz-border-radius: 7px 7px 0 0 ;
  border-radius: 7px 7px 0 0 ;
}
.modal .modal-caption span {
  padding: 0 1em;
}
.modal .modal-content-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1em 0 0 0;
}
.modal .modal-message {
  overflow: auto;
}
.range_divider {
  padding: 0 0.5em;
}
.progress_bar_outside {
  box-sizing: content-box;
  height: 20px;
  /* Can be anything */
  position: relative;
  margin: 0px 0 0px 0;
  /* Just for demo spacing */
  background: #555;
  border-radius: 25px;
  padding: 8px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}
.progress_bar_outside > .progress_bar_inside {
  display: block;
  height: 100%;
  width: 0%;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  background-color: #2bc253;
  background-image: linear-gradient(center bottom, #2bc253 37%, #54f054 69%);
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: width 0.3s;
}
body .data-form {
  display: inline-grid;
  grid-template-columns: repeat(calc(var(--controls-per-row) * 2), auto);
  row-gap: 0.75em;
  column-gap: 1em;
  align-items: self-start;
  margin: 0 auto;
  /* padding: 60px 60px 30px; */
  border-radius: 20px;
}
body .data-form.vertical_form {
  grid-template-columns: repeat(1, auto);
  row-gap: 0.1em;
}
body .data-form.vertical_form > label {
  font-weight: bold;
}
body .data-form.vertical_form > .jscontrol {
  margin-bottom: 1em;
}
body .data-form.vertical_form > .jscontrol input[type=text],
body .data-form.vertical_form > .jscontrol input[type=password],
body .data-form.vertical_form > .jscontrol input[type=email],
body .data-form.vertical_form > .jscontrol input[type=tel] {
  width: 100%;
  height: 1.2em;
  font-size: 1.1em;
}
body .data-form.vertical_form > .jscontrol textarea {
  width: 100%;
  font-size: 1.1em;
  min-height: 4em;
}
body .data-form.vertical_form > .jscontrol button {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
body .data-form.vertical_form .markup_block {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
body .data-form.vertical_form .markup_block > a {
  text-decoration: none;
  cursor: pointer;
}
.page_cover {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 5;
  background: #000;
  opacity: 0;
  display: none;
  transition: opacity 0.2s linear;
}
.page_cover.spinner {
  background: rgba(0, 0, 0, 0.1) url('/images/big_spinner.gif?v=1') 50% 50% no-repeat;
}
.page_cover.show {
  display: block;
  opacity: 0.75;
}
input[type=text],
input[type=password] {
  border-width: 2px;
}
.invalid {
  border: solid red;
  border-width: 2px;
}
.field_error {
  background: red;
  color: white;
  font-weight: bold;
  position: absolute;
  padding: 0.5em;
  display: none;
}
.field_error.calculating {
  display: block;
  visibility: hidden;
  top: 0;
  left: 0;
}
.field_error.show {
  display: block;
}
/*# sourceMappingURL=global.css.map */