@charset "UTF-8";
/**
 * NAVIGATION
 */
.wizard-container-skip {
  display: flex;
  justify-content: flex-end;
}

.wizard-navigation-text,
.wizard-previous,
.wizard-skip,
.wizard-submit,
.wizard-reset,
.wizard-next {
  border: none;
  background-color: transparent;
  min-width: auto;
  font-size: 1rem;
  padding: 0;
  margin: 0;
}

.wizard-navigation {
  bottom: 0;
  left: 0;
}
.wizard-navigation .wizard-navigation-text,
.wizard-navigation .wizard-previous,
.wizard-navigation .wizard-skip,
.wizard-navigation .wizard-submit,
.wizard-navigation .wizard-reset,
.wizard-navigation .wizard-next {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  display: flex;
}
.wizard-navigation .wizard-previous:before,
.wizard-navigation .wizard-reset:before {
  width: 1.5rem;
  font-family: "Material Icons Outlined";
  display: inline-block;
  vertical-align: middle;
}
.wizard-navigation .wizard-submit:after,
.wizard-navigation .wizard-skip:after,
.wizard-navigation .wizard-next:after {
  width: 1.5rem;
  font-family: "Material Icons Outlined";
  display: inline-block;
  vertical-align: middle;
}
.wizard-navigation .wizard-submit:after,
.wizard-navigation .wizard-next:after {
  content: "arrow_forward";
}
.wizard-navigation .wizard-skip:after {
  content: "skip_next";
}
.wizard-navigation .wizard-previous:before,
.wizard-navigation .wizard-reset:before {
  content: "arrow_backward";
}
.wizard-navigation .wizard-navigation-active:after {
  content: "✔";
  display: flex;
  right: -0.3rem;
  top: -0.3rem;
  background: #3d9f2e;
  text-align: center;
  border-radius: 50%;
  color: white;
  padding: 0;
  font-size: 0.75rem;
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1;
  z-index: 1;
  justify-content: center;
  align-items: center;
}

.wizard-form {
  margin: 0;
  position: relative;
  width: 100%;
  min-height: 15rem;
  box-sizing: border-box;
}
.wizard-form * {
  box-sizing: border-box;
}
.wizard-form .wizard-page {
  min-height: 10rem;
  display: none !important;
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.wizard-form .wizard-page .wizard-error,
.wizard-form .wizard-page .wizard-error:before,
.wizard-form .wizard-page input.error {
  -webkit-box-shadow: 0 0 0 0.2rem #ef5d4e !important;
  box-shadow: 0 0 0 0.2rem #ef5d4e !important;
}
.wizard-form .wizard-page label.custom-control-label.wizard-error {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: #ef5d4e !important;
}
.wizard-form .wizard-page label.custom-control-label.wizard-error:before {
  width: calc(1rem - 2px);
  height: calc(1rem - 2px);
  margin-left: 1px;
}
.wizard-form .wizard-page label.error {
  display: none !important;
}
.wizard-form .wizard-page.page-active * {
  gap: unset !important;
}
.wizard-form .wizard-page.page-active {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.wizard-form .wizard-page.page-active.page-active-left:not(:first-child) {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.wizard-form .wizard-page.page-active.page-active-right:not(:last-child) {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.wizard-form .wizard-page.page-out-left {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.wizard-form .wizard-page.page-out-right {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.wizard-is-loading {
  position: absolute;
  top: 50%;
  left: 50%;
}

.is-loading {
  opacity: 0.33;
}
.is-loading input,
.is-loading button {
  display: none;
}

.wizard-indicators ol {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;
}
.wizard-indicators ol li {
  background-color: transparent;
  border: solid 1px #4a5b66;
  margin: 0.3rem;
  height: 1.25rem;
  width: 1.25rem;
}
.wizard-indicators ol li.done {
  background-color: #3d9f2e;
  border: 0;
}
.wizard-indicators ol li.active {
  background-color: #4a5b66;
  border: 0;
}

.uva-wizard {
  display: none;
  opacity: 0;
  left: -200vw;
  top: -200vw;
}

/* Default front-end CSS */
.uva-bg-size-cover {
  background-size: cover;
}

.uva-bg-size-contain {
  background-size: contain;
}

.uva-bg-position-center {
  background-position: center;
}

.uva-wizard-image-container {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background-repeat: no-repeat;
}

.uva-wizard-imagebutton {
  display: block;
  background: none;
  border: none;
}
.uva-wizard-imagebutton:hover {
  background: none;
}
.uva-wizard-imagebutton p {
  display: block;
  text-align: center;
  color: #000;
  margin: 10px auto 0 auto;
}

/* Animation slide */
.wizard-animation-slide {
  overflow: hidden;
}
.wizard-animation-slide .wizard-page {
  display: block;
  transform: translateX(120%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.wizard-animation-slide .wizard-page.page-active {
  transform: translateX(0px);
}
.wizard-animation-slide .page-next {
  display: block;
  transform: translateX(120%);
}
.wizard-animation-slide .page-previous {
  transform: translateX(-120%);
}

#wizard-breadcrumb .wizard-breadcrumb-item {
  text-decoration: none;
}
#wizard-breadcrumb .wizard-breadcrumb-item.link:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #3d9f2e;
}