body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body,
html,
.hc-scroll-container {
  /* overscroll-behavior-y: none; */
}

.hc-container {
  position: relative;
  width: 100vw;
  height: 100%;
}

.hc-container.hc-scroll-container {
  overflow-x: hidden;
  overflow-y: auto;
}

.hc-container-half {
  position: relative;
  width: 100vw;
  height: min-content;
}

.hc-static-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.hc-container.hc-double-height {
  height: 200vh;
}

.hc-fullscreen {
  width: 100%;
  height: 100vh;
}

.hc-fullscreen {
  width: 100%;
  height: 100vh;
}

.hc-absolute {
  position: absolute;
  top: 0;
  left: 0;
}

.hc-display-none {
  display: none;
}

.hc-carousel-stepper {
  position: absolute;
  pointer-events: none;
  left: 0;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hc-carousel-stepper.hc-carousel-stepper-top {
  bottom: unset;
  top:0;
  justify-content: flex-end;
}

.hc-carousel-stepper-item {
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0;
  cursor: pointer;
  pointer-events: auto;
}

.hc-carousel-stepper-item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b2b2b2;
  transition: 0.34s ease-in-out;
}

.hc-carousel-stepper-item:hover::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333333;
  transition: 0.34s ease-in-out;
}

.hc-carousel-stepper-item.hc-active::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333333;
  transition: 0.34s ease-in-out;
}

.hc-carousel-skip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hc-carousel-skip-item {
  position: absolute;
  pointer-events: auto;
  right: 30px;
  bottom: 30px;
  opacity: 0.4;
}

.hc-carousel-skip-item:hover {
  opacity: 1;
}

.hc-carousel-skip-item svg {
  width: 42px;
}

.hc-carousel-skip-item.hc-carousel-skip-top {
  bottom: unset;
  top: 30px;
}

.hc-next-section,
.hc-next-section>svg {
  position: absolute;
  right: 0;
  bottom: 0;
  --chevronColor: var(--fontColor);
}

.hc-next-section .inner-circle {
  --chevronSize: 40px;
  position: absolute;
  left: unset;
  top: unset;
  bottom: -3px;
  right: -3px;
  width: var(--chevronSize);
  height: var(--chevronSize);
  transform: none;
  pointer-events: none;

}

.hc-next-section .inner-circle svg {

  width: var(--chevronSize);
  height: var(--chevronSize);
  transform: rotate(90deg);
}

.hc-next-section>svg>path {
  pointer-events: auto;
  cursor: pointer;
  fill: #ede7de;
}

.hc-page-stopper {
  position: absolute;
  left: 0;
  top: 0;
}

.hc-page-capture-feedback {
  width: 100%;
  height: 100%;
  border: 0px solid var(--midGreen);
  transition: box-shadow 0.4s cubic-bezier(.58, 0, 1, .65);
  box-shadow: inset 0px 0px 12px -14px var(--midGreen);
}

.hc-page-capture-feedback.hc-active {
  /*border: 8px solid var(--midGreen);*/
  transition: box-shadow 0.8s cubic-bezier(0, .61, .63, .99);
  box-shadow: inset 0px 0px 12px 0px var(--midGreen);
}