html {
  scroll-behavior: smooth;
}
body {
  background-color: #ededed;
}
* {
  box-sizing: border-box;
}
a {
  color: #0070e6;
  text-decoration: underline;
}
a[href] {
  text-decoration: none;
}
a:hover {
  color: #0070e6;
  text-decoration: none;
}
#app {
  position: relative;
  height: 100%;
  width: 100%;
}
#app > .theme-wrapper {
  padding-top: 70px;
}
#app > .theme-wrapper.theme-wrapper--mobile-platform {
  padding-top: 0;
}
#app.iframe-layout > div {
  padding-top: 0;
  padding-bottom: 0;
}
#app.branded-layout > .theme-wrapper {
  padding: 0;
}
.cookie-iframe {
  width: 0;
  height: 0;
}
#pixel {
  width: 0;
  height: 0;
  display: none;
  visibility: hidden;
}
*:focus {
  outline: 2px solid #096073;
}
[tabindex='-1']:focus {
  outline: none;
}
.lazy-image {
  display: inline-block;
  font-family: Arial;
  font-size: 14px;
  line-height: 16px;
  color: #333;
  min-height: 40px;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}
.lazy-image.lazy-image--show {
  opacity: 1;
}
.grecaptcha-badge {
  bottom: 100px !important;
}
/* [START] ANIMATIONS */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter,
.fade-leave-to {
  /* .fade-leave-active below version 2.1.8 */
  opacity: 0;
}
@keyframes fading {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.1;
  }
}
/* Enter and leave animations can use different */
/* durations and timing functions.              */
.slide-fade-enter-active {
  transition: all 0.3s ease;
}
.slide-fade-leave-active {
  transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
}
.slide-fade-enter,
.slide-fade-leave-to {
  /* .slide-fade-leave-active below version 2.1.8 */
  transform: translateX(10px);
  opacity: 0;
}
/* slide */
.slide-left-enter-active,
.slide-left-leave-active,
.slide-right-enter-active,
.slide-right-leave-active {
  transition-duration: 0.5s;
  transition-property: height, opacity, transform;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
  overflow: hidden;
}
.slide-left-enter,
.slide-right-leave-active {
  opacity: 0;
  transform: translate(2em, 0);
}
.slide-left-leave-active,
.slide-right-enter {
  opacity: 0;
  transform: translate(-2em, 0);
}
.slide-full-right-enter-active,
.slide-full-right-leave-active {
  transition: all 0.25s ease-in-out;
}
.slide-full-right-enter {
  transform: translateX(100%);
  opacity: 0;
}
.slide-full-right-leave-to {
  transform: translateX(-100%);
  opacity: 0;
}
.fade-soft-enter-active,
.fade-soft-leave-active {
  transition: opacity 1.95s ease-in-out;
}
.fade-soft-enter,
.fade-soft-leave-to {
  opacity: 0;
}
/* zoom lightbox */
.zoom-lightbox-enter-active,
.zoom-lightbox-leave-active {
  transition: opacity 0.5s;
}
.zoom-lightbox-enter,
.zoom-lightbox-leave {
  opacity: 0;
}
.zoom-lightbox-enter-active .modal__content,
.zoom-lightbox-leave-active .modal__content {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: zoomModal;
}
.zoom-lightbox-leave-active .modal__content {
  animation-direction: reverse;
}
@keyframes zoomModal {
  from {
    transform-origin: center;
    opacity: 0;
    top: -100vh;
  }
  100% {
    transform-origin: center;
    opacity: 1;
    top: 50%;
  }
}
/* [END] ANIMATIONS */
/* [START] NPROGRESS */
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: #0070e6;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #0070e6, 0 0 5px #0070e6;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #0070e6;
  border-left-color: #0070e6;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* [END] NPROGRESS */
/* [START] TransitionPage.vue style */
.fade-enter-active,
.fade-leave-active {
  transition-duration: 0.3s;
  transition-property: height, opacity;
  transition-timing-function: ease;
  overflow: hidden;
}
.fade-enter,
.fade-leave-active {
  opacity: 0;
}
#modal-brand-switcher {
  padding-left: 0 !important;
}
#modal-brand-switcher .modal-content {
  min-height: 100%;
  height: auto;
}
#modal-brand-switcher .modal-dialog {
  height: 100%;
  margin: 0;
}
@media only screen and (min-width: 576px) {
  #modal-brand-switcher .modal-dialog {
    max-width: none;
    margin: 0 0;
  }
}

.slide-left-enter-active,
.slide-left-leave-active,
.slide-right-enter-active,
.slide-right-leave-active {
  transition-duration: 0.5s;
  transition-property: height, opacity, transform;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
  overflow: hidden;
}
.slide-left-enter,
.slide-right-leave-active {
  opacity: 0;
  transform: translate(2em, 0);
}
.slide-left-leave-active,
.slide-right-enter {
  opacity: 0;
  transform: translate(-2em, 0);
}
.zoom-enter-active,
.zoom-leave-active {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: zoom;
}
.zoom-leave-active {
  animation-direction: reverse;
}
@keyframes zoom {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  90% {
    transform: translateX(-1px);
  }
  20%,
  80% {
    transform: translateX(1px);
  }
  30%,
  70% {
    transform: translateX(-3px);
  }
  40%,
  60% {
    transform: translateX(3px);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flickerFadeIn {
  0%,
  35% {
    opacity: 0;
  }
  15%,
  100% {
    opacity: 1;
  }
}
@keyframes flickerFadeOut {
  0%,
  35% {
    opacity: 1;
  }
  15%,
  100% {
    opacity: 0;
  }
}
@keyframes loginFormSeparator {
  to {
    width: 41.5%;
  }
}
@keyframes verticalShrink {
  from {
    height: 100vh;
    top: 0;
  }
  to {
    height: 400px;
    top: 380px;
  }
}
@keyframes sizeSpread {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* [END] TransitionPage.vue style */
