/*
X 1. .text-green
O 2. errors pages
O 3. all static pages
X 4. login
X 5. desktop
O 6. badge - add black  - for link copy
O 7. help images
*/
.loading-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  position: absolute;
  text-align: center;
  z-index: 10000;
}
.loading-overlay.loading-list,
.loading-overlay.loading-item {
  background: white;
}
.loading-overlay.loading-linear {
  height: 4px;
}
.loading-overlay.saving {
  display: flex;
  justify-content: center;
  align-items: center;
}
.saving-label {
  font-size: 0.9em;
  padding: 0.5em 1em;
  display: inline-block;
  border-radius: 1.5em;
  color: #fff;
  background: rgba(26, 32, 44, 0.8);
}
.general-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.general-loading span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: transparent;
  animation-name: blink;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
}
.general-loading span:nth-child(2) {
  animation-delay: 0.2s;
}
.general-loading span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes blink {
  0% {
    transform: translateY(0);
    background-color: #01bfa5;
  }
  25% {
    transform: translateY(-4px);
    background-color: #00917e;
  }
  100% {
    transform: translateY(4px);
    background-color: #01bfa5;
  }
}
.loading-list {
  padding: 1em;
}
.desktop-app .loading-list {
  padding: 40px;
}
.loading-list span {
  margin: 1em 0 0;
  display: block;
}
.loading-list span:first-child {
  margin-top: 0;
}
.loading-list span:after {
  content: "";
  height: 1em;
  display: block;
  border-radius: 0.5em;
  background: #e2e8f0;
  animation-name: blink-list;
  animation-duration: 0.9s;
  animation-iteration-count: infinite;
}
.loading-item span {
  height: 1em;
  margin: 1em 1em 0;
  display: block;
  border-radius: 0.5em;
  background: #e2e8f0;
  animation-name: blink-list;
  animation-duration: 0.9s;
  animation-iteration-count: infinite;
}
.loading-item span:nth-child(1) {
  height: 2em;
  margin-bottom: 1em;
}
.loading-item span:nth-child(5),
.loading-item span:nth-child(9) {
  width: 60%;
  margin-bottom: 2em;
}
@keyframes blink-list {
  0% {
    background-color: #e2e8f0;
  }
  25% {
    background-color: #f1f5f9;
  }
  100% {
    background-color: #e2e8f0;
  }
}
.loading-linear:after {
  content: "";
  width: 200px;
  height: 3px;
  left: -200px;
  display: block;
  position: absolute;
  background: #01bfa5;
  opacity: 0.6;
  animation-name: linear;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
}
@keyframes linear {
  from {
    left: -200px;
    width: 30%;
  }
  50% {
    width: 100%;
    left: 0;
  }
  to {
    left: 100%;
  }
}
.km-ios7.km-pane > .km-loader {
  padding: 0;
  background: rgba(0, 0, 0, 0);
}
.km-ios7.km-pane > .km-loader .km-loading,
.km-ios7.km-pane > .km-loader .km-loading-left,
.km-ios7.km-pane > .km-loader .km-loading-right {
  display: none;
}
.km-ios7.km-pane > .km-loader h1 {
  margin: 0;
}
.km-ios7.km-pane.desktop-app > .km-loader .general-loading-holder {
  padding-left: 250px;
}
@media (max-width: 1100px) {
  .km-ios7.km-pane.desktop-app > .km-loader .general-loading-holder {
    padding-left: 60px;
  }
}
@media (min-width: 1600px) {
  .km-ios7.km-pane.desktop-app > .km-loader .general-loading-holder {
    padding-left: 0;
  }
}
.km-ios7.km-pane.desktop-app > .km-loader.full .general-loading-holder {
  padding-left: 0;
}
.typing {
  height: 40px;
  display: inline-flex;
  align-items: center;
}
.typing span {
  width: 10px;
  height: 10px;
  margin: 0 1px;
  display: inline-block;
  border-radius: 50%;
  background: #cbd5e0;
  animation-name: typing;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}
.typing span:nth-child(2) {
  animation-delay: 0.1s;
}
.typing span:nth-child(3) {
  animation-delay: 0.2s;
}
.typing span:nth-child(4) {
  animation-delay: 0.3s;
}
@keyframes typing {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -20px;
  }
  100% {
    margin-top: 0;
  }
}
/* Circle loading for audio messages */
.circle-loader,
.circle-loader:after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.circle-loader {
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #01bfa5;
  transform: translateZ(0);
  animation: circleLoader 1.1s infinite linear;
  transition: 0.2s;
}
@keyframes circleLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-o-container {
  height: 2em;
  margin-top: -2em;
  padding-top: 1px;
}
.loading-o {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin: 3px auto;
  display: block;
  flex-shrink: 0;
  border: 0.2em solid #c0efe9;
  border-right-color: #01bfa5;
  animation: circleLoader 0.8s infinite linear;
}
/**
 * Colors
 */
/**
 * Breakpoints & Media Queries
 */
/**
 * Colors
 */
/**
 * Fonts & basic variables.
 */
/**
 * Grid System.
 * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
 */
/**
 * Dimensions.
 */
/**
 * Breakpoint mixins
 */
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
@keyframes loading-fade {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
.renderer-core-form-contenet-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.renderer-core-form-contenet-wrapper .renderer-core-form-content {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.renderer-core-form-contenet-wrapper .block__contentWrapper {
  padding: 50px 30px;
  overflow-x: hidden;
  overflow-y: scroll;
  word-break: break-word;
}

.renderer-core-form-brand-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: 0px;
  padding: 14px 16px 10px;
  box-sizing: border-box;
  background: transparent;
  pointer-events: none;
  z-index: 10000;
  opacity: 1;
}

.renderer-core-form-brand-logo img {
  max-height: 40px;
  max-width: 96px;
}

.renderer-components-default-thankyou-screen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 26px;
  padding: 30px;
  line-height: 1.5em;
  text-align: center;
  height: 100%;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: 0.8s opacity;
}
.renderer-components-default-thankyou-screen.active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.renderer-components-default-thankyou-screen .qf-thankyou-screen-block__content-wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 700px;
}
@media (max-width: 600px) {
  .renderer-components-default-thankyou-screen {
    font-size: 22px;
  }
}

.renderer-core-block-attachment {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}
.renderer-core-block-attachment .renderer-core-block-attachment__image {
  max-width: 100%;
}
.renderer-core-block-attachment .renderer-core-block-attachment__placeholder {
  width: 270px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: rgba(79, 176, 174, 0.2);
}
.renderer-core-block-attachment .renderer-core-block-attachment__placeholder .renderer-core-block-attachment__placeholder-icon {
  width: 40px;
  height: 40px;
  fill: #7599a5;
}

.renderer-components-block-counter {
  position: absolute;
  right: 100%;
  margin-right: 16px;
  top: 0px;
  display: flex;
  align-items: center;
  font-size: 16px;
}
@media (max-width: 600px) {
  .renderer-components-block-counter {
    font-size: 14px;
    margin-right: 7px;
  }
}
.renderer-components-block-counter .renderer-components-block-counter__value {
  margin-right: 3px;
}
.renderer-components-block-counter .renderer-components-block-counter__content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.renderer-components-block-counter .renderer-components-block-counter__content .renderer-components-block-counter__arrow-icon {
  font-size: 16px;
  width: 16px;
  stroke-width: 2;
}
@media (max-width: 600px) {
  .renderer-components-block-counter .renderer-components-block-counter__content .renderer-components-block-counter__arrow-icon {
    font-size: 14px;
    width: 14px;
  }
}

html[dir=rtl] .renderer-components-block-counter__arrow-icon {
  transform: rotate(180deg);
}

.renderer-components-block-description {
  opacity: 0.7;
  margin-top: 12px;
}

.renderer-components-field-wrapper.lg-typography-preset .renderer-components-block-description {
  margin-top: 12px;
}

.renderer-components-field-wrapper.md-typography-preset .renderer-components-block-description {
  margin-top: 8px;
}

.renderer-components-field-wrapper.sm-typography-preset .renderer-components-block-description {
  margin-top: 8px;
}

.renderer-components-block-description p {
  margin-top: 0;
  margin-bottom: 0;
}

.renderer-core-field-footer {
  height: 60px;
  margin-top: 16px;
  margin-bottom: 40px;
}
.renderer-core-field-footer.is-hidden {
  opacity: 0;
  visibility: hidden;
  z-index: -555;
}

.renderer-core-field-wrapper.lg-typography-preset.renderer-core-field-footer {
  margin-top: 18px;
}

.renderer-core-field-wrapper.md-typography-preset.renderer-core-field-footer {
  margin-top: 16px;
}

.renderer-core-field-wrapper.sm-typography-preset.renderer-core-field-footer {
  margin-top: 14px;
}

.renderer-components-block-label {
  margin-top: 0;
  margin-bottom: 0;
}

.renderer-core-field-navigation {
  display: inline-flex;
  margin-left: 8px;
}
.renderer-core-field-navigation.hidden {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.renderer-core-field-navigation > div {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 2px;
  width: 37px;
  border-radius: 5px;
  cursor: pointer;
  height: 37px;
}
@media (max-width: 550px) {
  .renderer-core-field-navigation > div {
    width: 25px;
    height: 25px;
  }
  .renderer-core-field-navigation > div svg {
    width: 17px;
    height: 17px;
  }
}
.renderer-core-field-navigation > div svg {
  width: 20px;
  height: 20px;
}
.renderer-core-field-navigation .renderer-core-field-navigation__up-icon.rotate {
  transform: rotate(-90deg);
}
.renderer-core-field-navigation .renderer-core-field-navigation__down-icon.rotate {
  transform: rotate(-90deg);
}

.renderer-components-error-message-wrapper {
  display: inline-block;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 14px;
}

.renderer-core-button {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  line-height: 1.5;
  outline: none;
  cursor: pointer;
}
.renderer-core-button svg {
  margin-left: 14px;
  width: 16px;
  height: 16px;
}

html[dir=rtl] .renderer-core-button svg {
  transform: rotate(180deg);
}
html[dir=rtl] .renderer-core-button:hover svg {
  transform: rotate(180deg) translateX(-3px);
}

.renderer-components-question-header {
  position: relative;
}

.renderer-core-field-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  transition: all linear 0.15s;
}
.renderer-core-field-action, .renderer-core-field-action * {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.renderer-core-field-action.is-visible {
  transform: translateY(0px);
}
.renderer-core-field-action.is-visible, .renderer-core-field-action.is-visible * {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.renderer-core-fields-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.renderer-core-fields-wrapper.active {
  opacity: 1;
  z-index: 1111;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.renderer-components-field-wrapper {
  position: absolute;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  overflow-y: auto;
  outline: none !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: trasnslate3d(0, 0, 0);
  transition: transform 0.6s ease 0s, opacity 0.28s ease 0s;
  -webkit-transition: transform 0.6s ease 0s, opacity 0.28s ease 0s;
  -moz-transition: transform 0.6s ease 0s, opacity 0.28s ease 0s;
  will-change: transform, z-index, visibility, opacity;
  z-index: 0;
}
.renderer-components-field-wrapper.active {
  z-index: 1;
  opacity: 1;
}
.renderer-components-field-wrapper.active .renderer-components-field-wrapper__content.is-shaking {
  animation: isShaking 0.1s linear infinite;
}
.renderer-components-field-wrapper:not(.active) {
  pointer-events: none;
}
.renderer-components-field-wrapper.is-up.is-horizontal-animation {
  transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
}
.renderer-components-field-wrapper.is-down.is-horizontal-animation {
  transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
}
.renderer-components-field-wrapper.is-up {
  transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
}
.renderer-components-field-wrapper.is-down {
  transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
}
.renderer-components-field-wrapper section {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}
.renderer-components-field-wrapper .renderer-components-field-wrapper__content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.renderer-components-field-wrapper .renderer-components-field-wrapper__content-wrapper:focus {
  box-shadow: none !important;
  outline: none !important;
}
.renderer-components-field-wrapper .renderer-components-field-wrapper__content-wrapper .renderer-core-block-scroller {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 70px;
  width: 100%;
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
}
@media (max-width: 600px) {
  .renderer-components-field-wrapper .renderer-components-field-wrapper__content-wrapper .renderer-core-block-scroller {
    padding: 40px 40px;
  }
}

@keyframes isShaking {
  0% {
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
  }
  50% {
    transform: translateX(-3px);
    -webkit-transform: translateX(-3px);
  }
  100% {
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
  }
}
.renderer-core-fields-wrapper.is-moving-down .renderer-core-field-display-wrapper,
.renderer-core-fields-wrapper.is-moving-up .renderer-components-question-header {
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
}

.renderer-components-field-wrapper:not(.active) .renderer-core-block-attachment-wrapper {
  transition: none;
}

.renderer-components-field-wrapper.active:not(.is-animating) .renderer-core-block-attachment-wrapper,
.qf-welcome-screen-block__wrapper.active .renderer-core-block-attachment-wrapper,
.qf-thankyou-screen-block__wrapper.active .renderer-core-block-attachment-wrapper {
  opacity: 1;
  transform: none;
}

.renderer-core-block-split-left-layout,
.renderer-core-block-split-right-layout,
.renderer-core-block-float-left-layout,
.renderer-core-block-float-right-layout {
  display: flex !important;
}
@media (min-width: 600px) {
  .renderer-core-block-split-left-layout > div,
.renderer-core-block-split-right-layout > div,
.renderer-core-block-float-left-layout > div,
.renderer-core-block-float-right-layout > div {
    width: 50% !important;
  }
  .renderer-core-block-split-left-layout .renderer-core-block-attachment-wrapper,
.renderer-core-block-split-right-layout .renderer-core-block-attachment-wrapper,
.renderer-core-block-float-left-layout .renderer-core-block-attachment-wrapper,
.renderer-core-block-float-right-layout .renderer-core-block-attachment-wrapper {
    opacity: 0;
    transform: translate(50px);
    transition: all 400ms ease-in-out;
  }
}
@media (max-width: 599px) {
  .renderer-core-block-split-left-layout,
.renderer-core-block-split-right-layout,
.renderer-core-block-float-left-layout,
.renderer-core-block-float-right-layout {
    flex-direction: column !important;
  }
}

@media (min-width: 600px) {
  .renderer-core-block-split-left-layout .renderer-core-block-attachment-wrapper,
.renderer-core-block-float-left-layout .renderer-core-block-attachment-wrapper {
    transform: translate(-50px);
  }
}
.renderer-core-block-split-left-layout,
.renderer-core-block-float-left-layout {
  flex-direction: row-reverse;
}

.renderer-core-block-float-left-layout,
.renderer-core-block-float-right-layout {
  align-items: center;
}
.renderer-core-block-float-left-layout .renderer-core-block-attachment,
.renderer-core-block-float-left-layout .renderer-core-block-attachment img,
.renderer-core-block-float-right-layout .renderer-core-block-attachment,
.renderer-core-block-float-right-layout .renderer-core-block-attachment img {
  margin: 0 auto;
}

.renderer-core-block-split-left-layout .renderer-core-block-attachment,
.renderer-core-block-split-right-layout .renderer-core-block-attachment {
  height: 100%;
  margin-top: 0;
}
.renderer-core-block-split-left-layout .renderer-core-block-attachment img,
.renderer-core-block-split-right-layout .renderer-core-block-attachment img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
@media (max-width: 599px) {
  .renderer-core-block-split-left-layout .renderer-core-block-attachment .renderer-core-block-attachment-wrapper,
.renderer-core-block-split-right-layout .renderer-core-block-attachment .renderer-core-block-attachment-wrapper {
    height: 192px;
  }
}

.correct-incorrect-explanation-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 45px;
}

.correct-incorrect-explanation {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 200px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.4s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.4s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.4s ease-in-out;
}
.correct-incorrect-explanation.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.correct-incorrect-explanation .correct-incorrect-explanation__heading {
  margin-bottom: 30px;
}

.renderer-core-html-parser p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
}

.renderer-core-payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 30px;
  overflow-y: auto;
}
.renderer-core-payment-modal .renderer-core-payment-modal__content {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}
.renderer-core-payment-modal .renderer-components-radio-control__options-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.renderer-core-payment-modal .renderer-components-radio-control__option {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 260px;
  word-break: break-all;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 30px;
  border: 1px solid;
  cursor: pointer;
}
.renderer-core-payment-modal .renderer-components-radio-control__option input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.renderer-core-payment-modal .renderer-components-radio-control__option label {
  position: relative;
  /* font-weight: 300; */
  font-size: 14px;
  margin: 4.5px 30px;
  /* height: 37px; */
  z-index: 9;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.25s linear;
}
.renderer-core-payment-modal .renderer-components-radio-control__option .check {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border: 3px solid;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  z-index: 5;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}
.renderer-core-payment-modal .renderer-components-radio-control__option .check::before {
  content: "";
  border-radius: 100%;
  height: 7px;
  width: 7px;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}
.renderer-core-payment-modal .renderer-core-payment-modal-methods {
  text-align: center;
  margin: auto;
  max-width: 540px;
  flex-direction: column;
  display: flex;
}
.renderer-core-payment-modal .renderer-core-payment-modal-info {
  box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.14);
  margin-bottom: 40px;
}
.renderer-core-payment-modal .renderer-core-payment-modal-info .renderer-core-payment-order__item-row,
.renderer-core-payment-modal .renderer-core-payment-modal-info .renderer-core-payment-modal-info_footer,
.renderer-core-payment-modal .renderer-core-payment-modal-info .renderer-core-payment-modal-info_discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.renderer-core-payment-coupon {
  padding: 15px;
  margin-bottom: 20px;
}
.renderer-core-payment-coupon .renderer-core-payment-coupon__label {
  margin-right: 15px;
  cursor: pointer;
  text-decoration: underline;
}
.renderer-core-payment-coupon .render-core-payment-coupon-form {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.renderer-core-payment-coupon .render-core-payment-coupon-form .renderer-core-payment-coupon__apply {
  margin-left: 15px;
}

.renderer-core-progress-bar {
  padding: 5px 8px;
  width: 220px;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .renderer-core-progress-bar {
    background-color: transparent !important;
    width: 0px;
  }
  .renderer-core-progress-bar .renderer-core-progress-bar__label {
    display: none !important;
  }
}
.renderer-core-progress-bar .renderer-core-progress-bar__track {
  position: relative;
  height: 5px;
  width: 100%;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .renderer-core-progress-bar .renderer-core-progress-bar__track {
    position: fixed;
    top: 0;
    margin-top: 0;
    right: 0;
    left: 0;
  }
}
.renderer-core-progress-bar .renderer-core-progress-bar__fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: width 0.3s;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
}

.renderer-core-form-flow__wrapper .renderer-core-form-flow .renderer-components-form-footer {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  z-index: 2222;
  bottom: 0;
  right: 0;
  left: 0;
}
.renderer-core-form-flow__wrapper .renderer-core-form-flow .renderer-components-form-footer .renderer-components-form-footer__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 10px 20px;
}
@media (max-width: 600px) {
  .renderer-core-form-flow__wrapper .renderer-core-form-flow .renderer-components-form-footer .renderer-components-form-footer__inner {
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
}
.renderer-core-form-flow__wrapper .renderer-core-form-flow .renderer-components-form-footer.hidden {
  display: none;
}
.renderer-core-form-flow__wrapper .renderer-core-form-flow .renderer-components-form-footer [class^=renderer-core-powered-by-branding] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-left: 6px;
}
.renderer-core-form-flow__wrapper .renderer-core-form-flow .renderer-components-form-footer [class^=renderer-core-powered-by-branding] a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.renderer-core-form-flow__wrapper .renderer-core-form-flow .renderer-components-form-footer .renderer-core-correct-incorrect-result {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.renderer-core-form-flow__wrapper .renderer-core-form-flow .renderer-components-form-footer .renderer-core-correct-incorrect-result.active {
  transform: translateY(0);
}

.renderer-components-field-content {
  width: 100%;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}
.renderer-components-field-content.is-shaking {
  animation: isShaking 0.1s linear infinite;
}

.renderer-core-submit-btn__loader {
  margin-left: 10px;
}
.picturechoice__options {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	align-items: stretch !important;
}
.picturechoice__options.valigned {
	display: inline-flex;
	flex-direction: column;
	max-width: 100%;
	align-items: stretch;
	width: auto;
}
.picturechoice__options:not(.valigned) .pictureChoice__optionWrapper {
	max-width: 215px;
}
@media (max-width: 600px) {
	.picturechoice__options:not(.valigned) .pictureChoice__optionWrapper {
		max-width: 480px;
   }
}
.picturechoice__options > div.clicked {
	animation-name: qf-picture-choice-vibrate;
	animation-duration: 0.4s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}
.picturechoice__options .pictureChoice__optionLabelWrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 1 1 0%;
	appearance: none;
	text-align: left;
}
.picturechoice__options .pictureChoice__optionLabelWrapper:hover .pictureChoice__optionKey .pictureChoice__optionKeyTip {
	visibility: visible !important;
	opacity: 1 !important;
	transform: none !important;
}
.picturechoice__options .pictureChoice__optionLabelWrapper .pictureChoice__optionLabel {
	flex-grow: 1;
	padding-right: 12px;
	overflow-wrap: break-word;
	max-width: calc(100% - 27px);
}
.picturechoice__options .pictureChoice__optionLabelWrapper .pictureChoice__optionKey {
	position: relative;
	width: 27px;
	height: 27px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
	font-size: 14px;
}
.picturechoice__options .pictureChoice__optionLabelWrapper .pictureChoice__optionKey .pictureChoice__optionKeyTip {
	position: absolute;
	top: -25px;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 2px 3px;
	border-radius: 2px;
	transition: 0.2s all ease-in-out;
	transform: translateY(5px);
	visibility: hidden;
	opacity: 0;
}
@keyframes qf-picture-choice-vibrate {
	0% {
		transform: scale(1);
   }
	25% {
		transform: scale(0.95);
   }
	50% {
		transform: scale(0.98);
   }
	75% {
		transform: scale(0.95);
   }
	100% {
		transform: scale(1);
   }
}

/* stylelint-disable */
/* Holder - After login */
.form-view {
  display: flex;
  flex-direction: column;
}
.form-view .react-content {
  width: 100%;
  height: 100%;
}
#after-essentials-form {
  z-index: 9;
}
@media (max-width: 768px) {
  .desktop-app .react-content .renderer-core-progress-bar__track,
  .header-visible .react-content .renderer-core-progress-bar__track {
    top: 77px;
  }
}
@media (max-width: 575px) {
  .desktop-app .react-content .renderer-core-progress-bar__track,
  .header-visible .react-content .renderer-core-progress-bar__track {
    top: 69px;
  }
}
.native-app.iphone-x .react-content .renderer-core-progress-bar__track {
  top: 48px;
}
.native-app.iphone-x .renderer-components-form-footer {
  padding-bottom: 48px;
}
.desktop-app .form-view.full-width-view .react-content {
  height: calc(100vh - 77px);
}
@media (max-width: 576px) {
  .desktop-app .form-view.full-width-view .react-content {
    height: calc(100vh - 69px);
  }
}
.desktop-app .form-view > .km-header {
  top: 77px;
  position: absolute!important;
  z-index: 9999;
  background: none!important;
}
.desktop-app .form-view > .km-header > .km-navbar {
  background: none!important;
}
@media (max-width: 575.98px) {
  .desktop-app .form-view > .km-header {
    top: 69px;
  }
}
/* Holder - Before login */
.form-holder {
  height: calc(100vh - 69px) !important;
  margin-top: 69px;
}
@media (min-width: 575.98px) {
  .form-holder {
    height: calc(100vh - 77px) !important;
    margin-top: 77px;
  }
}
.native-app.iphone-x .form-holder {
  height: calc(100vh - 100px) !important;
  margin-top: 100px;
}
/* Skip/login button */
.km-button.km-widget.login-form-skip-button {
  font-size: 1em;
  font-weight: 400!important;
  width: auto;
  height: 46px;
  min-height: 0;
  padding: 0 1.4em;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  z-index: 9999;
}
@media (max-width: 768px) {
  .km-button.km-widget.login-form-skip-button {
    font-size: 0.9em;
    height: 36px;
    top: 20px;
    padding: 0 1em;
  }
}
@media (max-width: 575.98px) {
  .km-button.km-widget.login-form-skip-button {
    top: 18px;
  }
}
@media (min-width: 1440px) {
  .km-button.km-widget.login-form-skip-button {
    right: 25px;
  }
}
.native-app.iphone-x .km-button.km-widget.login-form-skip-button {
  top: 48px;
}
/* Form styles */
.react-content,
.form-holder {
  font-size: 16px!important;
}
.react-content *,
.form-holder * {
  font-family: "App Font Display", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif !important;
}
.react-content .renderer-core-field-footer,
.form-holder .renderer-core-field-footer {
  margin-top: 20px;
}
@media (min-width: 601px) {
  .react-content .renderer-core-field-footer,
  .form-holder .renderer-core-field-footer {
    text-align: center;
  }
}
.react-content .renderer-core-field-footer p,
.form-holder .renderer-core-field-footer p {
  margin: 0;
}
@media (min-width: 601px) {
  .react-content .qf-welcome-screen-block__action,
  .form-holder .qf-welcome-screen-block__action,
  .react-content .renderer-core-field-action,
  .form-holder .renderer-core-field-action,
  .react-content .renderer-core-submit-btn-wrapper,
  .form-holder .renderer-core-submit-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.react-content .qf-welcome-screen-block__action button,
.form-holder .qf-welcome-screen-block__action button,
.react-content .renderer-core-field-action button,
.form-holder .renderer-core-field-action button,
.react-content .renderer-core-submit-btn-wrapper button,
.form-holder .renderer-core-submit-btn-wrapper button {
  font-size: 1.125rem !important;
  font-weight: 600;
  line-height: normal;
  padding: 16px 24px;
  border-radius: 10px;
  background: #01bfa5;
  transition: 0.2s;
}
.react-content .qf-welcome-screen-block__action button:hover,
.form-holder .qf-welcome-screen-block__action button:hover,
.react-content .renderer-core-field-action button:hover,
.form-holder .renderer-core-field-action button:hover,
.react-content .renderer-core-submit-btn-wrapper button:hover,
.form-holder .renderer-core-submit-btn-wrapper button:hover {
  background: #01a58f;
}
.react-content .qf-welcome-screen-block__action button svg,
.form-holder .qf-welcome-screen-block__action button svg,
.react-content .renderer-core-field-action button svg,
.form-holder .renderer-core-field-action button svg,
.react-content .renderer-core-submit-btn-wrapper button svg,
.form-holder .renderer-core-submit-btn-wrapper button svg {
  display: none;
}
.react-content .qf-welcome-screen-block__action button:focus-visible,
.form-holder .qf-welcome-screen-block__action button:focus-visible,
.react-content .renderer-core-field-action button:focus-visible,
.form-holder .renderer-core-field-action button:focus-visible,
.react-content .renderer-core-submit-btn-wrapper button:focus-visible,
.form-holder .renderer-core-submit-btn-wrapper button:focus-visible {
  box-shadow: 0 0 0 3px rgba(1, 191, 165, 0.2) !important;
  background: #01a58f;
}
.react-content .qf-welcome-screen-block__action button:focus-visible::before,
.form-holder .qf-welcome-screen-block__action button:focus-visible::before,
.react-content .renderer-core-field-action button:focus-visible::before,
.form-holder .renderer-core-field-action button:focus-visible::before,
.react-content .renderer-core-submit-btn-wrapper button:focus-visible::before,
.form-holder .renderer-core-submit-btn-wrapper button:focus-visible::before,
.react-content .qf-welcome-screen-block__action button:focus-visible::after,
.form-holder .qf-welcome-screen-block__action button:focus-visible::after,
.react-content .renderer-core-field-action button:focus-visible::after,
.form-holder .renderer-core-field-action button:focus-visible::after,
.react-content .renderer-core-submit-btn-wrapper button:focus-visible::after,
.form-holder .renderer-core-submit-btn-wrapper button:focus-visible::after {
  content: none;
}
.react-content .qf-welcome-screen-block__action .css-kyvs3s,
.form-holder .qf-welcome-screen-block__action .css-kyvs3s,
.react-content .renderer-core-field-action .css-kyvs3s,
.form-holder .renderer-core-field-action .css-kyvs3s,
.react-content .renderer-core-submit-btn-wrapper .css-kyvs3s,
.form-holder .renderer-core-submit-btn-wrapper .css-kyvs3s {
  font-size: 0.9rem;
  margin-top: 10px;
  color: #718096;
  display: none;
}
.react-content .qf-welcome-screen-block__action-helper-text,
.form-holder .qf-welcome-screen-block__action-helper-text {
  display: none;
}
.react-content .renderer-components-default-thankyou-screen p,
.form-holder .renderer-components-default-thankyou-screen p {
  margin: 0;
}
.react-content .blocktype-statement-block .renderer-components-block-counter,
.form-holder .blocktype-statement-block .renderer-components-block-counter {
  display: none;
}
.react-content .qf-blocklib-long-text-block-renderer__hint-text,
.form-holder .qf-blocklib-long-text-block-renderer__hint-text {
  font-size: 0.9rem;
  margin-top: 0;
  color: #718096;
}
@media (min-width: 601px) {
  .react-content .renderer-components-question-header,
  .form-holder .renderer-components-question-header {
    text-align: center;
  }
}
.react-content .renderer-components-block-counter,
.form-holder .renderer-components-block-counter {
  font-size: 1.2rem;
  font-weight: 500;
  min-width: 36px;
  height: 36px;
  line-height: normal;
  margin-right: 15px;
  padding: 5px;
  top: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  border-color: #c0efe9;
  color: #01bfa5;
  background: #e5faf5;
}
.react-content .renderer-components-block-counter span,
.form-holder .renderer-components-block-counter span {
  margin: 0;
}
.react-content .renderer-components-block-label p,
.form-holder .renderer-components-block-label p {
  line-height: 120%;
  margin: 0;
}
@media (min-width: 601px) {
  .react-content .renderer-components-block-label p,
  .form-holder .renderer-components-block-label p {
    font-size: 2rem;
    text-align: center;
  }
}
.react-content .renderer-components-block-counter__content,
.form-holder .renderer-components-block-counter__content {
  display: none;
}
.react-content .renderer-components-block-description p,
.form-holder .renderer-components-block-description p {
  margin-left: 0;
  margin-right: 0;
  color: #4a5568;
}
.react-content .renderer-components-error-message-wrapper,
.form-holder .renderer-components-error-message-wrapper {
  font-size: 1rem;
  line-height: normal;
  padding: 8px 12px;
  color: #1a202c;
  border-radius: 8px;
  background: #fee2e2;
}
.react-content .renderer-components-error-message-wrapper p,
.form-holder .renderer-components-error-message-wrapper p {
  margin: 0;
}
.react-content input,
.form-holder input,
.react-content textarea,
.form-holder textarea {
  font-size: 1.1rem !important;
  max-width: none;
  padding: 12px 16px;
  border-radius: 10px!important;
  border: 1px solid #cbd5e0 !important;
  box-shadow: none!important;
  color: #1a202c !important;
}
@media (min-width: 601px) {
  .react-content input,
  .form-holder input,
  .react-content textarea,
  .form-holder textarea {
    font-size: 1.5rem !important;
  }
}
.react-content input::placeholder,
.form-holder input::placeholder,
.react-content textarea::placeholder,
.form-holder textarea::placeholder {
  color: #718096;
  opacity: 1;
}
.react-content input:focus,
.form-holder input:focus,
.react-content textarea:focus,
.form-holder textarea:focus {
  border-color: #01bfa5 !important;
  box-shadow: 0 0 0 3px rgba(1, 191, 165, 0.2) !important;
}
.react-content .block-dropdown-renderer-expand-icon,
.form-holder .block-dropdown-renderer-expand-icon,
.react-content .block-dropdown-renderer-close-icon,
.form-holder .block-dropdown-renderer-close-icon {
  height: 100%;
  top: 0;
  right: 12px;
  display: flex;
  align-items: center;
}
.react-content .block-dropdown-renderer-expand-icon svg,
.form-holder .block-dropdown-renderer-expand-icon svg,
.react-content .block-dropdown-renderer-close-icon svg,
.form-holder .block-dropdown-renderer-close-icon svg {
  fill: #1a202c;
}
.react-content .multiplechoice__options,
.form-holder .multiplechoice__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .react-content .multiplechoice__options,
  .form-holder .multiplechoice__options {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .react-content .multiplechoice__options,
  .form-holder .multiplechoice__options {
    grid-template-columns: repeat(3, 1fr);
  }
}
.react-content .multiplechoice__options.valigned,
.form-holder .multiplechoice__options.valigned {
  display: flex;
}
@media (min-width: 992px) {
  .react-content .two-columns-options .multiplechoice__options,
  .form-holder .two-columns-options .multiplechoice__options {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .react-content .centered-options .multiplechoice__options,
  .form-holder .centered-options .multiplechoice__options {
    display: flex;
    justify-content: center;
  }
  .react-content .centered-options .multiplechoice__options .multipleChoice__optionWrapper,
  .form-holder .centered-options .multiplechoice__options .multipleChoice__optionWrapper {
    flex-grow: initial;
  }
}
.react-content .multiplechoice__options .multipleChoice__optionWrapper,
.form-holder .multiplechoice__options .multipleChoice__optionWrapper {
  font-size: 1rem;
  min-width: 222px;
  max-width: none!important;
  line-height: 120%;
  margin: 0!important;
  padding: 10px 12px!important;
  color: #1a202c;
  border: 1px solid #cbd5e0;
  border-radius: 10px!important;
  background: #fff;
  transition: 0.2s;
}
.react-content .multiplechoice__options .multipleChoice__optionWrapper::before,
.form-holder .multiplechoice__options .multipleChoice__optionWrapper::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 6px;
  border: 1px solid #718096;
  background: #fff;
}
.react-content .multiplechoice__options .multipleChoice__optionWrapper:hover,
.form-holder .multiplechoice__options .multipleChoice__optionWrapper:hover {
  color: #1a202c;
  border-color: #01bfa5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 191, 165, 0.2);
}
.react-content .multiplechoice__options .multipleChoice__optionWrapper.selected,
.form-holder .multiplechoice__options .multipleChoice__optionWrapper.selected {
  color: #1a202c;
  border-color: #01bfa5;
  background: #e5faf5;
}
.react-content .multiplechoice__options .multipleChoice__optionWrapper.selected:hover,
.form-holder .multiplechoice__options .multipleChoice__optionWrapper.selected:hover {
  box-shadow: none;
}
.react-content .multiplechoice__options .multipleChoice__optionWrapper.selected::before,
.form-holder .multiplechoice__options .multipleChoice__optionWrapper.selected::before {
  content: "\f11d";
  font-family: "icons";
  border-color: #01bfa5;
  background: #01bfa5;
}
.react-content .multiplechoice__options .multipleChoice__optionWrapper .multipleChoice__optionLabel,
.form-holder .multiplechoice__options .multipleChoice__optionWrapper .multipleChoice__optionLabel {
  max-width: none!important;
}
.react-content .multiplechoice__options__single .multipleChoice__optionWrapper::before,
.form-holder .multiplechoice__options__single .multipleChoice__optionWrapper::before {
  border-radius: 50%;
}
.react-content .multiplechoice__options__single .multipleChoice__optionWrapper.selected::before,
.form-holder .multiplechoice__options__single .multipleChoice__optionWrapper.selected::before {
  content: "";
  border-color: #718096;
  box-shadow: inset 0px 0px 0px 4px #fff;
}
.react-content .qf-block-dropdown-display__choices,
.form-holder .qf-block-dropdown-display__choices {
  border: none;
  padding: 0;
}
.react-content .dropdown__choiceWrapper,
.form-holder .dropdown__choiceWrapper {
  padding: 10px 16px;
  color: #1a202c;
  border: 1px solid #cbd5e0;
  border-radius: 10px!important;
  background: #fff;
  transition: 0.2s;
}
.react-content .dropdown__choiceWrapper:hover,
.form-holder .dropdown__choiceWrapper:hover {
  border-color: #01bfa5;
  background: #e5faf5;
}
.react-content .dropdown__choiceWrapper.selected,
.form-holder .dropdown__choiceWrapper.selected {
  color: #1a202c;
  border-color: #01bfa5;
  background: #e5faf5;
}
.react-content .css-1a5yo4o,
.form-holder .css-1a5yo4o,
.react-content .css-55igym,
.form-holder .css-55igym {
  font-size: 1rem;
  padding: 0;
  color: #718096;
  background: none;
}
.react-content .multipleChoice__optionKey,
.form-holder .multipleChoice__optionKey {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace !important;
  font-size: 13px!important;
  width: auto!important;
  height: auto!important;
  line-height: 100%;
  padding: 3px 6px;
  color: #718096 !important;
  border-radius: 6px!important;
  box-shadow: 0 2px 0 #cbd5e0;
  border-color: #cbd5e0;
  background: #f1f5f9;
  display: none!important;
}
@media (max-width: 768px) {
  .react-content .multipleChoice__optionKey,
  .form-holder .multipleChoice__optionKey {
    display: none!important;
  }
}
.react-content .multipleChoice__optionKey .multipleChoice__optionKeyTip,
.form-holder .multipleChoice__optionKey .multipleChoice__optionKeyTip {
  display: none;
}
.react-content .renderer-core-progress-bar,
.form-holder .renderer-core-progress-bar {
  width: auto;
  padding: 0;
  background: none;
}
.react-content .renderer-core-progress-bar .renderer-core-html-parser,
.form-holder .renderer-core-progress-bar .renderer-core-html-parser {
  display: none;
}
.react-content .renderer-core-progress-bar .renderer-core-progress-bar__track,
.form-holder .renderer-core-progress-bar .renderer-core-progress-bar__track {
  top: 77px;
  left: 0;
  margin-top: 0;
  position: fixed;
  overflow: hidden;
  background: #f1f5f9;
}
@media (max-width: 575px) {
  .react-content .renderer-core-progress-bar .renderer-core-progress-bar__track,
  .form-holder .renderer-core-progress-bar .renderer-core-progress-bar__track {
    top: 69px;
  }
}
.native-app.iphone-x .react-content .renderer-core-progress-bar .renderer-core-progress-bar__track,
.native-app.iphone-x .form-holder .renderer-core-progress-bar .renderer-core-progress-bar__track {
  top: 100px;
}
.react-content .renderer-core-progress-bar .renderer-core-progress-bar__fill,
.form-holder .renderer-core-progress-bar .renderer-core-progress-bar__fill {
  border-radius: 0 5px 5px 0;
  background: #01bfa5;
}
.react-content .renderer-core-progress-bar .renderer-core-progress-bar__fill.css-1ivbphr,
.form-holder .renderer-core-progress-bar .renderer-core-progress-bar__fill.css-1ivbphr {
  border-radius: 0;
}
.react-content .renderer-core-progress-bar__label p,
.form-holder .renderer-core-progress-bar__label p {
  font-size: 14px;
  margin: 0;
}
.react-content .renderer-components-form-footer,
.form-holder .renderer-components-form-footer {
  left: auto !important;
  justify-content: space-between;
}
.react-content .renderer-core-field-navigation,
.form-holder .renderer-core-field-navigation {
  margin-left: 0;
  margin-bottom: 10px;
}
.react-content .renderer-core-field-navigation > div,
.form-holder .renderer-core-field-navigation > div {
  border-radius: 50%;
  border: 1px solid #cbd5e0;
  background: #fff;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .react-content .renderer-core-field-navigation > div,
  .form-holder .renderer-core-field-navigation > div {
    width: 44px;
    height: 44px;
  }
  .react-content .renderer-core-field-navigation > div:hover,
  .form-holder .renderer-core-field-navigation > div:hover {
    background: #f1f5f9;
  }
}
.react-content .renderer-core-field-navigation > div svg,
.form-holder .renderer-core-field-navigation > div svg {
  width: 24px;
  height: 24px;
  fill: #1a202c;
}
@media (max-width: 767px) {
  .react-content .fixed-dropdown-content,
  .form-holder .fixed-dropdown-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  .react-content .fixed-dropdown-content > div,
  .form-holder .fixed-dropdown-content > div {
    margin-bottom: 16px;
    flex-flow: column;
    align-items: flex-start;
  }
  .react-content .fixed-dropdown-content > div:before,
  .form-holder .fixed-dropdown-content > div:before {
    content: "\f162";
    font-family: "icons";
    font-size: 24px;
    font-weight: 700;
    top: 27px;
    left: 16px;
    display: block;
    position: absolute;
    color: #01bfa5;
  }
  .react-content .fixed-dropdown-content > div .back-icon,
  .form-holder .fixed-dropdown-content > div .back-icon {
    width: 50px;
    height: 50px;
    opacity: 0;
    z-index: 9;
  }
  .react-content .fixed-dropdown-content > div input,
  .form-holder .fixed-dropdown-content > div input {
    margin-bottom: 0;
    padding: 10px 16px!important;
    border-radius: 30px!important;
    border-color: transparent!important;
    background: #f1f5f9;
  }
  .react-content .fixed-dropdown-content > div input:focus,
  .form-holder .fixed-dropdown-content > div input:focus {
    border-color: #01bfa5 !important;
    background: #fff;
  }
}
body {
  font-family: "App Font Display", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif !important;
  font-size: 16px!important;
  color: #1a202c;
}
html,
body {
  overscroll-behavior-y: contain;
}
.km-root {
  font-size: 1em;
}
.k-ff .km-pane,
.k-ff .km-view {
  overflow-y: visible;
}
/* App banner */
body.app-banner-visible .km-view {
  padding-top: 95px;
}
.text-gray {
  color: #718096 !important;
}
.get-app {
  width: 100%;
  padding: 1.1em 1.1em 1.1em 0;
  display: flex;
  align-items: center;
  position: fixed;
  border-bottom: 1px solid #cbd5e0;
  box-shadow: 0 0 15px #e2e8f0;
  background: #fff;
  z-index: 9;
}
.get-app .remove {
  font-size: 1.1em;
  padding: 1rem 0.8rem;
}
.get-app span {
  line-height: 100%;
  font-size: 1.1em;
  flex-grow: 1;
}
.get-app span .rating {
  font-size: 1rem;
  text-align: left;
  margin-top: 0.3em;
}
.get-app a {
  font-size: 0.9em;
  font-weight: 600;
  padding: 0.5em 0.7em;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff !important;
  border-radius: 0.3em;
  background: #22c55e;
}
.get-app a:hover {
  color: #fff !important;
  background: #1eaf54;
}
.get-app svg {
  width: 4rem;
  height: 4rem;
  margin-right: 0.8rem;
}
.get-app-icon.km-logo {
  font-size: 2.8em;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  margin-right: 0.8rem;
  flex-shrink: 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px #e2e8f0;
  border-radius: 0.6rem;
  background: #01bfa5;
}
.km-close:after {
  font-family: "icons";
  content: "\f122";
}
.km-logo:after {
  font-family: "icons";
  content: "\f10a";
}
/* Link */
a {
  color: #01bfa5 !important;
  display: inline-block;
}
a:hover {
  cursor: pointer;
  color: #01a68f !important;
}
.text-muted {
  color: #718096;
}
.text-center {
  text-align: center;
}
/* Logo */
.logo {
  font-size: 1.6em;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 370px) {
  .logo {
    font-size: 1.2em;
  }
}
.logo .km-logo:after {
  content: "\f10a";
  font-family: "icons";
  font-size: 4.2rem;
  font-weight: normal;
  height: auto;
  margin-bottom: 0.2em;
  text-align: center;
  color: #01bfa5;
}
@media (max-width: 370px) {
  .logo .km-logo:after {
    font-size: 3rem;
  }
}
.logo-desc {
  font-size: 1.2em;
  margin-top: 0.2em;
  text-align: center;
  color: #01bfa5;
}
@media (max-width: 370px) {
  .logo-desc {
    font-size: 1em;
  }
}
.desktop-header .logo-full {
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .desktop-header .logo-full {
    width: auto;
    max-height: 44px;
  }
}
/* Header */
.km-header {
  background: #fff;
}
.km-header .km-widget {
  color: #01bfa5;
}
.km-header .km-navbar {
  border: none;
  background: #fff;
  overflow: visible;
}
.km-header .km-navbar .km-view-title {
  font-size: 1.1em;
  font-weight: 600;
  line-height: 3em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.km-header .km-navbar .km-leftitem {
  left: 0;
}
.km-header .km-navbar .km-leftitem .km-button {
  padding-left: 0.8em;
}
.km-header .km-navbar .km-leftitem:before {
  display: none;
}
.km-header .km-navbar .km-leftitem .km-back {
  width: 100%;
  margin: 0;
  padding: 0.6em 1em;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 540px) {
  .km-header .km-navbar .km-leftitem .km-back {
    font-size: 18px;
    width: auto;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    box-shadow: 0 5px 15px rgba(26, 32, 44, 0.07);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    transition: 0.2s;
  }
  .km-header .km-navbar .km-leftitem .km-back:hover {
    opacity: 1;
    box-shadow: none;
    color: #01a58f;
  }
}
.km-header .km-navbar .km-leftitem .km-back:before {
  content: "\f162";
  font-family: "icons";
  font-size: 1.4em;
  line-height: 1em;
  margin-right: 0.2em;
  width: auto;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  box-shadow: none;
  transform: none;
  border: none;
}
.km-header .km-navbar .km-leftitem .km-back:hover {
  color: #01a68f;
}
.km-header .km-navbar .km-rightitem {
  right: 0;
}
.km-header .km-navbar .km-rightitem .km-button {
  font-size: 1.1em;
  font-weight: 700;
  padding-right: 1em;
}
@media (min-width: 540px) {
  .km-header .km-navbar .km-rightitem .km-button {
    margin: 0;
    padding: 1em 1.6rem;
  }
}
.km-header .km-navbar .km-rightitem .km-button.km-state-active .km-text {
  color: #01bfa5;
}
.km-header .km-navbar .km-rightitem .km-button:hover {
  color: #01a68f;
}
.large-header-view .km-navbar {
  border-bottom: none;
  background: #fff;
  box-shadow: none;
}
.large-header-view .km-header {
  border: none;
}
.large-header-view .km-header .km-view-title {
  visibility: hidden;
}
.large-header-view .km-header.visible {
  box-shadow: 0 0 0.3em #cbd5e0;
  display: block;
  transition: 0.3s;
}
.large-header-view .km-header.visible .km-view-title {
  visibility: visible;
  animation-name: showTitle;
  animation-duration: 0.3s;
}
@keyframes showTitle {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.large-header-view h1 {
  font-family: "App Font Display", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  font-size: 2em;
  font-weight: 900;
  margin: 1.5rem 1rem;
  padding: 0;
}
/* Native app */
.native-app .km-header {
  padding-top: 1.5em;
}
.native-app.iphone-x .km-header {
  padding-top: 48px;
}
/* Buttons */
.km-button.primary-button,
.km-button.secondary-button,
.km-button.button {
  font-size: 1.2em;
  font-weight: 600;
  width: 100%;
  min-height: 3rem;
  margin: 0 auto;
  padding: 0.6em 1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #01bfa5;
  border-radius: 0.62rem;
  border: 1px solid #01bfa5;
  background: #fff;
  white-space: nowrap;
  transition: 0.2s;
}
.km-button .km-text {
  transition: 0.2s;
}
.km-button.primary-button:not([disabled]) {
  box-shadow: 0 0 10px rgba(1, 191, 165, 0.4);
  color: #fff;
  border: 1px solid transparent;
  background: #01bfa5;
}
.km-button.primary-button:not([disabled]) .km-text {
  color: #fff;
}
.km-button.primary-button:not([disabled]):hover,
.km-button.primary-button:not([disabled]).km-state-active {
  box-shadow: none;
  background: #01a58f;
}
.km-button.primary-button:not([disabled]):focus,
.km-button.button:not([disabled]):focus {
  box-shadow: 0 0 0 3px rgba(1, 191, 165, 0.3);
}
.km-button.button:not([disabled]):hover,
.km-button.button:not([disabled]).km-state-active {
  border-color: #01a58f;
}
.km-button.button:not([disabled]):hover .km-text,
.km-button.button:not([disabled]).km-state-active .km-text {
  color: #01a58f;
}
.km-button.secondary-button:not([disabled]) {
  font-weight: 500;
  color: #1a202c;
  border-color: #cbd5e0;
}
.km-button.secondary-button:not([disabled]) .km-text {
  color: #1a202c;
}
.km-button.secondary-button:not([disabled]):hover,
.km-button.secondary-button:not([disabled]).km-state-active {
  background: #f1f5f9;
}
.km-button:disabled {
  color: #fff;
  border-color: #e2e8f0;
  background: #e2e8f0;
}
.km-button.loading {
  border: none!important;
  background: none!important;
  box-shadow: none!important;
  cursor: pointer;
}
.km-button .general-loading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.km-button .general-loading span {
  top: 0;
}
.button-actions {
  display: flex;
  gap: 1em 1em;
  flex-wrap: wrap;
}
.button-actions .km-button {
  margin: 0;
}
@media (min-width: 540px) {
  .button-actions .km-button {
    width: auto;
  }
}
.second-action {
  margin: 1.4em 0 0;
  text-align: center;
}
/* Alert */
.alert-message {
  max-width: 30.5em;
  margin: 0 auto 1.5em;
  padding: 1em;
  position: fixed;
  display: flex;
  justify-content: space-between;
  bottom: 1em;
  left: 1em;
  right: 1em;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 0.4em;
  background: #1a202c;
  z-index: 999999;
  animation-name: showAlert;
  animation-duration: 0.3s;
}
.desktop-app .alert-message {
  right: auto;
}
.alert-message .km-close {
  margin-left: 1em;
}
.alert-message .km-close:after {
  content: "\f122";
  font-family: "icons";
  margin: -0.6em;
  padding: 0.7em;
  display: inline-block;
  cursor: pointer;
}
@keyframes showAlert {
  0% {
    bottom: -3em;
  }
  100% {
    bottom: 1em;
  }
}
.alert-window .km-widget.km-navbar {
  border-radius: 0 0 18px 18px;
}
.alert-window .km-button {
  margin: 0 auto;
  padding: 0.2em 0.8em;
  text-align: center;
  color: #01bfa5;
  border: none;
}
.alert-window .km-button.km-state-active .km-text {
  color: #01bfa5;
}
.alert-window .km-button .km-text {
  font-size: 20px;
  font-weight: 600;
}
.alert-window .km-content {
  border-radius: 1em 1em 0 0;
  text-align: center;
}
.alert-window .km-content .title {
  font-size: 1.2em;
}
#alert-modal .km-button {
  width: 11em;
  margin: 0;
  background: #fff;
}
#anonymous-alert .header,
#anonymous-alert .disclaimer {
  text-align: left;
}
#anonymous-alert .header {
  font-size: 1.2em;
}
#anonymous-alert .km-widget.km-navbar {
  margin: 0 auto;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}
#anonymous-alert .km-widget.km-navbar .km-leftitem,
#anonymous-alert .km-widget.km-navbar .km-rightitem {
  width: 8.5em;
  text-align: center;
}
#anonymous-alert .km-widget.km-navbar .km-leftitem {
  border-right: 1px solid #e2e8f0;
}
#anonymous-alert .km-widget.km-navbar .km-leftitem .km-button .km-text {
  font-weight: normal;
}
/* Lists and Forms */
.km-listview.km-list {
  margin-bottom: 1.25em;
  border-top: none;
}
.km-listview.km-list > li {
  font-size: 1em;
  padding: 0;
  color: #1a202c;
  border: none;
  overflow: visible;
}
.km-listview.km-list > li:first-child {
  border-bottom-width: 1px;
}
.km-listview.km-list > li:last-child {
  border-bottom-width: 1px;
  box-shadow: none;
}
.km-listview.km-list.login-fields {
  margin-top: 0.5em;
  overflow: visible;
}
@media (max-width: 370px) {
  .km-listview.km-list.login-fields {
    margin-top: 1em;
  }
}
.km-listview.km-list.login-fields > li {
  box-shadow: none;
  border: none;
  overflow: visible;
}
.km-listview.km-list.login-fields > li + li {
  margin-top: 1em;
}
.km-listview.km-list.login-fields > li.km-state-active label {
  background: none;
}
.km-listview.km-list.login-fields h3 {
  line-height: 100%;
  margin: 1.5em 0 0;
  color: #1a202c;
}
.km-listview.km-list.login-fields label {
  font-size: 0.85em;
  margin-bottom: 0.5em;
  display: block;
}
@media (min-width: 540px) {
  .km-listview.km-list.login-fields label {
    font-size: 0.9em;
  }
}
.km-listview.km-list.login-fields label .label-link {
  font-size: 0.9rem;
  font-weight: 400;
  float: right;
  color: #01bfa5;
}
.km-listview.km-list.login-fields input[type=text]:not(.k-input),
.km-listview.km-list.login-fields input[type="password"],
.km-listview.km-list.login-fields input[type="tel"],
.km-listview.km-list.login-fields input[type="email"],
.km-listview.km-list.login-fields input[type="number"],
.km-listview.km-list.login-fields select {
  font-family: "App Font Display", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif !important;
  width: 100%;
  height: 3rem;
  margin: 0;
  padding-left: 0.7em;
  padding-right: 0.7em;
  display: block;
  position: static;
  color: #1a202c;
  border: 1px solid #cbd5e0;
  border-radius: 0.4em;
  text-overflow: ellipsis;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.km-listview.km-list.login-fields input[type=text]:not(.k-input):focus,
.km-listview.km-list.login-fields input[type="password"]:focus,
.km-listview.km-list.login-fields input[type="tel"]:focus,
.km-listview.km-list.login-fields input[type="email"]:focus,
.km-listview.km-list.login-fields input[type="number"]:focus,
.km-listview.km-list.login-fields select:focus {
  border-color: #01bfa5;
  box-shadow: 0 0 0 3px rgba(1, 191, 165, 0.2);
}
.km-listview.km-list.login-fields input[type=text]:not(.k-input)::placeholder,
.km-listview.km-list.login-fields input[type="password"]::placeholder,
.km-listview.km-list.login-fields input[type="tel"]::placeholder,
.km-listview.km-list.login-fields input[type="email"]::placeholder,
.km-listview.km-list.login-fields input[type="number"]::placeholder,
.km-listview.km-list.login-fields select::placeholder {
  color: #718096;
}
.km-listview.km-list.login-fields input[type=text]:not(.k-input):disabled,
.km-listview.km-list.login-fields input[type="password"]:disabled,
.km-listview.km-list.login-fields input[type="tel"]:disabled,
.km-listview.km-list.login-fields input[type="email"]:disabled,
.km-listview.km-list.login-fields input[type="number"]:disabled,
.km-listview.km-list.login-fields select:disabled {
  height: auto;
  padding: 0;
  border: none;
  opacity: 1;
  background: none;
}
.km-listview.km-list.login-fields select {
  padding-right: 1.8em;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5.659' viewBox='0 0 10 5.659'%3E%3Cpath id='Path_2666' data-name='Path 2666' d='M94.163,195.085l-4.341-4.341a.651.651,0,0,1,0-.921h0a.651.651,0,0,1,.921,0l3.42,3.42a.651.651,0,0,0,.921,0l3.437-3.437a.651.651,0,0,1,.921,0h0a.651.651,0,0,1,0,.921l-4.357,4.357A.651.651,0,0,1,94.163,195.085Z' transform='translate(-89.631 -189.616)'/%3E%3C/svg%3E%0A");
  -webkit-box-shadow: none;
}
.km-listview.km-list.login-fields .short {
  width: 11.4rem;
}
.km-listview.km-list.login-fields .radio,
.km-listview.km-list.login-fields .checkbox {
  font-size: 1em;
  font-weight: 400;
  margin: 0;
  padding: 0.5em 0;
  display: flex;
}
.km-listview.km-list.login-fields .radio input,
.km-listview.km-list.login-fields .checkbox input {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 1rem 0 0;
  padding: 0;
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 0.3em;
  border: 1px solid #cbd5e0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.km-listview.km-list.login-fields .radio input:focus,
.km-listview.km-list.login-fields .checkbox input:focus {
  border-color: #01bfa5;
  box-shadow: 0 0 0 3px rgba(1, 191, 165, 0.2);
}
.km-listview.km-list.login-fields .radio input:checked,
.km-listview.km-list.login-fields .checkbox input:checked {
  font-size: 1em;
  border-color: #01bfa5;
  background: #01bfa5;
}
.km-listview.km-list.login-fields .radio input:checked:after,
.km-listview.km-list.login-fields .checkbox input:checked:after {
  content: "\f11d";
  font-family: "icons";
  line-height: 1.4em;
  text-align: center;
  color: #fff;
}
.km-listview.km-list.login-fields .radio a,
.km-listview.km-list.login-fields .checkbox a {
  color: #1a202c !important;
  text-decoration: underline;
}
.km-listview.km-list.login-fields .radio span,
.km-listview.km-list.login-fields .checkbox span {
  line-height: normal;
  margin-top: 0.2em;
  color: #1a202c;
}
.km-listview.km-list.login-fields .radio input {
  border-radius: 50%;
}
.km-listview.km-list.login-fields .radio input:checked {
  background: #fff;
}
.km-listview.km-list.login-fields .radio input:checked::after {
  content: "";
  width: 0.875em;
  height: 0.875em;
  border-radius: 50%;
  background: #01bfa5;
}
.km-listview.km-list.login-fields small {
  margin-top: 0.5rem;
  line-height: 120%;
  display: inline-block;
  color: #718096;
}
.km-listview.km-list.login-fields .date-field {
  display: flex;
}
.km-listview.km-list.login-fields .date-field select {
  width: auto!important;
  min-width: 4.25em !important;
  margin-right: 0.6em !important;
}
@media (min-width: 540px) {
  .km-listview.km-list.login-fields .date-field select {
    min-width: 4em!important;
  }
}
.km-listview.km-list.login-fields .mobile-date .date-picker {
  position: relative;
}
.km-listview.km-list.login-fields .mobile-date .date-picker input,
.km-listview.km-list.login-fields .mobile-date .date-picker span {
  font-size: 1.1rem;
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  display: block;
  padding: 0;
  padding-left: 0.7em;
  border-radius: 0.4em;
  border: 1px solid #e2e8f0;
}
.km-listview.km-list.login-fields .mobile-date .date-picker input {
  left: 0;
  top: 0;
  margin: 0;
  position: absolute;
}
/* Names field */
@media (min-width: 540px) {
  .names-field {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  .names-field li {
    width: calc(50% - 0.5em);
    margin: 0!important;
  }
  .names-field li.middle-name-required {
    width: 100%;
  }
}
li.middle-name-required small {
  margin-top: 0!important;
  color: #ef4444 !important;
}
/* Phone field */
.phone-field {
  display: flex;
}
.phone-field .phone-code {
  height: 3em;
  padding: 0.8em;
  display: flex;
  position: relative;
  align-items: center;
  border: 1px solid #cbd5e0;
  border-right: 0;
  border-radius: 0.4rem 0 0 0.4rem;
}
.phone-field .phone-code:hover {
  background: #f1f5f9;
}
.phone-field .phone-code.disabled {
  height: auto;
  padding: 0;
  border: none;
}
.phone-field .phone-code select {
  top: 0;
  left: 0;
  position: absolute!important;
  opacity: 0;
  cursor: pointer;
}
.phone-field .phone-number {
  border-radius: 0 0.4rem 0.4rem 0 !important;
}
/* Show password */
.eye-icon,
.eye-icon-disabled {
  top: 2.3em;
  right: 0.8em;
  position: absolute;
}
.eye-icon:after,
.eye-icon-disabled:after {
  font-family: "icons";
  font-size: 1.5em;
  content: "\f12e";
}
.eye-icon:hover,
.eye-icon-disabled:hover {
  cursor: pointer;
  color: #01bfa5;
}
.eye-icon-disabled:after {
  content: "\f12f";
}
/* Design for login screens */
@media (min-width: 540px) {
  .login-view {
    overflow-y: scroll!important;
    display: block;
  }
}
@media (min-width: 540px) {
  .login-view {
    padding-top: 77px;
  }
}
.login-view .km-header {
  max-width: 540px;
  margin: 0 auto;
}
@media (min-width: 540px) {
  .login-view .km-header {
    padding: 0 1.6em !important;
  }
}
.login-view .km-content {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 1em 1em 4em!important;
  overflow-x: hidden;
  /* Login title */
}
@media (min-width: 540px) {
  .login-view .km-content {
    padding: 1.6em !important;
    overflow-y: visible;
  }
}
.login-view .km-content h2 {
  margin-left: 0;
  margin-right: 0;
}
.login-view .km-content h6 {
  font-size: 0.8em;
  font-weight: 600;
  margin: 0 0 0.3em;
  text-transform: uppercase;
  color: #1a202c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.login-view .km-content p {
  margin: 0 0 1em;
}
.login-view .km-content strong {
  font-weight: 600;
}
.login-view .km-content ol {
  padding-left: 1em;
}
.login-view .km-content ol li {
  margin-bottom: 1em;
}
.login-view .km-content ol li:last-child {
  margin-bottom: 0;
}
.login-view .km-content .login-title {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.login-view .km-content .login-title h2 {
  font-size: 1.3em;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 540px) {
  .login-view .km-content .login-title h2 {
    font-size: 2.25em;
  }
}
@media (min-width: 540px) {
  #sign-up,
  #login-main,
  #language {
    padding-top: 0;
  }
}
@media (min-width: 540px) {
  #sign-up .km-header,
  #login-main .km-header,
  #language .km-header {
    max-width: none;
    min-height: 77px;
  }
}
.welcome-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 540px) {
  .welcome-screen {
    height: auto;
  }
}
.welcome-screen .continue-email {
  margin-top: 1em;
}
.welcome-screen .continue-email .new-existing-user {
  margin: 1em 0;
  text-align: center;
  color: #718096;
}
.logo-container {
  margin: 0 0 1.5em;
}
@media (max-width: 370px) {
  .logo-container {
    margin: 0 0 1em;
  }
}
@media (min-width: 541px) {
  .logo-container {
    display: none;
  }
}
/* Social login */
.social-login {
  margin: 3em 0 2em;
  flex-grow: 1;
  text-align: center;
}
.social-login .km-button.social-button {
  margin-bottom: 0.7em;
}
.social-login .km-button.social-button.facebook,
.social-login .km-button.social-button.apple .social-login .km-button.social-button.google {
  background: #fff;
}
.social-login .km-button.social-button.apple {
  margin-bottom: 0;
}
.google-button {
  width: 320px;
  height: 44px;
  margin: 0 auto 0.7em;
}
.km-button.social-button {
  font-weight: 500;
  width: 320px;
  height: 40px;
  min-height: 0;
  padding: 0 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  letter-spacing: 0.4px;
  border-radius: 0.2em;
  border-color: #dadce0;
}
.km-button.social-button.facebook .facebook-icon,
.km-button.social-button.apple .facebook-icon,
.km-button.social-button.google .facebook-icon,
.km-button.social-button.facebook .apple-icon,
.km-button.social-button.apple .apple-icon,
.km-button.social-button.google .apple-icon,
.km-button.social-button.facebook .google-icon,
.km-button.social-button.apple .google-icon,
.km-button.social-button.google .google-icon {
  font-size: 0.9em;
  font-style: normal;
  display: flex;
}
.km-button.social-button.facebook .facebook-icon:before,
.km-button.social-button.apple .facebook-icon:before,
.km-button.social-button.google .facebook-icon:before,
.km-button.social-button.facebook .apple-icon:before,
.km-button.social-button.apple .apple-icon:before,
.km-button.social-button.google .apple-icon:before,
.km-button.social-button.facebook .google-icon:before,
.km-button.social-button.apple .google-icon:before,
.km-button.social-button.google .google-icon:before {
  font-family: "icons";
}
.km-button.social-button.facebook:hover .km-text,
.km-button.social-button.apple:hover .km-text,
.km-button.social-button.google:hover .km-text,
.km-button.social-button.facebook.km-state-active .km-text,
.km-button.social-button.apple.km-state-active .km-text,
.km-button.social-button.google.km-state-active .km-text {
  color: #1a202c;
}
.km-button.social-button.facebook {
  color: #1a202c;
}
.km-button.social-button.facebook .facebook-icon {
  color: #3b5998;
}
.km-button.social-button.facebook .facebook-icon:before {
  content: "\f130";
}
.km-button.social-button.facebook:hover,
.km-button.social-button.facebook.km-state-active {
  border-color: rgba(59, 89, 152, 0.15);
  background-color: rgba(59, 89, 152, 0.05);
}
.km-button.social-button.google {
  color: #1a202c;
}
.km-button.social-button.google .google-icon {
  color: #dd4b39;
}
.km-button.social-button.google .google-icon:before {
  content: "\f131";
}
.km-button.social-button.google:hover,
.km-button.social-button.google.km-state-active {
  border-color: rgba(221, 75, 57, 0.1);
  background-color: rgba(221, 75, 57, 0.03);
}
.km-button.social-button.apple {
  color: #1a202c;
}
.km-button.social-button.apple .apple-icon:before {
  content: "\f17f";
  font-size: 1.2em;
}
.km-button.social-button.apple:hover,
.km-button.social-button.apple.km-state-active {
  border-color: rgba(26, 32, 44, 0.1);
  background-color: rgba(26, 32, 44, 0.03);
}
.km-button.social-button.disabled-provider {
  color: #e2e8f0;
  border-color: #e2e8f0;
}
.km-button.social-button .km-text {
  font-size: 0.86rem;
  flex-grow: 1;
}
/* Anonymous login */
.anonymous-login {
  margin: 1em 0;
  padding: 0.5em 0;
  text-align: center;
  color: #718096;
}
/* Change language */
.km-navbar.language .km-view-title {
  font-size: 1em;
  font-weight: 400;
}
@media (min-width: 540px) {
  .km-language {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.8em;
  }
}
.km-language a {
  font-size: 0.9em;
  display: inline-flex;
  align-items: center;
  color: #1a202c !important;
  transition: 0.2s;
}
.km-language a:hover {
  cursor: pointer;
  color: #01bfa5 !important;
}
.km-language a:before,
.km-language.large:before {
  font-family: "icons";
  font-size: 1.2em;
  content: "\f132";
  vertical-align: middle;
  margin-right: 0.3em;
}
.km-language.large {
  font-size: 3rem;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #01bfa5;
  background: #e5faf5;
}
.km-language.large:before {
  font-size: 1em;
  margin: 0;
}
/* Current doctor */
.current-doctor-banner {
  padding: 15px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  border-top: 1px solid #f2f2f2;
  color: #1a202c;
}
.current-doctor-banner img {
  width: 90px;
  height: 90px;
  margin: 0 15px 0 0;
  border-radius: 50%;
}
.current-doctor-banner h4 {
  margin: 0 0 5px;
}
.current-doctor-banner p {
  max-height: 84px;
  overflow: hidden;
  color: #718096;
}
.current-doctor-banner h6,
.current-doctor-banner p {
  margin: 0 0 5px;
}
.current-doctor-banner h6 {
  font-size: 12px;
  text-transform: uppercase;
  color: #01bfa5;
}
.current-hospital,
.current-doctor {
  text-align: center;
}
.current-hospital img,
.current-doctor img {
  width: 70px;
  height: 70px;
  margin: 0 auto 5px;
  border-radius: 50%;
}
.current-hospital h2,
.current-doctor h2,
.current-hospital h3,
.current-doctor h3,
.current-hospital p,
.current-doctor p {
  margin: 0;
}
.current-hospital h2,
.current-doctor h2 {
  margin-bottom: 0.2em !important;
}
.current-hospital h3,
.current-doctor h3 {
  font-weight: normal;
  color: #01bfa5;
  margin-bottom: 2em;
}
.current-hospital img {
  width: 100px;
  height: 100px;
  border-radius: 0;
}
/* Create account Message */
.login-message .login-link {
  cursor: pointer;
  border-bottom: 1px dotted #718096;
  transition: 0.2s;
}
.login-message .login-link:hover {
  color: #01bfa5;
  border-color: transparent;
}
/* Essentials specific */
#essentials .km-header .km-rightitem {
  display: none;
}
#essentials .km-header.visible .km-rightitem {
  display: block;
}
@media (max-width: 374px) {
  #essentials .km-header .km-view-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
#essentials .primary-button {
  margin-top: 1em;
}
/* User */
.km-content .user {
  margin: 3em 0;
  text-align: center;
}
@media (max-width: 370px) {
  .km-content .user {
    margin: 1.5em 0;
  }
}
@media (min-width: 540px) {
  .km-content .user {
    margin: 1.7em 0;
  }
}
.km-content .user h2 {
  margin: 1rem 0 0.2em;
}
.km-content .user .thumb {
  font-size: 3em;
  font-weight: 200;
  width: 7.3rem;
  height: 7.3rem;
  line-height: 7.3rem;
  margin: 0 auto 1rem;
  text-align: center;
  color: #01bfa5;
  border-radius: 50%;
  background: #e5faf5;
}
@media (max-width: 370px) {
  .km-content .user .thumb {
    font-size: 2em;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
  }
}
.km-content .user .user-icon:after {
  font-family: "icons";
  content: "\f103";
}
.km-content .user.user-small h2 {
  font-size: 1.1em;
}
.km-content .user.user-small .thumb {
  font-size: 2em;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  margin-bottom: 0.7rem;
}
.social-user {
  margin-top: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 540px) {
  .social-user {
    margin-top: 0;
  }
}
.social-user .social-user-holder {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-user .social-button {
  background: #fff;
}
@media (min-width: 540px) {
  #facebook > .km-header,
  #google > .km-header,
  #apple > .km-header,
  #amazon > .km-header,
  #mfa-login > .km-header {
    display: none;
  }
}
/* Language */
#language .km-header {
  border-bottom: none;
}
#language .km-content {
  margin-bottom: 4em;
  filter: none!important;
}
#language .km-scroll-container {
  justify-content: flex-start;
}
#language .km-group-title {
  font-size: 0.8em;
  font-weight: 600;
  text-indent: 0;
  color: #1a202c;
  text-transform: none;
  padding: 0 1rem;
  border: none;
  border-left-color: #fff;
  border-right-color: #fff;
  border-bottom: none;
  background: none;
}
@media (max-width: 540px) {
  #language .km-group-title {
    padding: 0 0.5rem;
  }
}
#language .login-header {
  margin: 0 auto 2em;
  flex: unset;
  text-align: center;
}
#language .login-content {
  padding: 0;
  display: block;
}
#language .km-list > li {
  font-size: 1em;
  padding-left: 0;
  padding-right: 0;
  border-bottom: none;
}
#language .km-list > li a {
  margin: 0;
  padding: 0.8em 1rem;
  display: block;
  color: #1a202c !important;
}
@media (max-width: 540px) {
  #language .km-list > li a {
    padding: 0.5rem;
  }
}
#language .km-list > li a:after {
  content: "\f12c";
  font-family: 'icons';
  right: 1rem;
  display: flex;
  align-items: center;
  box-shadow: none;
  transform: none;
}
#language .km-list > li:hover,
#language .km-list > li.km-state-active {
  cursor: pointer;
}
#language .km-list > li:hover a,
#language .km-list > li.km-state-active a {
  border-radius: 0.4em;
  background: #f1f5f9;
}
#language #current-language {
  margin-bottom: 2em;
}
/* Desktop app */
body.desktop-browser .km-view .km-header {
  position: static;
}
body.desktop-browser .km-view .km-header.visible {
  box-shadow: none;
}
body.desktop-browser .km-view .km-header.visible .km-view-title {
  visibility: hidden;
}
body.desktop-browser .km-view .km-content {
  width: auto;
}
body.desktop-browser .desktop-header {
  max-width: 300px;
  top: 12px;
  left: 15px;
  position: relative;
  display: flex;
  z-index: 10000;
}
@media (min-width: 1440px) {
  body.desktop-browser .desktop-header {
    left: 25px;
  }
}
@media (max-width: 540px) {
  body.desktop-browser .desktop-header {
    display: none;
  }
}
.default-loader {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0px;
  bottom: 0px;
  background: #fff;
  z-index: 10001;
}
.default-loader .logo {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}
.default-loader .loading-holder {
  flex-grow: 1;
}
.default-loader .loading-holder .general-loading {
  margin-top: -0.5em;
}
.copy-link {
  margin: 0.5em 0 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 0.6em;
}
.centered-layout .copy-link {
  width: 100%;
  margin: 1em 0;
}
.copy-link .connection-link {
  padding: 1.3em 1em;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: text;
}
.copy-link .connection-link input {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
}
.copy-link .copy-link-buttons {
  display: flex;
  border-top: 1px solid #e2e8f0;
}
.copy-link .copy-link-buttons .km-button {
  font-size: 1em;
  padding: 0.9em 0;
  margin: 0;
  flex-grow: 1;
  flex-basis: 0;
  border: none;
  border-radius: 0;
}
.copy-link .copy-link-buttons .km-button + .km-button {
  margin-left: -1px;
  border-left: 1px solid #e2e8f0;
}
.copy-link .copy-link-buttons .km-button.km-state-active {
  background: #f1f5f9;
}
.copy-link .copy-link-buttons .km-button.km-state-active .km-text {
  color: #01bfa5;
}
.centered-layout {
  padding: 1em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.centered-layout .km-centered-icon:after {
  font-size: 3em;
  width: 8rem;
  height: 8rem;
  line-height: 8rem;
  margin: 0 auto;
  display: block;
  text-align: center;
  border-radius: 50%;
  color: #718096;
  background: #e2e8f0 !important;
}
@media (orientation: landscape) {
  .km-horizontal .centered-layout .km-centered-icon:after {
    font-size: 2em;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
  }
}
.centered-layout .km-centered-icon.primary:after {
  color: #01bfa5;
  background: #e5faf5 !important;
}
.centered-layout .centered-title,
.centered-layout .centered-description {
  text-align: center;
}
.centered-layout .centered-title {
  font-size: 1.4em;
  font-weight: 700;
  margin: 0.5em 0 0;
  display: block;
}
.centered-layout .centered-description {
  margin: 0.5em 0 1em;
  display: block;
  color: #718096;
}
.km-lock:after {
  font-family: "icons";
  content: "\f142";
}
.mfa-qr-code {
  margin-bottom: 1em;
  display: flex;
  justify-content: center;
}
.mfa-qr-code #mfa-key-qr {
  padding: 1em;
  border-radius: 15px;
  background: #e5faf5;
}
.send-again-link {
  margin-top: 0.5em;
}
@media (max-width: 768px) {
  #accept-terms-and-conditions {
    border: none;
    padding: 0;
  }
}
@media (min-width: 540px) {
  #accept-terms-and-conditions .km-header {
    display: none;
  }
}
#accept-terms-and-conditions .km-content {
  max-width: 768px;
}
#accept-terms-and-conditions .terms-container {
  height: 300px;
  margin-bottom: 0.3em;
  padding: 1em;
  overflow-y: scroll;
  border-radius: 0.5em;
  border: 1px solid #cbd5e0;
  background: #f1f5f9;
}
#accept-terms-and-conditions .terms-container h1,
#accept-terms-and-conditions .terms-container h2,
#accept-terms-and-conditions .terms-container h3,
#accept-terms-and-conditions .terms-container h4,
#accept-terms-and-conditions .terms-container h5,
#accept-terms-and-conditions .terms-container h6 {
  font-weight: 700;
  margin: 1.5em 0 0.5em;
}
#accept-terms-and-conditions .terms-container h1 {
  font-size: 1.5em;
}
#accept-terms-and-conditions .terms-container h1:first-child {
  margin-top: 0;
}
.km-modalview-root.km-shim {
  overflow-y: auto;
}
.km-modalview-root.km-shim .km-modalview-wrapper {
  padding: 2px;
}
@media (min-width: 576px) {
  .km-modalview-root.km-shim .km-modalview-wrapper {
    padding: 1em;
  }
}
.km-modalview-root.km-shim .modal {
  width: auto;
  margin: 40px auto;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 0 10px rgba(26, 32, 44, 0.1);
}
@media (min-width: 576px) {
  .km-modalview-root.km-shim .modal {
    max-width: 498px;
  }
}
.km-modalview-root.km-shim .modal.modal-large {
  max-width: 800px;
}
@media (min-width: 1200px) {
  .km-modalview-root.km-shim .modal.modal-large {
    max-width: 1140px;
  }
}
.km-modalview-root.km-shim .modal .modal-close {
  width: 40px;
  height: 40px;
  margin: 5px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #1a202c;
}
@media (min-width: 1240px) {
  .km-modalview-root.km-shim .modal .modal-close {
    top: 10px;
    right: 10px;
    position: fixed;
    background: #1a202c;
  }
}
.km-modalview-root.km-shim .modal .modal-close::before {
  display: none;
}
.km-modalview-root.km-shim .modal .modal-close .km-times {
  font-size: 1.4em;
  color: #1a202c;
}
@media (min-width: 1240px) {
  .km-modalview-root.km-shim .modal .modal-close .km-times {
    font-size: 1.1em;
    color: #fff;
  }
}
.km-modalview-root.km-shim .modal .modal-close .km-times:after {
  content: "\f122";
  font-family: "icons";
}
.km-modalview-root.km-shim .modal .modal-hidden-title .km-view-title {
  opacity: 0;
}
.km-modalview-root.km-shim .modal .km-content {
  padding: 1em;
  user-select: text;
}
@media (min-width: 768px) {
  .km-modalview-root.km-shim .modal .km-content {
    padding: 40px;
  }
}
.km-modalview-root.km-shim .modal .km-content h1,
.km-modalview-root.km-shim .modal .km-content h2,
.km-modalview-root.km-shim .modal .km-content h3,
.km-modalview-root.km-shim .modal .km-content h4,
.km-modalview-root.km-shim .modal .km-content h5,
.km-modalview-root.km-shim .modal .km-content h6 {
  margin-left: 0;
  margin-right: 0;
}
.km-modalview-root.km-shim .modal .km-content h1:first-child,
.km-modalview-root.km-shim .modal .km-content h2:first-child,
.km-modalview-root.km-shim .modal .km-content h3:first-child,
.km-modalview-root.km-shim .modal .km-content h4:first-child,
.km-modalview-root.km-shim .modal .km-content h5:first-child,
.km-modalview-root.km-shim .modal .km-content h6:first-child {
  margin-top: 0;
}
.km-modalview-root.km-shim .modal .modal-actions {
  width: auto;
  padding: 1em;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1em 1em;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}
@media (min-width: 768px) {
  .km-modalview-root.km-shim .modal .modal-actions {
    padding: 25px 40px;
  }
}
.km-modalview-root.km-shim .modal .modal-actions .km-button.button,
.km-modalview-root.km-shim .modal .modal-actions .km-button.primary-button,
.km-modalview-root.km-shim .modal .modal-actions .km-button.secondary-button {
  font-size: 1.1em;
  width: auto;
  min-height: auto;
  margin: 0;
  padding: 0.7em 1.2em;
}
.km-envelope:after {
  font-family: "icons";
  content: "\f169";
}

