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

[hidden] {
  display: none !important;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #fff;
}

body {
  display: flex;
  justify-content: center;
}

body.merchant-view-active {
  overflow: hidden;
}

.landing-page {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.landing-page:focus-visible {
  outline: 0.1875rem solid #1677ff;
  outline-offset: -0.1875rem;
}

.landing-page:disabled {
  cursor: default;
}

.landing-page__image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.merchant-view {
  display: none;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  border: 0;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
}

.merchant-view.is-active {
  display: block;
}

.landing-page.is-module-overlay {
  position: fixed;
  inset: 0 auto auto 50%;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transform: translateX(-50%);
}
