html,
body.wynd-locked-homepage {
  margin: 0;
  overflow-x: clip;
}

body.wynd-locked-homepage {
  background: #e9e9e9;
}

#wynd-homepage {
  font-family: "Times New Roman", serif;
  font-size: 16px;
  line-height: normal;
}

#wynd-homepage,
#wynd-homepage *,
#wynd-homepage *::before,
#wynd-homepage *::after {
  box-sizing: border-box;
}

#wynd-homepage a {
  color: #fff;
}

#wynd-homepage a:focus-visible,
#wynd-homepage button:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 3px;
}

#wynd-homepage .wynd-back-to-top {
  position: fixed;
  right: calc(28px + env(safe-area-inset-right, 0px));
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: inline-flex;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #151519;
  font: inherit;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

#wynd-homepage .wynd-back-to-top > span {
  position: relative;
  display: block;
  width: 28px;
  height: 34px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(244, 243, 239, .9);
  box-shadow: 0 5px 18px rgba(13, 13, 18, .16);
  font-size: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

#wynd-homepage .wynd-back-to-top > span::before,
#wynd-homepage .wynd-back-to-top > span::after {
  position: absolute;
  left: 50%;
  content: "";
}

#wynd-homepage .wynd-back-to-top > span::before {
  top: 9px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

#wynd-homepage .wynd-back-to-top > span::after {
  top: 9px;
  width: 1.5px;
  height: 15px;
  background: currentColor;
  transform: translateX(-50%);
}

#wynd-homepage .wynd-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

@media (hover: hover) {
  #wynd-homepage .wynd-back-to-top.is-visible:hover {
    transform: translateY(-1px);
  }

  #wynd-homepage .wynd-back-to-top.is-visible:hover > span {
    background: rgba(255, 255, 255, .96);
  }
}

@media (max-width: 899px) {
  #wynd-homepage .wynd-back-to-top {
    right: calc(16px + env(safe-area-inset-right, 0px));
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  #wynd-homepage *,
  #wynd-homepage *::before,
  #wynd-homepage *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }

  #wynd-homepage .wynd-back-to-top {
    transition: none;
  }

  #wynd-homepage .wynd-back-to-top.is-visible:hover {
    transform: none;
  }
}

/* Prevent the raw template from painting before native responsive styles settle. */
#wynd-homepage[data-wynd-root] {
  visibility: hidden;
}

#wynd-homepage[data-wynd-root][data-wynd-ready="true"] {
  visibility: visible;
}
