/*
  All a user has to do to change the calendar size is
  change the font-size on the container and everything
  magically resizes accordingly. Relative units ftw!
*/
.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: black;
  position: absolute;
  width: 15.625em;
  display: flex;
  flex-direction: column;
  z-index: 9001;
  user-select: none;
  border: 1px solid gray;
  border-radius: 0.263921875em;
  overflow: hidden;
  background: white;
  box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3); }
  .qs-datepicker-container * {
    box-sizing: border-box; }

.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.qs-hidden {
  display: none; }

.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  width: 100%;
  height: 100%;
  padding: .5em;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column; }
  .qs-overlay.qs-hidden {
    opacity: 0;
    z-index: -1; }
  .qs-overlay .qs-overlay-year {
    border: none;
    background: transparent;
    border-bottom: 1px solid white;
    border-radius: 0;
    color: white;
    font-size: 0.875em;
    padding: .25em 0;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    display: block; }
    .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
      -webkit-appearance: none; }
  .qs-overlay .qs-close {
    padding: .5em;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0; }
  .qs-overlay .qs-submit {
    border: 1px solid white;
    border-radius: 0.263921875em;
    padding: .5em;
    margin: 0 auto auto;
    cursor: pointer;
    background: rgba(128, 128, 128, 0.4); }
    .qs-overlay .qs-submit.qs-disabled {
      color: gray;
      border-color: gray;
      cursor: not-allowed; }
  .qs-overlay .qs-overlay-month-container {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1; }
  .qs-overlay .qs-overlay-month {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
    cursor: pointer;
    opacity: .5;
    transition: opacity 0.15s; }
    .qs-overlay .qs-overlay-month.active, .qs-overlay .qs-overlay-month:hover {
      opacity: 1; }

.qs-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  background: lightgray;
  filter: blur(0px);
  transition: filter 0.3s; }
  .qs-controls.qs-blur {
    filter: blur(5px); }

.qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: 0.263921875em;
  transition: background .15s; }
  .qs-arrow:hover {
    background: rgba(0, 0, 0, 0.1); }
    .qs-arrow:hover.qs-left:after {
      border-right-color: black; }
    .qs-arrow:hover.qs-right:after {
      border-left-color: black; }
  .qs-arrow:after {
    content: '';
    border: 0.390625em solid transparent;
    position: absolute;
    top: 50%;
    transition: border .2s; }
  .qs-arrow.qs-left:after {
    border-right-color: gray;
    right: 50%;
    transform: translate(25%, -50%); }
  .qs-arrow.qs-right:after {
    border-left-color: gray;
    left: 50%;
    transform: translate(-25%, -50%); }

.qs-month-year {
  font-weight: bold;
  transition: border .2s;
  border-bottom: 1px solid transparent;
  cursor: pointer; }
  .qs-month-year:hover {
    border-bottom: 1px solid gray; }
  .qs-month-year:focus, .qs-month-year:active:focus {
    outline: none; }

.qs-month {
  padding-right: .5ex; }

.qs-year {
  padding-left: .5ex; }

.qs-squares {
  display: flex;
  flex-wrap: wrap;
  padding: 0.3125em;
  filter: blur(0px);
  transition: filter 0.3s; }
  .qs-squares.qs-blur {
    filter: blur(5px); }

.qs-square {
  width: calc(100% / 7);
  height: 1.5625em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .1s;
  border-radius: 0.263921875em; }
  .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background: orange; }

.qs-current {
  font-weight: bold;
  text-decoration: underline; }

/*
  3 possibilities:
    1. Single, active date.
    2. Daterange start selection.
    3. Daterange end selection.
*/
.qs-active,
.qs-range-start,
.qs-range-end {
  background: lightblue; }

.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.qs-range-middle {
  background: #d4ebf2; }
  .qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
    border-radius: 0; }
  .qs-range-middle.qs-range-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .qs-range-middle.qs-range-6 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }

.qs-range-end:not(.qs-range-0) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.qs-disabled,
.qs-outside-current-month {
  opacity: .2; }

.qs-disabled {
  cursor: not-allowed; }

.qs-empty {
  cursor: default; }

.qs-day {
  cursor: default;
  font-weight: bold;
  color: gray; }

.qs-event {
  position: relative; }
  .qs-event:after {
    content: '';
    position: absolute;
    width: 0.46875em;
    height: 0.46875em;
    border-radius: 50%;
    background: #07f;
    bottom: 0;
    right: 0; }
/*! nouislider - 14.5.0 - 5/11/2020 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
.page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%; }
  .page > form {
    max-width: 1000px;
    margin: auto; }
    .page > form > .ui-header .ui-title {
      font-size: 3em;
      font-weight: bold;
      text-align: left;
      margin: auto 0.15em;
      padding: 0.15em 0;
      min-height: auto; }
      .page > form > .ui-header .ui-title img {
        display: block;
        max-width: 75%;
        max-height: 1.25em; }
    .page > form > .ui-content {
      margin: 10px 10px 8em; }
      .page > form > .ui-content .steps {
        float: right;
        font-weight: bold;
        white-space: nowrap;
        line-height: 1em;
        margin: 0.4em; }
    .page > form > .ui-footer {
      position: absolute !important;
      left: 0;
      bottom: 0;
      width: 100%; }

.ui-footer .ui-btn {
  display: block;
  font-size: 1em; }
.ui-footer .ui-grid-a {
  white-space: nowrap; }
  .ui-footer .ui-grid-a li {
    display: inline-block;
    width: 50%; }
    .ui-footer .ui-grid-a li .ui-btn-spacer {
      padding: 0 0.31em; }
      .ui-footer .ui-grid-a li .ui-btn-spacer button.ui-btn, .ui-footer .ui-grid-a li .ui-btn-spacer a.ui-btn {
        width: 100%; }
.ui-footer .ui-grid-solo li {
  display: block;
  width: 100%; }
  .ui-footer .ui-grid-solo li input.ui-btn {
    width: 100%; }
.ui-footer .logos {
  width: 100%;
  background: white;
  text-align: center;
  white-space: nowrap; }
  .ui-footer .logos img {
    height: 2em;
    margin: 0.4em 0.5%;
    vertical-align: middle; }

ul.buttons, ul.ui-grid-a {
  list-style-type: none; }
  ul.buttons li button, ul.buttons li input, ul.ui-grid-a li button, ul.ui-grid-a li input {
    width: 100%; }

.ui-btn {
  font-size: 16px;
  margin: .5em 0;
  padding: .7em 1em;
  display: block;
  position: relative;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.ui-popup > .ui-header .ui-title {
  margin: 0;
  /* Not sure why jQM has a 30% margin here. */ }

.ui-body {
  padding: 1em; }

h2 {
  font-size: 1.6em;
  font-weight: bold; }

h3, h4 {
  font-size: 1.2em;
  font-weight: bold; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

a[href^="tel:"] {
  white-space: nowrap; }

p, h1, h2, h3, dl, ul {
  line-height: 1.2em; }

p > img {
  display: block;
  max-width: 100%;
  margin: 0 auto; }

img {
  -ms-interpolation-mode: bicubic; }

dl {
  overflow: hidden; }
  dl img.logo {
    height: 1.4em;
    vertical-align: middle;
    margin: 0 0.2em; }

dt {
  clear: left;
  font-weight: bold;
  width: 40%; }

dd {
  width: 60%; }

dt, dd {
  float: left;
  padding: 0.2em 0; }

dd + dt, dd {
  border-top: 1px dotted #AAA; }

dt:first-child + dd {
  border-top: none; }

ul {
  margin-left: 0.8em;
  margin-right: 0.8em;
  list-style-type: disc; }

* + h1, * + h2, * + h3, * + h4, * + p, * + dl, * + ul, * + form, * + fieldset, .ui-mobile * + fieldset, * + .ui-body {
  margin-top: 0.8em; }

.steps + * {
  margin-top: 0; }

h4 + p {
  margin-top: 0.2em; }

h3:empty, p:empty {
  margin-top: 0; }

ul.errors {
  color: red; }

.ui-input-text input:invalid + a.ui-input-clear::after {
  background-color: #FF1111; }

input.secure {
  -webkit-text-security: disc;
  text-security: disc; }

textarea.ui-input-text {
  height: 8em;
  width: 100%; }

fieldset > .inline label, fieldset > .inline .ui-input-text {
  display: inline-block;
  vertical-align: middle; }
fieldset > .inline label {
  font-size: 1.2em;
  margin-right: 0.1em;
  margin-bottom: 0; }

.img-btns li {
  padding: 5px; }
  .img-btns li .ui-btn {
    background: transparent; }
    .img-btns li .ui-btn img {
      display: block;
      margin: 0 auto 0.4em auto;
      max-width: 100%; }

.ui-slider > div.ui-slider-track {
  margin: 0 15px; }
.ui-slider + .ui-grid-a > .ui-block-a {
  text-align: left; }
.ui-slider + .ui-grid-a > .ui-block-b {
  text-align: right; }

.ui-controlgroup-controls p {
  margin-top: 0; }

fieldset.rating-choices > div:first-child {
  margin: -0.4em 0 0.4em 0; }
  fieldset.rating-choices > div:first-child img {
    display: block;
    margin: 0 auto;
    max-width: 25%; }
  fieldset.rating-choices > div:first-child p {
    text-align: center;
    font-weight: bold;
    margin: 0 0 0.4em 0; }

.legal {
  font-size: 0.8em;
  margin-top: 2em; }
  .legal img {
    max-width: 30%;
    margin-left: 0; }

p.ui-hidden-accessible.label.logos {
  overflow: hidden; }
  p.ui-hidden-accessible.label.logos > span:first-child {
    float: right;
    white-space: nowrap;
    margin-right: 20px; }
    p.ui-hidden-accessible.label.logos > span:first-child img {
      height: 1.5em; }

.ui-datebox-container h4 {
  font-size: 1em;
  margin-bottom: 0.2em; }

.ui-content p img.float {
  float: right;
  max-width: 50%;
  margin: 0 0 1em 1em; }

amount-statement {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 15px;
  overflow: auto;
  display: block;
  height: auto;
  border-radius: 25px;
  border: #dddddd 1px solid;
  background-color: #e9e9e9; }
  amount-statement p {
    text-align: center; }

payment-slider #slider {
  margin: 20px 30px 0 30px;
  width: auto; }
payment-slider .min {
  float: left; }
payment-slider .max {
  float: right; }

payment-amount-div {
  width: 60%;
  margin: auto;
  display: block; }
  payment-amount-div #amount {
    color: white;
    text-align: center;
    font-size: xx-large;
    background: transparent none;
    -webkit-appearance: none;
    border-radius: .6em;
    -webkit-border-radius: .6em;
    border: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: block;
    line-height: 1.3em;
    margin: 0;
    min-height: 2.2em;
    outline: 0;
    padding: .4em;
    width: 100%; }

.qs-datepicker-container {
  font-family: inherit;
  font-size: 1.2rem; }

.service-logo {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%); }
